mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-01-06 13:21:00 +00:00
14 lines
201 B
NASM
14 lines
201 B
NASM
bits 64
|
|
|
|
global _start
|
|
|
|
section .text
|
|
|
|
_start:
|
|
xor eax, eax
|
|
mov rcx, 0xffffffffffffffff
|
|
mov rbx, 0x0000000011111111
|
|
|
|
cmovnz ecx, ebx
|
|
|
|
int3 |