Blob Blame History Raw
From f3d898d6a3e2f5a595e542c5fb27c06fd3e21fad Mon Sep 17 00:00:00 2001
From: Greg King <gregdk@users.sf.net>
Date: Tue, 15 Oct 2019 12:10:34 -0400
Subject: [PATCH 075/170] Added the GIF switch to the X16 emulator's control
 port.

---
 asminc/cx16.inc | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/asminc/cx16.inc b/asminc/cx16.inc
index 6f3f1c73..5b46908d 100644
--- a/asminc/cx16.inc
+++ b/asminc/cx16.inc
@@ -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
-- 
2.26.0