mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-01 01:06:17 +00:00
99d0c8e72c
* New BIOS interface * New linux framebuffer version * Unified linuxfb and SDL with Teensy * Abstracted VM RAM * Fixed disk image corruption due to bad cache handling * Variable CPU speed support
34 lines
588 B
C++
34 lines
588 B
C++
#ifndef __PARALLELCARD_H
|
|
#define __PARALLELCARD_H
|
|
|
|
#ifdef TEENSYDUINO
|
|
#include <Arduino.h>
|
|
#else
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#endif
|
|
|
|
#include "applemmu.h"
|
|
#include "slot.h"
|
|
|
|
class Fx80;
|
|
|
|
class ParallelCard : public Slot {
|
|
public:
|
|
ParallelCard();
|
|
virtual ~ParallelCard();
|
|
|
|
virtual bool Serialize(int8_t fd);
|
|
virtual bool Deserialize(int8_t fd);
|
|
|
|
virtual void Reset(); // used by BIOS cold-boot
|
|
virtual uint8_t readSwitches(uint8_t s);
|
|
virtual void writeSwitches(uint8_t s, uint8_t v);
|
|
virtual void loadROM(uint8_t *toWhere);
|
|
|
|
private:
|
|
Fx80 *fx80;
|
|
};
|
|
|
|
#endif
|