GBA ROM编程语言
有谁知道ROM(例如GBA ROM)是用什么语言编写的?我还想知道是否有一种简单的方法来反编译这些 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GBA游戏可以用任何语言编程,只要编译成ARM汇编即可。
它们通常用 C++ 编写。
如果您有兴趣编写自制游戏,请参阅此处。
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.
我认为您误解了ROM是什么。它们不是实际的可执行文件(或者它们在原始平台上的样子),而是包含可执行文件的图像文件。它们可以用多种不同的语言编写。
请参阅此 wiki 页面以获取更多信息:
http://en.wikipedia.org/wiki/ROM_image
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