mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-02-03 02:30:55 +00:00
31 lines
433 B
NASM
31 lines
433 B
NASM
|
bits 64
|
||
|
|
||
|
global _start
|
||
|
|
||
|
section .text
|
||
|
|
||
|
_start:
|
||
|
nop
|
||
|
|
||
|
mov rax, -1
|
||
|
mov rdx, -2
|
||
|
imul rdx
|
||
|
|
||
|
mov rax, -1
|
||
|
mov rdx, 2
|
||
|
imul rdx
|
||
|
|
||
|
mov rax, 1
|
||
|
mov rdx, 2
|
||
|
imul rdx
|
||
|
|
||
|
mov rax, 0x7fffffffffffffff
|
||
|
mov rdx, 2
|
||
|
imul rdx
|
||
|
|
||
|
mov rax, 0x7fffffffffffffff
|
||
|
mov rdx, 4
|
||
|
imul rdx
|
||
|
|
||
|
|
||
|
int3
|