diff options
author | Chris Apers | 2006-02-25 21:43:23 +0000 |
---|---|---|
committer | Chris Apers | 2006-02-25 21:43:23 +0000 |
commit | 0cb17f18b3c23653e693f20b6e591accf29ac76c (patch) | |
tree | c8fc8a3722195802f768762fef8ede50a68b334e /backends/PalmOS | |
parent | a76e3bab2fc5f69eebedf5aa883050bfccc82353 (diff) | |
download | scummvm-rg350-0cb17f18b3c23653e693f20b6e591accf29ac76c.tar.gz scummvm-rg350-0cb17f18b3c23653e693f20b6e591accf29ac76c.tar.bz2 scummvm-rg350-0cb17f18b3c23653e693f20b6e591accf29ac76c.zip |
Cleanup, forgot to mention that these files are ARM (Zodiac and OS5) startup code
svn-id: r20899
Diffstat (limited to 'backends/PalmOS')
-rwxr-xr-x | backends/PalmOS/Src/native/pnoARM.c | 5 | ||||
-rwxr-xr-x | backends/PalmOS/Src/native/pnoStartup.c | 2 | ||||
-rwxr-xr-x | backends/PalmOS/Src/native/zodiacARM.cpp | 2 | ||||
-rwxr-xr-x | backends/PalmOS/Src/native/zodiacStartup.cpp | 10 |
4 files changed, 8 insertions, 11 deletions
diff --git a/backends/PalmOS/Src/native/pnoARM.c b/backends/PalmOS/Src/native/pnoARM.c index 7a62f3c7d9..6c7954fcb5 100755 --- a/backends/PalmOS/Src/native/pnoARM.c +++ b/backends/PalmOS/Src/native/pnoARM.c @@ -49,9 +49,6 @@ unsigned long PNO_Main(const void *emulStateP, void *userData68KP, Call68KFuncTy global.call68KFuncP = call68KFuncP; #endif twGlue = (struct TwGlue*) userData68KP; - -// FrmCustomAlert(1200,"test",0,0); - return PilotMain(sysAppLaunchCmdNormalLaunch, userData68KP, 0); } @@ -80,4 +77,4 @@ __sys_pointer_size(void* ptr) return (UInt32) MemPtrSize(ptr); } -#endif
\ No newline at end of file +#endif diff --git a/backends/PalmOS/Src/native/pnoStartup.c b/backends/PalmOS/Src/native/pnoStartup.c index 77623721f9..dcfb56d002 100755 --- a/backends/PalmOS/Src/native/pnoStartup.c +++ b/backends/PalmOS/Src/native/pnoStartup.c @@ -24,4 +24,4 @@ #ifdef COMPILE_OS5 # include "(Source)/ARMlet_Startup.c" -#endif
\ No newline at end of file +#endif diff --git a/backends/PalmOS/Src/native/zodiacARM.cpp b/backends/PalmOS/Src/native/zodiacARM.cpp index c6ac947a9b..b4f85d391b 100755 --- a/backends/PalmOS/Src/native/zodiacARM.cpp +++ b/backends/PalmOS/Src/native/zodiacARM.cpp @@ -88,7 +88,7 @@ static void Go() { #endif } -/* stack size */ +/* Stack size */ Int8 *g_newStack, *g_newStackPos; void *g_oldStack; diff --git a/backends/PalmOS/Src/native/zodiacStartup.cpp b/backends/PalmOS/Src/native/zodiacStartup.cpp index 4e7426e0ac..64ac89ab5b 100755 --- a/backends/PalmOS/Src/native/zodiacStartup.cpp +++ b/backends/PalmOS/Src/native/zodiacStartup.cpp @@ -88,11 +88,11 @@ static void relocate(void) } } -// - // The following functions provide malloc/free support to Metrowerks - // Standard Library (MSL). This feature requires the MSL library be - // built with _MSL_OS_DIRECT_MALLOC enabled. - // +/* + * The following functions provide malloc/free support to Metrowerks + * Standard Library (MSL). This feature requires the MSL library be + * built with _MSL_OS_DIRECT_MALLOC enabled. + */ void* __sys_alloc(size_t size) { |