Comments/docs: Solid Apple not Closed Apple

This commit is contained in:
Joshua Bell 2018-11-19 20:27:40 -08:00
parent 7c1ead2a8e
commit b9608fceb2
2 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ moving them to the appropriate destination in aux/banked/main memory.
There's fourth chunk of code, which expects to live at $280 so it There's fourth chunk of code, which expects to live at $280 so it
can't co-exist with the Invoker; it may be temporary code, as there is can't co-exist with the Invoker; it may be temporary code, as there is
no sign that it is ever moved into place. It's also unclear how it no sign that it is ever moved into place. It's also unclear how it
would be hooked in. The routine detects OA+CA+P and prints the DHR would be hooked in. The routine detects OA+SA+P and prints the DHR
screen to an ImageWriter II printer attached to Slot 1. (This may have screen to an ImageWriter II printer attached to Slot 1. (This may have
been used to produce screenshots during development for manuals.) been used to produce screenshots during development for manuals.)

View File

@ -464,9 +464,9 @@ flag: .byte $00
;; Handle accelerator keys ;; Handle accelerator keys
handle_keydown: handle_keydown:
lda event_modifiers lda event_modifiers
bne :+ ; either OA or CA ? bne :+ ; either OA or SA ?
jmp menu_accelerators ; nope jmp menu_accelerators ; nope
: cmp #3 ; both OA + CA ? : cmp #3 ; both OA + SA ?
bne :+ ; nope bne :+ ; nope
rts rts