plugins: change return codes of geany_load_module() and GeanyPluginFuncs::init
[geany-mirror.git] / tests / ctags / masm.asm
blob76fbc4ff5c568f9138d3e200186c4319fed38161
1 .MODEL medium
2 .DATA
3 Msg DB "Text string"
4 .CODE
5 QUACK PROC PUBLIC
6 enter 0, 0 ; May be an instruction or a macro
7 mov bx, OFFSET DGROUP:Msg
8 mov bx, [bp+6]
9 mov WORD PTR [bx], ax
10 leave
11 ret 2
12 QUACK ENDP
13 END
15 myequ EQU 3
16 myequal = 4
18 ; http://www.xploiter.com/mirrors/asm/asm_1.htm
19 hllequal := 4
21 BYTE_BUFFER LABEL BYTE
22 WORD_BUFFER DW 512 dup (?)
24 mov bx, ax
25 LabelMaker1:
26 xor ax, ax
27 LabelMaker2:
29 mymacro macro args
30 endm
32 mystruct struct
33 ends