GP32 Just trying to get started


DuncanC

Still Fresh
Joined
Aug 22, 2003
Messages
2
I've done programming before but I haven't dealt with command line/makefile stuff before. I'm trying to get to a point where I can compile and run stuff properly, and it seems to make gptest.gxb right, but I get this when trying to convert it to fxe:
Code:
Reading from file 'gptest.gxb'
Writing to file 'gptest.fxe'
Exiting due to signal SIGSEGV
General Protection Fault at eip=00003d6c
eax=fffd0000 ebx=00000000 ecx=000002c5 edx=fffd0000 esi=00004000 edi=0000000b
ebp=0004c9bc esp=0004c9ac cs=01a7 ds=01af es=01af fs=017f gs=01bf ss=01af
Call frame traceback EIPs:
  0x00003d6c
  0x00003ce9
  0x00004e6b
  0x0000289c
  0x00001ec8
Any help would be appreciated...
 
Are you using the devkitadv that's fixed to work for the gp32? If so I you should first go to the directory that contains your GXB then type:
b2fxe -t "gptest" -b "icon.bmp" -a"your name" -r "PD" "gptest.gxb gptest.fxe"
t=the title of game
b = bit map
a = author
r = license info my example is Public Domain im sure there are others

I don't know much about the errors that you are getting, Sorry
 
And remember that GCC does not output GXBs directly..
you have to use objcopy to get the binary part of the ELF.. and thats your GXB....

---
mithris
 
Back
Top