mirror of
https://github.com/st3fan/ewm.git
synced 2025-03-19 08:30:51 +00:00
Minor comment fixes
This commit is contained in:
parent
c3d33dba2c
commit
b99de0f3cd
@ -282,6 +282,7 @@ static int ewm_two_init(struct ewm_two_t *two, int type, SDL_Renderer *renderer,
|
||||
break;
|
||||
}
|
||||
|
||||
// Apple ][+ / Apple Language Card / Disk II Card with 2 drives
|
||||
case EWM_TWO_TYPE_APPLE2PLUS: {
|
||||
two->cpu = cpu_create(EWM_CPU_MODEL_6502);
|
||||
|
||||
@ -290,8 +291,8 @@ static int ewm_two_init(struct ewm_two_t *two, int type, SDL_Renderer *renderer,
|
||||
two->roms[1] = cpu_add_rom_file(two->cpu, 0xd800, "rom/341-0012.bin"); // AppleSoft BASIC D800
|
||||
two->roms[2] = cpu_add_rom_file(two->cpu, 0xe000, "rom/341-0013.bin"); // AppleSoft BASIC E000
|
||||
two->roms[3] = cpu_add_rom_file(two->cpu, 0xe800, "rom/341-0014.bin"); // AppleSoft BASIC E800
|
||||
two->roms[4] = cpu_add_rom_file(two->cpu, 0xf000, "rom/341-0015.bin"); // AppleSoft BASIC E800
|
||||
two->roms[5] = cpu_add_rom_file(two->cpu, 0xf800, "rom/341-0020.bin"); // AppleSoft BASIC Autostart Monitor F8000
|
||||
two->roms[4] = cpu_add_rom_file(two->cpu, 0xf000, "rom/341-0015.bin"); // AppleSoft BASIC F000
|
||||
two->roms[5] = cpu_add_rom_file(two->cpu, 0xf800, "rom/341-0020.bin"); // Autostart Monitor F800
|
||||
two->iom = cpu_add_iom(two->cpu, 0xc000, 0xc07f, two, ewm_two_iom_read, ewm_two_iom_write);
|
||||
|
||||
two->dsk = ewm_dsk_create(two->cpu);
|
||||
|
Loading…
x
Reference in New Issue
Block a user