Search found 5 matches

by xoclipse
Tue Oct 04, 2005 5:58 am
Forum: PSP Development
Topic: build a PSP file
Replies: 7
Views: 2222

The makefile is usually in the directory where your project resides. You must create it for a new project, and use something to similiar to what I posted below. I suggest you read a tutorial on what makefiles do and how to use them properly. You can find one here: http://www.eng.hawaii.edu/Tutor/Mak...
by xoclipse
Tue Oct 04, 2005 5:47 am
Forum: PSP Development
Topic: build a PSP file
Replies: 7
Views: 2222

PSP's do not take "exe" files. Your makefile is most likely incorrect. Issuing the command 'make' should result in creating EBOOT.PBP, an elf binary, and a PARAM.SFO file. Your makefile should look something like this: TARGET = app-name OBJS = src/main.o USE_PSPSDK_LIBC = 1 INCDIR = includ...
by xoclipse
Tue Oct 04, 2005 5:15 am
Forum: PSP Development
Topic: Window Toolkit for PSP
Replies: 6
Views: 2581

Hehe yeah having a hardware accelerated user interface would be pretty cool. I could probably find some useful code from exisiting OpenGL GUI's, but I think I'd rather start from scratch. Mostly because I think it would be a fun learning experience, but also because it would probably be better to ha...
by xoclipse
Tue Oct 04, 2005 4:51 am
Forum: PSP Development
Topic: Window Toolkit for PSP
Replies: 6
Views: 2581

dot_blank: I didn't mean I needed to figure out how to setup my IDE for PSP development, I was talking about an API(set of classes, functions, etc,.) for help in creating an application with dialogs, buttons, and other standard controls. I checked out microwindows already but I wasn't really that im...
by xoclipse
Mon Oct 03, 2005 4:45 pm
Forum: PSP Development
Topic: Window Toolkit for PSP
Replies: 6
Views: 2581

Window Toolkit for PSP

I'm a new PSP owner and since I've had it I have been very interested in the development of homebrew software for the PSP. I'm a programmer myself and I have been inspired to write some software for the PSP. I've been doing lots of research recently, and I'm glad that this site exists because it's h...