mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-04 13:38:39 +11:00
Adopted push/pop notation
This commit is contained in:
parent
85cf733279
commit
370c3fa264
@ -19,7 +19,7 @@ smskbdFetchKCA:
|
||||
; Port A TH output, low
|
||||
ld a, 0b11011101
|
||||
out (0x3f), a
|
||||
push hl ; nop, pairs with a pop later
|
||||
push hl ; nop, --> lvl 1
|
||||
in a, (0xdc)
|
||||
; bit 3:0 are our dest bits 3:0. handy...
|
||||
and 0b00001111
|
||||
@ -27,7 +27,7 @@ smskbdFetchKCA:
|
||||
; Port A TH output, high
|
||||
ld a, 0b11111101
|
||||
out (0x3f), a
|
||||
pop hl ; nop, and matches with push
|
||||
pop hl ; nop, <-- lvl 1
|
||||
in a, (0xdc)
|
||||
; bit 3:0 are our dest bits 7:4
|
||||
rlca \ rlca \ rlca \ rlca
|
||||
@ -57,7 +57,7 @@ smskbdFetchKCB:
|
||||
; Port B TH output, low
|
||||
ld a, 0b01110111
|
||||
out (0x3f), a
|
||||
push hl ; nop, matches with pop later
|
||||
push hl ; nop, --> lvl 1
|
||||
in a, (0xdc)
|
||||
; bit 7:6 are our dest bits 1:0
|
||||
rlca \ rlca
|
||||
@ -72,7 +72,7 @@ smskbdFetchKCB:
|
||||
; Port B TH output, high
|
||||
ld a, 0b11110111
|
||||
out (0x3f), a
|
||||
pop hl ; nop, matches earlier push
|
||||
pop hl ; nop, <-- lvl 1
|
||||
in a, (0xdc)
|
||||
; bit 7:6 are our dest bits 5:4
|
||||
rrca \ rrca
|
||||
|
Loading…
Reference in New Issue
Block a user