mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-31 09:15:51 +00:00
60 lines
931 B
C++
60 lines
931 B
C++
#include "parallelcard.h"
|
|
#include <string.h>
|
|
|
|
#include "parallel-rom.h"
|
|
#include "fx80.h"
|
|
|
|
#ifdef TEENSYDUINO
|
|
#include "teensy-println.h"
|
|
#endif
|
|
|
|
ParallelCard::ParallelCard()
|
|
{
|
|
fx80 = new Fx80();
|
|
}
|
|
|
|
ParallelCard::~ParallelCard()
|
|
{
|
|
}
|
|
|
|
bool ParallelCard::Serialize(int8_t fd)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool ParallelCard::Deserialize(int8_t fd)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void ParallelCard::Reset()
|
|
{
|
|
}
|
|
|
|
uint8_t ParallelCard::readSwitches(uint8_t s)
|
|
{
|
|
return 0xFF;
|
|
}
|
|
|
|
void ParallelCard::writeSwitches(uint8_t s, uint8_t v)
|
|
{
|
|
if (s == 0x00) {
|
|
fx80->input(v & 0x7F); // Note: not 8-bit clean!
|
|
} else {
|
|
// printf("unknown switch 0x%X\n", s);
|
|
}
|
|
}
|
|
|
|
void ParallelCard::loadROM(uint8_t *toWhere)
|
|
{
|
|
#ifdef TEENSYDUINO
|
|
println("loading parallel slot rom");
|
|
for (uint16_t i=0; i<=0xFF; i++) {
|
|
toWhere[i] = pgm_read_byte(&romData[i]);
|
|
}
|
|
#else
|
|
printf("loading parallel slot rom\n");
|
|
memcpy(toWhere, romData, 256);
|
|
#endif
|
|
}
|