当前位置: 首页 > 工具软件 > FASM > 使用案例 >

汇编,永远的王者.fasm.

沈鸿光
2023-12-01

; example of simplified Windows programming using complex macro features

include 'win32ax.inc' ; you can simply switch between win32ax, win32wx, win64ax and win64wx here

.code

  开始:

        invoke  MessageBox,HWND_DESKTOP,"你好啊",invoke GetCommandLine,MB_YESNO

        .if eax = IDYES
                invoke  MessageBox,HWND_DESKTOP,"啊啊啊","Hello!",MB_OK
        .endif

        invoke  ExitProcess,0
.end 开始

fasm 编译.这才是好东西.一下就成功了.不需要utf8.gbk就行.

 类似资料: