Update of /cvsroot/vba/VisualBoyAdvance/src/i386
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2491/src/i386
Modified Files:
2xSaImmx.asm
Log Message:
updated to final version
Index: 2xSaImmx.asm
===================================================================
RCS file: /cvsroot/vba/VisualBoyAdvance/src/i386/2xSaImmx.asm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** 2xSaImmx.asm 4 Nov 2003 14:08:22 -0000 1.2
--- 2xSaImmx.asm 20 Jun 2006 11:35:21 -0000 1.3
***************
*** 1,39 ****
;/*---------------------------------------------------------------------*
; * The following (piece of) code, (part of) the 2xSaI engine, *
! ; * copyright (c) 1999 - 2001 by Derek Liauw Kie Fa. *
! ; * Non-Commercial use of this software is allowed and is encouraged, *
! ; * provided that appropriate credit be given. *
; * You may freely modify this code, but I request *
; * that any improvements to the engine be submitted to me, so *
; * that I can implement these improvements in newer versions of *
! ; * the software. *
; * If you need more information, have any comments or suggestions, *
[...1086 lines suppressed...]
! TRUE dd 0xffffffff,0xffffffff
! ONE dd 0x00010001,0x00010001
--- 2037,2051 ----
;-------------------------------------------------------------------------
! SECTION .data ALIGN = 32
;Some constants
! colorMask dd 0xF7DEF7DE, 0xF7DEF7DE
! lowPixelMask dd 0x08210821, 0x08210821
! qcolorMask dd 0xE79CE79C, 0xE79CE79C
! qlowpixelMask dd 0x18631863, 0x18631863
! FALSE dd 0x00000000, 0x00000000
! TRUE dd 0xffffffff, 0xffffffff
! ONE dd 0x00010001, 0x00010001
|