Merge pull request #544 from ISSOtm/atomic_ind

Split register-indirect tokens
This commit is contained in:
Eldred Habert
2020-08-05 10:52:18 +02:00
committed by GitHub
4 changed files with 41 additions and 27 deletions

View File

@@ -155,6 +155,8 @@ ENDM
ld [$ABCD],a
ldh [$ff00+$DB],a
ld [$ff00+c],a
ld [$ff00 + c],a
ldh [c],a
ld a,[bc]
ld a,[de]
@@ -162,11 +164,17 @@ ENDM
ld a,[$ABCD]
ldh a,[$ff00+$DB]
ld a,[$ff00+c]
ld a,[$ff00 + c]
ldh a,[c]
ld [hl+],a
ld [hli],a
ld [hl-],a
ld [hld],a
ld a,[hl+]
ld a,[hli]
ld a,[hl-]
ld a,[hld]
; Jumps and Subroutines

Binary file not shown.