Advertisement
cloudmax

OoT Debug ROM Custom Button Colors

Jan 27th, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. OoT Debug ROM Button Colors
  2. This is a small ASM hack that allows you to set individual values for each color of the interface buttons.
  3. Unlike most (if not all?) other gameshark codes that change the interface colors, this hack changes the ASM that applies the colors, rather than the values that are set by it, making it possible to easily convert it into a ROM hack.
  4. Scroll to the bottom for a Gameshark code.
  5.  
  6. ;;;;;;;;;;;;;;;;;
  7. ;;A BUTTON
  8. ;;;;;;;;;;;;;;;;;
  9. .org 0x80110F3C
  10. ADDIU T6, R0, 0x0064 ;A Button Red
  11. SH T6, 0x0AC0(T5)
  12. .org 0x80110F08
  13. ADDIU T7, R0, 0x00C8 ;A Button Green
  14. .org 0x80110F1C
  15. ADDIU T9, R0, 0x00FF ;A Button Blue
  16. ;;;;;;;;;;;;;;;;;
  17. ;;B BUTTON
  18. ;;;;;;;;;;;;;;;;;
  19. .org 0x80110EE8
  20. ADDIU T6, R0, 0x0064 ;B Button Red
  21. .org 0x80110EF4
  22. ADDIU V1, R0, 0x00FF ;B Button Green
  23. .org 0x80110F10
  24. ADDIU T9, R0, 0x0078 ;B Button Blue
  25. SH T9, 0x06EE(T8)
  26. ;;;;;;;;;;;;;;;;;
  27. ;;C BUTTONS
  28. ;;;;;;;;;;;;;;;;;
  29. .org 0x801110E8
  30. ADDIU T5, R0, 0x00FF ;C Button Red
  31. .org 0x80111494
  32. ADDIU T8, R0, 0x00FF ;C Button Green
  33. .org 0x801114B4
  34. ADDIU T6, R0, 0x0000 ;C Button Blue
  35. SH T6, 0x07E6(T9)
  36. ;;;;;;;;;;;;;;;;;
  37. ;;START BUTTON
  38. ;;;;;;;;;;;;;;;;;
  39. .org 0x80089180
  40. LUI AT, 0x7878 ;START Button Red & Green
  41. ORI AT, AT, 0x7800 ;START Button Blue
  42.  
  43. And as a gameshark code:
  44.  
  45. 81110F3C 240E
  46. 81110F3E 00XX ;XX = A Button Red (0x64 for MM color)
  47. 81110F40 A5AE
  48. 81110F42 0AC0
  49. 81110F08 240F
  50. 81110F0A 00XX ;XX = A Button Green (0xC8 for MM color)
  51. 81110F1C 2419
  52. 81110F1E 00XX ;XX = A Button Blue (0xFF for MM color)
  53. 81110EE8 240E
  54. 81110EEA 00XX ;XX = B Button Red (0x64 for MM color)
  55. 81110EF4 2403
  56. 81110EF6 00XX ;XX = B Button Green (0xFF for MM color)
  57. 81110F10 2419
  58. 81110F12 00XX ;XX = B Button Blue (0x78 for MM color)
  59. 81110F14 A719
  60. 81110F16 06EE
  61. 811110E8 240D
  62. 811110EA 00XX ;XX = C Button Red (0xFF for MM color)
  63. 81111494 2418
  64. 81111496 00XX ;XX = C Button Green (0xFF for MM color)
  65. 811114B4 240E
  66. 811114B6 00XX ;XX = C Button Blue (0x00 for MM color)
  67. 811114B8 A72E
  68. 811114BA 07E6
  69. 81089180 3C01
  70. 81089182 XXYY ;XX = START Button Red (0x78 for MM color) YY = START Button Green (0x78 for MM color)
  71. 81089184 3421
  72. 81089186 XX00 ;XX = START Button Blue (0x78 for MM color)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement