mirror of
https://github.com/samsonjs/sectorlisp.git
synced 2026-03-25 09:05:48 +00:00
Fix variable referencing bug in QEMU (#19)
This commit is contained in:
parent
39ef281e64
commit
32dfd00780
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
|
@ -233,7 +233,7 @@ Assoc: mov %dx,%si # Assoc(x:ax,y:dx):ax
|
||||||
mov (%bx,%si),%si
|
mov (%bx,%si),%si
|
||||||
scasw
|
scasw
|
||||||
jne 1b
|
jne 1b
|
||||||
.byte 0xF6 # testb §i8,i16(%bp,%di) jmp Car
|
.byte 0xA9 # shifted ip; read as test, cmp
|
||||||
Cadr: mov (%bx,%di),%di # contents of decrement register
|
Cadr: mov (%bx,%di),%di # contents of decrement register
|
||||||
.byte 0x3C # cmp §scasw,%al (nop next byte)
|
.byte 0x3C # cmp §scasw,%al (nop next byte)
|
||||||
Cdr: scasw # increments our data index by 2
|
Cdr: scasw # increments our data index by 2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue