mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-01 01:06:17 +00:00
21 lines
332 B
C++
21 lines
332 B
C++
#ifndef __TEENSYCLOCK_H
|
|
#define __TEENSYCLOCK_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "applemmu.h"
|
|
|
|
#include "NoSlotClock.h"
|
|
|
|
class TeensyClock : public NoSlotClock {
|
|
public:
|
|
TeensyClock(AppleMMU *mmu);
|
|
virtual ~TeensyClock();
|
|
|
|
protected:
|
|
virtual void populateClockRegister();
|
|
virtual void updateClockFromRegister();
|
|
};
|
|
|
|
#endif
|