mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
09a5a243bf
Signed-off-by: Roy Oursler <roy.j.oursler@intel.com> Reviewed-by: Greg Tucker <greg.b.tucker@intel.com>
25 lines
619 B
NASM
25 lines
619 B
NASM
; <COPYRIGHT_TAG>
|
|
|
|
default rel
|
|
[bits 64]
|
|
|
|
%ifidn __OUTPUT_FORMAT__, elf64
|
|
%define WRT_OPT wrt ..plt
|
|
%else
|
|
%define WRT_OPT
|
|
%endif
|
|
|
|
%include "reg_sizes.asm"
|
|
|
|
extern decode_huffman_code_block_stateless_base
|
|
extern decode_huffman_code_block_stateless_01
|
|
extern decode_huffman_code_block_stateless_04
|
|
|
|
section .text
|
|
|
|
%include "multibinary.asm"
|
|
|
|
|
|
mbin_interface decode_huffman_code_block_stateless
|
|
mbin_dispatch_init5 decode_huffman_code_block_stateless, decode_huffman_code_block_stateless_base, decode_huffman_code_block_stateless_01, decode_huffman_code_block_stateless_01, decode_huffman_code_block_stateless_04
|