We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cd46d commit 6c0ae7fCopy full SHA for 6c0ae7f
src/ce/zx0.src
@@ -34,13 +34,12 @@ dzx0t_new_offset_skip:
34
call nc, dzx0t_elias ; obtain offset MSB
35
inc c
36
ret z ; check end marker
37
- ld b, c
38
- ld c, (hl) ; obtain offset LSB
+ ld b, (hl) ; obtain offset LSB
39
inc hl
40
- rr b ; last offset bit becomes first length bit
41
- rr c
42
- push bc
43
- pop iy ; preserve new offset
+ rr c ; last offset bit becomes first length bit
+ rr b
+ ld iyl, b ; preserve new offset
+ ld iyh, c
44
ld bc, 1 ; obtain length
45
call nc, dzx0t_elias
46
inc bc
0 commit comments