forked from jedimatt42/ti994a-memtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.asm
45 lines (37 loc) · 830 Bytes
/
header.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ROM header
byte 0xAA, 0x01, 0x00, 0x00
# Start of power-up chain (unused)
data 0x0000
# Start of program chain
data program_record
# Start of DSR chain (unused)
data 0x0000
def mcolor
def scolor
def fcolor
# Color bytes
TEXT 'COLOR'
mcolor:
byte 0x17
scolor:
byte 0x12
fcolor:
byte 0x16
even
# Start of subprogram list (unused)
# This doubles as the terminator of the program chain
program_record:
data program_record2 # Next program chain record
data _start # Entry point for program
nstring "EXP-RAM BURNIN" # Name of program
even
program_record2:
data program_record3 # Next program chain record
data _start2 # Entry point for program
nstring "EXP-RAM TEST" # Name of program
even
program_record3:
data 0x0000
data _start3
nstring "QUICK CHECK"
even