mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-01-07 22:00:54 +00:00
19 lines
253 B
NASM
19 lines
253 B
NASM
|
|
||
|
bits 32
|
||
|
|
||
|
call $+5
|
||
|
pop ebp
|
||
|
sub ebp, 5
|
||
|
|
||
|
lea eax, [ebp + dest]
|
||
|
mov dword [ebp + t_offset], eax
|
||
|
|
||
|
call far [ebp + t_offset]
|
||
|
|
||
|
dest:
|
||
|
int3
|
||
|
|
||
|
t_offset dd 0x0
|
||
|
t_segment dw 0x33
|
||
|
|