Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/ce/zx0.src
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,12 @@ dzx0t_new_offset_skip:
call nc, dzx0t_elias ; obtain offset MSB
inc c
ret z ; check end marker
ld b, c
ld c, (hl) ; obtain offset LSB
ld b, (hl) ; obtain offset LSB
inc hl
rr b ; last offset bit becomes first length bit
rr c
push bc
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
ld bc, 1 ; obtain length
call nc, dzx0t_elias
inc bc
Expand Down
Loading