Shave one byte

This commit is contained in:
Hikaru Ikuta 2022-01-06 11:40:51 +09:00
parent 829ed4f398
commit 72b037de93

View file

@ -109,12 +109,11 @@ Print: mov (%si),%si # si = Cdr(e)
mov (%si),%ax # ax = Car(Cdr(e))
EvalPrint:
call Eval
push %ax
push %dx
xchg %ax,%si
call PrintObject
xchg %dx,%ax
pop %dx
pop %ax
ret
Read: push %dx