mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-15 03:59:39 +00:00
21 lines
517 B
NASM
21 lines
517 B
NASM
PUBLIC AsmTest
|
|
|
|
.code _text
|
|
|
|
;------------------------------------------------------------------------
|
|
; Note : Right-click the .asm file, Properties, change Item Type to
|
|
; "Microsoft Macro Assembler" if it didn't compile
|
|
;------------------------------------------------------------------------
|
|
|
|
;------------------------------------------------------------------------
|
|
|
|
AsmTest PROC
|
|
|
|
nop
|
|
ret
|
|
|
|
AsmTest ENDP
|
|
|
|
;------------------------------------------------------------------------
|
|
|
|
END
|