Started with asm file io.s. Functions not implemented yet.

This commit is contained in:
T-moe
2016-01-31 15:39:08 +01:00
parent 2bc69baeb9
commit 121adfa3c9
3 changed files with 91 additions and 1 deletions

View File

@@ -37,7 +37,7 @@ LDFLAGS+=-Wl,--gc-sections -Wl,--defsym=malloc_getpagesize_P=0x1000
#Finding Input files
CFILES=$(shell find $(SOURCE_DIR) -name '*.c')
#CFILES=$(notdir $(wildcard $(SOURCE_DIR)/*.c))
SFILES=$(SOURCE_DIR)/startup.s
SFILES=$(shell find $(SOURCE_DIR) -name '*.s')
#Generate corresponding obj names
SOBJS=$(SFILES:.s=.o)