1 2 3 4 5 6 7 8 9 10 11
12
13 14 15 16
17
18 package ti.catalog.c2800.concertoInit;
19
20 /*!
21 * ======== Boot ========
22 * Concerto C28 Boot Support.
23 *
24 * This Boot module can be used to generate a small section that supports
25 * booting the C28 processor from Flash. It consists of a single
26 * "LB _c_int00" instruction.
27 *
28 * When `{@link #bootFromFlash}` is true, the instruction will be placed
29 * at "BEGIN", as defined in the linker command file.
30 */
31 @NoRuntime
32 module Boot
33 {
34 /*!
35 * Boot from FLASH flag. Default is true.
36 *
37 * Set to true to enable booting the C28 from Flash.
38 */
39 metaonly config Bool bootFromFlash = true;
40 };
41 42 43
44