1
This commit is contained in:
Huoji's
2022-04-16 02:27:07 +08:00
parent 025c544ebb
commit 83ed6c77d7
3 changed files with 61 additions and 2 deletions

20
duck.asm Normal file
View File

@@ -0,0 +1,20 @@
.code
extern fake_jmp_end:proc
asm_fake_jmp proc
;int 3;
db 66h
db 0E9h
db 00h
db 00h
db 00h
db 00h
db 90h
db 90h
db 90h
jmp fake_jmp_end
ret
;jmp fake_jmp_end
asm_fake_jmp endp
end