Page 1 of 1
What is devkit?
Posted: Tue Aug 10, 2010 11:22 pm
by thekidwithamustache
What is devkit, How do I use devkit?
Can someone answer these questions for me?
Re: What is devkit?
Posted: Wed Aug 11, 2010 8:40 pm
by WinterMute
http://wiki.devkitpro.org/index.php/About
which particular devkit were you interested in?
Re: What is devkit?
Posted: Thu Aug 12, 2010 9:09 pm
by thekidwithamustache
I'm interested in DevkitARM to compile for the DS but I don't know how to use it, can you tell me?
Re: What is devkit?
Posted: Fri Aug 13, 2010 3:54 pm
by Izhido
I think that we need a little more information before we can answer you. What experience do you have at software development? What programming languages have you used, and which ones do you feel more comfortable using? What OS do you have on your computer(s)? Are you comfortable operating on devices whose memory is way more limited than, say, regular desktop PCs? Are you, also, accepting on learning new libs, following best practices, and in general, getting yourself into a different way of doing software development for devices like the DS / Wii?
Re: What is devkit?
Posted: Fri Aug 13, 2010 7:58 pm
by thekidwithamustache
I know/learn C and C++, I'm most comfortable with C++ and I'm using a windows xp laptop.
Re: What is devkit?
Posted: Sun Aug 15, 2010 2:34 pm
by fincs
Then you're lucky, setting up devkitARM is ridiculously easy on Windows thanks to the
devkitPro updater.
Note that you don't need devkitPPC (GCN/Wii development) nor devkitPSP (no explanation needed), so you can safely uncheck the corresponding checkboxes.
Once you've installed devkitARM, open the command prompt, cd to c:\devkitPro\examples\nds\hello_world and type make to build the example hello world program. The resulting binary will be called hello_world.nds, which you can either run with an emulator or transfer to your flashcard.
Happy DS devving ;p
Re: What is devkit?
Posted: Thu Aug 19, 2010 10:28 pm
by thekidwithamustache
Thanks! Do I just edit the main.cpp and use cmd to make my nds?
Re: What is devkit?
Posted: Fri Aug 20, 2010 5:06 pm
by fincs
Yes. You can also add other .c/.cpp/.h files if necessary.
Also, the template source code file is called main.c, this does not let you use C++. In order to do so rename it to main.cpp.
Re: What is devkit?
Posted: Tue Aug 24, 2010 9:55 pm
by thekidwithamustache
Ok, I understand now. Thanks.