summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-05-20 17:51:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-05-20 17:51:11 +0000
commit2d1343700382c3ef94e8ba1eba4b1d43918efbd7 (patch)
tree7858d6b76267f2fe212f843637661384148e1a45 /nuttx/configs
parentf943a6e94a7caa69aad320ec610ffb33c8686919 (diff)
downloadpx4-nuttx-2d1343700382c3ef94e8ba1eba4b1d43918efbd7.tar.gz
px4-nuttx-2d1343700382c3ef94e8ba1eba4b1d43918efbd7.tar.bz2
px4-nuttx-2d1343700382c3ef94e8ba1eba4b1d43918efbd7.zip
Add PIC32 interrupt decode logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3633 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/pcblogic-pic32mx/ostest/ld.script6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/configs/pcblogic-pic32mx/ostest/ld.script b/nuttx/configs/pcblogic-pic32mx/ostest/ld.script
index cc37ba521..699186f55 100644
--- a/nuttx/configs/pcblogic-pic32mx/ostest/ld.script
+++ b/nuttx/configs/pcblogic-pic32mx/ostest/ld.script
@@ -94,7 +94,7 @@ SECTIONS
.reset :
{
- *(.reset)
+ KEEP (*(.reset))
} > kseg1_reset
/* Exception handlers. The following is assumed:
@@ -118,12 +118,12 @@ SECTIONS
.bev_excpt :
{
- *(.bev_excpt)
+ KEEP (*(.bev_excpt))
} > kseg1_bevexcpt
.int_excpt :
{
- *(.int_excpt)
+ KEEP (*(.int_excpt))
} > kseg1_intexcpt
.dbg_excpt = ORIGIN(kseg1_dbgexcpt);