-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_a8_xex.sh
executable file
·50 lines (41 loc) · 1.07 KB
/
make_a8_xex.sh
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
46
47
48
49
64tass --m65xx \
--atari-xex \
--nostart \
-o EFT18Combat.bin \
--list=EFT18Combat.lst \
EFT18Combat.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o EFT18Data.bin \
--list=EFT18Data.lst \
EFT18Data.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o EFT18Interrupt.bin \
--list=EFT18Interrupt.lst \
EFT18Interrupt.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o EFT18Mainline.bin \
--list=EFT18Mainline.lst \
EFT18Mainline.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o EFT18Thinking.bin \
--list=EFT18Thinking.lst \
EFT18Thinking.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o boothead.bin \
boothead.asm
64tass --m65xx \
--atari-xex \
--nostart \
-o bootstrap.bin \
bootstrap.asm
cat boothead.bin EFT18Thinking.bin EFT18Combat.bin EFT18Data.bin EFT18Mainline.bin EFT18Interrupt.bin bootstrap.bin > efront.xex