chiark / gitweb /
only autoflush if the message ends with \n
[trains.git] / iwjpictest / test1.asm
1 ; test for globals and res and stuff
2
3                 global fixed
4                 global somewhere
5
6                 include         test.inc
7
8                 udata_acs
9 somewhere       res 1   ; silly variable which gets incremented
10
11                 udata 0x200
12 fixed           res 16
13
14 vectors         code            0
15                 goto            startup
16
17                 code
18
19 startup
20                 call            nothing_much
21                 goto            startup
22
23                 end