Commit finished, custom IO is working

This commit is contained in:
meepingsnesroms
2019-01-07 20:03:11 -08:00
parent fad58ee6f3
commit fa7194f1f5
3 changed files with 5 additions and 9 deletions

View File

@@ -12,12 +12,10 @@ if [ "$1" = "clean" ]; then
fi
declare -a FILES=("testSuite" "viewer" "tools" "tests" "cpu" "emuFunctions" "ugui" "undocumentedApis" "debug")
DEFINES=""
CFLAGS="-palmos4 -O3 $DEFINES"
CFLAGS="-palmos4 -O3"
if [ "$1" = "debug" ]; then
DEFINES="$DEFINES -DDEBUG"
CFLAGS="$CFLAGS -g"
CFLAGS="$CFLAGS -DDEBUG -g"
fi
m68k-palmos-multigen $APPNAME.def

View File

@@ -12,12 +12,10 @@ if [ "$1" = "clean" ]; then
fi
declare -a FILES=("muExpDriver" "armv5" "soundDriver" "traps" "debug")
DEFINES=""
CFLAGS="-palmos4 -O3 $DEFINES"
CFLAGS="-palmos4 -O3"
if [ "$1" = "debug" ]; then
DEFINES="$DEFINES -DDEBUG"
CFLAGS="$CFLAGS -g"
CFLAGS="$CFLAGS -DDEBUG -g"
fi
for I in "${FILES[@]}"; do

View File

@@ -44,7 +44,7 @@ static void showGui(uint32_t* configFile){
}
}
static void initBoot(void){
static void initBoot(uint32_t* configFile){
uint32_t enabledFeatures = readArbitraryMemory32(EMU_REG_ADDR(EMU_INFO));
debugLog("OS booting!\n");