diff options
| author | SND\dario86_cp <SND\dario86_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-04-14 11:39:27 +0000 |
|---|---|---|
| committer | SND\dario86_cp <SND\dario86_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-04-14 11:39:27 +0000 |
| commit | 4bf6253973b7a89fb4697e5e55f822a086cf7951 (patch) | |
| tree | 7662a960eb59cdf4ade180c53e1a9957925faf47 /plugins/gxvideo/i386.asm | |
| parent | bebb814b152e3789789d6084067dc5ba25bb7416 (diff) | |
| download | pcsxr-4bf6253973b7a89fb4697e5e55f822a086cf7951.tar.gz | |
Removed GXVideo plugin as per original author suggestion.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@77475 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/gxvideo/i386.asm')
| -rw-r--r-- | plugins/gxvideo/i386.asm | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/plugins/gxvideo/i386.asm b/plugins/gxvideo/i386.asm deleted file mode 100644 index 86d6e231..00000000 --- a/plugins/gxvideo/i386.asm +++ /dev/null @@ -1,67 +0,0 @@ -; i386.asm - description -; ------------------- -; begin : Sun Nov 08 2001 -; copyright : (C) 2001 by Pete Bernert -; email : BlackDove@addcom.de - -; ported from inline gcc to nasm by linuzappz - - -; This program is free software; you can redistribute it and/or modify * -; it under the terms of the GNU General Public License as published by * -; the Free Software Foundation; either version 2 of the License, or * -; (at your option) any later version. See also the license.txt file for * -; additional informations. * - - -bits 32 - -section .text - -%include "macros.inc" - -NEWSYM i386_BGR24to16 - push ebp - mov ebp, esp - push ebx - push edx - - mov eax, [ebp+8] ; this can hold the G value - mov ebx, eax ; this can hold the R value - mov edx, eax ; this can hold the B value - shr ebx, 3 ; move the R value - and edx, 00f80000h ; mask the B value - shr edx, 9 ; move the B value - and eax, 00f800h ; mask the G value - shr eax, 6 ; move the G value - and ebx, 0000001fh ; mask the R value - or eax, ebx ; add R to G value - or eax, edx ; add B to RG value - pop edx - pop ebx - mov esp, ebp - pop ebp - ret - -NEWSYM i386_shl10idiv - push ebp - mov ebp, esp - push ebx - push edx - - mov eax, [ebp+8] - mov ebx, [ebp+12] - mov edx, eax - shl eax, 10 - sar edx, 22 - idiv ebx - - pop edx - pop ebx - mov esp, ebp - pop ebp - ret -%ifidn __OUTPUT_FORMAT__,elf -section .note.GNU-stack noalloc noexec nowrite progbits -%endif - |
