From 9ca97d2ea70f152a0806a6eb91f3c44dab4274d8 Mon Sep 17 00:00:00 2001 From: Hikaru Ikuta Date: Thu, 6 Jan 2022 13:23:54 +0900 Subject: [PATCH] Shave two bytes --- sectorlisp.S | 2 -- 1 file changed, 2 deletions(-) diff --git a/sectorlisp.S b/sectorlisp.S index 6dbcab3..f01f17a 100644 --- a/sectorlisp.S +++ b/sectorlisp.S @@ -109,10 +109,8 @@ PrintObject: # PrintObject(x:si) Print: test %si,%si jz NewLine mov (%si),%si # ax = Car(Cdr(e)) - push %dx call PrintObject xchg %dx,%ax - pop %dx ret NewLine:mov $'\r',%al