Mercurial > hg > Members > kono > nitros9-code
annotate bootman/boot_config.a @ 2786:e333ec1907ef lwtools-port
Updated makefile(s) so correct coco1 dw boot and dwio.sb files are used.
Updated level1/coco1/modules/makefile so that boot_dw_coco1
and dwio_coco1.sb get created.
Updated level1/coco1/bootfiles/makefile added detection of PORT
status so if coco1 is detected then dwio_coco1.sb and
boot_dw_coco1 are used in place of dwio.sb and boot_dw.
author | drencor-xeen |
---|---|
date | Sun, 27 Jan 2013 00:14:03 -0600 |
parents | 2db06bc0742a |
children |
rev | line source |
---|---|
2163 | 1 NAM boot_config |
2 TTL Boot manager configuration | |
3 | |
4 PSECT bc,0,0,0,0,boot_config | |
5 | |
6 boot_config: | |
7 | |
8 * autoboot (1 = yes, 0 = no, use menu) | |
9 cfg_auto: fcb 0 | |
10 | |
11 * list of booters to be tried (in order, $0000 terminates list) | |
12 * entry format: booter entry point, address, device ID | |
13 cfg_boot: fdb llbt_1773,$FF40,0 | |
14 fdb llbt_1773,$FF40,1 | |
15 * fdb llbt_tc3,$FF70,0 | |
16 * fdb llbt_ide,$FF50,0 | |
17 fdb $0000 | |
18 | |
19 endsect |