diff options
author | henryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2007-11-21 05:42:12 +0000 |
---|---|---|
committer | henryk <henryk@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2007-11-21 05:42:12 +0000 |
commit | 0908ad080506141f79b4528e93c5216961ee2017 (patch) | |
tree | 547f6c1e7a9e6de5bc9570442bee6f987445e5c2 /openpicc | |
parent | 50c363d07e2a72b73bacde9136ab9de9616f7830 (diff) |
Fix hex vs. dec
git-svn-id: https://svn.openpcd.org:2342/trunk@342 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpicc')
-rw-r--r-- | openpicc/config/atmel-rom.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openpicc/config/atmel-rom.ld b/openpicc/config/atmel-rom.ld index 8ea6c68..13fc82e 100644 --- a/openpicc/config/atmel-rom.ld +++ b/openpicc/config/atmel-rom.ld @@ -1,7 +1,7 @@ MEMORY { flash : ORIGIN = 0x00100000, LENGTH = 256K - 1K /* save 1K for environment on top of flash */ - ram : ORIGIN = 0x00200028, LENGTH = 64K-28 + ram : ORIGIN = 0x00200028, LENGTH = 64K-0x28 } __stack_end__ = 0x00200000 + 64K - 4; |