能力值:
( LV2,RANK:10 )
|
-
-
2 楼
终于搞定了:
.386
.model flat, stdcall
option casemap :none
include windows.inc
.CODE
text1 textequ <123>
text2 textequ <456>
txt macro arg
dd text&arg
endm
abcd macro
local i
i = 1
repeat 2
txt %i
i = i + 1
endm
endm
START:
abcd
end START
|
|
|