mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-01 01:06:17 +00:00
21 lines
313 B
C++
21 lines
313 B
C++
#ifndef __NIXCLOCK_H
|
|
#define __NIXCLOCK_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "noslotclock.h"
|
|
|
|
class NixClock : public NoSlotClock {
|
|
public:
|
|
NixClock(AppleMMU *mmu);
|
|
virtual ~NixClock();
|
|
|
|
protected:
|
|
virtual void populateClockRegister();
|
|
virtual void updateClockFromRegister();
|
|
|
|
};
|
|
|
|
#endif
|