aiie/teensy/teensy-clock.h

21 lines
332 B
C
Raw Permalink Normal View History

2017-02-20 18:55:16 +00:00
#ifndef __TEENSYCLOCK_H
#define __TEENSYCLOCK_H
#include <Arduino.h>
#include "applemmu.h"
2018-02-17 14:01:08 +00:00
#include "NoSlotClock.h"
class TeensyClock : public NoSlotClock {
2017-02-20 18:55:16 +00:00
public:
TeensyClock(AppleMMU *mmu);
virtual ~TeensyClock();
2018-02-17 14:01:08 +00:00
protected:
virtual void populateClockRegister();
virtual void updateClockFromRegister();
2017-02-20 18:55:16 +00:00
};
#endif