aiie/nix/nix-clock.h

21 lines
313 B
C
Raw Normal View History

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