Fixes #14 - Use Original Apple ][+ ROMs (#56)

This commit is contained in:
Stefan Arentz 2016-12-02 11:36:18 -05:00 committed by GitHub
parent 8c540daa1b
commit 653217f5c0
7 changed files with 6 additions and 1 deletions

7
a2p.c
View File

@ -135,7 +135,12 @@ void a2p_init(struct a2p_t *a2p, struct cpu_t *cpu) {
memset(a2p, 0x00, sizeof(struct a2p_t));
a2p->ram = cpu_add_ram(cpu, 0x0000, 48 * 1024);
a2p->rom = cpu_add_rom_file(cpu, 0xd000, "roms/a2p.rom");
a2p->rom = cpu_add_rom_file(cpu, 0xd000, "roms/341-0011.bin"); // AppleSoft BASIC D000
a2p->rom = cpu_add_rom_file(cpu, 0xd800, "roms/341-0012.bin"); // AppleSoft BASIC D800
a2p->rom = cpu_add_rom_file(cpu, 0xe000, "roms/341-0013.bin"); // AppleSoft BASIC E000
a2p->rom = cpu_add_rom_file(cpu, 0xe800, "roms/341-0014.bin"); // AppleSoft BASIC E800
a2p->rom = cpu_add_rom_file(cpu, 0xf000, "roms/341-0015.bin"); // AppleSoft BASIC E800
a2p->rom = cpu_add_rom_file(cpu, 0xf800, "roms/341-0020.bin"); // AppleSoft BASIC Autostart Monitor F8000
a2p->iom = cpu_add_iom(cpu, 0xc000, 0xc0ff, a2p, a2p_iom_read, a2p_iom_write);
a2p->dsk = ewm_dsk_create(cpu);

BIN
roms/341-0011.bin Executable file

Binary file not shown.

BIN
roms/341-0012.bin Executable file

Binary file not shown.

BIN
roms/341-0013.bin Executable file

Binary file not shown.

BIN
roms/341-0014.bin Executable file

Binary file not shown.

BIN
roms/341-0015.bin Executable file

Binary file not shown.

BIN
roms/341-0020.bin Executable file

Binary file not shown.