Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GBA ROM Programming Language

Tags:

rom

Does anyone know what language ROMs (such as GBA ROMs) are coded in? I'd also like to know if there would be a simplistic way to decompile these ROMs.

like image 357
Nik Avatar asked May 23 '10 17:05

Nik


2 Answers

GBA games can be programmed in any language, as long as it compiles to ARM assembly.

They're usually written in C++.

If you're interested in writing your homebrew games, see here.

like image 93
SLaks Avatar answered Oct 15 '22 19:10

SLaks


I think you've misunderstood what ROMs are. They're not the actual executables (or what they would be on the original platform), rather they are image files that contains the executables. They can be written in many different languages.
See this wiki page for more info:
http://en.wikipedia.org/wiki/ROM_image

like image 34
Hans Olsson Avatar answered Oct 15 '22 19:10

Hans Olsson