From 6b294f4bbc62763b8c88893b4151ab1a713a3c50 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sun, 15 Oct 2017 20:28:50 -0700 Subject: [PATCH] Identify SET_KBD_FLAG --- a2d.inc | 4 ++++ desktop/s123_aux.s | 23 +++++++++++++++-------- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/a2d.inc b/a2d.inc index e543c1b..27d76e8 100644 --- a/a2d.inc +++ b/a2d.inc @@ -259,6 +259,10 @@ A2D_SET_INPUT := $2D ; Set pending input state (mouse or keyboard) ;; .word xcoord ;; .word ycoord +A2D_SET_KBD_FLAG := $2E ; When set, keyboard is ignored in $29 calls + ;; (input length 1 byte) + ;; .byte flag high bit set = ignore keyboard, otherwise check + A2D_SET_MENU := $30 ; Configure (and draw) menu ;; (input not copied) ;; .word count Number of top-level menus diff --git a/desktop/s123_aux.s b/desktop/s123_aux.s index ad4cba2..a3df921 100644 --- a/desktop/s123_aux.s +++ b/desktop/s123_aux.s @@ -331,7 +331,7 @@ a2d_jump_table: .addr CALL_2B_IMPL ; $2B .addr L65D4 ; $2C .addr SET_INPUT_IMPL ; $2D SET_INPUT - .addr L6814 ; $2E + .addr SET_KBD_FLAG_IMPL ; $2E SET_KBD_FLAG .addr L6ECD ; $2F .addr SET_MENU_IMPL ; $30 SET_MENU .addr MENU_CLICK_IMPL ; $31 MENU_CLICK @@ -419,7 +419,7 @@ param_lengths: PARAM_DEFN 0, $00, 0 ; $2B PARAM_DEFN 0, $00, 0 ; $2C PARAM_DEFN 5, $82, 0 ; $2D SET_INPUT - PARAM_DEFN 1, $82, 0 ; $2E + PARAM_DEFN 1, $82, 0 ; $2E SET_KBD_FLAG PARAM_DEFN 4, $82, 0 ; $2F PARAM_DEFN 0, $00, 0 ; $30 SET_MENU PARAM_DEFN 0, $00, 0 ; $31 MENU_CLICK @@ -4598,7 +4598,7 @@ L666D: bit mouse_status bmi end ; minus = is down - bit L6813 + bit check_kbd_flag bpl L66B9 lda L7D74 bne L66B9 @@ -4779,12 +4779,19 @@ L6811: clc ;;; 1 byte of params, copied to $82 -L6813: .byte $80 -L6814: - asl L6813 - ror $82 - ror L6813 +check_kbd_flag: .byte $80 + +.proc SET_KBD_FLAG_IMPL + params := $82 + + asl check_kbd_flag + ror params + ror check_kbd_flag rts +.endproc + +;;; ================================================== + L681D: .byte $02 L681E: .byte $09