Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/x86/rfxrlgr1_x86.asm')
-rw-r--r--src/x86/rfxrlgr1_x86.asm25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/x86/rfxrlgr1_x86.asm b/src/x86/rfxrlgr1_x86.asm
deleted file mode 100644
index 8441051..0000000
--- a/src/x86/rfxrlgr1_x86.asm
+++ /dev/null
@@ -1,25 +0,0 @@
-
-section .data
- const1 times 8 dw 1
-
-%macro PROC 1
- align 16
- global %1
- %1:
-%endmacro
-
-;int
-;diff_rlgr1_x86(sint16 *co, int num_co, uint8 *dst, int dst_bytes);
-
-PROC diff_rlgr1_x86
- push ebx
- push esi
- push edi
-
- mov eax, 0
- pop edi
- pop esi
- pop ebx
- ret
- align 16
-