2017-02-19 18:55:54 -05:00
|
|
|
#ifndef __VM_H
|
|
|
|
#define __VM_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2018-01-10 04:13:04 -05:00
|
|
|
#include <stdlib.h> // for NULL
|
2017-02-19 18:55:54 -05:00
|
|
|
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "vmdisplay.h"
|
|
|
|
#include "vmkeyboard.h"
|
|
|
|
|
2017-02-26 11:00:41 -05:00
|
|
|
#define DISPLAYWIDTH 320
|
|
|
|
#define DISPLAYHEIGHT 240
|
|
|
|
|
2017-02-19 18:55:54 -05:00
|
|
|
class VM {
|
|
|
|
public:
|
2018-01-10 04:13:04 -05:00
|
|
|
VM() { mmu=NULL; vmdisplay = NULL; hasIRQ = false;}
|
|
|
|
virtual ~VM() { if (mmu) delete mmu; if (vmdisplay) delete vmdisplay; }
|
2017-02-19 18:55:54 -05:00
|
|
|
|
2021-01-09 21:32:40 -05:00
|
|
|
virtual bool Suspend(const char *fn) = 0;
|
|
|
|
virtual bool Resume(const char *fn) = 0;
|
2017-12-30 15:20:34 -05:00
|
|
|
|
2017-02-19 18:55:54 -05:00
|
|
|
virtual void SetMMU(MMU *mmu) { this->mmu = mmu; }
|
|
|
|
virtual MMU *getMMU() { return mmu; }
|
|
|
|
virtual VMKeyboard *getKeyboard() = 0;
|
|
|
|
|
|
|
|
virtual void Reset() = 0;
|
|
|
|
|
|
|
|
virtual void triggerPaddleInCycles(uint8_t paddleNum, uint16_t cycleCount) = 0;
|
|
|
|
|
|
|
|
VMDisplay *vmdisplay;
|
|
|
|
MMU *mmu;
|
|
|
|
bool hasIRQ;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|