1 /*************************************************************************
2 * @file i2cparam_c6472.cmd
3 *
4 * @brief Places the i2c parameter writer program into memory
5 *
6 *************************************************************************/
8 i2cparam.oc
9 ../../hw/c64x/make/i2c.oc
10 ../../hw/c64x/make/pll.oc
12 -c
13 -a
14 -stack 0x400
16 MEMORY
17 {
18 STACK : origin = 0x810000 length = 0x0400
19 TEXT : origin = 0x810400 length = 0x8000
20 DATA : origin = 0x818400 length = 0x0800
21 }
23 SECTIONS
24 {
25 .stack > STACK
27 .text > TEXT
28 .const > TEXT
29 .switch > TEXT
30 .cinit > TEXT
32 .far > DATA
33 .bss > DATA
34 .data > DATA
36 }