QJ.NET | Videos | Forums | iPhone | MMORPG | Nintendo DS | Wii | PlayStation 3 | PSP | Xbox 360 | PC | Downloads | Contact Us
Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact

QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides

Go Back   QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides > Developers Corner > PSP Development, Hacks, and Homebrew > PSP Development Forum
The above video goes away if you are a member and logged in, so log in now!

[Tutorial]The Easy + Quick Way To Start Developing in C/C++!!

This is a discussion on [Tutorial]The Easy + Quick Way To Start Developing in C/C++!! within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; EDIT:Tutorial Added. Enjoy! P.S. Since this text is automatically formatted, there may be some spaces where they don't need to ...

Reply
 
LinkBack Thread Tools
Old 05-25-2006, 03:45 PM   #1
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Thumbs up [Tutorial]The Easy + Quick Way To Start Developing in C/C++!!

EDIT:Tutorial Added. Enjoy!

P.S. Since this text is automatically formatted, there may be some spaces where they don't need to be. So if you see spacing like "controlle r", understand that i didn't do that on purpose and that it should be "controller".

###INTRODUCTION###

For some months now, I have been wanting to start/try developing for the PSP in C/C++. I read some of the tutorials explaining how to set up and use mingw or cygwin. Most of the tutorials were complex, and required a lot of downloading of huge files. I have dial-up, so I couldn’t really sit there all day and watch these files download. I am sure some others feel this way also. Anyways, I think that this may be one of the easiest and quickest(because of the small download sizes)ways to set up the PSPSDK, and the toolchain/compiler on a windows machine. So here we go:

###INSTALLATION###

1.) Go download the precompiled windows toolchain/compiler + PSPSDK from:
http://xorloser.com/PSPDevWin32.zip

2.) Extract the .zip file somewhere on your hard-drive.

3.) Launch the .exe file and go through the installation. You should install the package to X:\pspdev\ where X is the letter of your hard-drive. This directory is the default setting on the installer anyways.

4.) Find your way to your x:\pspdev\ folder using the Windows Explorer. Create a new .bat file in that folder and name it whatever you want. I named mine start.bat. Next, make sure your .bat file includes the following code:

Code:
set path=%path%;x:\pspdev\bin 
set PSPSDK=x:\pspdev\psp\sdk 
cmd
5.) Delete the pspdev.bat file from your x:\pspdev\ folder. The file that we created in step 4 configures the settings for your environment. You don’t need the other pspdev.bat file that came with the package. Or you may keep it if you want. That’s up to you. :icon_wink

6.) Use the Windows search engine to search for a file called cygwin1.dll. Look at the file properties for all of the results and keep the newest one in x:\pspdev\bin\. Delete the other older files. I use the cygwin1.dll file with the build date of 2006-01-20 13:28 and it works great. If you don’t delete the other files the compiler will get an error.

7.) Now, you are done! Congrats, you have a working psptoolchain and PSPSDK along with the compilers installed on your computer.

###COMPILING AN EXAMPLE FILE###

a.) Double-click your .bat file that you created in step 4 of the installation. It should start with the command prompt saying something like this:

Code:
C:\pspdev>set path=C:\Python24\.;C:\WINDOWS\SYSTEM32;C:\WINDOWS;C:\WINDOWS\SYSTEM32\WBEM;C:\WINDOWS\SYSTEM32\WSG32\;C:/pspdev/bin;C:/pspdev2/bin;c:\pspdev\bin


C:\pspdev>set PSPSDK=C:\pspdev\psp\sdk

C:\pspdev>cmd
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\pspdev>
Of course, instead of C it will show the letter of your drive.

b.) Type cd psp\sdk\samples\controlle r\basic and hit enter to go to the x:\pspdev\psp\sdk\samples \controller\basic directory.
You should get something like this:

Code:
C:\pspdev\psp\sdk\samples\controller\basic>
c.) Type make and hit enter.
You should get something like this in the command prompt and and eboot in the x:\pspdev\psp\sdk\samples \controller\basic folder:

Code:
psp-gcc -I. -IC:/pspdev/psp/sdk/include -O2 -G0 -Wall   -c -o main.o main.c
psp-gcc -I. -IC:/pspdev/psp/sdk/include -O2 -G0 -Wall  -L. -LC:/pspdev/psp/sdk/l
ib   main.o  -lpspdebug -lpspdisplay -lpspge -lpspctrl -lpspsdk -lc -lpspnet -lp
spnet_inet -lpspnet_apctl -lpspnet_resolver -lpsputility -lpspuser -lpspkernel -
o controller_basic.elf
psp-fixup-imports controller_basic.elf
mksfo 'Basic controller sample' PARAM.SFO
psp-strip controller_basic.elf -o controller_basic_strip.elf
pack-pbp EBOOT.PBP PARAM.SFO NULL  \
        NULL NULL NULL  \
        NULL  controller_basic_strip.elf NULL
rm -f controller_basic_strip.elf

C:\pspdev\psp\sdk\samples\controller\basic>
d.) Congratulations, you just compiled a working controller sample eboot. I’ve tested this on my 2.01 PSP through the GTA exploit and it worked fine.

###Conclusion###
So did you like this tutorial? Any feedback/suggestions/problems is welcome. dalejrrocks@rambler.ru or nascar_sk8ing_technology@ yahoo.com. Or PM me on the forums.

Enjoy,
Nick/dalejrrocks
-----------------------------------------------------
-----------------------------------------------------

This came straight from xorloser.com
Quote:
This is an installable PSPDev environment for Win32.
This was built on the 'posted' date above, and was done using the latest toolchain script and pspsdk available at that time.
This contains all you need to start developing for psp on a windows machine, presented in a nice, easy to use, installable format

It contains the latest pspdev compiler and tools built on the GCC v4.0.2 toolchain and patches, (no source code included).
It also contains the current (direct from svn) version of pspsdk precompiled.
When installing, DO NOT install to a directory path that contains spaces!
Thanks to all those who helped make the toolchain and pspsdk what it is today.
Does this mean you don't need cygwin or mingw to compile eboots and can use this package as a compiler?

EDIT: You don't need cygwin or mingw with this. Read the later posts + the tutorial.

Last edited by dalejrrocks; 05-25-2006 at 08:06 PM.. Reason: Added a tutorial
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 04:08 PM   #2
 
Ranmax09's Avatar
 
Join Date: Sep 2005
Location: Long Beach, CA
Posts: 1,688
Trader Feedback: 0
Wink

Maybe I uncompressed it from 14mb to 104mbs!

Last edited by Ranmax09; 05-25-2006 at 04:11 PM..
Ranmax09 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 04:14 PM   #3
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

I hope so. I am downloading it now, but it's taking me a while on dialup. Dialup sucks. It would be nice if this could compile eboots because that would allow more people to get into C developing easier and cygwin and mingw are big to download on slow connection. Wow, that's some compression.
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 04:16 PM   #4

Developer
 
SodR's Avatar
 
Join Date: Sep 2005
Location: Sweden
Posts: 941
Trader Feedback: 0
Default

You'll need cygwin. How to install cygwin and set up the development environment can be found in the first c/c++ tutorial by Yeldarb. See the sticky for that.
SodR is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 04:43 PM   #5

Psp Dev
 
MikePiP's Avatar
 
Join Date: Jun 2005
Location: Nebraska
Posts: 228
Trader Feedback: 0
Default

No you don't need cygwin. It uses DOS instead. I personally wouldnt use it because the toolchain is outdated.
__________________


http://www.myspace.com/mikee_mo
MikePiP is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 05:05 PM   #6
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

FROM THE README FILE INCLUDED WITH THE PACKAGE:

Quote:
This is an installable version of the PSPDev compilers and associated tools.
It is based on the GCC v4.0.2 toolchain and patches as found on oopo's site
http://www.oopo.net/consoledev/
There are toolchains for PSP as well as the PSPSDK libraries required to
access the various hardware on the psp.

I also added patches based on nervus' original gcc patch for the ps2 toolchain
which enabled error and warning output in the MS VS.NET format.
You can get the original ps2 toolchain patches here: http://nervus.org/
FROM PS2DEV.ORG:

Quote:
Precompiled win32 vesions of the latest PS2 and PSP toolchains and homebrew sdks (as was available on 20/05/06) are available for download from http://xorloser.com
Seems like it uses the latest toolchains and sdk... And yeah, you don't need cygwin. I like this, it's nice and easy.
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:08 PM   #7

...in a dream...
 
SG57's Avatar
 
Join Date: Jul 2005
Posts: 4,957
Trader Feedback: 0
Default

...I love you:humpe d:

the toolchain wont install via cygwin... so this shall be mine...
__________________
SG57 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:12 PM   #8
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

:icon_smil :icon_smil :icon_wink
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:15 PM   #9

...in a dream...
 
SG57's Avatar
 
Join Date: Jul 2005
Posts: 4,957
Trader Feedback: 0
Default

Ahh... what do you mean other ones? I uninstalled cygwin now, i had them both installed, but now im reinstalling fresh...

I did what you said and itnsaid it couldnt find make or w/e... im retrying now without cygwin installed
__________________
SG57 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:33 PM   #10
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

You mean step 6 right? Well, go search for cygwin1.dll . I came up with like three results. Then you can right click them and look at properties. I looked at build date. Find the newest one and then right click and delete the older files. Put the newest one in the X:\psp\bin folder. Make sure you only have one cygwin1.dll file left on your pc. does that help? I had cygwin installed at first and it compiled with it installed too. Then I deleted it and it compiles fine without it.
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:35 PM   #11

...in a dream...
 
SG57's Avatar
 
Join Date: Jul 2005
Posts: 4,957
Trader Feedback: 0
Default

....
Code:
C:\pspdev>set path=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\Sys
rogram Files\Zone Labs\ZoneAlarm\MailFrontier";C:\Program Files\
\2.0\bin;C:/pspdev/bin;C:/pspdev/bin;C:\pspdev\bin
C:\pspdev>set PSPSDK=C:\pspdev\psp\sdk
C:\pspdev>cmd
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\pspdev>cd psp\sdk\samples\controller\basic
C:\pspdev\psp\sdk\samples\controller\basic>make
make: psp-config: Command not found
Makefile:16: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'.  Stop.
C:\pspdev\psp\sdk\samples\controller\basic>
I did what you said... Do i need a different cygwin thing
__________________
SG57 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:53 PM   #12
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

Go to the controller/basic folder and open up makefile in notepad! Then make sure you have this line: "PSPSDK=$(shell psp-config --pspsdk-path) include $(PSPSDK)/lib/build.mak" if that doesnt work go to your .bat file that you made and make sure that you have this line : "set PSPSDK=x:\pspdev\psp\sdk "

Does that work? I just tried it and it compiled fine.
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 08:54 PM   #13

...in a dream...
 
SG57's Avatar
 
Join Date: Jul 2005
Posts: 4,957
Trader Feedback: 0
Default

where 'x' is my drive?
__________________
SG57 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:00 PM   #14
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

yeah, for example my drive is c. so my code looks like this: "set PSPSDK=C:\pspdev\psp\sdk "
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:10 PM   #15

...in a dream...
 
SG57's Avatar
 
Join Date: Jul 2005
Posts: 4,957
Trader Feedback: 0
Default

yes... its all right... the makefile, the batch file...


Code:
 C:\pspdev\psp\sdk\samples\controller\basic>dir
 Volume in drive C has no label.
 Volume Serial Number is 8024-A36B
 Directory of C:\pspdev\psp\sdk\samples\controller\basic
05/25/2006  08:34 PM	<DIR>		  .
05/25/2006  08:34 PM	<DIR>		  ..
05/18/2006  06:56 AM			 2,953 main.c
05/18/2006  06:56 AM			   304 Makefile
			   2 File(s)		  3,257 bytes
			   2 Dir(s)  64,711,352,320 bytes free
C:\pspdev\psp\sdk\samples\controller\basic>make
make: psp-config: Command not found
Makefile:16: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'.  Stop.
C:\pspdev\psp\sdk\samples\controller\basic>
__________________
SG57 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:12 PM   #16
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

Remove the space between the samples and the \ symbol, it was there because of text formating and try. The problem is somewhere in your paths. Or try uninstalling the whole package and then reinstalling and going through the steps again.

Last edited by dalejrrocks; 05-25-2006 at 09:30 PM..
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:16 PM   #17
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

and you don't have to type in the dir command. Sorry for the double-post.
Your .bat file that you made should look like this (your drive is c, right?) :
set path=%path%;C:\pspdev\bin
set PSPSDK=C:\pspdev\psp\sdk
cmd

Last edited by dalejrrocks; 05-25-2006 at 09:32 PM..
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:19 PM   #18

Psp Dev
 
MikePiP's Avatar
 
Join Date: Jun 2005
Location: Nebraska
Posts: 228
Trader Feedback: 0
Default

Must have updated it then. I remember the old Win32 version.

Hmm when I type make I get...

C:\PSPDev\psp\sdk\samples \controller\basic>make
'make' is not recognized as an internal or external command,
operable program or batch file.
__________________


http://www.myspace.com/mikee_mo

Last edited by MikePiP; 05-25-2006 at 09:32 PM..
MikePiP is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:34 PM   #19
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

MikePiP : Make a .bat file like the tut says and launch it like any app. That should work. It will define the paths and then you can just use cd to get wherever you need to and type make as long as there's a makefile in that directory.
Well, I g2g to bed. I got school tomorrow.
Good Luck! :icon_smil Just follow the tutorial closely. It works.

Last edited by dalejrrocks; 05-25-2006 at 09:43 PM..
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-25-2006, 09:43 PM   #20

Psp Dev
 
MikePiP's Avatar
 
Join Date: Jun 2005
Location: Nebraska
Posts: 228
Trader Feedback: 0
Default

Well I have it all set up. I pretty much know what im doing... except why Im getting this error.

My start.bat looks like this:

set path=%path%;C:\pspdev\bin
set PSPSDK=C:\pspdev\psp\sdk
cmd

Its pointing right to where the make batch is so... I don't get why its giving me this error.
__________________


http://www.myspace.com/mikee_mo
MikePiP is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 04:17 AM   #21
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

Your folder name is different for your actual folder and in your batchfile look:
"C:\PSPDev\psp\sdk\sample s \controller\basic>make" <<<<<< PSPDev
"set path=%path%;C:\pspdev\bin <<<<< pspdev
set PSPSDK=C:\pspdev\psp\sdk <<<<< pspdev
cmd"
Try changing the folder names.
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 09:01 AM   #22

Psp Dev
 
MikePiP's Avatar
 
Join Date: Jun 2005
Location: Nebraska
Posts: 228
Trader Feedback: 0
Default

O O. Sorry I accidently installed it over the old version. I uninstalled it and reinstalled now. Thats why your seeing that.

EDIT: I fixed it.
__________________


http://www.myspace.com/mikee_mo

Last edited by MikePiP; 05-26-2006 at 10:05 AM..
MikePiP is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 11:45 AM   #23
 
manaox2's Avatar
 
Join Date: Jan 2006
Location: USA
Posts: 466
Trader Feedback: 0
Default

When I run this, I get:

Code:
C:\pspdev\psp\sdk\samples\controller\basic>make
process_begin:CreateProcess((null), psp-config --pspsdk-path, ...) failed.
Makefile:16: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'.  Stop.
C:\pspdev\psp\sdk\samples\controller\basic>
I noticed a lot of similar problems. How is it fixed?
manaox2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 03:48 PM   #24
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

I am not sure because I didn't get this error. Try uninstalling everything and trying again. Follow the tutorial and make sure that your paths are correct. And read the previous posts, there maybe a solution somewhere in there for you. When you get it to work, tell me what was wrong so I can add it to the tutorial as a common error.
Thanks

Last edited by dalejrrocks; 05-26-2006 at 03:57 PM..
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 03:55 PM   #25

Psp Dev
 
MikePiP's Avatar
 
Join Date: Jun 2005
Location: Nebraska
Posts: 228
Trader Feedback: 0
Default

No My folder names are the same. That wasnt my problem.

I left the enviroment as the installer did. I just added cmd to the end.

It worked

Quote:
Makefile:16: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'. Stop.
1. There is no /lib/build.mak - YOU NEED THIS. Try reinstalling.
2. You get that second error because it can't find build.mak
__________________


http://www.myspace.com/mikee_mo
MikePiP is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 04:07 PM   #26
 
Join Date: Mar 2006
Location: Alabama
Posts: 24
Trader Feedback: 0
Default

Go check and see if build.mak exists. It should, I've installed this many times and it was always there. And if you have the old Win32 version of this delete it, and the new one, and reinstall the new one.
Or try this: (MikePip's version of your .bat file)
set PSPDEV=C:/pspdev
set PATH=%PATH%;%PSPDEV%/bin
cmd

I've tried both my and Mike's .bat files and they both work perfectly. If these posts aren't any help, try listing exactly what you did or follow the tutorial EXACTLY.
Good Luck
dalejrrocks is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-26-2006, 06:46 PM   #27
 
manaox2's Avatar
 
Join Date: Jan 2006
Location: USA
Posts: 466
Trader Feedback: 0
Default

reinstalled three times... no fix. What is this crap? My paths shouldn't be wrong.

Last edited by manaox2; 05-26-2006 at 06:53 PM..
manaox2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-16-2006, 11:45 AM   #28
 
Join Date: Jul 2006
Posts: 51
Trader Feedback: 0
Default

Quote:
Originally Posted by dalejrrocks
Your folder name is different for your actual folder and in your batchfile look:
"C:\PSPDev\psp\sdk\sample s \controller\basic>make" <<<<<< PSPDev
"set path=%path%;C:\pspdev\bin <<<<< pspdev
set PSPSDK=C:\pspdev\psp\sdk <<<<< pspdev
cmd"
Try changing the folder names.
/me says ir only works with this one ... but that's cuz there are faults in my previous paths
Quote:
Originally Posted by me
set PSPDEV=C:/pspdev
set PATH=C:/pspdev/bin;%PATH%
set PSPSDK=C:/pspdev/psp/sdk
cmd
but hey that's just me
whazilla is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-16-2006, 11:56 AM   #29
 
Master Inuyasha's Avatar
 
Join Date: Jul 2005
Location: GA | Banned: 3 | Warned: 3
Posts: 2,253
Trader Feedback: 0
Default

THIS GUIDE ROCKS! Im gonna read up on some C/C++ tutorials, and start coding. My main concern is making .elf and .prx files.
Master Inuyasha is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-17-2006, 02:22 PM   #30
 
rikardo_92's Avatar
 
Join Date: Apr 2006
Location: Portugal
Posts: 63
Trader Feedback: 0
Default

i like the tutorial but i have an problem i created the start.bat and typed wot u say and when i run it i get this:

C:\pspdev>set path=C:\PROGRAMAS\FICHEIR OS COMUNS\ADOBE\AGL;C:\Progr amas\Panda So
ftware\Panda Platinum 2005 Internet Security\;C:\pspdev\bin

C:\pspdev>set PSPSDK=C:\pspdev\psp\sdk

C:\pspdev>cmd
'cmd' is not recognized as an intern or extern command, operational program or batch file.


help needed please!!!

Double Post Merge

the cmd thing is not working

any sugestions????

Double Post Merge

well someone know how to run an .exe file using a .bat??? if yes tell me and i can put this working

Double Post Merge

WORKING NOW!!!!!!!!!

i copy/paste the cmd.exe from system32 into the pspdev folder
rikardo_92 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
c or c , developing , easy , quick , start , tutorialthe

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -8. The time now is 10:27 PM.



Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © 2009, QJ.NET. All Rights Reserved.
Contact Us