Last change
on this file since 923 was
850,
checked in by cfuguet, 10 years ago
|
reconf: introducing a softs directory in the reconfiguration branch
- This softs directory contains a minimalistic (giet-like) library
of drivers and some utility functions.
- Introducing a simple unit test in the vci_cc_vcache_wrapper
component to test the newly introduced watchdog timer mechanism.
This unit test uses the minimalistic library.
|
File size:
674 bytes
|
Rev | Line | |
---|
[850] | 1 | /********************************************************** |
---|
| 2 | File : ldscript |
---|
| 3 | Author : Cesar Fuguet |
---|
| 4 | Date : June 2011 |
---|
| 5 | **********************************************************/ |
---|
| 6 | |
---|
| 7 | /* Definition of the base address for code segment */ |
---|
| 8 | |
---|
| 9 | seg_code_base = 0xBFC00000; |
---|
| 10 | seg_data_base = 0x00001000; |
---|
| 11 | |
---|
| 12 | /* Grouping sections into segments */ |
---|
| 13 | |
---|
| 14 | ENTRY(reset) |
---|
| 15 | |
---|
| 16 | SECTIONS |
---|
| 17 | { |
---|
| 18 | . = seg_code_base; |
---|
| 19 | .text : |
---|
| 20 | { |
---|
| 21 | *(.reset) |
---|
| 22 | *(.text) |
---|
| 23 | *(.text.*) |
---|
| 24 | *(.rodata) |
---|
| 25 | *(.rodata.*) |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | . = seg_data_base; |
---|
| 29 | .bss ALIGN(0x4) (NOLOAD) : |
---|
| 30 | { |
---|
| 31 | *(.data) |
---|
| 32 | *(.bss) |
---|
| 33 | } |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | /* |
---|
| 37 | * vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab |
---|
| 38 | */ |
---|
Note: See
TracBrowser
for help on using the repository browser.