Mercurial > hg > Members > kono > nitros9-code
annotate bootman/boot_config.a @ 2224:22b75f9788a5
Removed redundant targets
author | boisy |
---|---|
date | Wed, 18 Mar 2009 11:33:16 +0000 |
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 |