mirror of
https://github.com/samsonjs/sectorlisp.git
synced 2026-03-25 09:05:48 +00:00
Merge pull request #17 from woodrush/fix-eq
Fix bug for `EQ` where a null string is printed
This commit is contained in:
commit
39ef281e64
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ Pairlis:test %di,%di # Pairlis(x:di,y:si,a:dx):dx
|
|||
.ifCons:mov (%bx,%si),%si # si = Cdr(x)
|
||||
lodsw # si = Cadr(x)
|
||||
je Cons
|
||||
.isEq: xor %ax,%di
|
||||
.isEq: xor %di,%ax
|
||||
jne .retF
|
||||
.retT: mov $kT,%al
|
||||
ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue