diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 1506a206c0a5e3b593c4c61a62b8805b64e98daf (patch) | |
tree | e20fe3eb0f693e87649fff1ce75e3f23330f69f8 /emulator/qtools/tests/tests.ld | |
download | sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.zip sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.tar.gz sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.tar.bz2 |
Initial Contribution
Diffstat (limited to 'emulator/qtools/tests/tests.ld')
-rw-r--r-- | emulator/qtools/tests/tests.ld | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emulator/qtools/tests/tests.ld b/emulator/qtools/tests/tests.ld new file mode 100644 index 0000000..05fe41b --- /dev/null +++ b/emulator/qtools/tests/tests.ld @@ -0,0 +1,10 @@ +SECTIONS { + TEXT_START = 0x00010000 ; + DATA_START = 0x00200000 ; + handlers 0x0 : { *(handlers) } + .text TEXT_START : { *(.text) } + .data DATA_START : { *(.data) } + .bss : { *(.bss) *(COMMON) } + p00300000 0x00300000 : { *(p00300000) } + p00400000 0x00400000 : { *(p00400000) } +} |