picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 97099f0cf5123774bc02b88f0dfb919928c596f7
parent 88ae2476f3ce0b0edbc655613a5d29ff57fe627e
Author: Alexander Burger <abu@software-lab.de>
Date:   Mon, 15 Oct 2012 17:54:36 +0200

emu64 continued
Diffstat:
Msrc64/arch/emu.l | 15+++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/src64/arch/emu.l b/src64/arch/emu.l @@ -750,13 +750,21 @@ (wifsignaledS_F -) (wtermsigS_A n) ) -(de ccArg (P S O) +(de ccArg (P S O P2) (case P (p (op.p S O)) (n (op.n S O)) (i (op.i S O)) (f (sysFun S O)) - (a (pack "(void*)" (op.a S O))) + (lea + (pack + (and + P2 + (n== 'p P2) + (if (num? P2) + "(void*)" + (pack "(" P2 "*)") ) ) + (op.a S O) ) ) (T (nond (P (op.i S O)) @@ -797,9 +805,8 @@ (ccArg (pop 'P) '("S" . -8) '(NIL . 0)) ")" ) ) ) (Lea - (pop 'P) (off Lea) - (cons (ccArg 'a S O)) ) + (cons (ccArg 'lea S O (pop 'P))) ) (T (cons (ccArg (pop 'P) S O))) ) ) Arg M ) ) )