mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
16 lines
348 B
NASM
16 lines
348 B
NASM
;Testname=amx; Arguments=-fbin -oamx.bin -O0 -DSRC; Files=stdout stderr amx.bin
|
|
|
|
%macro testcase 2
|
|
%ifdef BIN
|
|
db %1
|
|
%endif
|
|
%ifdef SRC
|
|
%2
|
|
%endif
|
|
%endmacro
|
|
|
|
|
|
bits 64
|
|
|
|
testcase { 0xc4, 0xe2, 0x7b, 0x5c, 0xd1 }, { {vex} TDPFP16PS tmm2, tmm1, tmm0 }
|