hello_tasm.asm

来自「里面包含了N个病毒代码.汇编.c++/c编写」· 汇编 代码 · 共 24 行

ASM
24
字号
;
; tasm32 /ml /m5 test.asm
; tlink32 -Tpe -aa test.obj ,,, import32.lib
;

        ideal
        p586
        model   use32 flat

extrn   MessageBoxA:near

        dataseg
str_hello       db      'Hello',0

        codeseg
__start:
        push    0
        push    offset str_hello
        push    offset str_hello
        push    0
        call    MessageBoxA
        ret

        end     __start

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?