mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-22 15:31:41 +00:00
27 lines
417 B
C++
27 lines
417 B
C++
#ifndef __SDLCLOCK_H
|
|
#define __SDLCLOCK_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#include "Slot.h"
|
|
#include "applemmu.h"
|
|
|
|
class SDLClock : public Slot {
|
|
public:
|
|
SDLClock(AppleMMU *mmu);
|
|
virtual ~SDLClock();
|
|
|
|
virtual void Reset();
|
|
|
|
virtual uint8_t readSwitches(uint8_t s);
|
|
virtual void writeSwitches(uint8_t s, uint8_t v);
|
|
|
|
virtual void loadROM(uint8_t *toWhere);
|
|
|
|
private:
|
|
AppleMMU *mmu;
|
|
};
|
|
|
|
#endif
|