Advertisement
MatthewGamingLive

Silhouette Mod for SMW Jailbreak

Jun 22nd, 2017
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. This mod for Sethbling's SMW Jailbreak is basically Dotsarecool's "SMW: Silhouette Blends Edition" but can technically be played on a real cartridge! The silhouette effect turns the game into two colors: the foreground which is black and the background which is another solid color. Here is a few screenshots if you don't get what I mean: http://imgur.com/a/qZGZq
  2.  
  3. Some issues that persist is that the effect breaks on the overworld sometimes. It also breaks in Mode 7 boss levels and also during HDMA windowing effects when it becomes really flashy (epilepsy warning).
  4.  
  5. Compiled code:
  6. A9 40 85 44 C2 20 AD 01 07 C9 00 00 F0 03 E2 20
  7. 6B A9 FF FF 8D 01 07 E2 20 6B
  8.  
  9. Raw Code:
  10. LDA #$40
  11. STA $44
  12. REP #%00100000
  13. LDA $0701
  14. CMP #$0000 ;checks to see if the background is black
  15. BEQ .fix
  16. SEP #%00100000
  17. RTL
  18. .fix:
  19. LDA #$FFFF
  20. STA $0701 ; sets it to white so you can see stuff
  21. SEP #%00100000
  22. RTL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement