aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp32/startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/gp32/startup.c')
-rw-r--r--backends/platform/gp32/startup.c122
1 files changed, 0 insertions, 122 deletions
diff --git a/backends/platform/gp32/startup.c b/backends/platform/gp32/startup.c
deleted file mode 100644
index ad1022ca3c..0000000000
--- a/backends/platform/gp32/startup.c
+++ /dev/null
@@ -1,122 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
- *
- */
-
-#include <gpdef.h>
-#include <gpstdlib.h>
-#include <gpfont.h>
-#include <gpfont_port.h>
-#include <gpfontres.dat>
-
-#include <initval_port.h>
-
-#ifdef USE_GP_MEM
- #include <gpmem.h>
-#endif
-
-unsigned int HEAPSTART;
-unsigned int HEAPEND;
-
-void InitializeFont (void);
-extern void GpKeyPollingTimeSet (int loop_cnt);
-extern void GpMain(void *arg);
-
-int main (int arg_len, char * arg_v)
- {
- GM_HEAP_DEF gm_heap_def;
-
- _gp_sdk_init();
-
- // keyboard polling count setting
- GpKeyPollingTimeSet (KEYPOLLING_NUM);
-
- #ifdef USE_GP_MEM
- gm_heap_def.heapstart = (void*)(HEAPSTART);
- gm_heap_def.heapend = (void *)(HEAPEND & ~3);
- gm_heap_init (&gm_heap_def);
-
- gp_mem_func.malloc = gm_malloc;
- gp_mem_func.zimalloc = gm_zi_malloc;
- gp_mem_func.calloc = gm_calloc;
- gp_mem_func.free = gm_free;
- gp_mem_func.availablemem = gm_availablesize;
- gp_mem_func.malloc_ex = gm_malloc_ex;
- gp_mem_func.free_ex = gm_free_ex;
- gp_mem_func.make_mem_partition = gm_make_mem_part;
-
- gp_str_func.memset = gm_memset;
- gp_str_func.memcpy = gm_memcpy;
- gp_str_func.strcpy = gm_strcpy;
- gp_str_func.strncpy = gm_strncpy;
- gp_str_func.strcat = gm_strcat;
- gp_str_func.strncat = gm_strncat;
- gp_str_func.gpstrlen = gm_lstrlen;
- gp_str_func.sprintf = gm_sprintf;
- gp_str_func.uppercase = gm_uppercase;
- gp_str_func.lowercase = gm_lowercase;
- gp_str_func.compare = gm_compare;
- gp_str_func.trim_right = gm_trim_right;
- #endif /*USE_GP_MEM*/
-
- //Font initialize
- InitializeFont ();
-
- GpKernelInitialize ();
-
- GpKernelStart ();
-
- GpAppExit ();
- while (1) {}
- }
-
-void InitializeFont (void)
- {
- BGFONTINFO mInfo;
- mInfo.kor_w = KORFONT_W;
- mInfo.kor_h = KORFONT_H;
- mInfo.eng_w = ENGFONT_W;
- mInfo.eng_h = ENGFONT_H;
- mInfo.chargap = FONT_CHARGAP;
- mInfo.linegap = FONT_LINEGAP;
- GpFontInit (&mInfo);
- GpFontResSet ((unsigned char*)fontresKor, (unsigned char*)fontresEng);
- }
-
-int GpPredefinedStackGet (H_THREAD th)
- {
- switch (th)
- {
- case H_THREAD_GPMAIN:
- return GPMAIN_STACK_SIZE;
- case H_THREAD_NET:
- return NET_STACK_SIZE;
- case H_THREAD_TMR0:
- case H_THREAD_TMR1:
- case H_THREAD_TMR2:
- case H_THREAD_TMR3:
- return USER_STACK_SIZE;
- default:
- return 0;
- }
- }