annotate bootman/boot_config.a @ 2811:611715587834 lwtools-port

Updated rules.mak and level1/coco1/bootfiles/makefile Updated the rules.mak file to remove the format entire image related to drivewire server disk images. Updated level1/coco1/bootfiles/makefile to create 3 new bootfile images. These images are stripped down to just the common files needed for vovdg games on os9 level 1. These bootfiles are for becker, dw, and arduino. Also corrected a duplicated dd descriptor when building some bootfiles that had both floppy_40d, floppy_80d, RBDW, RBBECKER, and RBARDUINO. Removed the dd descriptor from each of these sections and made it where the dd descriptor for the specific section was added in the main bootfile list.
author David Ladd <drencor-xeen@users.sf.net>
date Mon, 11 Feb 2013 20:16:24 -0600
parents 2db06bc0742a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2163
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
1 NAM boot_config
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
2 TTL Boot manager configuration
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
3
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
4 PSECT bc,0,0,0,0,boot_config
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
5
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
6 boot_config:
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
7
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
8 * autoboot (1 = yes, 0 = no, use menu)
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
9 cfg_auto: fcb 0
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
10
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
11 * list of booters to be tried (in order, $0000 terminates list)
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
12 * entry format: booter entry point, address, device ID
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
13 cfg_boot: fdb llbt_1773,$FF40,0
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
14 fdb llbt_1773,$FF40,1
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
15 * fdb llbt_tc3,$FF70,0
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
16 * fdb llbt_ide,$FF50,0
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
17 fdb $0000
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
18
2db06bc0742a Start of BootMan
boisy
parents:
diff changeset
19 endsect