From c9188a288dbc28a29fa94b10860ec69a28b2d62f Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 10 Jan 2018 15:14:07 -0600 Subject: [PATCH] Reset should change the video mode to 40 column text --- src/apple2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apple2.c b/src/apple2.c index 4a11ca3..50d00c4 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -215,6 +215,8 @@ apple2_reset(apple2 *mach) mach->cpu->P = MOS_INTERRUPT; mach->cpu->PC = vm_segment_get16(mach->memory, 0xFFFC); mach->cpu->S = 0; + + apple2_set_video(VIDEO_40COL_TEXT); } /*