1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-11-23 23:32:45 +00:00

Reset should change the video mode to 40 column text

This commit is contained in:
Peter Evans 2018-01-10 15:14:07 -06:00
parent 7f6b8d3587
commit c9188a288d

View File

@ -215,6 +215,8 @@ apple2_reset(apple2 *mach)
mach->cpu->P = MOS_INTERRUPT; mach->cpu->P = MOS_INTERRUPT;
mach->cpu->PC = vm_segment_get16(mach->memory, 0xFFFC); mach->cpu->PC = vm_segment_get16(mach->memory, 0xFFFC);
mach->cpu->S = 0; mach->cpu->S = 0;
apple2_set_video(VIDEO_40COL_TEXT);
} }
/* /*