mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
The --bits option makes this pointless. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
35 lines
582 B
NASM
35 lines
582 B
NASM
;Testname=test; Arguments=-fbin -ocrc32.bin; Files=stdout stderr crc32.bin
|
|
|
|
%if __?BITS?__ == 16
|
|
|
|
crc32 eax,cl
|
|
crc32 eax,byte [di]
|
|
crc32 eax,cx
|
|
crc32 eax,word [di]
|
|
crc32 eax,ecx
|
|
crc32 eax,dword [di]
|
|
|
|
%elif __?BITS?__ == 32
|
|
|
|
crc32 eax,cl
|
|
crc32 eax,byte [edi]
|
|
crc32 eax,cx
|
|
crc32 eax,word [edi]
|
|
crc32 eax,ecx
|
|
crc32 eax,dword [edi]
|
|
|
|
%else
|
|
crc32 eax,cl
|
|
crc32 eax,byte [rdi]
|
|
crc32 eax,r9b
|
|
crc32 eax,cx
|
|
crc32 eax,word [rdi]
|
|
crc32 eax,ecx
|
|
crc32 eax,dword [rdi]
|
|
crc32 rax,cl
|
|
crc32 rax,byte [rdi]
|
|
crc32 rax,r9b
|
|
crc32 rax,rcx
|
|
crc32 rax,qword [rdi]
|
|
crc32 rax,r9
|
|
%endif
|