summaryrefslogtreecommitdiff
path: root/nuttx/arch/z80
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-12 00:07:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-12 00:07:15 +0000
commitc723da08522d0b3f55f7076abd17731733fa9045 (patch)
treed0c1b155e824a397b6696119cf6b83ef63daf91c /nuttx/arch/z80
parent72a312c24a6e1c84bc9c9ce850f83c9b01b1b390 (diff)
downloadpx4-nuttx-c723da08522d0b3f55f7076abd17731733fa9045.tar.gz
px4-nuttx-c723da08522d0b3f55f7076abd17731733fa9045.tar.bz2
px4-nuttx-c723da08522d0b3f55f7076abd17731733fa9045.zip
Fix typo in z80-family Makefiles
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5431 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/z80')
-rw-r--r--nuttx/arch/z80/src/Makefile.sdccl2
-rw-r--r--nuttx/arch/z80/src/Makefile.sdccw2
2 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/z80/src/Makefile.sdccl b/nuttx/arch/z80/src/Makefile.sdccl
index cbb3f8656..1ddd8da62 100644
--- a/nuttx/arch/z80/src/Makefile.sdccl
+++ b/nuttx/arch/z80/src/Makefile.sdccl
@@ -156,7 +156,7 @@ else
@echo "-b _CODE=0x0200" >>nuttx.lnk # Start of _CODE area
endif
ifneq ($(CONFIG_LINKER_DATA_AREA),)
- @echo "-b _CODE=$(CONFIG_LINKER_DATA_AREA)" >>nuttx.lnk
+ @echo "-b _DATA=$(CONFIG_LINKER_DATA_AREA)" >>nuttx.lnk
else
@echo "-b _DATA=0x8000" >>nuttx.lnk # Start of _DATA area
endif
diff --git a/nuttx/arch/z80/src/Makefile.sdccw b/nuttx/arch/z80/src/Makefile.sdccw
index 372786a87..6d0f17e8a 100644
--- a/nuttx/arch/z80/src/Makefile.sdccw
+++ b/nuttx/arch/z80/src/Makefile.sdccw
@@ -154,7 +154,7 @@ else
@echo -b _CODE=0x0200>>nuttx.lnk
endif
ifneq ($(CONFIG_LINKER_DATA_AREA),)
- @echo -b _CODE=$(CONFIG_LINKER_DATA_AREA)>>nuttx.lnk
+ @echo -b _DATA=$(CONFIG_LINKER_DATA_AREA)>>nuttx.lnk
else
@echo -b _DATA=0x8000>>nuttx.lnk
endif