2014-03-30, 08:15 AM
You might look into the compiler ARMIPS. It uses ASM files that pretty much do what you describe.
A basic entry to write a line of text to a specific location in a file would look like this:
This would write the word "Text" to 0xb68a8 in the previously opened file.
I think the game is laid out in sections so translating even a signal section would be cool. The menu and items would do a lot too.
A basic entry to write a line of text to a specific location in a file would look like this:
Code:
.org 0xB68A8
 .string "Text"
I think the game is laid out in sections so translating even a signal section would be cool. The menu and items would do a lot too.