mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-26 09:28:07 +00:00
21 lines
314 B
NASM
21 lines
314 B
NASM
|
bits 64
|
||
|
|
||
|
global _start
|
||
|
|
||
|
section .text
|
||
|
|
||
|
_start:
|
||
|
nop
|
||
|
mov rax, 0x1122334455667788
|
||
|
db 0x66
|
||
|
bswap eax
|
||
|
|
||
|
nop
|
||
|
mov rax, 0x1122334455667788
|
||
|
bswap eax
|
||
|
|
||
|
nop
|
||
|
mov rax, 0x1122334455667788
|
||
|
bswap rax
|
||
|
|
||
|
int3
|