1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-08 15:29:09 +00:00

Merge branch 'Amiga' of github.com:TomHarte/CLK into Amiga

This commit is contained in:
Thomas Harte 2021-08-07 17:00:54 -04:00
commit 3255fc91fa
3 changed files with 6 additions and 1 deletions

View File

@ -328,7 +328,7 @@ class ConcreteMachine:
// b2: SEL
// b1: POUT
// b0: BUSY
LOG("TODO: Serial control: " << PADHEX(2) << +value);
LOG("TODO: DTR/RTS/etc: " << PADHEX(2) << +value);
} else {
// Disk motor control, drive and head selection,
// and stepper control:

View File

@ -407,6 +407,9 @@ Description::Description(Name name) {
case Name::AmigaA500Kickstart31:
*this = Description(name, "Amiga", "the A500/A600/A2000 Kickstart 3.1 ROM", "Kickstart-v3.1-rev40.63-1993-Commodore-A500-A600-A2000.rom", 512*1024, 0xfc24ae0du);
break;
case Name::AmigaDiagROM121:
*this = Description(name, "Amiga", "DiagROM 1.2.1", "16bit.bin", 512*1024, 0xf2ac0a3b);
break;
case Name::AppleIIEnhancedE: *this = Description(name, "AppleII", "the Enhanced Apple IIe ROM", "apple2e.rom", 32*1024, 0x65989942u); break;
case Name::AppleIIe: *this = Description(name, "AppleII", "the Apple IIe ROM", "apple2eu.rom", 32*1024, 0xe12be18du); break;

View File

@ -42,6 +42,8 @@ enum Name {
AmigaA600Kickstart205,
AmigaA500Kickstart31,
AmigaDiagROM121,
// Amstrad CPC.
AMSDOS,
CPC464Firmware, CPC464BASIC,