Advertisement
Guest User

Untitled

a guest
Dec 14th, 2013
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. 1. make a copy of your rom and add 512[1] bytes in the begining of the file (use some snes rom editing software, dd[2] or ipsbehead[3] if you will)
  2. 2. patch the modified rom
  3. 3. strip the first 512 bytes from the patched rom
  4. 4. generate a patch from the roms
  5. 5. delete the modified rom
  6. 6. enjoy using your unmodified rom with a working patch
  7. 7. get a gf
  8.  
  9.  
  10. 1:
  11. 512 bytes is the header size iirc
  12.  
  13. 2:
  14. dd if=/dev/zero of=headed.sfc bs=512 count=1
  15. dd if=original.sfc of=headed.sfc obs=512 seek=1
  16. *apply patch to headed.sfc*
  17. dd if=headed.sfc of=headerless.sfc bs=512 skip=1
  18. *create patch to change original.sfc into headerless.sfc*
  19. *remove headerless.sfc*
  20. *play original.sfc with your new .ips/bps/whatever patch*
  21.  
  22.  
  23. 3:
  24. https://github.com/heuripedes/ipsbehead
  25. (if you want to compile it to use in windows, just run gcc ipsbehead.c -o ipsbehead.exe)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement