Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv14274
Modified Files:
Makefile.am
Added Files:
i80486.tran pentium.tran
Log Message:
introduced i80486.tran and pentium.tran
--- NEW FILE: i80486.tran ---
\\\\ i80486 - Intel's 80486 instructions
\
\ Copyleft © 2003 by Andres Soolo (di...@us...)
\ This file is licensed under the GNU GPL v2. If you
\ don't know what that means, please do read the GPL.
\
\\\\ @(#) $Id: i80486.tran,v 1.1 2003/05/18 14:37:03 digg Exp $
include i80386
\ i80486 doesn't add many instructions.
\ This file is still incomplete, however.
:[ reg32 ] $bswap $o32 #x0F b, minor #xC8 + b, ;
:[ ] $invd #x0F b, #x08 b, ;
\ vim: ft=tran
--- NEW FILE: pentium.tran ---
\\\\ pentium.tran - Intel Pentium instructions
\
\ Copyleft © 2003 by Andres Soolo (di...@us...)
\ This file is licensed under the GNU GPL v2. If you
\ don't know what that means, please do read the GPL.
\
\\\\ @(#) $Id: pentium.tran,v 1.1 2003/05/18 14:37:03 digg Exp $
include i80486
:regs mmxreg %mm0 %mm1 %mm2 %mm3 %mm4 %mm5 %mm6 %mm7 ;
:[ ] $cpuid #x0F b, #xA2 b, ;
\ vim: ft=tran
Index: Makefile.am
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/Makefile.am,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- Makefile.am 17 May 2003 14:54:41 -0000 1.22
+++ Makefile.am 18 May 2003 14:37:03 -0000 1.23
@@ -8,7 +8,7 @@
EXTRA_DIST = .cvsignore .pycheckrc struburn.wisp bits.py linkie.py \
coff.py elf.py pe.py \
- i8086.tran i80386.tran ia16.tran ia32.tran \
+ i8086.tran i80386.tran i80486.tran pentium.tran ia16.tran ia32.tran \
coff.tran elf.tran mz.tran pe.tran \
winapi.tran \
hello.tran mswhello.tran \
|