Added GDB API - a way to call stub procedures from a DEBUG build.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8561 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomasz Malesinski 2006-02-04 00:04:02 +00:00
parent 760fea9ac7
commit ec7e976026
5 changed files with 80 additions and 1 deletions

View file

@ -13,7 +13,8 @@ OUTPUT_FORMAT(elf32-sh)
MEMORY
{
IRAM : ORIGIN = 0, LENGTH = 0x10000
DRAM : ORIGIN = 0x24000000, LENGTH = 0x8000
DRAM : ORIGIN = 0x24000000, LENGTH = 0x6000
DRAM_API : ORIGIN = 0x24006000, LENGTH = 0x100
}
SECTIONS
@ -29,6 +30,11 @@ SECTIONS
*(.glue_7t)
} >DRAM
.gdbapi :
{
*(.gdbapi)
} >DRAM_API
.data :
{
*(.data)