2018-02-07 15:20:26 +00:00
|
|
|
#ifndef __NIXCLOCK_H
|
|
|
|
#define __NIXCLOCK_H
|
2017-03-01 04:44:03 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-02-17 14:01:08 +00:00
|
|
|
#include "noslotclock.h"
|
2017-03-01 04:44:03 +00:00
|
|
|
|
2018-02-17 14:01:08 +00:00
|
|
|
class NixClock : public NoSlotClock {
|
2017-03-01 04:44:03 +00:00
|
|
|
public:
|
2018-02-07 15:20:26 +00:00
|
|
|
NixClock(AppleMMU *mmu);
|
|
|
|
virtual ~NixClock();
|
2017-03-01 04:44:03 +00:00
|
|
|
|
2018-02-17 14:01:08 +00:00
|
|
|
protected:
|
|
|
|
virtual void populateClockRegister();
|
|
|
|
virtual void updateClockFromRegister();
|
2017-03-01 04:44:03 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|