1/* Copyright (C) 2005 Psi Systems, Inc. 2 File: speex_C64_test.cmd 3 Linker command file with memory allocation for TI TMS320C6415 processor 4 for use with TI Code Composer (TM) DSP development tools. 5 6 Redistribution and use in source and binary forms, with or without 7 modification, are permitted provided that the following conditions 8 are met: 9 10 - Redistributions of source code must retain the above copyright 11 notice, this list of conditions and the following disclaimer. 12 13 - Redistributions in binary form must reproduce the above copyright 14 notice, this list of conditions and the following disclaimer in the 15 documentation and/or other materials provided with the distribution. 16 17 - Neither the name of the Xiph.org Foundation nor the names of its 18 contributors may be used to endorse or promote products derived from 19 this software without specific prior written permission. 20 21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR 25 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 26 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 27 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 28 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 29 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 31 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32*/ 33 34-stack 0x10000 35-heap 0x10000 36 37 38MEMORY 39{ 40 VECRAM : origin = 0x0, len = 0x200 41 IPRAM : origin = 0x200, len = 0x40000 42 IDRAM : origin = 0x80000, len = 0x70000 43} 44 45SECTIONS 46{ 47 .vectors > VECRAM 48 .text > IPRAM 49 50 .bss > IDRAM 51 .cinit > IDRAM 52 .const > IDRAM 53 .far > IDRAM 54 .stack > IDRAM 55 .cio > IDRAM 56 .sysmem > IDRAM 57 .switch > IDRAM 58 .myheap > IDRAM 59} 60