Just a Beginer question

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
Jusdogmatik
Posts: 1
Joined: Tue Aug 21, 2007 12:56 am

Just a Beginer question

Post by Jusdogmatik »

I am just getting into the psp devolopment sceen. I'm trying to learn some basic c programing but every time I try to compile the code useing psptoolchain it gives me a bunch of errors. Its a simple Hello world app for myself only. (It will be my first app of all time!! Big moment for me) I have everything installed correctly so thats not the problem. Here's what it says:

its to much for me to write by hand but what I can tell you is that the pspkernel.h and pspdebug.h are some how not reconized. I cant figure this out. Could some one give me a basic outline with all the code I need to run a simple hello world app so I can see if it is a problem I causing myself or if I need to reinstall some things

Thanks
Jusdogmatik
Art
Posts: 642
Joined: Wed Nov 09, 2005 8:01 am

Post by Art »

The Hello World PSP code is here:
http://www.psp-programming.com/tutorials/c/lesson02.htm

You'd need to be a bit more specific about the error.

Did you include these lines at the top of your code?

Code: Select all

#include <pspkernel.h>
#include <pspdebug.h>
If you did, try searching for those files and placing a copy of each in your
hello world program folder. The Hello World app doesn't print Hello World
to the screen. It tells those files to! :D

The link above is probably a better place to get the help you are looking for.
They are happier to deal with beginners, it's why the tutorial section was set up.
Good luck!
Post Reply