aiie/teensy/teensy-clock.h

21 lines
332 B
C
Raw Normal View History

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