⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hello_tasm.asm

📁 里面包含了N个病毒代码.汇编.c++/c编写
💻 ASM
字号:
;
; 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -