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

rfxrlgr1_amd64.asm « amd64 « src - github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c80678f8e41a6b2e680003c0389ff24d499928c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

section .data
    const1 times 8 dw 1

%macro PROC 1
    align 16
    global %1
    %1:
%endmacro

;int
;diff_rlgr1_amd64(sint16 *co, int num_co, uint8 *dst, int dst_bytes);

PROC diff_rlgr1_amd64
    ; save registers
    push rbx
    mov rax, 0
    pop rbx
    ret
    align 16