annotate level1/atari/bootfiles/makefile @ 2720:482a547d5155 lwtools-port

Fixed so OP_DWINIT puts response in globals OP_SETTIME not sent unless response from OP_DWINIT from server is 128
author Boisy Pitre <boisy.pitre@nuance.com>
date Thu, 26 Jul 2012 12:19:43 -0500
parents bd80482517a5
children 05b648103e78
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
1 PORT = atari
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
3
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
4 # Module directory
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
5 MD = ../modules
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
6 # Commands directory
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
7 CD = ../cmds
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
8
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
9 DEPENDS = ./makefile
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
10
2710
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
11 RBDW3 = $(MD)/rbdw3.dr \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
12 $(MD)/ddx0.dd $(MD)/x1.dd $(MD)/x2.dd $(MD)/x3.dd
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
13 SCDWV_NET = $(MD)/n_scdwv.dd $(MD)/n1_scdwv.dd $(MD)/n2_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
14 $(MD)/n3_scdwv.dd $(MD)/n4_scdwv.dd $(MD)/n5_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
15 $(MD)/n6_scdwv.dd $(MD)/n7_scdwv.dd $(MD)/n8_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
16 $(MD)/n9_scdwv.dd $(MD)/n10_scdwv.dd $(MD)/n11_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
17 $(MD)/n12_scdwv.dd $(MD)/n13_scdwv.dd $(MD)/midi_scdwv.dd
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
18 SCDWV_WIN = $(MD)/z1_scdwv.dd $(MD)/z2_scdwv.dd $(MD)/z3_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
19 $(MD)/z4_scdwv.dd $(MD)/z5_scdwv.dd $(MD)/z6_scdwv.dd \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
20 $(MD)/z7_scdwv.dd
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
21 SCDWP = $(MD)/scdwp.dr $(MD)/p_scdwp.dd
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
22
2649
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
23 # IMPORTANT! KRN MUST BE THE LAST MODULE IN BOOTFILE_P1!!
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
24 BOOTFILE_P1 = $(MD)/krnp2 $(MD)/init $(MD)/ioman $(MD)/sysgo \
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
25 $(MD)/dw3.sb \
2654
4036f8e844a7 Level 2 now has its own clock source again
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2653
diff changeset
26 $(MD)/clock_60hz $(MD)/clock2_dw3 \
2649
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
27 $(MD)/krn
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
28
2710
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
29 BOOTFILE_P2 = $(MD)/scf.mn \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
30 $(MD)/vtio.dr $(MD)/term.dt \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
31 $(MD)/rbf.mn \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
32 $(RBDW3) \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
33 $(MD)/scdwv.dr \
ab3a2531c000 Fixed makefiles and assembly for ATARI port
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2654
diff changeset
34 $(SCDWV_NET) \
2720
482a547d5155 Fixed so OP_DWINIT puts response in globals
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2716
diff changeset
35 $(SCDWV_WIN) \
2644
c953f1a62a67 Updated liber809 boot ROM to show screen and text...
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2640
diff changeset
36 $(CD)/shell_21
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
37
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
38 BOOTFILES = bootfile
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
39
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
40 ALLOBJS = $(BOOTFILES)
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
41
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
42 all: $(ALLOBJS)
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
43
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
44 bootfile: $(BOOTFILE_P1) $(BOOTFILE_P2) $(DEPENDS)
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
45 $(MERGE) $(BOOTFILE_P1)>$@_p1
2649
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
46 ls -l $@_p1
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
47 $(PADROM) -b 7168 $@_p1
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
48 $(PADROM) -b 9216 $@_p1
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
49 $(MERGE) $(BOOTFILE_P2)>$@_p2
2649
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
50 ls -l $@_p2
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
51 $(MERGE) $@_p2 $@_p1>$@
2649
928b4a062979 Atari: Made mods to the kernel to boot with new Liber809 firmware
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2645
diff changeset
52 $(PADROM) -b 29696 $@
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
53
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
54 clean:
2720
482a547d5155 Fixed so OP_DWINIT puts response in globals
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2716
diff changeset
55 $(RM) $(ALLOBJS) $(BOOTFILE_P1) $(BOOTFILE_P2)
2629
65b1b5c80fec Added bootfiles folder
Boisy Pitre <boisy.pitre@nuance.com>
parents:
diff changeset
56