View a.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
hydlide (nes) map ripper | |
coded by karmic, jan 27 2022 | |
requires libpng (compile with "-lpng") | |
rom must be in the working directory and called "Hydlide (U) [!].nes" |
View a.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
mad max nes map ripper | |
coded by karmic, sep 3-4, 2021 | |
massively improved jan 22, 2021 | |
requires libpng (compile with -lpng) | |
rom must be in the working directory and called "Mad Max (U) [!].nes" | |
*/ |
View Xevious - show bombable objects.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- xevious NES Mesen "show bombable objects" Lua script | |
-- coded by karmic, july 10 2021 | |
-- slightly improved jan 21 2022 | |
function read(addr) | |
return emu.read(addr, emu.memType.cpuDebug) | |
end | |
function readbeword(addr) | |
lo = read(addr+1) |
View Bill & Ted.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- bill & ted NES Mesen lua script | |
-- coded by karmic, jan 18-20, 2022 | |
figure_names = {"Cleopatra","Confucius","King Arthur","Christopher Columbus","Paul Revere","Jesse James","Al Capone","Elvis","Julius Caesar","Robin Hood","Rembrandt","William Shakespeare","George Washington","Sitting Bull","Thomas Edison","Marilyn Monroe","A stranger"} | |
bait_names = {"Major credit card","Fortune cookie","Holy grail","Compass","Megaphone","Uzi","Book of lawyer stuff","Headstone","Salad dressing","Bag-o-money","Paint roller","Stage prop","Pair of choppers","Lawn chair","Compact disc","Rose","Some stuff"} | |
good_stuff_names = {"Pudding","Firecracker","Textbook","Cassette tape","Coin","Key"} | |
-- helper functions | |
function concat11(lo, hi) | |
return lo | (hi << 8) |
View a.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
bill & ted nes map ripper | |
written by karmic, jul 10-11, 2021 | |
slightly improved jan 16-17, 2022 | |
requires libpng (compile with "-lpng") | |
rom must be in the working directory and called "Bill & Ted's Excellent Video Game Adventure (U) [!].nes" |
View convert.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
Megapanel (MegaDrive) ripper written by karmic, jan 14-15, 2022 | |
requires libpng (use the option "-lpng" on command line when compiling) | |
rom must be in the working directory and called "Megapanel (J) [c][!].bin" | |
***/ |