diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2013-02-14 20:38:53 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2013-02-14 20:38:53 +0000 |
commit | df2afd6b76522fd61a02569f8fed61a9360a7141 (patch) | |
tree | ceaa3a39f79b2263bbe16ccdc040022c758a4977 /compiler/arm/cpuinfo.pas | |
parent | b0660dfbcc86e796181ded5fc76440e13119ce5c (diff) | |
download | fpc-df2afd6b76522fd61a02569f8fed61a9360a7141.tar.gz |
+ patch by Justin Smyth to support the lpc1343, resolves #23844
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@23620 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/arm/cpuinfo.pas')
-rw-r--r-- | compiler/arm/cpuinfo.pas | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/compiler/arm/cpuinfo.pas b/compiler/arm/cpuinfo.pas index 76bf5522a2..6c0f71c2f2 100644 --- a/compiler/arm/cpuinfo.pas +++ b/compiler/arm/cpuinfo.pas @@ -73,6 +73,7 @@ Type (ct_none, { Phillips } + ct_lpc1343, ct_lpc2114, ct_lpc2124, ct_lpc2194, @@ -277,6 +278,15 @@ Const ), ( + controllertypestr:'LPC1343'; + controllerunitstr:'LPC1343'; + flashbase:$00000000; + flashsize:$00008000; + srambase:$10000000; + sramsize:$00002000 + ), + + ( controllertypestr:'LPC2114'; controllerunitstr:'LPC21x4'; flashbase:$00000000; |