Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@337 cc03376c-175c-47c8-b038-4cd826a8556b
49 lines
777 B
Plaintext
49 lines
777 B
Plaintext
MEMORY
|
|
{
|
|
rom : ORIGIN = 0xBFC00000, LENGTH = 0x00002000 /* 8K */
|
|
ram : ORIGIN = 0x40000000, LENGTH = 0x00002000 /* 8K */
|
|
}
|
|
|
|
stack_ptr = 0x7FFFEFF0;
|
|
baudrate = 0x0D;
|
|
sys_led_port = 0xA0000000;
|
|
sys_uart_data = 0xA0010000;
|
|
sys_uart_stat = 0xA0010004;
|
|
sys_uart_baud = 0xA0010008;
|
|
sys_timer_usec = 0xA000008;
|
|
sys_timer_sec = 0xA000000C;
|
|
|
|
|
|
SECTIONS
|
|
{
|
|
.stext ORIGIN(rom) :
|
|
{
|
|
start = ALIGN(4);
|
|
entry = ALIGN(4);
|
|
_entry = ALIGN(4);
|
|
__entry = ALIGN(4);
|
|
*(.stext)
|
|
} > rom
|
|
|
|
.ktext ORIGIN(rom) + 0x180 :
|
|
{
|
|
*(.ktext)
|
|
} > rom
|
|
|
|
.text . :
|
|
{
|
|
*(.text)
|
|
} > rom
|
|
|
|
.rodata . :
|
|
{
|
|
*(.rodata*)
|
|
} > rom
|
|
|
|
.data ORIGIN(ram) :
|
|
{
|
|
*(.*data) *(.*bss) *(.*common)
|
|
} > ram
|
|
|
|
}
|