forked from len0rd/rockbox
Added plugin loader. Moved games, demos and the text viewer to loadable plugins. Copy your *.rock files to /.rockbox/rocks/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3769 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9bcbe3fd72
commit
ba371fb595
29 changed files with 1869 additions and 1889 deletions
26
apps/plugins/plugin.lds
Normal file
26
apps/plugins/plugin.lds
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
OUTPUT_FORMAT(elf32-sh)
|
||||
|
||||
MEMORY
|
||||
{
|
||||
PLUGIN_RAM : ORIGIN = 0x091f8000, LENGTH = 0x8000
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : {
|
||||
*(.entry)
|
||||
*(.text)
|
||||
} > PLUGIN_RAM
|
||||
|
||||
.data : {
|
||||
*(.data)
|
||||
} > PLUGIN_RAM
|
||||
|
||||
.bss : {
|
||||
*(.bss)
|
||||
} > PLUGIN_RAM
|
||||
|
||||
.rodata : {
|
||||
*(.rodata)
|
||||
} > PLUGIN_RAM
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue