Skip to content
Snippets Groups Projects
Commit ba6cd0d3 authored by patacongo's avatar patacongo
Browse files

Fix z80 problems introduced by z8

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@670 42af7a65-404d-4744-a932-0658087f49c3
parent 0067b7a0
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ up_mem.h:
@echo "#ifndef __UP_MEM_H" >up_mem.h
@echo "#define __UP_MEM_H" >>up_mem.h
@echo "" >>up_mem.h
@echo "#include <nuttx/config.h>
@echo "#include <nuttx/config.h>" >>up_mem.h
@echo "" >>up_mem.h
@echo "#define CONFIG_STACK_END $(CONFIG_DRAM_SIZE)" >> up_mem.h
@echo "#define CONFIG_STACK_BASE (CONFIG_STACK_END - $(CONFIG_PROC_STACK_SIZE))" >> up_mem.h
......@@ -216,6 +216,6 @@ distclean: clean
@if [ -e board/Makefile ]; then \
$(MAKE) -C board TOPDIR="$(TOPDIR)" distclean ; \
fi
rm -f Make.dep .depend
@rm -f Make.dep .depend
-include Make.dep
......@@ -103,7 +103,7 @@ if [ -e ${MAPFILE} ]; then
else
# pass1.map does not yet exist. In this case, just output a valid, default heap size
echo "(UP_HEAP1_END - 8192)"
echo "(CONFIG_HEAP1_END - 8192)"
fi
......@@ -83,7 +83,7 @@ define ARCHIVE
endef
define CLEAN
@rm -f *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
@rm -f *.o *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
endef
MKDEP = $(TOPDIR)/tools/mkdeps.sh
......
......@@ -83,7 +83,7 @@ define ARCHIVE
endef
define CLEAN
@rm -f *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
@rm -f *.o *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
endef
MKDEP = $(TOPDIR)/tools/mkdeps.sh
......
......@@ -83,7 +83,7 @@ define ARCHIVE
endef
define CLEAN
@rm -f *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
@rm -f *.o *.asm *.rel *.lst *.rst *.sym *.adb *.lnk *.map *.mem *.ihx *.hex
endef
MKDEP = $(TOPDIR)/tools/mkdeps.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment