Update of /project/movitz/cvsroot/movitz/losp/muerte In directory common-lisp.net:/tmp/cvs-serv13312
Modified Files: characters.lisp Log Message: Cleaned up most ":int 107" instances. Now, we mostly use the semi-standardized ":int 64" which means that the value in EAX wasn't integer. The default interrupt-handler understands this and signals the appropriate error.
Date: Tue Jul 20 01:54:00 2004 Author: ffjeld
Index: movitz/losp/muerte/characters.lisp diff -u movitz/losp/muerte/characters.lisp:1.3 movitz/losp/muerte/characters.lisp:1.4 --- movitz/losp/muerte/characters.lisp:1.3 Sun Apr 18 16:16:44 2004 +++ movitz/losp/muerte/characters.lisp Tue Jul 20 01:54:00 2004 @@ -10,7 +10,7 @@ ;;;; Author: Frode Vatvedt Fjeld frodef@acm.org ;;;; Created at: Mon Feb 5 19:05:01 2001 ;;;; -;;;; $Id: characters.lisp,v 1.3 2004/04/18 23:16:44 ffjeld Exp $ +;;;; $Id: characters.lisp,v 1.4 2004/07/20 08:54:00 ffjeld Exp $ ;;;; ;;;;------------------------------------------------------------------
@@ -33,7 +33,7 @@ (with-inline-assembly (:returns :eax) (:compile-form (:result-mode :eax) code) (:testb #.movitz::+movitz-fixnum-zmask+ :al) - (:jnz '(:sub-program (not-fixnum) (:int 107))) + (:jnz '(:sub-program (not-fixnum) (:int 64))) (:shll #.(cl:- 8 movitz::+movitz-fixnum-shift+) :eax) (:movb #.(movitz::tag :character) :al)))