Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cx16] Add missing emulator registers #367

Merged
merged 1 commit into from
Sep 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions mos-platform/cx16/cx16.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down