mirror of
https://github.com/libretro/Mu.git
synced 2026-09-23 07:05:37 +00:00
Commit finished, custom IO is working
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user