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