All Projects → jdriselvato → NDS-Development

jdriselvato / NDS-Development

Licence: MIT license
My research for developing on the Nintendo DS

Projects that are alternatives of or similar to NDS-Development

Dmg Cpu Inside
Reverse-engineered schematics for DMG-CPU-B
Stars: ✭ 230 (+41.1%)
Mutual labels:  nintendo
lazy-dsi-file-downloader
Automatically downloads, extracts and places files used for DSi modding
Stars: ✭ 78 (-52.15%)
Mutual labels:  nintendo
SwitchDecor
An app to help you to add frame to your favorite screenshots from Nintendo Switch.
Stars: ✭ 40 (-75.46%)
Mutual labels:  nintendo
Universal Updater
An easy to use app for installing and updating 3DS homebrew
Stars: ✭ 241 (+47.85%)
Mutual labels:  nintendo
FlappyBird-N64
Clone of Flappy Bird for Nintendo 64 built using the open source LibDragon SDK. Original game design, graphics, and sound effects created by .GEARS
Stars: ✭ 38 (-76.69%)
Mutual labels:  nintendo
CDNTool
CDN Nintendo's servers 3DS title downloader (as CIA)
Stars: ✭ 15 (-90.8%)
Mutual labels:  nintendo
Lemuroid
All in 1 emulator on Android!
Stars: ✭ 194 (+19.02%)
Mutual labels:  nintendo
ShallowSea
ShallowSea - The AIO CFW package for the Nintendo Switch with Atmosphere
Stars: ✭ 513 (+214.72%)
Mutual labels:  nintendo
Kosmos-Wii-U
All-in-One CFW Package for the Nintendo Wii U
Stars: ✭ 14 (-91.41%)
Mutual labels:  nintendo
switch-launcher
GUI-Based desktop switch payload launcher based on a modified reswitched injector
Stars: ✭ 19 (-88.34%)
Mutual labels:  nintendo
3dstool
An all-in-one tool for extracting/creating 3ds roms.
Stars: ✭ 246 (+50.92%)
Mutual labels:  nintendo
SARC-Tool
Tool for extracting and packing SARC files present in Nintendo EAD games.
Stars: ✭ 60 (-63.19%)
Mutual labels:  nintendo
MoonOS
MoonOS (just a kernel atm) is a micro kernel designed for the x86_64 and arm architecure.
Stars: ✭ 82 (-49.69%)
Mutual labels:  nintendo
Sdsetup
The Ninite for your Nintendo Switch.
Stars: ✭ 234 (+43.56%)
Mutual labels:  nintendo
sarc
Nintendo SARC archive reader and writer
Stars: ✭ 16 (-90.18%)
Mutual labels:  nintendo
Lost Nds Tv
The Lost Nintendo DS Television Output, brought back to life
Stars: ✭ 221 (+35.58%)
Mutual labels:  nintendo
dslibris
An ebook reader for the Nintendo DS, DS Lite, and DSi.
Stars: ✭ 31 (-80.98%)
Mutual labels:  nintendo
Fearless-NES
A NES emulator written in Rust
Stars: ✭ 112 (-31.29%)
Mutual labels:  nintendo
node-gameboy
A Gameboy emulator runnable on browsers or server side
Stars: ✭ 58 (-64.42%)
Mutual labels:  nintendo
Switch-Screenshots
Script to organize Nintendo Switch screenshots by directory instead of date.
Stars: ✭ 50 (-69.33%)
Mutual labels:  nintendo

NDS Homebew Development

Welcome to my NDS Homebrew Development Resource!

The Nintendo DS has a special place in my heart and I thought it was about time to started developing on it. You'll find resources, examples and more as I learn how to program on the NDS.

This repo is designed to provide an comprehensive understanding of how to develop on the NDS with devkitpro (C & C++). The examples that come with devkitpro are excellent but in some cases are very one off. Here you'll find examples that are specific to game development. I'll also include as much commented as I see and provide resources to further the understanding of the topic.

Come join us at /r/NDSHacks to learn more about NDS Homebrew.

Join our Discord: https://discord.gg/JtnxnDD

NDS Game Development Topics

This repo is broken up into high level topics and each of those topics have it's own README.md that go into more detail. For example the Graphics examples have a total of 9 examples. Each of those 9 examples will have it's own README outlining new information about the code. So this truly is a great way to learn the DevKitPro SDK.

1. Graphics

(Novice - Moderate) - 9 Examples

Here we will learn how to display a basic solid square on the screen to a full basic game in 9 different examples. Each example will have it's own tutorial outlining new code and different concepts for a full understanding of the basics of graphics on the NDS. I suggest starting off here if you are new to DevKitPro and NDS homebrew development.

2. Ray Casting

(Advance) - working progress

Here we will learn about an advance idea that can make your game look reall awesome with Ray Casting. Each example has a comprehensive outline of new code, concepts and equations. I truly think anyone can learn how to Ray Cast from these examples because of how much information I go into. If you are looking to take everything you've learned from the Graphics category and take it to the next level, Ray Casting is it!

3. Basic RTS

(Advance) - working progress

I'm pretty interested in getting an RTS together, so I'll be breaking up the development of it into multiple parts. The code, the sprites and the entire project is free to use for your own games! If you do develop something with it let me know, I'd love to spot light it!

Downloading and Installing

Devkitpro now starts you off with GC and Wii SDKs. To get the GBA/NDS version of devkitPro use the link below: http://devkitpro.org/wiki/Getting_Started/devkitARM

All projects are currently compiled with 1.50.3 NDS rom tool and devkitARM r45 (latest), as of May 12, 2016.

After installing (I did through OSX perl install) it requires you to set up environment variables. This is what my ~/.bash_profile looks like (OSX/Linux):

  export DEVKITPRO=/Users/jdriselvato/devkitPro
  export DEVKITARM=${DEVKITPRO}/devkitARM

Then literally after that go to ~/devkitPro/examples and type make in any of the example folders and it will compile the source to NDS file. It couldn't be easier.

Emulator

I'm using DESMUME as the emulator to test out the code on OSX. Download here: http://desmume.org

Testing on Device

Read more here

Still have questions join our communities

Come join us at /r/NDSHacks to learn more about NDS Homebrew.

Join our Discord: https://discord.gg/JtnxnDD

Resources to read

  1. http://devkitpro.org/wiki/Getting_Started/devkitARM - Getting Started
  2. http://libnds.devkitpro.org/index.html - The libNDS documentation (the bible practically)
  3. https://patater.com/files/projects/manual/manual.html - Best guide to get you really familair with developing NDS
  4. https://web.archive.org/web/20150814060137/http://www.tobw.net/dswiki/index.php?title=Graphic_modes - Graphic Modes
  5. https://mtheall.com/vram.html#T0=1&NT0=32&MB0=0&TB0=0&S0=0 - Tool to check VRAM
  6. http://www.coranac.com/2009/02/some-interesting-numbers-on-nds-code-size/ - Some interesting numbers on NDS code size
  7. http://answers.drunkencoders.com - Different segments to beginner questions
  8. http://www.cc.gatech.edu/~hyesoon/spr11/lec_arm_prog1.pdf - really awesome intro to the technical size of NDS development from GA Tech!
  9. http://osdl.sourceforge.net/main/documentation/misc/nintendo-DS/homebrew-guide/HomebrewForDS.html - A guide to homebrew development for the Nintendo DS
  10. http://problemkaputt.de/gbatek.htm - An awesome resource on Gameboy Advance / Nintendo DS / DSi, thanks @zecbmo
  11. https://sylvainhb.blogspot.com/2009/02/xargon-may-source-be-with-you.html - sprite collision example

Where to find me

Website | Twitter | Instagram

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].