能力值:
( LV9,RANK:380 )
|
-
-
2 楼
到aogo的网站去下载他的masmplus,http://www.aogosoft.com/masmplus/ 然后把下面代码存为test.asm文件,然后打开,编译,你会发现一个框:
.386
.model flat, stdcall
option casemap:none
include windows.inc
include kernel32.inc
include user32.inc
includelib kernel32.lib
includelib user32.lib
.data
szBuff db "test",0
.code
start:
invoke MessageBox,NULL,addr szBuff,NULL,MB_OK
invoke ExitProcess,0
end start
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
谢谢,出来一个框子
显示的test
|
|
|