mirror of
https://github.com/bitdefender/bddisasm.git
synced 2024-11-29 19:08:06 +00:00
28 lines
324 B
NASM
28 lines
324 B
NASM
|
bits 64
|
||
|
|
||
|
global _start
|
||
|
|
||
|
section .text
|
||
|
|
||
|
_start:
|
||
|
nop
|
||
|
stc
|
||
|
mov al, 0xFF
|
||
|
adc al, 0xFF
|
||
|
|
||
|
nop
|
||
|
stc
|
||
|
mov al, 0x60
|
||
|
adc al, 0xFF
|
||
|
|
||
|
nop
|
||
|
stc
|
||
|
mov al, 0xFF
|
||
|
adc al, 0x60
|
||
|
|
||
|
nop
|
||
|
stc
|
||
|
mov al, 1
|
||
|
adc al, 0xFE
|
||
|
|
||
|
int3
|