increase size of ROM to 4 Meg

This commit is contained in:
Thomas Doerfler
2009-10-12 09:36:52 +00:00
parent f1887691cd
commit 4349a40fc5
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-10-12 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* linkcmds:
increase size of ROM to 4 Meg
2009-10-06 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* Makefile.am:
do not use shared/timerstub

View File

@@ -5,7 +5,7 @@ ENTRY(_start)
MEMORY
{
RAM : ORIGIN = 0, LENGTH = 4M
ROM : ORIGIN = 0xFFFC0000, LENGTH = 0x40000
ROM : ORIGIN = 0xFFC00000, LENGTH = 4M
VECTORS : ORIGIN = 0xFFF00000, LENGTH = 0x20000
RESET : ORIGIN = 0xFFFFFFFC, LENGTH = 0x4
}