1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Added the GIF switch to the X16 emulator's control port.

This commit is contained in:
Greg King 2019-10-15 12:10:34 -04:00
parent 55444b8337
commit f3d898d6a3

View File

@ -285,7 +285,7 @@ NMIVec := $0318
.struct VIA2
.org $9F70
PRB .byte
PRA .byte ; NES controller communication
PRA .byte ; NES controller communication
DDRB .byte
DDRA .byte
T1 .word
@ -306,11 +306,12 @@ NMIVec := $0318
.struct EMULATOR
.org $9FB0
DEBUG .byte ; Boolean: debugging enabled
VIDACCESSLOG .byte ; Boolean: log VERA activity
VERALOG .byte ; Boolean: log VERA activity
KEYBOARDLOG .byte ; Boolean: log keyboard data
ECHO .byte ; Boolean: echo enabled
ECHO .byte ; Type of echo that's enabled
SAVEXIT .byte ; Boolean: save on exit
.res $D - $5
KEYMAP .byte ; Current keyboard layout number
DETECT .byte 2 ; If is "16" string, then running on emulator
GIFREC .byte ; Method of recording GIF movie
.org $9FBD
KEYMAP .byte ; Current keyboard layout number (Read-Only)
DETECT .byte 2 ; If is "16" string, then running on emulator (RO)
.endstruct