diff options
author | henryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2007-12-11 18:48:39 +0000 |
---|---|---|
committer | henryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2007-12-11 18:48:39 +0000 |
commit | d88d1207732a80156b5d2725b4c22869ef0b3d36 (patch) | |
tree | a0dceb6733080b96640398b0d72150606ec2985c /openpicc/config/atmel-rom.ld | |
parent | 8c1bae59f57cd2cffe13234aee94c2b7aa08e8dd (diff) |
Several modifications to enable spinning until the correct phase is reached in tc_fdt (thereby taking the phase information from tc_fdt, resetting the phase in tc_cdiv)
Still too much jitter (some bug in this code?)
git-svn-id: https://svn.openpcd.org:2342/trunk@383 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpicc/config/atmel-rom.ld')
-rw-r--r-- | openpicc/config/atmel-rom.ld | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openpicc/config/atmel-rom.ld b/openpicc/config/atmel-rom.ld index 9781d0c..447bd07 100644 --- a/openpicc/config/atmel-rom.ld +++ b/openpicc/config/atmel-rom.ld @@ -1,9 +1,9 @@ MEMORY { - boot : ORIGIN = 0x00100000, LENGTH = 0x100 - flash : ORIGIN = 0x00100100, LENGTH = 256K - 0x100 - vectors : ORIGIN = 0x00200000, LENGTH = 0x100 - ram : ORIGIN = 0x00200100, LENGTH = 64K - 0x100 + boot : ORIGIN = 0x00100000, LENGTH = 0x200 + flash : ORIGIN = 0x00100200, LENGTH = 256K - 0x200 + vectors : ORIGIN = 0x00200000, LENGTH = 0x200 + ram : ORIGIN = 0x00200200, LENGTH = 64K - 0x200 } __stack_end__ = 0x00200000 + 64K - 4; |