Tagged Questions

2
votes
1answer
43 views

How can I test my homebrew Nintendo Entertainment System software on real hardware?

A few years ago, I implemented an NES game as a class project, written in 6502 assembly. I only ever ran it on an NES emulator, but I would like to see it run on the real hardware. …
1
vote
3answers
402 views

Nintendo DS homebrew with Ada?

Note: I know very little about the GCC toolchain, so this question may not make much sense. Since GCC includes an Ada front end, and it can emit ARM, and devKitPro is based on GCC …
2
votes
1answer
87 views

Nintendo DS and Neural Networks

Hello, i was wondering if DS`s hardware is capable of running a game that utilizes a feedforward neural network using genetic algorithms. I know that this has to do with the implem …
1
vote
1answer
117 views

Combining 3D and framebuffer mode on the DS

The documentation implies that you can either have 3D rendering or framebuffer mode, and each only to the active display. Is there any way to render 3D to one screen and framebuffe …
1
vote
2answers
151 views

How would I go about making a Flight Gear port for WiiBrew?

How would I go about making a Flight Gear port for WiiBrew? Or, better yet, how would I convince someone else to?
18
votes
6answers
2k views

Programming on a Nintendo DS

I was reading this answer previously and it got me interested in purchasing a Nintendo DS Lite for learning to program embedded devices. Before I go out and splurge on a DS I had …
40
votes
6answers
5k views

Tutorials for Wii programming

I have a Nintendo Wii, and I've got devkitpro working to load some simple programs. The example source code that I've been able to find is very simplistic, such as drawing and rot …
2
votes
7answers
276 views

What techniques can you use to profile your code…

Some of the platforms that I develop on, don't have profiling tools. I am looking for suggestions/techniques that you have personally used to help you identify hotspots, without t …
1
vote
2answers
236 views

Converting a home-brew test application to a standard unit test framework

I've got a LOT of tests written for a piece of software (which is a GREAT thing) but it was built essentially as a standalone test in C#. While this works well enough, it suffers …