Use a tool like HxD to find and replace text. However, SNES games don't use standard text formats (like ASCII), so you’ll need a "table file" to tell the editor which hex value represents which letter.
Use programs like Tableator to create these table files so the text becomes readable and editable in your hex editor. SNES Station
If "make a text" means you want to change the dialogue or names inside a game (like changing "Mario" to something else), you need to perform ROM hacking before loading the game into SNES Station. Use a tool like HxD to find and replace text
Many popular games (like Super Mario World or Zelda ) have dedicated editors (e.g., Lunar Magic ) that let you edit text through a simple user interface rather than raw code. 3. Displaying Text for Development If "make a text" means you want to
Use PVSnesLib on GitHub , which allows you to use the C language. To show text, you simply use the command consoleDrawText(column, row, "Your Text Here"); .