From 776989334b975998718cece45b8d1da4e988e18d Mon Sep 17 00:00:00 2001 From: Mikael Lund Date: Mon, 16 Sep 2024 01:08:40 +0200 Subject: [PATCH] Add missing emulator registers (#367) --- mos-platform/cx16/cx16.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mos-platform/cx16/cx16.h b/mos-platform/cx16/cx16.h index e82bf541..c57ebd8c 100644 --- a/mos-platform/cx16/cx16.h +++ b/mos-platform/cx16/cx16.h @@ -371,8 +371,9 @@ struct __emul { unsigned char keyboard; /* Boolean: displaying typed keys */ unsigned char echo; /* How to send Kernal output to host */ unsigned char save_on_exit; /* Boolean: save machine state on exit */ - unsigned char gif_method; /* How GIF movie is being recorded */ - unsigned char const unused1[2]; + unsigned char gif_method; /* Control GIF (0=pause; 1=single; 2=resume) */ + unsigned char wav_method; /* Control WAV (0=pause; 1=record; 2=autostart) */ + unsigned char cmd_key_off; /* Boolean: disable emulator command keys */ unsigned long const cycle_count; /* Running total of CPU cycles (8 MHz.) */ unsigned char const unused2[1]; unsigned char const keymap; /* Keyboard layout number */