aiie/nix/nix-clock.h

21 lines
313 B
C
Raw Normal View History

#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:
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