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)) mov (%si),%ax # ax = Car(Cdr(e))
EvalPrint: EvalPrint:
call Eval call Eval
push %ax
push %dx push %dx
xchg %ax,%si xchg %ax,%si
call PrintObject call PrintObject
xchg %dx,%ax
pop %dx pop %dx
pop %ax
ret ret
Read: push %dx Read: push %dx