/usr/share/codeblocks/lexers/lexer_A68k.sample is in codeblocks-common 13.12-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | include "kernel.h"
xdef _main
xdef _ti89 ; \author : 0xF01C0
Foo macro
move.w \1,\\@
bra.s \\@Plop
\\@: dc.w 0
endm
\\@Plop:
_main: movem.l d3-d7/a2-a6,-(sp)
move.w #~$12AB,d0 ; I don't know why I set this value...
move.l #-%1010,2(pc,a0.w) ; FIXME: It should crash ?
lea (a0),fp
jbsr \Push
dc.b "Hello world!",0
\Push: jsr tios::ST_helpMsg
addq.l #4,sp
movem.l (sp)+,d3-d7/a2-a6
move.b #'a',d0
rts
|