Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv30707
Modified Files:
z80.tran
Log Message:
wrote the |$add %ix %bc|, |$add %ix %de|, |$add %ix %ix|, and |$add %ix %sp| macros for z80
Index: z80.tran
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/z80.tran,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- z80.tran 20 May 2003 20:17:12 -0000 1.1
+++ z80.tran 20 May 2003 20:30:13 -0000 1.2
@@ -10,4 +10,9 @@
:regs ireg %ix %iy ;
+:[ %ix %bc ] $add drop drop #xDD b, #x09 b, ;
+:[ %ix %de ] $add drop drop #xDD b, #x19 b, ;
+:[ %ix %ix ] $add drop drop #xDD b, #x29 b, ;
+:[ %ix %sp ] $add drop drop #xDD b, #x39 b, ;
+
\ vim: ft=tran
|