Skip to content

Commit

Permalink
Fixed bug with raw() command, one of the to-dos of issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeda committed Dec 27, 2019
1 parent e2a0c6e commit c011e5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/parsnip.z80
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ eval_raw:
push hl
call pop_end_of_params
pop de
ld hl,(operandstack_ptr)
; ld hl,(operandstack_ptr)
push hl
call ConvHex
pop bc
Expand Down Expand Up @@ -1544,14 +1544,14 @@ pop_operand:

pop_to_variable_size:
ex de,hl
ld a,c
dec hl
ld e,a
ld b,(hl)
dec hl
ld c,(hl)
or a
sbc hl,bc
ld a,e
ld (operandstack_ptr),hl
ex de,hl
ret

Expand Down

0 comments on commit c011e5b

Please sign in to comment.