2017-02-19 23:55:54 +00:00
|
|
|
#include "applevm.h"
|
|
|
|
#include "filemanager.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
|
|
|
|
#include "appledisplay.h"
|
|
|
|
#include "applekeyboard.h"
|
|
|
|
#include "physicalkeyboard.h"
|
|
|
|
|
|
|
|
#include "globals.h"
|
|
|
|
|
2017-12-30 20:20:34 +00:00
|
|
|
#include <errno.h>
|
|
|
|
const char *suspendHdr = "Sus1";
|
|
|
|
|
2017-02-19 23:55:54 +00:00
|
|
|
AppleVM::AppleVM()
|
|
|
|
{
|
|
|
|
// FIXME: all this typecasting makes me knife-stabby
|
2018-02-18 01:44:04 +00:00
|
|
|
vmdisplay = new AppleDisplay();
|
2017-02-19 23:55:54 +00:00
|
|
|
mmu = new AppleMMU((AppleDisplay *)vmdisplay);
|
|
|
|
vmdisplay->SetMMU((AppleMMU *)mmu);
|
|
|
|
|
|
|
|
disk6 = new DiskII((AppleMMU *)mmu);
|
|
|
|
((AppleMMU *)mmu)->setSlot(6, disk6);
|
|
|
|
|
|
|
|
keyboard = new AppleKeyboard((AppleMMU *)mmu);
|
2017-02-20 23:41:46 +00:00
|
|
|
|
|
|
|
parallel = new ParallelCard();
|
|
|
|
((AppleMMU *)mmu)->setSlot(1, parallel);
|
|
|
|
|
2017-12-29 19:08:49 +00:00
|
|
|
hd32 = new HD32((AppleMMU *)mmu);
|
|
|
|
((AppleMMU *)mmu)->setSlot(7, hd32);
|
2017-02-19 23:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AppleVM::~AppleVM()
|
|
|
|
{
|
|
|
|
delete disk6;
|
2017-02-24 15:15:17 +00:00
|
|
|
delete parallel;
|
2017-02-19 23:55:54 +00:00
|
|
|
}
|
|
|
|
|
2017-12-30 20:20:34 +00:00
|
|
|
void AppleVM::Suspend(const char *fn)
|
|
|
|
{
|
|
|
|
/* Open a new suspend file via the file manager; tell all our
|
|
|
|
objects to serialize in to it; close the file */
|
|
|
|
|
|
|
|
int8_t fh = g_filemanager->openFile(fn);
|
|
|
|
if (fh == -1) {
|
|
|
|
// Unable to open; skip suspend
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
for (int i=0; i<strlen(suspendHdr); i++) {
|
|
|
|
g_filemanager->writeByte(fh, suspendHdr[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell all of the peripherals to suspend */
|
|
|
|
if (g_cpu->Serialize(fh) &&
|
|
|
|
disk6->Serialize(fh) &&
|
|
|
|
hd32->Serialize(fh)
|
|
|
|
) {
|
|
|
|
#ifndef TEENSYDUINO
|
|
|
|
printf("All serialized successfully\n");
|
|
|
|
#else
|
|
|
|
Serial.println("All serialized successfully");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
g_filemanager->closeFile(fh);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::Resume(const char *fn)
|
|
|
|
{
|
|
|
|
/* Open the given suspend file via the file manager; tell all our
|
|
|
|
objects to deserialize from it; close the file */
|
|
|
|
|
|
|
|
int8_t fh = g_filemanager->openFile(fn);
|
|
|
|
if (fh == -1) {
|
|
|
|
// Unable to open; skip resume
|
|
|
|
#ifdef TEENSYDUINO
|
|
|
|
Serial.print("Unable to open resume file ");
|
|
|
|
Serial.println(fn);
|
|
|
|
#else
|
|
|
|
printf("Unable to open resume file\n");
|
|
|
|
#endif
|
2018-02-07 17:34:24 +00:00
|
|
|
g_filemanager->closeFile(fh);
|
2017-12-30 20:20:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
for (int i=0; i<strlen(suspendHdr); i++) {
|
|
|
|
if (g_filemanager->readByte(fh) != suspendHdr[i]) {
|
|
|
|
/* Failed to read correct header; abort */
|
2018-02-07 17:34:24 +00:00
|
|
|
g_filemanager->closeFile(fh);
|
2017-12-30 20:20:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell all of the peripherals to resume */
|
|
|
|
if (g_cpu->Deserialize(fh) &&
|
|
|
|
disk6->Deserialize(fh) &&
|
|
|
|
hd32->Deserialize(fh)
|
|
|
|
) {
|
2018-02-07 17:34:24 +00:00
|
|
|
#ifdef TEENSYDUINO
|
|
|
|
Serial.println("Deserialization successful");
|
|
|
|
#else
|
2017-12-30 20:20:34 +00:00
|
|
|
printf("All deserialized successfully\n");
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#ifndef TEENSYDUINO
|
|
|
|
printf("Deserialization failed\n");
|
|
|
|
exit(1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
g_filemanager->closeFile(fh);
|
|
|
|
}
|
|
|
|
|
2017-02-19 23:55:54 +00:00
|
|
|
// fixme: make member vars
|
|
|
|
unsigned long paddleCycleTrigger[2] = {0, 0};
|
|
|
|
|
|
|
|
void AppleVM::triggerPaddleInCycles(uint8_t paddleNum,uint16_t cycleCount)
|
|
|
|
{
|
|
|
|
paddleCycleTrigger[paddleNum] = cycleCount + g_cpu->cycles;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::cpuMaintenance(uint32_t cycles)
|
|
|
|
{
|
|
|
|
for (uint8_t i=0; i<2; i++) {
|
|
|
|
if (paddleCycleTrigger[i] && cycles >= paddleCycleTrigger[i]) {
|
|
|
|
((AppleMMU *)mmu)->triggerPaddleTimer(i);
|
|
|
|
paddleCycleTrigger[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
keyboard->maintainKeyboard(cycles);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::Reset()
|
|
|
|
{
|
|
|
|
disk6->Reset();
|
|
|
|
((AppleMMU *)mmu)->resetRAM();
|
|
|
|
mmu->Reset();
|
|
|
|
|
|
|
|
g_cpu->pc = (((AppleMMU *)mmu)->read(0xFFFD) << 8) | ((AppleMMU *)mmu)->read(0xFFFC);
|
|
|
|
|
|
|
|
// give the keyboard a moment to depress keys upon startup
|
|
|
|
keyboard->maintainKeyboard(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::Monitor()
|
|
|
|
{
|
|
|
|
g_cpu->pc = 0xff69; // "call -151"
|
|
|
|
((AppleMMU *)mmu)->readSwitches(0xC054); // make sure we're in page 1
|
|
|
|
((AppleMMU *)mmu)->readSwitches(0xC056); // and that hires is off
|
|
|
|
((AppleMMU *)mmu)->readSwitches(0xC051); // and text mode is on
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *AppleVM::DiskName(uint8_t drivenum)
|
|
|
|
{
|
|
|
|
return disk6->DiskName(drivenum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::ejectDisk(uint8_t drivenum)
|
|
|
|
{
|
|
|
|
disk6->ejectDisk(drivenum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::insertDisk(uint8_t drivenum, const char *filename, bool drawIt)
|
|
|
|
{
|
|
|
|
disk6->insertDisk(drivenum, filename, drawIt);
|
|
|
|
}
|
|
|
|
|
2017-12-29 20:35:47 +00:00
|
|
|
const char *AppleVM::HDName(uint8_t drivenum)
|
|
|
|
{
|
|
|
|
return hd32->diskName(drivenum);
|
|
|
|
}
|
|
|
|
|
2017-12-29 19:08:49 +00:00
|
|
|
void AppleVM::ejectHD(uint8_t drivenum)
|
|
|
|
{
|
|
|
|
hd32->ejectDisk(drivenum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppleVM::insertHD(uint8_t drivenum, const char *filename)
|
|
|
|
{
|
|
|
|
hd32->insertDisk(drivenum, filename);
|
|
|
|
}
|
|
|
|
|
2017-02-19 23:55:54 +00:00
|
|
|
VMKeyboard * AppleVM::getKeyboard()
|
|
|
|
{
|
|
|
|
return keyboard;
|
|
|
|
}
|