diff --git a/ananke/ananke.cpp b/ananke/ananke.cpp index 8fefdd22..9f428a67 100644 --- a/ananke/ananke.cpp +++ b/ananke/ananke.cpp @@ -1,79 +1,63 @@ #include +#include +#include using namespace nall; #include using namespace phoenix; struct Ananke { - struct Configuration : configuration { - string path; + #include "configuration.cpp" - Configuration() { - append(path = userpath(), "Path"); - directory::create({configpath(), "ananke/"}); - load({configpath(), "ananke/settings.cfg"}); - } + struct Information { + string path; //path to selected file + string name; //name of selected file (inside of archive if .zip) + string archive; //pathname of archive + string manifest; //manifest from successfully applied patch + } information; - ~Configuration() { - save({configpath(), "ananke/settings.cfg"}); - } - } config; + //archive.cpp + vector extractROM(); + vector extractFile(const string &filename); - string createSuperFamicomDatabase(const string &filename, Markup::Node &document, const string &manifest) { - string pathname = { - userpath(), "Emulation/Super Famicom/", - document["release/information/name"].text(), - " (", document["release/information/region"].text(), ")", - " (", document["release/information/revision"].text(), ")", - ".sfc/" - }; - directory::create(pathname); + //patch.cpp + void applyBeatPatch(vector &buffer); - file::write({pathname, "manifest.bml"}, (const uint8_t*)(const char*)manifest, manifest.length()); - auto buffer = file::read(filename); - unsigned offset = 0; - - for(auto &node : document["release/information/configuration"]) { - if(node.name != "rom") continue; - string name = node["name"].text(); - unsigned size = node["size"].decimal(); - if(file::exists({pathname, name}) == false) { - file::write({pathname, name}, buffer.data() + offset, size); - } - offset += size; - } - - return pathname; - } - - string openSuperFamicom(const string &filename) { - string sha256 = file::sha256(filename); - - string databaseText = string::read({configpath(), "ananke/database/Super Famicom.bml"}).rtrim("\n"); - lstring databaseItem = databaseText.split("\n\n"); - - for(auto &item : databaseItem) { - item.append("\n"); - auto document = Markup::Document(item); - - if(document["release/information/sha256"].text() == sha256) { - return createSuperFamicomDatabase(filename, document, item); - } - } - - return ""; - } + //super-famicom.cpp + string createSuperFamicomDatabase(vector &buffer, Markup::Node &document, const string &manifest); + string createSuperFamicomHeuristic(vector &buffer); + string openSuperFamicom(vector &buffer); string open(string filename = "") { if(filename.empty()) filename = DialogWindow::fileOpen(Window::none(), config.path); if(filename.empty()) return ""; - config.path = dir(filename); - if(filename.endswith(".sfc")) return openSuperFamicom(filename); + information.path = dir(filename); + information.name = notdir(filename); + config.path = information.path; //remember last used directory + + vector buffer; + if(filename.endswith(".zip")) { + information.archive = filename; + buffer = extractROM(); + } else { + buffer = file::read(filename); + } + if(buffer.size() == 0) return ""; //failed to read file + + applyBeatPatch(buffer); + + if(information.name.endswith(".sfc")) return openSuperFamicom(buffer); return ""; } + + }; +#include "archive.cpp" +#include "patch.cpp" +#include "super-famicom.cpp" + extern "C" string ananke_browse(const string &filename) { Ananke ananke; return ananke.open(); diff --git a/ananke/archive.cpp b/ananke/archive.cpp new file mode 100644 index 00000000..af0ec5b3 --- /dev/null +++ b/ananke/archive.cpp @@ -0,0 +1,24 @@ +vector Ananke::extractROM() { + unzip archive; + if(archive.open(information.archive)) { + for(auto &file : archive.file) { + if(file.name.endswith(".sfc")) { + information.name = notdir(file.name); + return archive.extract(file); + } + } + } + return vector(); +} + +vector Ananke::extractFile(const string &filename) { + unzip archive; + if(archive.open(information.archive)) { + for(auto &file : archive.file) { + if(notdir(file.name) == filename) { + return archive.extract(file); + } + } + } + return vector(); +} diff --git a/ananke/configuration.cpp b/ananke/configuration.cpp new file mode 100644 index 00000000..ada3814e --- /dev/null +++ b/ananke/configuration.cpp @@ -0,0 +1,13 @@ +struct Configuration : configuration { + string path; + + Configuration() { + append(path = userpath(), "Path"); + directory::create({configpath(), "ananke/"}); + load({configpath(), "ananke/settings.cfg"}); + } + + ~Configuration() { + save({configpath(), "ananke/settings.cfg"}); + } +} config; diff --git a/ananke/database/Super Famicom.bml b/ananke/database/Super Famicom.bml index 50804e6e..a6feb8b0 100644 --- a/ananke/database/Super Famicom.bml +++ b/ananke/database/Super Famicom.bml @@ -1,4 +1,72 @@ -database revision=2012-11-03 +database revision=2012-11-21 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: 3 Ninjas Kick Back + name: 3 Ninjas Kick Back + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 2ffe8828480f943056fb1ab5c3c84d48a0bf8cbe3ed7c9960b349b59adb07f3b + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Aaahh!!! Real Monsters + name: Aaahh!!! Real Monsters + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: ce164872c4f5814bce04cf0565edcdb5b7969ae95a3b5cd515cfb626b5cde7b3 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: ABC Monday Night Football + name: ABC Monday Night Football + region: NA + revision: 1.0 + board: SHVC-1A3M-10 + sha256: bb83f982961c33b81fefc1f545e18ab572d1c43cf6c241948544f05a1a71f2ba + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A5M revision=11,20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: ACME Animation Factory + name: ACME Animation Factory + region: NA + revision: 1.0 + board: SHVC-1A5M-11 + sha256: d07e8802a6d9c777247874e05ec08fce7e0fa1bf122cc1ab9913f7d828e4072b + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 release cartridge region=NTSC @@ -26,7 +94,7 @@ release map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 information title: The Addams Family - name: Addams Family, The + name: Addams Family 1, The region: NA revision: 1.0 board: SHVC-1A0N-01 @@ -34,6 +102,106 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Addams Family 2: Pugsley's Scavenger Hunt + name: Addams Family 2 - Pugsley's Scavenger Hunt, The + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: b6957bae7fd97ba681afbf8962fe2138e209649fd88ed9add2d5233178680aaa + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Adventures of Dr. Franken + name: Adventures of Dr. Franken, The + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: ecd964ae44e61203bc8759cfc6441365bf0c6e7bae6ad2a0fd553d4c7efab71e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Adventures of Rocky and Bullwinkle and Friends + name: Adventures of Rocky and Bullwinkle and Friends, The + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: b70099186d3774355ac5db370240e370c73f9ce5341f6c805cf9f771374b43ae + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Aero the Acro-Bat 2 + name: Aero the Acro-Bat 2 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: fc5df5db0a96d39d3df651f63993adf0f5cb5a6b92a36211f3a05d460d92c72d + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Aerobiz + name: Aerobiz + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: d5f0fbeed3774bbccbd769698fc4051487a0a5eb699790a8a094451595600f60 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Aerobiz Supersonic + name: Aerobiz Supersonic + region: NA + revision: 1.0 + board: SHVC-1A3M-21 + sha256: 6b6921d7aba9ba353e96e39c8d79d24eef1b84eb5c7fa54edaa83d2447dcd954 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -50,6 +218,22 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Andre Agassi Tennis + name: Andre Agassi Tennis + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 9abb426bac62e03e4437f5a9a8455c3000042f339125cc60ae29382ae89d8493 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A3B revision=11,12,13 @@ -68,6 +252,38 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Ardy Light Foot + name: Ardy Light Foot + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 0f474dafe5a26f3dea491d18073dd490d2f1f91313a7e91086565510d38d9a09 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Arkanoid: Doh It Again! + name: Arkanoid - Doh It Again! + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 14d3ece30898587eda20c661a4a55ec595ba6352ca1f0bfc177542aa0eef0039 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1J0N revision=01,10,20 @@ -93,9 +309,8 @@ release necdsp model=uPD7725 frequency=8000000 rom id=program name=dsp1b.program.rom size=0x1800 rom id=data name=dsp1b.data.rom size=0x800 - ram size=0x200 - map id=dr address=00-1f,80-9f:6000-6fff - map id=sr address=00-1f,80-9f:7000-7fff + ram id=data size=0x200 + map id=io address=00-1f,80-9f:6000-7fff select=0x1000 information title: Ballz 3D name: Ballz 3D @@ -111,7 +326,39 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=YA0N revision=01 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Barbie Super Star + name: Barbie Super Star + region: NA + revision: 1.0 + board: SHVC-YA0N-01 + sha256: 865919b25a9d241c907bcda18b380e3c704f33f4997ad44559046f0f08c4968b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Barkley Shut Up and Jam! + name: Barkley Shut Up and Jam! + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: fe1ad128313b2b9a47f89cf0d95d4c0cc2cb35a817ac5d915ee6c4d98d47d675 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -143,7 +390,7 @@ release release cartridge region=NTSC - board type=1A3M revision=10,20,21 + board type=1A3M revision=10,20,21,30 rom name=program.rom size=0x200000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -191,6 +438,120 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Beauty and the Beast + name: Beauty and the Beast + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: d7271ca08400bbf5ae165b0aaa6e8a8a1b266f72e6e0ae10aae529732a472f7c + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Best of the Best: Championship Karate + name: Best of the Best - Championship Karate + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: e4e9beaeeb3e968af772d1c4c9e4c1b4dfdba4e47c0205b458e1ab3a62a96060 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Big Sky Trooper + name: Big Sky Trooper + region: NA + revision: 1.0 + board: SHVC-1A1M-20 + sha256: 4cb601168c91fa0608c16a8cf2f292d991c6a5615d51861dee2f9b91c8d6bb19 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x100000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Bill Walsh: College Football + name: Bill Walsh - College Football + region: NA + revision: 1.0 + board: SHVC-1J0N-10 + sha256: ec2d91e238c26a5ddf7067d104b3b3e2eaee89255377e1eb6c4df8f301300e64 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Bio Metal + name: Bio Metal + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: de1de85ad549a6aaf0431cceb47cbd07e1f6e81f9e16fd62575305e2c1f06240 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: BlaZeon: The Bio-Cyborg Challenge + name: BlaZeon - The Bio-Cyborg Challenge + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 0d4e0d134396bd1c7254cdc1da356eb944ca14910b6690f484a75a9c3a8106e7 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: B.O.B. + name: BOB + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 9e6ebebcf14609c2a38a5f4409d0c8c859949cded70c5b6fd16fd15d9983d9d3 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -207,6 +568,126 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=2J3M revision=11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=10-1f,30-3f:6000-7fff mask=0xe000 + map id=ram address=90-9f,b0-bf:6000-7fff mask=0xe000 + information + title: Brain Lord + name: Brain Lord + region: NA + revision: 1.0 + board: SHVC-2J3M-11 + sha256: f4666355e7fea434843dc6d5119673bd6c23e69b884aac0b382ff036997e52b5 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Brainies + name: Brainies, The + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 9885ca148d32c4df6230642bcfa153f7e51b9559415042a831db14d07b3e6c3d + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2J5M revision=01 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x8000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=10-1f,90-9f:6000-7fff mask=0xe000 + map id=ram address=30-3f,b0-bf:6000-7fff mask=0xe000 + information + title: Brandish + name: Brandish + region: NA + revision: 1.0 + board: SHVC-2J5M-01 + sha256: 130a74e76369b0ec4d6378a014550921433f1ae1ac1dddffb51f77c9f21a818f + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Brawl Brothers + name: Brawl Brothers + region: NA + revision: 1.0 + board: SHVC-2A0N-10 + sha256: 044b61613ed66eae08abd5fa5dcd13b24aab11a942e3309cdff624d198c47440 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Brett Hull Hockey '95 + name: Brett Hull Hockey '95 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: a427db4860cb5140935f263ba872fe14949c3548db644fed46b2edf3dff3d4a8 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Brutal: Paws of Fury + name: Brutal - Paws of Fury + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 9e3ad5e521e759a2e2260ea8072eb3314b6fcf67a3b7247357a5de9bcb24eeaa + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Bugs Bunny: Rabbit Rampage + name: Bugs Bunny - Rabbit Rampage + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: 49020695a017acc3dfadea97a60e28609e583571f69c5abeb3c6b1c2db8113fa + configuration + rom name=program.rom size=0x180000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -223,6 +704,22 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Cacoma Knight in Bizyland + name: Cacoma Knight in Bizyland + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: a8294d449bbb8370816efe0374704e8af20dbbde9c19afe969d898528bc293d0 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -255,6 +752,22 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Captain America and The Avengers + name: Captain America and The Avengers + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 2a117951adcfbc4298763673a834d502c3f7a3964db1e59650f113c07bb831fb + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1J0N revision=01,10,20 @@ -271,6 +784,136 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Carrier Aces + name: Carrier Aces + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: ee5fc27dd19a2ecb3c3c7c73d558a18ffd5ff365710c18b88150e277f08d587e + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Champions World Class Soccer + name: Champions World Class Soccer + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 32008c429eafe7eb59aff7a89f77e1a267f02f9061ff8830ade7b99081e27f7c + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Chavez + name: Chavez + region: MX + revision: 1.0 + board: SHVC-1A1M-01 + sha256: aa69d4e19c2eb206fe88eba65994c830256c220e5506f59824aefa0a75dd44d5 + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Chavez II + name: Chavez II + region: MX + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 39de64101cf7f25863ce55e03a27d13422ea572ee996746578b5936fea80228b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Chessmaster + name: Chessmaster, The + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: ee0e51d922d1cf8abe3dfc6b0d84a988a6635dc96b2a96962007c41aaa542774 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Chester Cheetah: Too Cool to Fool + name: Chester Cheetah - Too Cool to Fool + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: c7e7df8932bf0056aa530f3dc3c913c1171a359af4c197094c2b972946dc6051 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Chuck Rock + name: Chuck Rock + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 63ab79e86ea13e2cf9bb67aec971febb68450db9865b00b5f412610653822393 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x300000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Clay Fighter 2: Judgment Clay + name: Clay Fighter 2 - Judgment Clay + region: NA + revision: 1.0 + board: SHVC-BJ0N-20 + sha256: 2d40c86bc19d85555bf2672acf515b04dbf56a6a59b29ad503e672310b0fae3b + configuration + rom name=program.rom size=0x300000 + release cartridge region=NTSC board type=1J0N revision=01,10,20 @@ -287,6 +930,263 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Clue + name: Clue + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 03f6c69aef92d36b5ea25a6023368da0e1da9fa160e8316ebd533d4f358ffacf + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: College Slam + name: College Slam + region: NA + revision: 1.0 + board: SHVC-1A3M-30 + sha256: b0be35a0d5e500f4fffca5f2940e0ec52c81ce99dacd773c3ca9cf92f592d943 + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Congo's Caper + name: Congo's Caper + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 26e09f5bc2bde28d57aeca0bf5be7f7fb8e3b3887af975bcbf2e6f29b07df56f + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Cool Spot + name: Cool Spot + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: c7d622391f7699fb0dc6367e141c894e700cc9bd8abca69f36785e7bc2f42a49 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Cool World + name: Cool World + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 9674cc269d89a52d1719a487b44acf004fb777cbd58d76b19a2cd25749728215 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: CutThroat Island + name: CutThroat Island + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 7c722f9941957630467c1784d0eb3f92fbfc0a2a1da3c8f5c27f593eca2a5a04 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Daffy Duck: The Marvin Missions + name: Daffy Duck - The Marvin Missions + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 4068add412571bd85adac32dff9835e4a4886077d752adb104fee3908e42b7ef + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Darius Twin + name: Darius Twin + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: ceb470157576eac3b8b8c16e8ab6b59672409681ffb4232e4ec39dd0cb37ef91 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: David Crane's Amazing Tennis + name: David Crane's Amazing Tennis + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: e6efb6361af04963f22c772f879a466543f56b3b6a084204fef2dcb4659d82d9 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Desert Strike: Return to the Gulf + name: Desert Strike - Return to the Gulf + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 606abf536440173ae36466db360c7db6b474beb7a105c8a62bc74a54cbe1c38b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: D-Force + name: D-Force + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 337e643d3e63915de06429992f306e8d2b73aed6849b795f9c855c2d03c18180 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: DinoCity + name: DinoCity + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 7dbfc44d28a46e6d399628e43086aa9fd0b2abeda4c108751a5ad91c102c3aaf + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1CA0N6S revision=01 + superfx revision=2 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x10000 + map id=io address=00-3f,80-bf:3000-32ff + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=rom address=40-5f,c0-df:0000-ffff + map id=ram address=00-3f,80-bf:6000-7fff size=0x2000 + map id=ram address=70-71,f0-f1:0000-ffff + information + title: Dirt Trax FX + name: Dirt Trax FX + region: NA + revision: 1.0 + board: SHVC-1CA0N6S-01 + sha256: c5474de3592e2a99aac0e5511516658f9f0b50167c754a018409842ec35bcd45 + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x10000 + +release + cartridge region=NTSC + board type=1J1M revision=20 + rom name=program.rom size=0x400000 + ram name=save.ram size=0x800 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Donkey Kong Country + name: Donkey Kong Country + region: NA + revision: 1.2 + board: SHVC-1J1M-20 + sha256: 628147468c3539283197f58f03b94df49758a332831857481ea9cc31645f0527 + configuration + rom name=program.rom size=0x400000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1CB0N7S revision=01 + superfx revision=3 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x10000 + map id=io address=00-3f,80-bf:3000-32ff + map id=rom address=00-3f:8000-ffff mask=0x8000 + map id=rom address=40-5f:0000-ffff + map id=ram address=00-3f,80-bf:6000-7fff size=0x2000 + map id=ram address=70-71:0000-ffff + information + title: Doom + name: Doom + region: NA + revision: 1.0 + board: SHVC-1CB0N7S-01 + sha256: d45e26eb10c323ecd480e5f2326b223e29264c3adde67f48f0d2791128e519e8 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x10000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -335,6 +1235,24 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Dragon View + name: Dragon View + region: NA + revision: 1.0 + board: SHVC-1A3M-21 + sha256: a3b1cae3fe55fe52c035ab122e7f850640b0935524496d45b1915ca3c8a934f4 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -369,6 +1287,64 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1B5B revision=02 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + necdsp model=uPD7725 frequency=8000000 + rom id=program name=dsp2.program.rom size=0x1800 + rom id=data name=dsp2.data.rom size=0x800 + ram id=data size=0x200 + map id=io address=20-3f,a0-bf:8000-ffff select=0x4000 + information + title: Dungeon Master + name: Dungeon Master + region: NA + revision: 1.0 + board: SHVC-1B5B-02 + sha256: 03d25227fb88899d0f3234c4a3f76f1dbe8d582cb6429454fd6f1c4cf14d5c6e + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 + rom name=dsp2.program.rom size=0x1800 + rom name=dsp2.data.rom size=0x800 + ram name=dsp2.data.ram size=0x200 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Earth Defense Force + name: Earth Defense Force + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 0408e3d9f2259044344a3bfbd7a7ca3c3427f82108fbecd6e5c4c41e80cd303b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Eek! The Cat + name: Eek! The Cat + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 5d658b63d35e2e0baf48ae3bb04ea5e1553855b34bb39fc2c7ca41fbd3894d52 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1J0N revision=01,10,20 @@ -403,7 +1379,25 @@ release release cartridge region=NTSC - board type=1A3M revision=10,20,21 + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: ESPN National Hockey Night + name: ESPN National Hockey Night + region: NA + revision: 1.0 + board: SHVC-1A3M-21 + sha256: 3326061160ad12c7aef5176544ec1c8ef2f534a51960ca882dbc7fcb9b1a7384 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 rom name=program.rom size=0x200000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -421,11 +1415,30 @@ release release cartridge region=NTSC - board type=1A1M revision=11 + board type=2A3M revision=01 mapper=MAD-R + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: E.V.O.: Search for Eden + name: EVO - Search for Eden + region: NA + revision: 1.0 + board: SHVC-2A3M-01 + mapper: MAD-R + sha256: 8481e47381bd98c27b9782b5727a5d5f0976fbb3aa3df25c2c42aa37e0586815 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 rom name=program.rom size=0x200000 ram name=save.ram size=0x800 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 - map id=rom address=70-7f,f0-ff:0000-7fff + map id=ram address=70-7f,f0-ff:0000-7fff information title: Exertainment Mountain Bike Rally name: Exertainment Mountain Bike Rally @@ -437,6 +1450,64 @@ release rom name=program.rom size=0x200000 ram name=save.ram size=0x800 +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: F1-ROC: Race of Champions + name: F1-ROC - Race of Champions + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: 1d38e3af9e3a6409e93f4705b68c42558f558c68f3e83ef2a40e46cf560b26cc + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1DS0B revision=20 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + necdsp model=uPD96050 frequency=11000000 + rom id=program name=st010.program.rom size=0xc000 + rom id=data name=st010.data.rom size=0x1000 + ram id=data name=save.ram size=0x1000 + map id=io address=60-67,e0-e7:0000-3fff select=0x0001 + map id=ram address=68-6f,e8-ef:0000-7fff + information + title: F1-ROC II: Race of Champions + name: F1-ROC II - Race of Champions + region: NA + revision: 1.0 + board: SHVC-1DS0B-20 + sha256: 3ae7bfd38a3dc273f4d387af3b15621beefebf5056731af06e3822f5e57db5c5 + configuration + rom name=program.rom size=0x100000 + rom name=st010.program.rom size=0xc000 + rom name=st010.data.rom size=0x1000 + ram name=save.ram size=0x1000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: FaceBall 2000 + name: FaceBall 2000 + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: d689392884df91c2bb84b1411a96f3919b6c9cc8a583dff901a98f0d86d31c30 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -455,7 +1526,7 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -469,6 +1540,58 @@ release configuration rom name=program.rom size=0x180000 +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: FIFA Soccer '96 + name: FIFA Soccer '96 + region: NA + revision: 1.0 + board: SHVC-1A3M-30 + sha256: 26ff143c2f1a4a16ca838cc4b5555e39bbe7208515dca8f1c4b1a00dec61cf09 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x280000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Fighter's History + name: Fighter's History + region: NA + revision: 1.1 + board: SHVC-BJ0N-01 + sha256: b9594d588816ae570ea5fea14577ed47de4db9ac9a40a116c84e0ad7a2ce58f8 + configuration + rom name=program.rom size=0x280000 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Final Fantasy: Mystic Quest + name: Final Fantasy - Mystic Quest + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: 6151389f33ce2e53db3cd99592440c0020f5f4668f581ce3bd615bc92077f255 + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -487,7 +1610,7 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x140000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -501,6 +1624,38 @@ release configuration rom name=program.rom size=0x140000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Final Fight Guy + name: Final Fight Guy + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 8c47f9dc79748c0ae6c648f8480614d22eaefade065612ad1fe749fc3db4d1bc + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Firepower 2000 + name: Firepower 2000 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 003dba0193acc5336840307194643ca3b1f848dcfc77580b4e17c605105b27f5 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -549,6 +1704,205 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Football Fury + name: Football Fury + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 40b55ee44bc6f1c83daac3e1806dcf7ecd5b35280cdb6a63c7a5e52fbd2115e6 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x300000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Foreman For Real + name: Foreman For Real + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: bc6b0344a434644c391ac69a53c7720c51e2d3c5c082b8d78598ae4df100c464 + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Frank Thomas' Big Hurt Baseball + name: Frank Thomas' Big Hurt Baseball + region: NA + revision: 1.0 + board: SHVC-1A3M-30 + sha256: ba93721bdb0f19506e722bc580d0b4dad6e8648dddbc52e3ce45dd75ea165f72 + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Frogger + name: Frogger + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: 1ce72767795f41049a1f4d2829e837a8885eb91e1c14faf1ca62d05839ebe3c9 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: fun 'n games + name: Fun & Games + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: dcceb5be536c9b91bf34f65e7fcec4b55a78af0192323cf86f3b9555072037ee + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1J3B revision=01 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Genghis Khan II: Clan of the Gray Wolf + name: Genghis Khan II - Clan of the Gray Wolf + region: NA + revision: 1.0 + board: SHVC-1J3B-01 + sha256: 05e9404bfe0689e484a34991f22712c9da718cf000b0f748378af5758b654a3d + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: George Foreman's KO Boxing + name: George Foreman's KO Boxing + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: fc993c122079b94ebc9b9452b46a55d5ddcd3715a4b97af795222b264827e90f + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Goal! + name: Goal! + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: feff03cfa195512ad87dc876012d70520cf192e2874c518b6dbdf3d876ea60c4 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Gods + name: Gods + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 8796ca4de3aeffd3a494fe28e7d7e2aeb220ca652b43684f29e2cc94f02c20c4 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: GP-1 + name: GP-1 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 342ddf438aec3f0696de8f2cd74bb7f48a956f488f1246eeccaff5ef246ca50b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Gradius III + name: Gradius III + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 93da752a0c76167d0907efa832367e5d14aab8e835b864f345c386071a9af718 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2J0N revision=01,10,11 + rom name=program.rom size=0x180000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: The Great Circus Mystery: Starring Micky & Minnie + name: Great Circus Mystery - Starring Micky & Minnie, The + region: NA + revision: 1.0 + board: SHVC-2J0N-11 + sha256: b5492aea296ee4bfcd2c677fbec5153fd4c4db758c835b372ef750cf2399649b + configuration + rom name=program.rom size=0x180000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -567,7 +1921,89 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Harley's Humongous Adventure + name: Harley's Humongous Adventure + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 6e2a02a8944c19db3da76d2646f232fbe3ed039bc7d44cc03910814fa77a7acf + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Harvest Moon + name: Harvest Moon + region: NA + revision: 1.0 + board: SHVC-1A3M-30 + sha256: 73a3aa87ddd5ce5df5ba51292316f42b6e128280179b0a1b11b4dcddc17d4163 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Hit the Ice + name: Hit the Ice + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: fa418618787145291201b3d9247048b2d7dfba37f6556dcb1d40db499124dd60 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Home Alone + name: Home Alone + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 7c34908526db2a634216fab0276c42a8e4e22d59c728cd586200142a12dd2c2c + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Home Alone 2: Lost in New York + name: Home Alone 2 - Lost in New York + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 27eaccb4eea93832639565a664bf3561ed5a11ac025d377a3f33262d851c1b2b + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -581,6 +2017,70 @@ release configuration rom name=program.rom size=0x180000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Hook + name: Hook + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: acad4c594f156e0f30dec2532b35fcb3bab800e08263377634e2d96dfd055f3e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Hunt for Red October + name: Hunt for Red October, The + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: a03528344d40bf800cdbde2dd240b30442cec7aea6026fbbe312a7c36bf0f74a + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Hyper Zone + name: Hyper Zone + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: f57c49cc3e4c5e34929e12658db0de8794265c517e42f3c518bb1466ba46f14a + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Incantation + name: Incantation + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: c41150c0e84055801377fb7cb273cc51ca442b269ca6287cadf514f553e34750 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -597,6 +2097,22 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Indiana Jones' Greatest Adventures + name: Indiana Jones' Greatest Adventures + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: cf611b40f9570e8fcfdc21db623965da62561e8ca82ded59e432ba6fb0bfb562 + configuration + rom name=program.rom size=0x200000 + release cartridge region=NTSC board type=1A3B revision=11,12,13 @@ -615,6 +2131,230 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: International Superstar Soccer + name: International Superstar Soccer + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 6443fecebcdc2ff7061a40432f3ad1db6dfd354909a5f306972cf6afa122752c + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Itchy & Scratchy Game + name: Itchy & Scratchy Game, The + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 39bfe828571cdb23e7c85c23cf5b175979dcc2042c5841add58f5ae6492168a9 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Izzy's Quest for the Olympic Rings + name: Izzy's Quest for the Olympic Rings + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 183af7d642b55d52cd594786ec2f031d033cc6c8c1a2a84a834e4ada04301b26 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Jammit + name: Jammit + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 8b7b33f3d2edb844f1d43cfdd595b8c2cb6fc005d59acb899a1afda999e47638 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Jeopardy! Deluxe Edition + name: Jeopardy! Deluxe Edition + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 76d760da59aa7fc2fd4426c1d1aec57412703ab901b9df60ac2be16ede80b0e7 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Jeopardy! Sports Edition + name: Jeopardy! Sports Edition + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: d7110ddc0b34aa4ecd5e55f7b846657edb982db82cf0ba340fe0464daf0ca9be + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Jetsons: Invasion of the Planet Pirates + name: Jetsons - Invasion of the Planet Pirates, The + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: ee7a29eb9c302ea2bb235ef990fd8344a6beb9817499941c40a8a94ad5f7c964 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Jim Power: The Lost Dimension in 3D + name: Jim Power - The Lost Dimension in 3D + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 6f0bec87ece503b0fbe108cd159ed6f5fa7711b1c4fe31e982af41ad5c638093 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: John Madden Football + name: John Madden Football + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 5a76347672ea7d27bb334b1e30bbc73e06f92373883bed499245377327a8f0cf + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: John Madden Football '93 + name: John Madden Football '93 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3e62872bf69ea90dd7093608268f8defa2c6016adb1011745dab3c2af45d69b7 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Judge Dredd: The Movie + name: Judge Dredd - The Movie + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 67fa7115eb6bf292c024c3a8b06ce9bd457c4d46de182a06a573afff968cc0f1 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Jurassic Park + name: Jurassic Park + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: fe91d45201753ae9655d5ce38838e352f478b26b2d933c1bcb5bd8330121f9ff + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Ka-Blooey + name: Ka-Blooey + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 05152bcf9bf086e7bcdbfa7dd8edfe2085f1339c4d7e193e0071c49a10471ef4 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Kawasaki Caribbean Challenge + name: Kawasaki Caribbean Challenge + region: NA + revision: 1.0 + board: SHVC-2A0N-10 + sha256: 7cc3693cc5e1e834d57795f04b048fab27864a898a9507e7ca383771e2035414 + configuration + rom name=program.rom size=0x180000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -631,6 +2371,57 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x400000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Ken Griffey Jr.'s Winning Run + name: Ken Griffey Jr's Winning Run + region: NA + revision: 1.0 + board: SHVC-1J3M-20 + sha256: 18b5276be764c06531219c1757d40214aeec06fae68f4ce3ec78b58ee750a43e + configuration + rom name=program.rom size=0x400000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Kendo Rage + name: Kendo Rage + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: b16661d5151d73cea5ac46d7c899531c7b2cdee2558092c23a5460c8092b80b8 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Kid Klown in Crazy Chase + name: Kid Klown in Crazy Chase + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 914652f72d6ceb83b8b43414d6c42581ec12e9b3f45259b8b2768d26b8d4f073 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=BJ0N revision=01,20 @@ -665,7 +2456,7 @@ release release cartridge region=NTSC - board type=1L3B revision=11 + board type=1L3B revision=02,11 sa1 rom name=program.rom size=0x400000 ram id=bitmap name=save.ram size=0x2000 @@ -688,6 +2479,96 @@ release ram name=save.ram size=0x2000 ram size=0x800 +release + cartridge region=NTSC + board type=1L5B revision=11,20 + sa1 + rom name=program.rom size=0x400000 + ram id=bitmap name=save.ram size=0x8000 + ram id=internal size=0x800 + map id=io address=00-3f,80-bf:2200-23ff + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=c0-ff:0000-ffff + map id=bwram address=00-3f,80-bf:6000-7fff + map id=bwram address=40-4f:0000-ffff + map id=iram address=00-3f,80-bf:3000-37ff + information + title: Kirby's Dream Land 3 + name: Kirby's Dream Land 3 + region: NA + revision: 1.0 + board: SHVC-1L5B-20 + sha256: b50bf9d95485e8aeb7a6730e9f9f9c9c4ec23a85b336a4fb2e3b63034531e36f + configuration + rom name=program.rom size=0x400000 + ram name=save.ram size=0x8000 + ram size=0x800 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Lagoon + name: Lagoon + region: NA + revision: 1.0 + board: SHVC-1A3B-12 + sha256: 46c811f0cacffe8f20e1d63072d25d7c47e9bb3fd5124851fd05aca9884d21fb + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Last Action Hero + name: Last Action Hero + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 314d53f409b66ba3f4426a6f1bb7c69f6779aeed277ce2e19535f94d7c8ca586 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Legend + name: Legend + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: c7814cee0fc95d6422cf19a3dc8c9a65b60f6f56da75f09cebea02cc5f99261b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Legend of the Mystical Ninja + name: Legend of the Mystical Ninja, The + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: c865fb17e8c59a21d32b9a605319241fa74ec732e3f0ee58f5d7fcbd8ee57c6b + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A3B revision=11,12,13 @@ -706,6 +2587,54 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Lemmings + name: Lemmings + region: NA + revision: 1.1 + board: SHVC-1A0N-10 + sha256: cd016c41c7ef9f4f243d57c2b1564b4ceb3b4c38cc165cd02ab6c8e35c93aa2e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Lethal Enforcers + name: Lethal Enforcers + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3bc5f296c3dbee012e93a5cf25568f9288ce87b34d74085401a560350eaca03f + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Lethal Weapon + name: Lethal Weapon + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 80c22cc92d51a54de9cd9fd00db5ff58a35fff35e822169c94e445d50834fba3 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1K0N revision=01 @@ -715,9 +2644,8 @@ release necdsp model=uPD7725 frequency=8000000 rom id=program name=dsp1.program.rom size=0x1800 rom id=data name=dsp1.data.rom size=0x800 - ram size=0x200 - map id=dr address=00-1f,80-9f:6000-6fff - map id=sr address=00-1f,80-9f:7000-7fff + ram id=data size=0x200 + map id=io address=00-1f,80-9f:6000-7fff select=0x1000 information title: Lock On name: Lock On @@ -733,7 +2661,7 @@ release release cartridge region=NTSC - board type=1A3M revision=10,20,21 + board type=1A3M revision=10,20,21,30 rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -767,7 +2695,45 @@ release release cartridge region=NTSC - board type=1A5M revision=20 + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Madden NFL '95 + name: Madden NFL '95 + region: NA + revision: 1.0 + board: SHVC-1J3M-11 + sha256: 0ad77ae7af231313e1369a52d1622b88e3751aa5ec774628df7071f9e4244abc + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Madden NFL '97 + name: Madden NFL '97 + region: NA + revision: 1.0 + board: EA-1J3M-20/P10018 + sha256: 6874568d985f65dd817d4b03998e71c8cbacc8d8707411fde7bffee350605a88 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A5M revision=11,20 rom name=program.rom size=0x100000 ram name=save.ram size=0x8000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -783,6 +2749,40 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x8000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x300000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Maui Mallard in Cold Shadow + name: Maui Mallard in Cold Shadow + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: a203a13870eaec92095daef1196a0c9fe8416e600504d55dd0dc724d4f5f5cb0 + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Mecarobot Golf + name: Mecarobot Golf + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: c3c4afdeb67136619c643bd9a9f3fe90337541a40745503b5d4eb9b9e6e64b67 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1A1B revision=05,06 @@ -803,7 +2803,103 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x140000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mega Man Soccer + name: Mega Man Soccer + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: cf4d603dc0a3759da571224c671a9bfd29f9e52ca8dbb61bcc8ac8be5481e9b2 + configuration + rom name=program.rom size=0x140000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mega Man X + name: Mega Man X + region: NA + revision: 1.0 + board: SHVC-2A0N-01 + sha256: 3e1209f473bff8cd4bcbf71d071e7f8df17a2d564e9a5c4c427ee8198cebb615 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=2DC0N revision=01 + hitachidsp model=HG51B169 frequency=20000000 + rom id=program name=program.rom size=0x180000 + rom id=data name=cx4.data.rom size=0xc00 + ram id=data size=0xc00 + map id=io address=00-3f,80-bf:6000-7fff + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=ram address=70-77:0000-7fff + information + title: Mega Man X2 + name: Mega Man X2 + region: NA + revision: 1.0 + board: SHVC-2DC0N-01 + sha256: da484f2a636b8d692840f40e5468e992c5f2af26d365c69fbc12ef2923588d23 + configuration + rom name=program.rom size=0x180000 + rom name=cx4.data.rom size=0xc00 + ram name=cx4.data.ram size=0xc00 + +release + cartridge region=NTSC + board type=1DC0N revision=01 + hitachidsp model=HG51B169 frequency=20000000 + rom id=program name=program.rom size=0x200000 + rom id=data name=cx4.data.rom size=0xc00 + ram id=data size=0xc00 + map id=io address=00-3f,80-bf:6000-7fff + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=ram address=70-77:0000-7fff + information + title: Mega Man X3 + name: Mega Man X3 + region: NA + revision: 1.0 + board: SHVC-1DC0N-01 + sha256: b2aa2c0a621dfbed3b528de93282fc91abb16325d358680d34753d43629263cf + configuration + rom name=program.rom size=0x200000 + rom name=cx4.data.rom size=0xc00 + ram name=cx4.data.ram size=0xc00 + +release + cartridge region=NTSC + board type=2E3M revision=01 + rom name=program.rom size=0x200000 + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + obc1 + ram name=save.ram size=0x2000 + map id=io address=00-3f,80-bf:6000-7fff + map id=io address=70-71,f0-f1:6000-7fff,e000-ffff + information + title: Metal Combat: Falcon's Revenge + name: Metal Combat - Falcon's Revenge + region: NA + revision: 1.0 + board: SHVC-2E3M-01 + sha256: d4f2cb6b209db29f7aec62e5a23846681c14665fb007e94d7bcfc7b5611e938b + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -835,7 +2931,232 @@ release release cartridge region=NTSC - board type=2A3M revision=20 + board type=1K0N revision=01 + rom name=program.rom size=0x100000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + necdsp model=uPD7725 frequency=8000000 + rom id=program name=dsp1.program.rom size=0x1800 + rom id=data name=dsp1.data.rom size=0x800 + ram id=data size=0x200 + map id=io address=00-1f,80-9f:6000-7fff select=0x1000 + information + title: Michael Andretti's Indy Car Challenge + name: Michael Andretti's Indy Car Challenge + region: NA + revision: 1.0 + board: SHVC-1K0N-01 + sha256: 88545d24c60c18c695cc3fce8c4074f46ad1bac905e8a39a61d8a6ae6b608621 + configuration + rom name=program.rom size=0x100000 + rom name=dsp1.program.rom size=0x1800 + rom name=dsp1.data.rom size=0x800 + ram name=dsp1.data.ram size=0x200 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Might & Magic III: Isles of Terra + name: Might & Magic III - Isles of Terra + region: NA + revision: 1.0 + board: SHVC-2A3M-20 + sha256: 835ded9479f0e7babae00405d85233d767e82fa247aa1a9cdc14fd1f147b62ef + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mighty Morphin Power Rangers + name: Mighty Morphin Power Rangers + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 624a66607caef2ca34920ea15b84b28cdd1916ee089d496cec4f1d43621fdbb3 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mohawk & Headphone Jack + name: Mohawk & Headphone Jack + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 8715a641f2e4dd8b6066be7f2683d9129fff3fcccaf0a09cc8bdd2aa56460764 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x40000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mr. Do! + name: Mr. Do! + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 340293c06536d7b6981ad7c681e404f4390ff6c62340f844a4558877c1b82af0 + configuration + rom name=program.rom size=0x40000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mr. Nutz + name: Mr. Nutz + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3472dd574b50aed2fa998f464398db4fbb00f5a300a672c3737ee9336a008a16 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Musya: The Classic Japanese Tale of Horror + name: Musya - The Classic Japanese Tale of Horror + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: f292598ac462fdfcd32ad9b6b35ac01d4bab020391dff92bfe94780ec604289a + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Mutant Chronicles: Doom Troopers + name: Mutant Chronicles - Doom Troopers + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 8d4ada4f98464d176ae7f0fb8a20032056680f3241637a0f903f23f31f41ff36 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x200000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Natsume Championship Wrestling + name: Natsume Championship Wrestling + region: NA + revision: 1.0 + board: SHVC-1J0N-10 + sha256: 22d2260de02552b1205aac2ff5a202a4c80532ac28045ef5a058d88279ab758e + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: NBA Give 'n Go + name: NBA Give & Go + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 5874b942f974bb906d8cbc33b601a1faf8f14aee8d0995124c8dc84bb4973808 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: NBA Hang Time + name: NBA Hang Time + region: NA + revision: 1.0 + board: SHVC-1J3M-20 + sha256: af2fe0627de2bb2672f4f65dcbdaaee22b211275f679f123d5fa5d37fd699363 + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=BA1M revision=01 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: NBA Jam: Tournament Edition + name: NBA Jam - Tournament Edition + region: NA + revision: 1.0 + board: SHVC-BA1M-01 + sha256: b257cffb3484e6be051a56268cb99ee888bd6d3e9c0e8d6d0779ff66c411f6ba + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: NBA Live '95 + name: NBA Live '95 + region: NA + revision: 1.0 + board: SHVC-2A3M-20 + sha256: 2115c39f0580ce19885b5459ad708eaa80cc80fabfe5a9325ec2280a5bcd7870 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 rom name=program.rom size=0x180000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -851,6 +3172,151 @@ release rom name=program.rom size=0x180000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: NBA Showdown + name: NBA Showdown + region: NA + revision: 1.0 + board: SHVC-1A3M-10 + sha256: 6a7324734004d99206439430243b51a05fa8c25ffa314dafc7f127235d1a730f + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A1B revision=05,06 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: NCAA Basketball + name: NCAA Basketball + region: NA + revision: 1.0 + board: SHVC-1A1B-06 + sha256: 351587366eca8aeb38236e4ad6cbd4a1b6e37b8cc592725a79249c3a054fa3a7 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: NCAA Football + name: NCAA Football + region: NA + revision: 1.0 + board: SHVC-1A1M-11 + sha256: 8c43b7c2f2ef1fca9237c64c2f4c9e98d1a48940dae500ce8eac71278d34efb3 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: NFL Quarterback Club + name: NFL Quarterback Club + region: NA + revision: 1.0 + board: SHVC-1A1M-11 + sha256: 6a59115a9958d4a9fa167095505a2ddf222ca6291209d07618319e39a2be8b61 + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: NHL '94 + name: NHL '94 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 5132e1c0d466963e6adc09e8a608ebd90619ab94f7fc908d626bbaf6a99dfa19 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: NHL '96 + name: NHL '96 + region: NA + revision: 1.0 + board: SHVC-1J3M-20 + sha256: d24c0175ee4eafed88e277691c5f5dafd4e197723097e2eb68aa6b40f449fff2 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: NHL '97 + name: NHL '97 + region: NA + revision: 1.0 + board: SHVC-1J3M-20 + sha256: 2a2dc2ef84efd9a773d1e8231b7e3e57f0de7e4528968670963f2f1f358eef39 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J5M revision=11,20 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: NHL '98 + name: NHL '98 + region: NA + revision: 1.0 + board: SHVC-1J5M-20 + sha256: 8113c2cedafc8fd5a56c8638ae340fb275f263ff5c5e18d04dc6c3ebc5cfffee + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -867,6 +3333,22 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Nickelodeon GUTS + name: Nickelodeon GUTS + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: d7ad6f67860da78fe25d9e79dd13af7ac7efaa0c8e0103898a4849ab4af9e438 + configuration + rom name=program.rom size=0x180000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -901,7 +3383,124 @@ release release cartridge region=NTSC - board type=1L3B revision=11 + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Ninja Warriors + name: Ninja Warriors + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: 3c109e50b91ec6df3bb8509778ae544c99433fb40dda9b801178dfe513053618 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: No Escape + name: No Escape + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: f099937ac4c8afb38c517c5d85475224985fb8f345dacb44994a617ea05bf4e5 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Nobunga's Ambition + name: Nobunga's Ambition + region: NA + revision: 1.0 + board: SHVC-1J3M-01 + sha256: 437ea48711d54c2275286170a17948cb57ba9d961ba475715c0dba5fbd61a2db + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Nosferatu + name: Nosferatu + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 9712829b38f23229d4e3d65da78237659c790235f425c6b12487e4d9e9a37ae9 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: On the Ball + name: On the Ball + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: e153195de7b59dd5b9854952cccca6bb93164e5fdff8292124bee6bbe5dbf16f + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Out to Lunch + name: Out to Lunch + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 54b2f03393109ac7fd36d8c7752f15a44d9607ab0187a371b853191db3592c01 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Paladin's Quest + name: Paladin's Quest + region: NA + revision: 1.0 + board: SHVC-2A3M-01 + sha256: 46286d0839a4397fc4c067b39783f98d2aefeca870a468bae601a1434f1dde90 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1L3B revision=02,11 sa1 rom name=program.rom size=0x100000 ram id=bitmap name=save.ram size=0x2000 @@ -924,6 +3523,97 @@ release ram name=save.ram size=0x2000 ram size=0x800 +release + cartridge region=NTSC + board type=1L3B revision=02,11 + sa1 + rom name=program.rom size=0x200000 + ram id=bitmap name=save.ram size=0x2000 + ram id=internal size=0x800 + map id=io address=00-3f,80-bf:2200-23ff + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=c0-ff:0000-ffff + map id=bwram address=00-3f,80-bf:6000-7fff + map id=bwram address=40-4f:0000-ffff + map id=iram address=00-3f,80-bf:3000-37ff + information + title: PGA Tour '96 + name: PGA Tour '96 + region: NA + revision: 1.0 + board: SHVC-1L3B-02 + sha256: 571d3129350bfb7cca2285499cf31dda48d1047cf9eaef122c8c33dffa9ad296 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + ram name=internal.ram size=0x800 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: PGA Tour Golf + name: PGA Tour Golf + region: NA + revision: 1.0 + board: SHVC-1A3B-12 + sha256: 5c0b5266a191852ca593235f07180e673cb79e3f0b0dd31f65808eef83bf6e90 + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x100000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Pieces + name: Pieces + region: NA + revision: 1.0 + board: SHVC-1J0N-10 + sha256: a0b39d7fd7c39c5b0f41f3542fb8d2887530ded1c111b4ffb2a863845e704ecc + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Pinball Dreams + name: Pinball Dreams + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3a52bf09850aa054dca443f7ea74d43f201dffecc40326924ecba9b0f1450e43 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Pink Goes to Hollywood + name: Pink Goes to Hollywood + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: d0f4a5040ecf96dc49aa0084160e291a38f2ee75319750db4d6687ab36828da9 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -940,6 +3630,54 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Pocky & Rocky + name: Pocky & Rocky + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 72b2b3bead3fcd27a1610ad5d4d8be3235efeaff96df2e7858911992a5892d21 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Pocky & Rocky 2 + name: Pocky & Rocky 2 + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: cc33ae02114ea18a86592de327b2b4bcc80728b11a5e4c61666dca71480d4169 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Populous + name: Populous + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 5e580f220ed16281df8ee9a5f450b553f39f8c4078d3f3048d66bda15f98e19f + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -956,6 +3694,113 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1L3B revision=02,11 + sa1 + rom name=program.rom size=0x100000 + ram id=bitmap name=save.ram size=0x2000 + ram id=internal size=0x800 + map id=io address=00-3f,80-bf:2200-23ff + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=c0-ff:0000-ffff + map id=bwram address=00-3f,80-bf:6000-7fff + map id=bwram address=40-4f:0000-ffff + map id=iram address=00-3f,80-bf:3000-37ff + information + title: Power Rangers Zeo: Battle Racers + name: Power Rangers Zero - Battle Racers + region: NA + revision: 1.0 + board: SHVC-1L3B-11 + sha256: 2e2a8c0da7f6def617077a25b222062f6988ef14b36b2edfe10d47c6a942d023 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + ram name=internal.ram size=0x800 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Prehistorik Man + name: Prehistorik Man + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 8f387d083de1399bb79e5312c31a6f1757f2a536bfa25cecf1aea77bfd77058b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x300000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Primal Rage + name: Primal Rage + region: NA + revision: 1.0 + board: SHVC-1J0N-20 + sha256: 55376715f243b1bacd9aeecf1092bbc7837fe512592a2c1703d24b0829fc1934 + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Prince of Persia + name: Prince of Persia + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 494190cd6d7fd68882cbe255a6e237d9c4bdaf3988615ede0297a5e285ad5dd9 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Prince of Persia 2: The Shadow and the Flame + name: Prince of Persia 2 - The Shadow and the Flame + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 04ca1a481093c4a7e12f18b33697d6e05e50e30e0f5b1655aa265abd14719bba + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=2A5M revision=01 + rom name=program.rom size=0x140000 + ram name=save.ram size=0x8000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: P.T.O.: Pacific Theater of Operations + name: PTO - Pacific Theater of Operations + region: NA + revision: 1.0 + board: SHVC-2A5M-01 + sha256: 83727f6954bce024edac7f3fd18a6fbf63d05b580f692d96faa37e60893c91cd + configuration + rom name=program.rom size=0x140000 + ram name=save.ram size=0x8000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -972,6 +3817,70 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Raiden Trad + name: Raiden Trad + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 5fd7666e509f9d3cf1fd6b209dc22f2f3848f74eae7b83239d1090e031fc6df2 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Rampart + name: Rampart + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: e19f7d8d5c3e4cefeff5889380d8780495e01f0553d13be4182a15a5d4b615bb + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Rap Jam: Volume One + name: Rap Jam - Volume One + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 920bbaaf6a32cab5feabb5bc8b2b427dccd53bfd31d0da8acb7ea4e819139e4f + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Realm + name: Realm + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 097cbe9720903bc14599158b80e0cc314ef2fe8a585d6d0a8962eb1626031492 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -988,6 +3897,54 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x140000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Ren & Stimpy Show: Time Warp + name: Ren & Stimpy Show - Time Warp, The + region: NA + revision: 1.0 + board: SHVC-2A0N-11 + sha256: ad7dd4efb8836d4009f6c76bd21865d8f5dcf9c3cbd8fa7bb32d686488847120 + configuration + rom name=program.rom size=0x140000 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Revolution X: Music is the Weapon + name: Revolution X - Music is the Weapon + region: NA + revision: 1.0 + board: SHVC-2A0N-20 + sha256: 5fb072c3c2e9d8e7f84bea9c4bf2253e6868eb2b1f13e35a7d75fdf05896d873 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Rex Ronan: Experimental Surgeon + name: Rex Ronan - Experimental Surgeon + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: f44482e2cccd9fcfd5875d84ff700f6e783f3bd8abd1ac4d939074cd6ad3fe65 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=BJ0N revision=01,20 @@ -1020,6 +3977,38 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Road Riot 4WD + name: Road Riot 4WD + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 864aa9068fb23cd20022a9ac36fb9082299278ea0cb07a20deec2b6a1c6cbc70 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Road Runner's Death Valley Rally + name: Road Runner's Death Valley Rally + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 2e8203e421f97cf165f03a5d4f69dadf0bcca18c42c6a1dfe79c8705c522cc54 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1036,6 +4025,22 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Rock & Roll Racing + name: Rock & Roll Racing + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 9d721753301278325c851f1843d669a697aed757dcf6495a31fc31ddf664b182 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1054,7 +4059,7 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -1068,6 +4073,22 @@ release configuration rom name=program.rom size=0x180000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Roger Clemens' MVP Baseball + name: Roger Clemens' MVP Baseball + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: e21300c8c4170e084fd83ce4c842dd73f939fbd10ddfe47c9a49b6e291dcd52d + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=2J5M revision=01 @@ -1088,6 +4109,25 @@ release rom name=program.rom size=0x180000 ram name=save.ram size=0x8000 +release + cartridge region=NTSC + board type=1J5M revision=11,20 + rom name=program.rom size=0x300000 + ram name=save.ram size=0x8000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Romance of the Three Kingdoms IV: Wall of Fire + name: Romance of the Three Kingdoms IV - Wall of Fire + region: NA + revision: 1.0 + board: SHVC-1J5M-20 + sha256: 9670c67eeeb5581fa5345025a2e2ee875179e0da9f5be4bf78641e477d785f17 + configuration + rom name=program.rom size=0x300000 + ram name=save.ram size=0x8000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1136,6 +4176,22 @@ release configuration rom name=program.rom size=0x400000 +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x400000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Saturday Night Slam Masters + name: Saturday Night Slam Masters + region: NA + revision: 1.0 + board: SHVC-BJ0N-01 + sha256: 34e1af0642c85148c5a3dc3c7ab4bcbda13a9fea190934b5526c555fff035651 + configuration + rom name=program.rom size=0x400000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1152,6 +4208,96 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1J3M revision=01,11,20 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Secret of Mana + name: Secret of Mana + region: NA + revision: 1.0 + board: SHVC-1J3M-01 + sha256: 4c15013131351e694e05f22e38bb1b3e4031dedac77ec75abecebe8520d82d5f + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Shadowrun + name: Shadowrun + region: NA + revision: 1.0 + board: SHVC-1A3M-10 + sha256: e6bc0a595d5c7c4bc0bbb61ffe35a70288a77eb78544ed74682d489a9e6f07f4 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J5M revision=11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x8000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Sid Meier's Civilization + name: Sid Meier's Civilization + region: NA + revision: 1.0 + board: SHVC-1J5M-20 + sha256: de2d5a952096c5f50368b9270d342aa6e7a39007ffbec27117e182e30ef4cf32 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=1A3B revision=20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: SimEarth: The Living Planet + name: SimEarth - The Living Planet + region: NA + revision: 1.0 + board: SHVC-1A3B-20 + sha256: 446a1036d036986fdea7906c83832d3ba79ef63a6ed8c4e88b89ab9cb25daded + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Simpsons: Virtual Bart + name: Simpsons - Virtual Bart, The + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 29c28188234ddbb0b72fc84253dcd3514e23034779c773db8097b073b73390c8 + configuration + rom name=program.rom size=0x200000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1170,7 +4316,39 @@ release release cartridge region=NTSC - board type=2J0N revision=11 + board type=2J0N revision=01,10,11 + rom name=program.rom size=0x180000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Soldiers of Fortune + name: Soldiers of Fortune + region: NA + revision: 1.0 + board: SHVC-2J0N-01 + sha256: 6fe7c8d39fcfab7f0a18e837a7ee0dd162e0557d6989c6e0d10c81616d3a0b8b + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Sonic Blast Man + name: Sonic Blast Man + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 75a7b5b8ad0329dc828d3201089e125fd55fdfc99d4cec704ffcd7e3036c2410 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2J0N revision=01,10,11 rom name=program.rom size=0x180000 map id=rom address=00-3f,80-bf:8000-ffff map id=rom address=40-7f,c0-ff:0000-ffff @@ -1218,6 +4396,102 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Space Football: One on One + name: Space Football - One on One + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 24f3f22949f36ebf8ab4beaa8cba22db107efe7a7585f749343f2860bf041fe1 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x40000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Space Invaders + name: Space Invaders + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: dc5353ddc350816619230f25f8c51bddabf7438e6dfba21662eb1c4794856735 + configuration + rom name=program.rom size=0x40000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Space Megaforce + name: Space Megaforce + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: f5b7418c00ccac44615cfc57c7e17d57533837056886f6d733e6b714c36dec1f + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Spanky's Quest + name: Spanky's Quest + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 14dc44687c8da35aec63b9edadbaac21bf7293f5171646f614139192e82ab071 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x300000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Spawn + name: Spawn + region: NA + revision: 1.0 + board: SHVC-1J0N-20 + sha256: 32d0f1ca5b91fd9b2caf81422fb9e8fb30bc091f0b2a429b9269dd307fcba4fd + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Speedy Gonzales: Los Gatos Bandidos + name: Speedy Gonzales - Los Gatos Bandidos + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: df02d0f4f40e2732138309d38e91b48aef482490979007ecb63359a35115dfd4 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1234,6 +4508,54 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Spider-Man & Venom: Maximum Carnage + name: Spider-Man & Venom - Maximum Carnage + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 964d21996e385e032b5d18baf716692ba1db780245cd71956c212045c1b8eb9a + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x300000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Spider-Man & Venom: Separation Anxiety + name: Spider-Man & Venom - Separation Anxiety + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: b72fbbfe737eff49f59dcef9f13b963e50c5bc322d7eb0e7b4c25f3a71aa0815 + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Spindizzy Worlds + name: Spindizzy Worlds + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: fe10238ae42ed9eb4d906a81dd50ebe585140982cdfe266308ce1f16e78e6903 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1250,6 +4572,58 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1C0N5S revision=01 + superfx revision=1 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 + map id=io address=00-3f,80-bf:3000-32ff + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=60-7f,e0-ff:0000-ffff + information + title: Star Fox + name: Star Fox + region: NA + revision: 1.0 + board: SHVC-1C0N5S-01 + sha256: 3857b5294ea8f7468849437bb2d8271564e8a0ff30774622e9c872bcbd53a84d + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Star Trek: The Next Generation + name: Star Trek - The Next Generation + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 22c907b56ac6f414365801ed375c3fbf75696ce7f34ec89e1724628dc5622957 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Stargate + name: Stargate + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 9ffd95486904804aca1f7068c99f1c9e91c2c0e5474ec758df1a913393571cc7 + configuration + rom name=program.rom size=0x200000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1282,6 +4656,38 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Stone Protectors + name: Stone Protectors + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: dad9c116283322d5a13fd659874c681582abdff3df182cc4c90511d33fb7110a + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Street Combat + name: Street Combat + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: b4626cf0c876a124b50f9421c48a7d762e9ed808ad336c799d543d60b484897c + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1N0N revision=01 @@ -1316,6 +4722,160 @@ release configuration rom name=program.rom size=0x280000 +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x300000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Street Hockey '95 + name: Street Hockey '95 + region: NA + revision: 1.0 + board: SHVC-BJ0N-01 + sha256: 6756f92fe8e066be4b204cfdc94c1615ba6ece7e78fb5d2c77c81a9d298aa744 + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Street Racer + name: Street Racer + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: d1f61b6bb4bb6879a4fbd2c82d77390c546ee7f821edddc884fb9cc7463ad79b + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Strike Gunner: STG + name: Strike Gunner - STG + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 05f14e6ed3394d9273e2397769a8acf1a9db646be6066e82269521e8eec53562 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1CA6B revision=01 + superfx revision=2 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x10000 + map id=io address=00-3f,80-bf:3000-32ff + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=rom address=40-5f,c0-df:0000-ffff + map id=ram address=00-3f,80-bf:6000-7fff size=0x2000 + map id=ram address=70-71,f0-f1:0000-ffff + information + title: Stunt Race FX + name: Stunt Race FX + region: NA + revision: 1.1 + board: SHVC-1CA6B-01 + sha256: c04d80b84514202ff319384ca20641eb0189e975eed5612915bd9c224b2ab30a + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x10000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Sunset Riders + name: Sunset Riders + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: e9c406d4f773697b9b671e7ddf2207c9d0ab242d7f23e502cdd453fbb264d392 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Super Aquatic Games Starring The Aquabats + name: Super Aquatic Games Starring The Aquabats, The + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: b64f9f95fb244feddb3ff50bf0972af88f5d006e9b09050b930374fef8b37862 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Adventure Island + name: Super Adventure Island + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 190999122aacc2cff20c5677b3f60ed938d8a36b696d16cc1bf416705efe151e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2J3M revision=11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=10-1f,30-3f:6000-7fff mask=0xe000 + map id=ram address=90-9f,b0-bf:6000-7fff mask=0xe000 + information + title: Super Adventure Island II + name: Super Adventure Island II + region: NA + revision: 1.0 + board: SHVC-2J3M-11 + sha256: eaf1b83e95d8a04f9a84d4960cf87cc182fc60ef07be35eb8929c4033d6fef67 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Alfred Chicken + name: Super Alfred Chicken + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 0deb7a91fbe5848f1733ce668daaa49b0dad3d821bacc0791837c1ba15e60d7c + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A3B revision=11,12,13 @@ -1334,6 +4894,70 @@ release rom name=program.rom size=0x80000 ram name=save.ram size=0x200 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Batter Up + name: Super Batter Up + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 165938810948f3226f7446978fa36ae8bc781616d95b39cd126d5c8afbf6e2ee + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Battleship + name: Super Battleship + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 1d6573e3db2efab0c98d1940b4171d569348d27a1cc20e80a83094e6c0e66e35 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Battletank: War in the Gulf + name: Super Battletank 1 - War in the Gulf + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 94496e73fc7fdf2f72f16bf2becb0c3935db2ebd97555eac73b63400acbceec6 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Black Bass + name: Super Black Bass + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: f0913358cb0870c3dcc7f0c0d2d69704874c31a113150eda668c95024c0d6fd9 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1J0N revision=01,10,20 @@ -1350,6 +4974,22 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Buster Brothers + name: Super Buster Brothers + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 5965bde449ff775c1a0d9fd3cf2fb8c51a86b44ad1942dfb5c14a91f103be030 + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1366,6 +5006,56 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Chase H.Q. + name: Super Chase HQ + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: b839253b878821ff00847491d11452e933baaf303f49dd39d22e3a524ea1ff81 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A1B revision=05,06 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Super Conflict + name: Super Conflict + region: NA + revision: 1.0 + board: SHVC-1A1B-06 + sha256: 6cbc4db85cb8420020f9edbfd290c0f435b313a59577aca65314d31f8b816620 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Copa + name: Super Copa + region: MX + revision: 1.0 + board: SHVC-1A0N-20 + sha256: db7d727de86a1ac886ce3c243bf5941910154eaef3be50209187b9711592830d + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1382,6 +5072,56 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super High Impact + name: Super High Impact + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: d78ff42efdbb0e180777d17b5f7a96e08530ab77f15a99237f60714f7cfe2b74 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super James Pond + name: Super James Pond + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3f8efb19eae68f24feb42c018b7dc7a819bfd8d993ab36899681caa7ee94b06e + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=BA3M revision=01 + rom name=program.rom size=0x280000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Super Mario All-Stars + Super Mario World + name: Super Mario All-Stars + Super Mario World + region: NA + revision: 1.0 + board: SHVC-BA3M-01 + sha256: a8806bfe07cd3c9945d9fd3fcea932ae1cd671cab5cae12bb7a2ae726cbf9175 + configuration + rom name=program.rom size=0x280000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1K1B revision=01 @@ -1389,13 +5129,12 @@ release ram name=save.ram size=0x800 map id=rom address=00-3f,80-bf:8000-ffff map id=rom address=40-7f,c0-ff:0000-ffff - map id=ram address=20-3f,a0-bf:6000-7fff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 necdsp model=uPD7725 frequency=8000000 rom id=program name=dsp1.program.rom size=0x1800 rom id=data name=dsp1.data.rom size=0x800 - ram size=0x200 - map id=dr address=00-1f,80-9f:6000-6fff - map id=sr address=00-1f,80-9f:7000-7fff + ram id=data size=0x200 + map id=io address=00-1f,80-9f:6000-7fff select=0x1000 information title: Super Mario Kart name: Super Mario Kart @@ -1410,6 +5149,31 @@ release rom name=dsp1.data.rom size=0x800 ram name=dsp1.data.ram size=0x200 +release + cartridge region=NTSC + board type=1L5B revision=11,20 + sa1 + rom name=program.rom size=0x400000 + ram id=bitmap name=save.ram size=0x8000 + ram id=internal size=0x800 + map id=io address=00-3f,80-bf:2200-23ff + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=c0-ff:0000-ffff + map id=bwram address=00-3f,80-bf:6000-7fff + map id=bwram address=40-4f:0000-ffff + map id=iram address=00-3f,80-bf:3000-37ff + information + title: Super Mario RPG: Legend of the Seven Stars + name: Super Mario RPG - Legend of the Seven Stars + region: NA + revision: 1.0 + board: SHVC-1L5B-11 + sha256: 740646f3535bfb365ca44e70d46ab433467b142bd84010393070bd0b141af853 + configuration + rom name=program.rom size=0x400000 + ram name=save.ram size=0x8000 + ram name=internal.ram size=0x800 + release cartridge region=NTSC board type=1CB5B revision=20 @@ -1432,6 +5196,22 @@ release rom name=program.rom size=0x200000 ram name=save.ram size=0x8000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Ninja Boy + name: Super Ninja Boy + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 40b46bb29785fb431b325f22377faa8b099be4d77aecc1f03000b8a4cb589b63 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1448,6 +5228,38 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Off Road: The Baja + name: Super Off Road - The Baja + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: 16f9c90d75bd23d0620be00ecf818fcb25c5935d4ee26b1fe17b926f8987aa65 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Putty + name: Super Putty + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 3dff3513ae6acb85a02b00b9f5adb4757ab97661993bded4f329127a792cef87 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1464,6 +5276,22 @@ release configuration rom name=program.rom size=0x100000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super R.B.I Baseball + name: Super RBI Baseball + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 607bfa0f74e57298f59ebe237c2e7b59364024d844534f3befb9ad1301bbedf8 + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1496,6 +5324,134 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Smash TV + name: Super Smash TV + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 8b75ab4bb1b63c45a56e7a4c5a37c0864f14375ab3131edc33489764426ad888 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Soccer Champ + name: Super Soccer Champ + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: 5eb9736d66b3ac730ebbfdd19ef2397282b5f1a62dc0048093e041e23b807741 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Solitaire + name: Super Solitaire + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 5985cdad45958a5b8c5967ad39efe51569f560bf237a4e9864f21111082a8500 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x180000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Star Wars II: The Empire Strikes Back + name: Super Star Wars II - The Empire Strikes Back + region: NA + revision: 1.1 + board: MAXI-1A0N-30-2 + sha256: 46370b3bd6ff9ee04c425eef0f482f521f3b61bd4b058f2f4e9d322253d7b5de + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x400000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Super Street Fighter II: The New Challengers + name: Super Street Fighter II - The New Challengers + region: NA + revision: 1.0 + board: SHVC-BJ0N-01 + sha256: d17cb5c73174060fcbd9cba6c705643f19c3b8be24d0f7ee43aee674ff1ea38e + configuration + rom name=program.rom size=0x400000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Tennis + name: Super Tennis + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: 6e45a80ea148654514cb4e8604a0ffcbc726946e70f9e0b9860e36c0f3fa4877 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Troll Islands + name: Super Troll Islands + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 02cb7f1ed21ed6bfb9eaa0e91df2adb063a9bf4cbd6feb6cd024d676829e227e + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Super Turrican + name: Super Turrican + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 056ac8160363d577e3ffc2f593801b8bb3d024fe4f3a3331b711dc556204949d + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1512,6 +5468,58 @@ release configuration rom name=program.rom size=0x200000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Taz-Mania + name: Taz-Mania + region: NA + revision: 1.1 + board: MAXI-1A0N-30-2 + sha256: 1711fe9010232b41ec406900e5b4ef528dd2beaa97b27d94ed7eef57d63904a0 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A5M revision=11,20 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Tecmo Super Bowl II: Special Edition + name: Tecmo Super Bowl II - Special Edition + region: NA + revision: 1.0 + board: SHVC-1A5M-11 + sha256: 2972057a0087f8239d2523eaa995405f06e5d5ba3a3203b6b50d401379c8ebde + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=1A5M revision=11,20 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Tecmo Super Bowl III: Final Edition + name: Tecmo Super Bowl III - Final Edition + region: NA + revision: 1.0 + board: SHVC-1A5M-20 + sha256: 8cfd4c5525f4bd4bba5af7e2323f1e61f27ce97c6d5617cfa685c9276fbf6407 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + release cartridge region=NTSC board type=1A3B revision=11,12,13 @@ -1530,6 +5538,54 @@ release rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Teenage Mutant Ninja Turtles V: Tournament Fighters + name: Teenage Mutant Ninja Turtles V - Tournament Fighters + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 849141370f164d6db3e5709da670726f958ce13ffef69319564db3fb0b12c69d + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Thunder Spirits + name: Thunder Spirits + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: d50aaa41e153ca356eee16a9deccb1a763ee56ebbe6c80cd28c5ad1db66a5316 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Time Cop + name: Time Cop + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 16fb965130e57f37dda2466f23820f091f8b96758aa7e30ba4fd63cb618e5ddb + configuration + rom name=program.rom size=0x200000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1548,11 +5604,27 @@ release release cartridge region=NTSC - board type=1A1M revision=11 + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x180000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Timon & Pumbaa's Jungle Games + name: Timon & Pumbaa's Jungle Games + region: NA + revision: 1.0 + board: SHVC-1J0N-20 + sha256: 271a67b32b3bb00ceb0f4e7d81494888d0d821635f0f936d481dfbe671567c08 + configuration + rom name=program.rom size=0x180000 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 rom name=program.rom size=0x200000 ram name=save.ram size=0x800 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 - map id=rom address=70-7f,f0-ff:0000-7fff + map id=ram address=70-7f,f0-ff:0000-7fff information title: Tin Star name: Tin Star @@ -1564,6 +5636,42 @@ release rom name=program.rom size=0x200000 ram name=save.ram size=0x800 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Tiny Toon Adventures: Wacky Sports Challenge + name: Tiny Toon Adventures - Wacky Sports Challenge + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: f753de4a38bd83f7d937fc7bf5565a3c351a794c113dead8fdee6d86c85633e8 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2J3M revision=11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=10-1f,30-3f:6000-7fff mask=0xe000 + map id=ram address=90-9f,b0-bf:6000-7fff mask=0xe000 + information + title: TNN Bass Tournament of Champions + name: TNN Bass Tournament of Champions + region: NA + revision: 1.0 + board: SHVC-2J3M-20 + sha256: ced8c0bc2791ffe47cb9eec03db67567945af8c58b5330326722f1cfca41bf51 + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1582,7 +5690,128 @@ release release cartridge region=NTSC - board type=1A3M revision=10,20,21 + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Top Gear + name: Top Gear + region: NA + revision: 1.0 + board: SHVC-1A0N-02 + sha256: ca9889f17f184b3d99a2eaaa82af73e366f03ed00313fdd369e5e023b208e788 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Top Gear 2 + name: Top Gear 2 + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 76b2702c4be8b668c1017f2817c280283c275eaa41535bf6ffa2b8d2220b68c6 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1B0N revision=03 + rom name=program.rom size=0x100000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + necdsp model=uPD7725 frequency=8000000 + rom id=program name=dsp4.program.rom size=0x1800 + rom id=data name=dsp4.data.rom size=0x800 + ram id=data size=0x200 + map id=io address=30-3f,b0-bf:8000-ffff select=0x4000 + information + title: Top Gear 3000 + name: Top Gear 3000 + region: NA + revision: 1.0 + board: SHVC-1B0N-03 + sha256: ede60f0d283b6ea3a45308981d99e7c422a0296e5fadde51c6bafd4dcc789ca2 + configuration + rom name=program.rom size=0x100000 + rom name=dsp4.program.rom size=0x1800 + rom name=dsp4.data.rom size=0x800 + ram name=dsp4.data.ram size=0x200 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Total Carnage + name: Total Carnage + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 9bf884be5627d38f060ad7f3a61ea1fea1474d416e1d037d33014ca9d5205c1d + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Toys: Let the Toy Wars Begin! + name: Toys - Let the Toy Wars Begin! + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 7a6e5da46b026900fba4584a32ad40d940b9ecf9fccfb11f96a205a914014784 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Troddlers + name: Troddlers + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 4070a7702dc506a1ceb6f65b5c330b3a162df6f01735c8f206934fd47b810ed4 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Troy Aikman Football + name: Troy Aikman Football + region: NA + revision: 1.0 + board: SHVC-2A3M-11 + sha256: 46fcca4ce29f472afa8519958d256eec347c2dc2da154c95f263a051c5c02dbb + configuration + rom name=program.rom size=0x180000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 rom name=program.rom size=0x100000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -1600,7 +5829,57 @@ release release cartridge region=NTSC - board type=2A0N revision=01,11,20 + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: True Lies + name: True Lies + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 47dd8ea2d12a6bb2a9774de1d492259fc4fb9f8ec7976383bbfd922532671f6b + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Turn and Burn: No-Fly Zone + name: Turn and Burn - No-Fly Zone + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: e4343c0fadc00ffdc3dc31345068d751eea5d639f826731f08cb81673d508c40 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A1M revision=01,11,20 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Ultima: Runes of Virtue II + name: Ultima - Runes of Virtue II + region: NA + revision: 1.0 + board: SHVC-1A1M-11 + sha256: 094555d5720158ee60c9d5ab9a13110192db5ebf0f6cf69abbb59a00bc470345 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=2A0N revision=01,10,11,20 rom name=program.rom size=0x180000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 @@ -1616,7 +5895,200 @@ release release cartridge region=NTSC - board type=2A3M revision=20 + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x400000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Ultimate Mortal Kombat 3 + name: Ultimate Mortal Kombat 3 + region: NA + revision: 1.0 + board: SHVC-1J0N-20 + sha256: cb2fdfce61858063bf4c9da4228381c3ec3abe423f4d378cddd174ae4adb261e + configuration + rom name=program.rom size=0x400000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Ultraman: Towards the Future + name: Ultraman - Towards the Future + region: NA + revision: 1.0 + board: SHVC-1A0N-01 + sha256: e9fae4c2e171a1fc4f2bd800abd9e42750aaf7a4db9e40c5b9142e15029500bd + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A3B revision=11,12,13 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Uncharted Waters + name: Uncharted Waters + region: NA + revision: 1.0 + board: SHVC-1A3B-13 + sha256: 794152fc6f55cb15a0b203fa645ac9fa314a293da999d8ec8b3dda080434d175 + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1J5M revision=11,20 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000 + information + title: Uncharted Waters: New Horizons + name: Uncharted Waters - New Horizons + region: NA + revision: 1.0 + board: SHVC-1J5M-11 + sha256: 64bc4707f422661a66618088887e2363a5f896ea683c58984fffd96dd21ab5f0 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Uniracers + name: Uniracers + region: NA + revision: 1.0 + board: SHVC-1A3M-21 + sha256: 859ec99fdc25dd9b239d9085bf656e4f49c93a32faa5bb248da83efd68ebd478 + configuration + rom name=program.rom size=0x200000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: The Untouchables + name: Untouchables, The + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: ecefb4117a6aae117e033c8cc07f0db2797d6be93dd5cdcefc23692a21fae02e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Urban Strike + name: Urban Strike + region: NA + revision: 1.0 + board: MJSC-1A0N-30-2 + sha256: dcb33a89fcb8d8ca8f3a467034728ad6375273d8eb51a60418ca51ef745e9b38 + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A3M revision=10,20,21,30 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-7fff + information + title: Utopia: The Creation of a Nation + name: Utopia - The Creation of a Nation + region: NA + revision: 1.0 + board: SHVC-1A3M-10 + sha256: 2500d6c846c78bcb729f15535bf2b852a120411891cabaaaa6fc407906d0214e + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x2000 + +release + cartridge region=NTSC + board type=1A1B revision=05,06 + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + map id=rom address=00-1f,80-9f:8000-ffff mask=0x8000 + map id=ram address=70-7f,f0-ff:0000-ffff + information + title: Vegas Stakes + name: Vegas Stakes + region: NA + revision: 1.0 + board: SHVC-1A1B-06 + sha256: 78bf9d79fb2ff3f9d03ecc1176d070e53ddaca2c6b0cda69e74c19a4e50b195b + configuration + rom name=program.rom size=0x100000 + ram name=save.ram size=0x800 + +release + cartridge region=NTSC + board type=1CA0N5S revision=01 + superfx revision=2 + rom name=program.rom size=0x80000 + ram name=save.ram size=0x8000 + map id=io address=00-3f,80-bf:3000-32ff + map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000 + map id=rom address=40-5f,c0-df:0000-ffff + map id=ram address=00-3f,80-bf:6000-7fff + map id=ram address=70-71,f0-f1:0000-ffff + information + title: Vortex + name: Vortex + region: NA + revision: 1.0 + board: SHVC-1CA0N5S-01 + sha256: 41b5561de9e4984276e52987ea46c5f4fa8526d8141c70c738875a9eb9fe9d70 + configuration + rom name=program.rom size=0x80000 + ram name=save.ram size=0x8000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: War 3010: The Revolution + name: War 3010 - The Revolution + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: 8b12e5e4553fc921c23739d1aec2ed517535ec239daef800f39f602d8473847f + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=2A3M revision=01,11,20 rom name=program.rom size=0x180000 ram name=save.ram size=0x2000 map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 @@ -1632,6 +6104,86 @@ release rom name=program.rom size=0x180000 ram name=save.ram size=0x2000 +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: We're Back!: A Dinosaur's Story + name: We're Back! - A Dinosaur's Story + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: e931c3c08f20f78e3a43ad92d16eb472be619abaa17c2d8e2b0fcd5d05dbd74d + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Wheel of Fortune + name: Wheel of Fortune + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: 12abf1ba063c120c1a98495a1c85e67a0007aff771ef92adcb94b4a0a2fd5adb + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Wild Guns + name: Wild Guns + region: NA + revision: 1.0 + board: SHVC-1A0N-30 + sha256: c8f159e2625ac8078535c06857ea28475706da45df494de8e46f50888272cf71 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Williams Arcade's Greatest Hits + name: Williams Arcade's Greatest Hits + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: 60d01a3f499463156546ecdee18ee3e946b95302ee0b1569decb97f52372d2eb + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=YA0N revision=01 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Wing Commander: The Secret Missions + name: Wing Commander - The Secret Missions + region: NA + revision: 1.0 + board: SHVC-YA0N-01 + sha256: 132ca0b6a4888edf7de785d48f4417fac28522646e6c7514f80c5e9ff1438d5f + configuration + rom name=program.rom size=0x100000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 @@ -1648,6 +6200,54 @@ release configuration rom name=program.rom size=0x80000 +release + cartridge region=NTSC + board type=1J0N revision=01,10,20 + rom name=program.rom size=0x200000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: Winter Olympic Games: Lillehammer '94 + name: Winter Olympic Games - Lillehammer '94 + region: NA + revision: 1.0 + board: SHVC-1J0N-10 + sha256: 0e834647669783c2b79cc1120c057c870c541079a7abd1eee3f787d59dc3c3eb + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: Wordtris + name: Wordtris + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 82e2b636e66c4edbae27a5be91a61194ef2881ec93f40d1de93a6153617b12f2 + configuration + rom name=program.rom size=0x80000 + +release + cartridge region=NTSC + board type=2J0N revision=01,10,11 + rom name=program.rom size=0x200000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: World Heroes + name: World Heroes + region: NA + revision: 1.0 + board: SHVC-2J0N-10 + sha256: ea76cfdbb2a555a7b6eff8b466a879f9a9189639416e8c2fb45bf074e695105f + configuration + rom name=program.rom size=0x200000 + release cartridge region=NTSC board type=1A1B revision=05,06 @@ -1666,6 +6266,86 @@ release rom name=program.rom size=0x80000 ram name=save.ram size=0x800 +release + cartridge region=NTSC + board type=BJ0N revision=01,20 + rom name=program.rom size=0x300000 + map id=rom address=00-3f,80-bf:8000-ffff + map id=rom address=40-7f,c0-ff:0000-ffff + information + title: WWF Raw + name: WWF Raw + region: NA + revision: 1.0 + board: SHVC-BJ0N-01 + sha256: 0af7b0d3022acd24a1fb15865a076519f7f56e7a4b33f12b6d851b3a91e5388c + configuration + rom name=program.rom size=0x300000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x200000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: WWF Royal Rumble + name: WWF Royal Rumble + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 51c53e36ed0b959b0695fc6ef036fa7302d1c995eca35c28261d6f3cb77df0ca + configuration + rom name=program.rom size=0x200000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: WWF Super Wrestlemania + name: WWF Super Wrestlemania + region: NA + revision: 1.0 + board: MAXI-1A0N-30-2 + sha256: 0b9abf2fc25a5f07c71f9d8efbb0d0e616c1494060138fbb63f7398e9c26198e + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x100000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: X-Kaliber 2097 + name: X-Kaliber 2097 + region: NA + revision: 1.0 + board: SHVC-1A0N-20 + sha256: dc3792e9fe7ef7aaea4ac675a48ad06129dd3ebdd4b96a513bc8241549cbd579 + configuration + rom name=program.rom size=0x100000 + +release + cartridge region=NTSC + board type=1A0N revision=01,02,10,20,30 + rom name=program.rom size=0x80000 + map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000 + map id=rom address=40-7f,c0-ff:0000-7fff mask=0x8000 + information + title: X-Zone + name: X-Zone + region: NA + revision: 1.0 + board: SHVC-1A0N-10 + sha256: 93272180090e8418582f69b79c5cee6b28638b9a93192cc4bcd96291a4fca02d + configuration + rom name=program.rom size=0x80000 + release cartridge region=NTSC board type=1A0N revision=01,02,10,20,30 diff --git a/ananke/nall/emulation/super-famicom.hpp b/ananke/nall/emulation/super-famicom.hpp index 3115d7ea..43be5d7e 100644 --- a/ananke/nall/emulation/super-famicom.hpp +++ b/ananke/nall/emulation/super-famicom.hpp @@ -119,359 +119,298 @@ SuperFamicomCartridge::SuperFamicomCartridge(const uint8_t *data, unsigned size) if(type == TypeBsx) return; if(type == TypeSufamiTurbo) return; - markup.append("\n"); - const char *range = (rom_size > 0x200000) || (ram_size > 32 * 1024) ? "0000-7fff" : "0000-ffff"; - markup.append("\n"); + markup.append("cartridge region=", region == NTSC ? "NTSC" : "PAL", "\n"); if(type == TypeSuperGameBoy1Bios || type == TypeSuperGameBoy2Bios) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " map id=rom address=00-7f,80-ff:8000-ffff\n" + " icd2 revision=1\n" + " rom name=boot.rom size=0x100\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" ); else if(has_cx4) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " hitachidsp model=HG51B169 frequency=20000000\n" + " rom id=program name=program.rom size=0x", hex(rom_size), "\n" + " rom id=data name=cx4.data.rom size=0xc00\n" + " ram id=data size=0xc00\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" + " map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000\n" + " map id=ram address=70-77:0000-7fff\n" ); else if(has_spc7110) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " spc7110\n" + " rom id=program name=program.rom size=0x100000\n" + " rom id=data name=data.rom size=0x", hex(rom_size - 0x100000), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=io address=00-3f,80-bf:4800-483f\n" + " map id=io address=50:0000-ffff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=c0-ff:0000-ffff\n" + " map id=ram address=00-3f,80-bf:6000-7fff mask=0xe000\n" ); - else if(has_sdd1) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - ); + else if(has_sdd1) { + markup.append( + " sdd1\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + ); + if(ram_size > 0) markup.append( + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=io address=00-3f,80-bf:4800-4807\n" + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000\n" + " map id=ram address=70-7f:0000-7fff\n" + ); + } else if(mapper == LoROM) { markup.append( - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=70-7f,f0-ff:", range, "\n" ); } else if(mapper == HiROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=40-7f,c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=10-3f,90-bf:6000-7fff mask=0xe000\n" ); } else if(mapper == ExLoROM) { markup.append( - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=40-7f:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff\n" + " map id=ram address=70-7f:0000-7fff\n" ); } else if(mapper == ExHiROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f:8000-ffff offset=0x400000\n" + " map id=rom address=40-7f:0000-ffff offset=0x400000\n" + " map id=rom address=80-bf:8000-ffff offset=0x000000\n" + " map id=rom address=c0-ff:0000-ffff offset=0x000000\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000\n" + " map id=ram address=70-7f:", range, "\n" ); } else if(mapper == SuperFXROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " superfx revision=3\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" ); markup.append( - " \n" + " map id=io address=00-3f,80-bf:3000-32ff\n" + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=40-5f,c0-df:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=00-3f,80-bf:6000-7fff size=0x2000\n" + " map id=ram address=70-71,f0-f1:0000-ffff\n" ); } else if(mapper == SA1ROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " sa1\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram id=bitmap name=save.ram size=0x", hex(ram_size), "\n" ); markup.append( - " \n" + " ram id=internal size=0x800\n" + " map id=io address=00-3f,80-bf:2200-23ff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=bwram address=00-3f,80-bf:6000-7fff\n" + " map id=bwram address=40-4f:0000-ffff\n" + ); + markup.append( + " map id=iram address=00-3f,80-bf:3000-37ff\n" ); } else if(mapper == BSCLoROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=rom address=00-1f:8000-ffff offset=0x000000 mask=0x8000\n" + " map id=rom address=20-3f:8000-ffff offset=0x100000 mask=0x8000\n" + " map id=rom address=80-9f:8000-ffff offset=0x200000 mask=0x8000\n" + " map id=rom address=a0-bf:8000-ffff offset=0x100000 mask=0x8000\n" + " map id=ram address=70-7f,f0-ff:0000-7fff\n" + " bsxslot\n" + " map id=rom address=c0-ef:0000-ffff\n" ); else if(mapper == BSCHiROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=rom address=00-1f,80-9f:8000-ffff\n" + " map id=rom address=40-5f,c0-df:0000-ffff\n" + " map id=ram address=20-3f,a0-bf:6000-7fff\n" + " bsxslot\n" + " map id=rom address=20-3f,a0-bf:8000-ffff\n" + " map id=rom address=60-7f,e0-ff:0000-ffff\n" ); else if(mapper == BSXROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " bsx\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram id=save name=save.ram size=0x", hex(ram_size), "\n" + " ram id=download name=bsx.ram size=0x40000\n" + " map id=io address=00-3f,80-bf:5000-5fff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=40-7f,c0-ff:0000-ffff\n" + " map id=ram address=20-3f:6000-7fff\n" ); else if(mapper == STROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " map id=rom address='00-1f,80-9f:8000-ffff mask=0x8000\n" + " sufamiturbo\n" + " slot id=A\n" + " map id=rom address=20-3f,a0-bf:8000-ffff mask=0x8000\n" + " map id=ram address=60-63,e0-e3:8000-ffff\n" + " slot id=B\n" + " map id=rom address=40-5f,c0-df:8000-ffff mask=0x8000\n" + " map id=ram address=70-73,f0-f3:8000-ffff\n" ); if(has_spc7110rtc) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " epsonrtc\n" + " ram name=rtc.ram size=0x10\n" + " map id=io address=00-3f,80-bf:4840-4842\n" ); if(has_srtc) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " sharprtc\n" + " ram name=rtc.ram size=0x10\n" + " map id=io address=00-3f,80-bf:2800-2801\n" ); if(has_obc1) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " obc1\n" + " ram name=save.ram size=0x2000\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" ); if(has_dsp1) { - //91e87d11e1c30d172556bed2211cce2efa94ba595f58c5d264809ef4d363a97b dsp1.rom markup.append( - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp1b.program.rom size=0x1800\n" + " rom id=data name=dsp1b.data.rom size=0x800\n" + " ram id=data size=0x200\n" ); if(dsp1_mapper == DSP1LoROM1MB) markup.append( - " \n" - " \n" - " \n" - " \n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(dsp1_mapper == DSP1LoROM2MB) markup.append( - " \n" - " \n" - " \n" - " \n" + " map id=io address=60-6f,e0-ef:0000-7fff select=0x4000\n" ); if(dsp1_mapper == DSP1HiROM) markup.append( - " \n" - " \n" - " \n" - " \n" - ); - markup.append( - " \n" + " map id=io address=00-1f,80-9f:6000-7fff select=0x1000\n" ); } if(has_dsp2) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp2.program.rom size=0x1800\n" + " rom id=data name=dsp2.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(has_dsp3) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp3.program.rom size=0x1800\n" + " rom id=data name=dsp3.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(has_dsp4) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp4.program.rom size=0x1800\n" + " rom id=data name=dsp4.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map address=30-3f,b0-bf:8000-ffff select=0x4000\n" ); if(has_st010) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD96050 frequency=11000000\n" + " rom id=program name=st010.program.rom size=0xc000\n" + " rom id=data name=st010.data.rom size=0x1000\n" + " ram id=data name=save.ram size=0x1000\n" + " map id=io address=60-67,e0-e7:0000-3fff select=0x0001\n" + " map id=ram address=68-6f,e8-ef:0000-7fff\n" ); if(has_st011) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD96050 frequency=15000000\n" + " rom id=program name=st011.program.rom size=0xc000\n" + " rom id=data name=st011.data.rom size=0x1000\n" + " ram id=data name=save.ram size=0x1000\n" + " map id=io address=60-67,e0-e7:0000-3fff select=0x0001\n" + " map id=ram address=68-6f,e8-ef:0000-7fff\n" ); if(has_st018) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " armdsp frequency=21477272\n" + " rom id=program name=st018.program.rom size=0x20000\n" + " rom id=data name=st018.data.rom size=0x8000\n" + " ram name=save.ram size=0x4000\n" + " map id=io address=00-3f,80-bf:3800-38ff\n" ); - - markup.append("\n"); - markup.transform("'", "\""); } void SuperFamicomCartridge::read_header(const uint8_t *data, unsigned size) { diff --git a/ananke/nall/file.hpp b/ananke/nall/file.hpp index e9d9a2ff..be9fc086 100644 --- a/ananke/nall/file.hpp +++ b/ananke/nall/file.hpp @@ -74,6 +74,14 @@ namespace nall { return true; } + static bool write(const string &filename, const string &text) { + file fp; + if(fp.open(filename, mode::write) == false) return false; + fp.print(text); + fp.close(); + return true; + } + static bool write(const string &filename, const vector &buffer) { file fp; if(fp.open(filename, mode::write) == false) return false; diff --git a/ananke/patch.cpp b/ananke/patch.cpp new file mode 100644 index 00000000..a2dc1f9c --- /dev/null +++ b/ananke/patch.cpp @@ -0,0 +1,15 @@ +void Ananke::applyBeatPatch(vector &buffer) { + string name = {nall::basename(information.name), ".bps"}; + if(!file::exists(name)) return; + + bpspatch patch; + if(patch.modify(name) == false) return; + patch.source(buffer.data(), buffer.size()); + vector output; + output.resize(patch.size()); + patch.target(output.data(), output.size()); + if(patch.apply() == bpspatch::result::success) { + buffer = output; + information.manifest = patch.metadata(); + } +} diff --git a/ananke/super-famicom.cpp b/ananke/super-famicom.cpp new file mode 100644 index 00000000..185d7ed4 --- /dev/null +++ b/ananke/super-famicom.cpp @@ -0,0 +1,99 @@ +string Ananke::createSuperFamicomDatabase(vector &buffer, Markup::Node &document, const string &manifest) { + string pathname = { + userpath(), "Emulation/Super Famicom/", + document["release/information/name"].text(), + " (", document["release/information/region"].text(), ")", + " (", document["release/information/revision"].text(), ")", + ".sfc/" + }; + directory::create(pathname); + + //strip "release" root node from database entry + string markup = manifest; + markup.replace("\n ", "\n"); + markup.replace("information", "\ninformation"); + markup.ltrim<1>("release\n"); + + file::write({pathname, "manifest.bml"}, markup); + + unsigned offset = 0; + for(auto &node : document["release/information/configuration"]) { + if(node.name != "rom") continue; + string name = node["name"].text(); + unsigned size = node["size"].decimal(); + file::write({pathname, name}, buffer.data() + offset, size); + offset += size; + } + + return pathname; +} + +string Ananke::createSuperFamicomHeuristic(vector &buffer) { + string pathname = { + userpath(), "Emulation/Super Famicom/", + nall::basename(information.name), + " (unverified).sfc/" + }; + directory::create(pathname); + + if((buffer.size() & 0x7fff) == 512) buffer.remove(0, 512); //strip copier header, if present + + SuperFamicomCartridge info(buffer.data(), buffer.size()); + string markup = info.markup; + if(!information.manifest.empty()) markup = information.manifest; //override with embedded beat manifest, if one exists + + file::write({pathname, "manifest.bml"}, markup); + + if(!markup.position("spc7110")) { + file::write({pathname, "program.rom"}, buffer); + } else { + file::write({pathname, "program.rom"}, buffer.data(), 0x100000); + file::write({pathname, "data.rom"}, buffer.data() + 0x100000, buffer.size() - 0x100000); + } + + auto copyFirmware = [&](const string &name, unsigned programSize, unsigned dataSize) { + auto buffer = file::read({information.path, name}); //try and read from the containing directory + if(buffer.size() == 0) buffer = extractFile(name); //try and read from the containing archive, if one exists + if(buffer.size() == 0) { + MessageWindow::critical(Window::none(), { + "Error: required firmware ", name, " not found. Game will not be playable!\n\n", + "You must obtain this file, and place it in the same folder as this game." + }); + return; + } + + string basename = nall::basename(name); + if(programSize) file::write({pathname, basename, ".program.rom"}, buffer.data(), programSize); + if(dataSize) file::write({pathname, basename, ".data.rom"}, buffer.data() + programSize, dataSize); + }; + + if(markup.position("dsp1.program.rom" )) copyFirmware("dsp1.rom", 0x001800, 0x000800); + if(markup.position("dsp1b.program.rom")) copyFirmware("dsp1b.rom", 0x001800, 0x000800); + if(markup.position("dsp2.program.rom" )) copyFirmware("dsp2.rom", 0x001800, 0x000800); + if(markup.position("dsp3.program.rom" )) copyFirmware("dsp3.rom", 0x001800, 0x000800); + if(markup.position("dsp4.program.rom" )) copyFirmware("dsp4.rom", 0x001800, 0x000800); + if(markup.position("st010.program.rom")) copyFirmware("st010.rom", 0x00c000, 0x001000); + if(markup.position("st011.program.rom")) copyFirmware("st011.rom", 0x00c000, 0x001000); + if(markup.position("st018.program.rom")) copyFirmware("st018.rom", 0x020000, 0x008000); + if(markup.position("cx4.data.rom" )) copyFirmware("cx4.rom", 0x000000, 0x000c00); + + return pathname; +} + +string Ananke::openSuperFamicom(vector &buffer) { + string sha256 = nall::sha256(buffer.data(), buffer.size()); + + string databaseText = string::read({configpath(), "ananke/database/Super Famicom.bml"}).rtrim("\n"); + lstring databaseItem = databaseText.split("\n\n"); + + for(auto &item : databaseItem) { + item.append("\n"); + auto document = Markup::Document(item); + + if(document["release/information/sha256"].text() == sha256) { + return createSuperFamicomDatabase(buffer, document, item); + } + } + + return createSuperFamicomHeuristic(buffer); +} diff --git a/higan/data/cheats.bml b/higan/data/cheats.bml new file mode 100644 index 00000000..89e3425d --- /dev/null +++ b/higan/data/cheats.bml @@ -0,0 +1,81209 @@ +database revision=2012-11-21 + +cartridge sha256:e868400409c70876b98dad2cca87b8e9ee31877b0cccbbd8405be5c54922722a + name:1942 (Japan, USA) + cheat + description:Don't die when touched + code:OLZNEE + cheat + description:Most enemies die instantly + code:PAEIXKNY + cheat + description:Infinite lives - 1P game + code:SZXLKEVK + cheat + description:Infinite rolls + code:SZESPUVK + cheat + description:Hit anywhere + code:ALKUTGEL+SXULIKSO+SZELGKSO+SZKULGAX + cheat + description:Rapid fire + code:AEUSGZAP + cheat + description:After continue P1 has 6 lives - 2P game + code:IAKUUAZA + cheat + description:After continue P1 has 9 lives - 2P game + code:AAKUUAZE + cheat + description:P2 has 6 lives - 2P game + code:IASUOAZA + cheat + description:P2 has 9 lives - 2P game + code:AASUOAZE + cheat + description:Start with 9 rolls - both players + code:PASIOALE + cheat + description:Start with 6 lives - 1P game + code:IESUTYZA + cheat + description:Start with 9 lives - 1P game + code:AESUTYZE + cheat + description:Invincibility + code:048E:88 + cheat + description:Infinite rolls (alt) + code:0436:03 + cheat + description:Infinite lives + code:0432:02 + +cartridge sha256:9f54aafa367247b99c344ba9a0c58ad8fa8aceeeae1c304b8fefc9985c3c118c + name:1943 - The Battle of Midway (USA) + cheat + description:Infinite energy + code:OUNLAZGA + cheat + description:Infinite energy (alt) + code:SXVLZXSE+VVOULXVK + cheat + description:Infinite power-ups + code:SUTXGN + cheat + description:Infinite weapon upgrade time + code:SGOUZUVK + cheat + description:Don't instantly die from touching boss planes + code:NSKIELGA + cheat + description:Always shoot power shots + code:LEEPXLAE + cheat + description:Hit anywhere + code:AENSKLAP+GZESEGEL+SLSKOEOO+SXOINUOO+SXXGVEOO+SZKTSXOO+SZVGSVOO + cheat + description:10 power points + code:ZESNLLLE + cheat + description:20 power points + code:GOSNLLLA + cheat + description:30 power points + code:TOSNLLLE + cheat + description:Start on mission 5 + code:AEVYZLAE + cheat + description:Start on mission 10 + code:ZOVYZLAA + cheat + description:Start on mission 15 + code:GOVYZLAE + cheat + description:Start on mission 20 + code:TXVYZLAA + cheat + description:Invincibility + code:040E:60 + cheat + description:Infinite power points + code:0347:01 + cheat + description:Infinite energy (alt 2) + code:0410:09 + +cartridge sha256:cd8d9859f334901aca717e08be03dab077766927c87a2becda22982b9234d532 + name:1945 [p1] + cheat + description:Invincibility + code:SXOOAZAX+SXVOPGAX + cheat + description:Infinite Bombs + code:SXUAYLAX + +cartridge sha256:c457644ccfb93f8978326e728931800283821e531edc409fca9c0167495319c4 + name:3-D WorldRunner (USA) + cheat + description:Invincibility + code:ATPXIG + cheat + description:Infinite lives + code:AEUOLTPA + cheat + description:Infinite time + code:SXUPZGVG + cheat + description:Slow down timer + code:NNXOYGEK + cheat + description:Speed up timer + code:AVXOYGEG + cheat + description:Start with and keep laser missiles + code:AEUOVIGA + cheat + description:Autofire + code:OXUONISX + cheat + description:Start with 1 life + code:PEUPPTLA+PLVOLTLL + cheat + description:Start with 6 lives + code:TEUPPTLA+TLVOLTLL + cheat + description:Start with 9 lives + code:PEUPPTLE+PLVOLTLU + cheat + description:Start on world 2 + code:XZEAUOOZ+PAEAKPAA+VAEASPSA + cheat + description:Start on world 3 + code:XZEAUOOZ+ZAEAKPAA+VAEASPSA + cheat + description:Start on world 4 + code:XZEAUOOZ+LAEAKPAA+VAEASPSA + cheat + description:Start on world 5 + code:XZEAUOOZ+GAEAKPAA+VAEASPSA + cheat + description:Start on world 6 + code:XZEAUOOZ+IAEAKPAA+VAEASPSA + cheat + description:Start on world 7 + code:XZEAUOOZ+TAEAKPAA+VAEASPSA + cheat + description:No enemies or pitfalls + code:003A:05 + +cartridge sha256:df696ce2af90b18ca2b57468bdc525afce371bb1868152eb2cbbe1d62252f617 + name:720 Degrees (USA) + cheat + description:Infinite continues + code:SZUYASVK + cheat + description:9 continues + code:PEXKLZLE + cheat + description:6 continues + code:TEXKLZLA + cheat + description:No continues instead of 2 + code:PEXKLZLA + cheat + description:Start with all equipment + code:GEKKYZAA + cheat + description:Start with half equipment + code:ZEKKYZAA + cheat + description:Start on level 2 + code:XVXGGXSX+OXXGIXTE+ZEXGTZZA + cheat + description:Start on level 3 + code:XVXGGXSX+OXXGIXTE+LEXGTZZA + cheat + description:Start on level 4 + code:XVXGGXSX+OXXGIXTE+GEXGTZZA + cheat + description:Infinite time + code:0572:19 + cheat + description:Infinite time (one's digit) in half-pipe + code:0573:09 + cheat + description:Infinite time (ten's digit) in half-pipe + code:0574:09 + +cartridge sha256:3493f7621d964af7a56c407718ef1d056c6c46d4e4c6b3c48364d58a1b97a06a + name:8 Eyes (USA) + cheat + description:Invincibility - Orin + code:EIUUSLEY + cheat + description:Invincibility - Cutrus + code:EINGVPEY + cheat + description:Infinite health - Orin + code:SXOUSUSE + cheat + description:Infinite health - Cutrus + code:SXNGNOSE + cheat + description:Most attacks won't damage Orin + code:GXOUSUSE + cheat + description:Most attacks won't damage Cutrus + code:GXNGNOSE + cheat + description:Start with more health - Orin + code:AGVXGXYZ + cheat + description:Start with more health - Cutrus + code:AGVXIXYZ + cheat + description:Infinite ammo + code:SXSLKVSE + cheat + description:Start with all weapons + code:SAOVUTVA + cheat + description:Start with max ammo + code:YGVXTXYX + cheat + description:Start with some item power + code:YZVXTZAE + cheat + description:Never lose item power once gained + code:GXSLKVSE + cheat + description:Start with Dagger + code:VTOVNTVA + cheat + description:Invincibility - Orin (blinking) + code:030E:10 + cheat + description:Invincibility - Cutrus (blinking) + code:032E:10 + cheat + description:Infinite health - Orin (alt) + code:0594:4F + cheat + description:Infinite health - Cutrus (alt) + code:0595:4F + cheat + description:Infinite item power + code:0596:4F + cheat + description:Bosses have no invulnerability time + code:034E:00 + cheat + description:Bosses defeated instantly + code:034F:00 + cheat + description:Doors never close once opened + code:009D:FA + cheat + description:Have Boomerang + code:007F:02 + cheat + description:Have Ice Ball + code:007F:04 + cheat + description:Have Power Ball + code:007F:08 + cheat + description:Have Dagger, Boomerang, Molotov Cocktail, Hand Gun + code:007F:33 + +cartridge sha256:c4d4ff0bd283656c63d9a30dfc7dc6d2956744730a3641ba2c8f9f8e7204d9a1 + name:Abadox - The Deadly Inner War (USA) + cheat + description:Invincibility + code:AVVTXYSZ + cheat + description:Invincible against walls + code:EIUISSOZ+PYUIVIZA + cheat + description:Infinite lives + code:PEIGPN + cheat + description:Infinite lives (alt) + code:VVIGAY + cheat + description:Hit anywhere + code:ESSYIPEP+EUNNZPEI+EUUYPPEP+GZOYAZAL + cheat + description:Invincibility (alt) + code:0086:00+008A:00 + cheat + description:Speed up level 1 + code:008B:01 + cheat + description:Speed up level 2 + code:008B:02 + cheat + description:Speed up level 3 + code:008B:03 + +cartridge sha256:6da6c8ac123df0f51e6f1b2ba79cb067d3352262532604ab08cf5dd587e84006 + name:Action in New York (Europe) + cheat + description:Invincibility + code:AVISVG + cheat + description:One hit kills + code:EIKVVIEY + cheat + description:No enemies + code:GXUIZIAI + +cartridge sha256:005c48a5984e3b75e069ef78d736266b12f7f6b102d88d90172ba9ae480b378b + name:Addams Family, The (USA) + cheat + description:Invincibility + code:SXPATK + cheat + description:Infinite life + code:GXKKZSVK + cheat + description:Infinite lives + code:GXSVAUVK + cheat + description:Infinite Things + code:GXEVLVVK + cheat + description:Start with 1 life - 1st game only + code:PEVGGALA + cheat + description:Start with 6 lives - 1st game only + code:TEVGGALA + cheat + description:Start with 9 lives - 1st game only + code:PEVGGALE + cheat + description:Start in the tree + code:PEKGTAAA + cheat + description:Start in the crypt + code:ZEKGTAAA + cheat + description:Start in the hallway + code:LEKGTAAA + cheat + description:Start in Fester's room + code:AEKGTAAE + cheat + description:Start in Pugsly's room + code:PEKGTAAE + cheat + description:Start in the toy room + code:ZEKGTAAE + cheat + description:Start in Wednesday's room + code:LEKGTAAE + cheat + description:Start in the attic + code:GEKGTAAE + cheat + description:Start in a secret room + code:YEKGTAAE + cheat + description:Start in a secret room + code:AOKGTAAA + cheat + description:Start in a secret room + code:POKGTAAA + cheat + description:Start in the bone room + code:IOKGTAAE + cheat + description:Start in the freezer + code:PXKGTAAA + cheat + description:Start in the furnace + code:ZXKGTAAA + cheat + description:Start in Gomez's room + code:AXKGTAAA + +cartridge sha256:b3e09c94e33e0293672c1405c60fc69b2ab1564c8a4ee988e3ab6ada51484eea + name:Addams Family, The - Pugsley's Scavenger Hunt (USA) + cheat + description:Invincibility + code:ATGKAG + cheat + description:Infinite health + code:SZGKAK + cheat + description:Infinite health (alt) + code:AAKGYGPA + cheat + description:Infinite lives + code:SXUGZKVK + cheat + description:Infinite lives (alt) + code:SULGZK + cheat + description:Always able to fly + code:AASVUGIL + cheat + description:Mega-jump + code:AOVTETAO + cheat + description:Start with 1 life + code:PEVKZTIA + cheat + description:Start with 9 lives + code:PEVKZTIE + cheat + description:Start with 1 heart + code:PENKZTZA + cheat + description:Start with 4 hearts + code:GENKZTZA + cheat + description:Infinite health (alt 2) + code:0435:02 + cheat + description:Infinite lives (alt 2) + code:0438:09 + +cartridge sha256:22e92af92aed2d8d7bddb60732963642788b3ea9341592ce2c66a542a3d7ce7d + name:Advanced Dungeons & Dragons - DragonStrike (USA) + cheat + description:Invincibility + code:ATGGNY + cheat + description:Infinite health + code:SZGGNN + cheat + description:Infinite health (alt) + code:OTKGSYSV + cheat + description:Weapon power doesn't weaken with health + code:GZKKNNSE + cheat + description:Gold dragon has excellent armor class + code:TTXGIALT + cheat + description:Gold dragon flies faster + code:YGXKAAPG + cheat + description:Silver dragon flies faster + code:ATXGYAGV + cheat + description:Bronze dragon flies faster + code:YIXGTALI + cheat + description:Start wtih less health - bronze dragon + code:GPKZGEAZ + cheat + description:Start wtih more health - bronze dragon + code:AIKZGEAZ + cheat + description:Start wtih less health - silver dragon + code:TPKZIEGU + cheat + description:Start wtih more health - silver dragon + code:AIKZIEGL + cheat + description:Start wtih less health - gold dragon + code:ZZKZTAAS + cheat + description:Start wtih more health - gold dragon + code:ITKZTAAI + +cartridge sha256:df2609c80e818bb95983b30a3ac1435ea2332ac83e29fde469f397e1d5a2db93 + name:Advanced Dungeons & Dragons - Heroes of the Lance (USA) + cheat + description:Infinite HP for party in most battles + code:SUOAZGSP + +cartridge sha256:60061c0042741f7c1e53ad8f738c27ffd9057310ff5d556662b3667e5700e751 + name:Advanced Dungeons & Dragons - Hillsfar (USA) + cheat + description:Infinite Knock Rings + code:SXKUTSVK+AEKUISAI + cheat + description:Faster timer when lock-picking + code:AOULILAZ + cheat + description:Slower timer when lock-picking + code:ASULILAZ + cheat + description:Very slow timer when lock-picking + code:ENULILAZ + cheat + description:Start with 50% less gold on a character that you create + code:IEVANKZA + cheat + description:Start with 50% more gold on a character that you create + code:YEVANKZE + cheat + description:Start with 100% more gold on a character that you create + code:GOVANKZA + +cartridge sha256:38e5253131d264395a302d0910316f94bec00f60db616caa7a53806f08c5b5f9 + name:Advanced Dungeons & Dragons - Pool of Radiance (USA) + cheat + description:Create super characters + code:SOLAUN + cheat + description:Girdle Of Giant strength (must be used to be effective) + code:XGLAUN+GGLAUP + cheat + description:Extra EXP points + code:TLGAXL + cheat + description:One hit ends battle with no gold or EXP + code:AXLALN + +cartridge sha256:5ee479ef04d80366a75dd144cbeb47d0347ee82025d1b65dd358e1f6498c9a39 + name:Adventure Island II (USA) + cheat + description:Invincibility + code:ENUSOTEI + cheat + description:Invincibility (alt) + code:AVSSVVOZ + cheat + description:Infinite health + code:VTUIGEVK + cheat + description:Infinite health (alt) + code:SZUIGEVK + cheat + description:Infinite health against hitting objects + code:AAKSEYZA + cheat + description:Infinite Axes + code:PITXUZ + cheat + description:Infinite Axes plus get an extra Red Camptosaurus + code:NULLEX + cheat + description:Infinite lives + code:SXNLOKVK + cheat + description:Hit anywhere + code:ESKIEIEL+OLEIKVOO+OLXIOVOO+OUEISVOO+SXUSSIAX+TEUSNSNY+ZEUSVIUG + cheat + description:Never lose Dinosaur + code:SXXLEGSA+SZESEYSA+SZVSVYSA + cheat + description:Get fruits from anywhere + code:AAKXINIG + cheat + description:Multi-jump (hold jump to float) + code:KOOUZOYS+UXXLPOYI + cheat + description:Hold jump to float + code:VNXUIZZE + cheat + description:Reversible skateboard + code:AENZTPAZ + cheat + description:Faster running + code:ALKXAAAZ + cheat + description:Higher jump + code:SXSUAOSU+GEXULGPA + cheat + description:Start with 2 lives + code:PEXVAALA + cheat + description:Start with 7 lives + code:TEXVAALA + cheat + description:Start with 10 lives + code:PEXVAALE + +cartridge sha256:e8dc8c0441c54d09a1cfe0c112a3137bb6d709989b23e6528f8e30360e1ad910 + name:Adventure Island 3 (USA) + cheat + description:Invincibility + code:AEVXKGPA + cheat + description:Infinite health + code:SXOYOSVK + cheat + description:Infinite vitality + code:SKOYOSVK + cheat + description:Infinite lives + code:SXNLISSE + cheat + description:Hit anywhere + code:AAEZKLLA+AVSXKSOL+OUEXNSOO+OUEXSVOO + cheat + description:Hold jump to float + code:EYSXZAEI + cheat + description:Don't die when hitting spikes + code:AEUZNTPA + cheat + description:Don't lose pet when hitting spikes + code:SAKZSYVT + cheat + description:Mega-jumping Master Higgins + code:SUEZEXLN + cheat + description:Gain 99 lives after gaining 100 fruit + code:AAKXGTZA + cheat + description:Keep items after dying - after 1st stage + code:GXUUGOSO + cheat + description:Start a new game to view the ending + code:AAEZYIGA+LAEZLSZA + cheat + description:Start with 2 lives + code:PESZAALA + cheat + description:Start with 7 lives + code:TESZAALA + cheat + description:Start with 9 lives + code:PESZAALE + cheat + description:Start with 2 Red Taylors + code:VTVZZESE + cheat + description:Start with 2 Blue Taylors + code:VTVZIESE + cheat + description:Start with 2 Classies + code:VTVXAESE + cheat + description:Start with 2 Don-Dons + code:VTVXLESE + cheat + description:Start with 2 Poleys + code:VTVXTESE + cheat + description:Start with 2 Boomerangs + code:VTNZPESE + cheat + description:Start with 2 Axes + code:VTNZGESE + cheat + description:Start with 2 invincibility crystals + code:VTNZYESE + +cartridge sha256:185e4adb2cbcb71ebf0fd3f6af767f2215f93916cd2ccf932ce5864d3953239a + name:Adventures in the Magic Kingdom (USA) + cheat + description:Invincibility + code:ATPNTI + cheat + description:Infinite health + code:AVXNXPVG + cheat + description:Infinite time + code:ATXYKZEL + cheat + description:Infinite candles + code:SZSTGVVK + cheat + description:Infinite lives + code:SXKYUOVK + cheat + description:Almost infinite health in attractions + code:SXXNXPVG + cheat + description:All items for free + code:GXELLXSN+AAXUAXGY + cheat + description:Mega-jump + code:EYKVNKXN + cheat + description:'Life' costs less + code:LAKUTGTA + cheat + description:'Life' costs more + code:GAKUTGTE + cheat + description:'Freeze' costs less + code:GAKUYKAA + cheat + description:'Freeze' costs more + code:YAKUYKAE + cheat + description:'Invincible' costs less + code:IASLAKZA + cheat + description:'Invincible' costs more + code:GPSLAKZA + cheat + description:'Life Up' costs less + code:TASLPKGA + cheat + description:'Life Up' costs more + code:APSLPKGE + cheat + description:Never lose a life in 'attractions' + code:SXKYUOVK + cheat + description:More 'Freeze' time + code:NYKULZKU + cheat + description:Less 'Freeze' time + code:AGKULZKL + cheat + description:More 'Invincible' time + code:EGSUYXGL + cheat + description:Start with less health in attractions + code:PAVAZPLA + cheat + description:Start with more health in attractions + code:IAVAZPLA + cheat + description:Start with even more health in attractions + code:PAVAZPLE + cheat + description:Start with 1 life + code:PEVEIALA + cheat + description:Start with 6 lives + code:TEVEIALA + cheat + description:Start with 9 lives + code:PEVEIALE + +cartridge sha256:0e862077f390348b8e109caa8189ff5ecdf3fac53eefc204369fae880e077d19 + name:Adventures of Bayou Billy, The (USA) + cheat + description:Infinite health + code:PEKVIZYA+SXOOUKVK + cheat + description:Infinite lives + code:GZOVLLVG + cheat + description:Always have pistol + code:EZNATKKZ+XTNEAGYE+PANAYGOG + cheat + description:Always have knife + code:EZNATKKZ+XTNEAGYE+ZANAYGOG + cheat + description:Always have ugly stick + code:EZNATKKZ+XTNEAGYE+LANAYGOG + cheat + description:Always have whip + code:EZNATKKZ+XTNEAGYE+IANAYGOG + cheat + description:Start a new game to view the ending (game A or B) + code:IEOVAYGA + cheat + description:Start with 1 life + code:AAETAGZA + cheat + description:Start with 6 lives + code:IAETAGZA + cheat + description:Start with 9 lives + code:AAETAGZE + cheat + description:Start on level 2 + code:PAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 3 + code:ZAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 4 + code:LAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 5 + code:GAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 6 + code:IAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 7 + code:TAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Start on level 8 + code:YAEVZGAA+UYEVGKPU+AAEVAGGA + cheat + description:Infinite health (alt) + code:07C5:07 + cheat + description:One hit kills + code:0510:00+0511:00+0512:00+0513:00+0514:00 + cheat + description:Have the Gun + code:07C1:01 + cheat + description:have the Knife + code:07C1:02 + cheat + description:Have the Ugly Stick + code:07C1:03 + cheat + description:Have the Whip + code:07C1:05 + cheat + description:Infinite bullets + code:07C0:99 + +cartridge sha256:58d0f0e504b8450e7d2dfbe11948a244143bfe3065f7e78524633cce8ac73103 + name:Adventures of Dino Riki (USA) + cheat + description:Invincibility + code:ATLAEZ + cheat + description:Don't fall into the pits (you'll still lose any special ability you currently have) + code:AEKAOPZA + cheat + description:Once Macho, stay Macho + code:IEVASPIG + cheat + description:Start and stay as Macho-Riki + code:VKEAPISA + cheat + description:Start as Macho-Riki + code:VVEAPISA + cheat + description:Start with infinite lives + code:SZEETTVG + cheat + description:Start with 1 life + code:AESEPGZA + cheat + description:Start with 6 lives + code:IESEPGZA + cheat + description:Start with 9 lives + code:AESEPGZE + cheat + description:Start with infinite life hearts + code:SZUENZVG + cheat + description:Start with 4 life hearts + code:GESEIGZA + cheat + description:Start with 8 life hearts + code:AESEIGZE + cheat + description:Start on stage 2-1 + code:TKSAAGSA+ZEKEIGAA + cheat + description:Start on stage 3-1 + code:TKSAAGSA+GEKEIGAA + cheat + description:Start on stage 4-1 + code:TKSAAGSA+TEKEIGAA + cheat + description:Start on stage 4-2 + code:TKSAAGSA+AEKEIGAE + cheat + description:Start on stage 4-3 + code:TKSAAGSA+ZEKEIGAE + cheat + description:Start on stage 4-4 + code:TKSAAGSA+GEKEIGAE + +cartridge sha256:bb5859ced6b028934edddc734e3599f8dd7857b92838baf6a7d46df5dd151f6b + name:Adventures of Dr. Franken, The (USA) (Proto) + cheat + description:Infinite health + code:SXVVYTVG + +cartridge sha256:a0bc241936acf1993a300ab21c197a2647b6c072cfbb8e3f83424a9ab6655cc7 + name:Adventures of Gilligan's Island, The (USA) + cheat + description:Infinite time + code:SZENLZVG + cheat + description:Infinite rope + code:SZSUAUVK + cheat + description:Infinite supply of food + code:SZXUIUVK + cheat + description:Start with 9 units of food + code:PAXIUIZE + cheat + description:Start with 1 unit of food + code:PAXIUIZA + cheat + description:More time for Episode 1 + code:LANNLXPE + cheat + description:More time for Episode 2 + code:IANNGXLE + cheat + description:More time for Episode 3 + code:GPNNIZLP + cheat + description:Start with 9 ropes + code:PAXSEIZE + cheat + description:Start with 1 rope + code:PAXSEIZA + cheat + description:Start on Episode 2 + code:PAVSXGAA+GZVSUGSA + cheat + description:Start on Episode 3 + code:ZAVSXGAA+GZVSUGSA + +cartridge sha256:c5e47c0479f500b86995fc8d09e132f5ba3f54cfd9a2a601ea3848bb60871a20 + name:Adventures of Lolo (USA) + cheat + description:Invincibility + code:ATOKOAVT+AVXUPZVT + cheat + description:Infinite lives + code:SXOPSPVG + cheat + description:Always have shot ability + code:TASLIEUY + cheat + description:1 life for Lolo + code:PEKPOAIA + cheat + description:9 lives for Lolo + code:PEKPOAIE + +cartridge sha256:12d3119e25f7b40a7ccc546f5d92edaad86fb0083facf6dd61db512bac45f99d + name:Adventures of Lolo 2 (USA) + cheat + description:Invincibility + code:AVUXXLVT + cheat + description:Infinite lives + code:GZXPVLVG + cheat + description:Always have shot ability + code:GENXEEUY + cheat + description:Never lose magic shots + code:GXNXUAVG + cheat + description:Start with 1 life + code:PESPXPIA + cheat + description:Start with 10 lives + code:ZESPXPIE + cheat + description:Start with 15 lives + code:YESPXPIE + cheat + description:Start with 2 magic shots + code:ZAEPSZAA + cheat + description:Start with 4 magic shots + code:GAEPSZAA + cheat + description:Start on world 5 + code:GEUPKPAA + cheat + description:Start on world 10 + code:PEUPKPAE + cheat + description:Start on world 15 + code:TEUPKPAE + cheat + description:Start on world 20 + code:LOUPKPAA + cheat + description:Start on world 25 + code:AOUPKPAE + cheat + description:Start on world 30 + code:IOUPKPAE + +cartridge sha256:24f7bb802a0ddce0648ea9f156db42b3eaf4cc6598ce852ffac9f849bf92abee + name:Adventures of Lolo 3 (USA) + cheat + description:Invincibility + code:AVNPTTVT+ATXAVIVT + cheat + description:Always have shot ability + code:ZEOAKXUY + cheat + description:Infinite shots for each room on pick-up + code:SXOASZVG + +cartridge sha256:322d6be47ed539c3dd3c1c92398e9842c3922d7c13914b9c72752ddec377145c + name:Adventures of Rad Gravity, The (USA) + cheat + description:Infinite health + code:SUTTXU + +cartridge sha256:03db3d003eaa91e1434093ea259a82b9f2d5ed5b02404f9feba05819f69f81c4 + name:Adventures of Rocky and Bullwinkle and Friends, The (USA) + cheat + description:Infinite health + code:SXOESKSE + cheat + description:Infinite lives + code:SZNEUKVK + cheat + description:Infinite Bombs + code:SKKAPVVK + cheat + description:Rocky loses no health when flying when you have full health + code:TAVEYGYA + cheat + description:Rocky loses more health when flying when you have full health + code:TAVEAGZA + cheat + description:Bullwinkle loses no health when headbutting + code:AANAIGPA + cheat + description:Bullwinkle loses more health when headbutting + code:AANAPGGE + cheat + description:Start with no Bombs + code:AAOEYEZA+AEEIGXZA + cheat + description:Start with 2 lives + code:PAOEZAGA + cheat + description:Start with 30 Bombs + code:TPOEYEZE + +cartridge sha256:227e8a900206d0f8c67b7cb09eaee25f181085623b42bd9694dc30986d955f27 + name:Adventures of Tom Sawyer (USA) + cheat + description:Infinite lives + code:VZOGGPVG + cheat + description:Hit anywhere + code:AEEUVAIL+AINVPLEL+ASKLEGEL+ASVKYLEL + cheat + description:Only 5 T's lost from skulls + code:IAXGTSZA + cheat + description:Start with 1 Tom - P1 + code:PEUZIALA + cheat + description:Start with 1 Tom - P2 + code:PANXLLLA + cheat + description:Start with 6 Toms - P1 + code:TEUZIALA + cheat + description:Start with 6 Toms - P2 + code:TANXLLLA + cheat + description:Start with 9 Toms - P1 + code:PEUZIALE + cheat + description:Start with 9 Toms - P2 + code:PANXLLLE + cheat + description:Start at the river - P1 + code:OGSZZSVU + cheat + description:Start in the forest - P1 + code:KISZZSVL + cheat + description:Start in the house - P1 + code:NISZZSVU + cheat + description:Start in the sky - P1 + code:XTSZZSVU + cheat + description:Start in the cave - P1 + code:SYSZZSVL + cheat + description:Start at the river - P2 + code:ZEEZALPA+AEEXZLLE + cheat + description:Start in the forest - P2 + code:LEEZALPA+IEEXZLLE + cheat + description:Start in the house - P2 + code:GEEZALPA+ZOEXZLLA + cheat + description:Start in the sky - P2 + code:IEEZALPA+YOEXZLLA + cheat + description:Start in the cave - P2 + code:TEEZALPA+GOEXZLLE + +cartridge sha256:69300586af39342fccc249134f6f44ebbd0fce7c1e5b93151cff63bb35072add + name:After Burner (USA) (Unl) + cheat + description:Invincibility + code:SZKOLZSA + cheat + description:Infinite lives + code:SKXVPZVG + cheat + description:Infinite missiles + code:SKNAXZVG + +cartridge sha256:4fb12ad1c791c7ee8d5ec824eff871d71b43b92c4e93b45ed0b60f022459b917 + name:After Burner (Japan) + cheat + description:Infinite lives + code:SXNTPPVG + +cartridge sha256:1b5857f9fd57d6f50d8d1e57db67203155fb2974ae426deac3398efef1dbf042 + name:Aigina no Yogen - Balubalouk no Densetsu Yori (Japan) + cheat + description:Invincibility + code:SXIPPS + cheat + description:Infinite lives + code:SLLOPK + +cartridge sha256:e10ff4cfeaf0c16a71d7fffbf79ad3260c119431db6fad603d07ec971746849a + name:Airball (Unknown) (Proto1) + cheat + description:Can use float at any difficulty level + code:AEEGAIAP + +cartridge sha256:6d0215929f2dfeeecdeee4dd50b8aec07f279a8ab8df1dc4e877bbcad3db0d37 + name:Air Fortress (USA) + cheat + description:Invincibility + code:ESSXAYEY+ENSXIYEI + cheat + description:Infinite energy + code:SXKKNSSE+SZEGOVSE + cheat + description:Don't take damage inside fortress + code:GXKKSIST+GXNKNIST + cheat + description:Infinite lives + code:SGUPKGVG + cheat + description:Infinite lives outside fortress + code:SZUPKGVG + cheat + description:Infinite Beam Bullets + code:AAKPSTPA + cheat + description:Hit anywhere - inside fortress + code:GGSOXKKU+KPSOKGGV+OZSOUGKZ+SXNOSGSP + cheat + description:Hit anywhere - outside fortress + code:AAOZNULL+GGXZNUSN+GIXXEUGK+SZVZSLSP+UZXXOLIV + cheat + description:Double Bombs on pick-up + code:APKZNGIA + cheat + description:Extra energy on pick-up + code:YYNXUZGV+YNEZEZGV + cheat + description:Start with 1 life + code:PAVPKZLA + cheat + description:Start with 6 lives + code:TAVPKZLA + cheat + description:Start with 9 lives + code:PAVPKZLE + cheat + description:Start on level 2 + code:XZSOXXPZ+PASOUZYA+VASOKZSA + cheat + description:Start on level 3 + code:XZSOXXPZ+ZASOUZYA+VASOKZSA + cheat + description:Start on level 4 + code:XZSOXXPZ+LASOUZYA+VASOKZSA + cheat + description:Start on level 5 + code:XZSOXXPZ+GASOUZYA+VASOKZSA + cheat + description:Start on level 6 + code:XZSOXXPZ+IASOUZYA+VASOKZSA + cheat + description:Start on level 7 + code:XZSOXXPZ+TASOUZYA+VASOKZSA + +cartridge sha256:b82c1234165cd725d8e7f3e51926bceb834744eb49ad915bd3ea8b76fa465eb1 + name:Airwolf (USA) + cheat + description:Infinite health + code:SLTXSN + cheat + description:Infinite lives + code:SUTAPX + cheat + description:Start with 1 life + code:PAUGVILA + cheat + description:Start with 6 lives + code:TAUGVILA + cheat + description:Start with 9 lives + code:PAUGVILE + cheat + description:Start at last mission reached + code:PVXKKKLI + cheat + description:Start with 30 missiles + code:TPVAPXYE + cheat + description:Start with 45 missiles + code:IZVAPXYE + cheat + description:Start with infinite missiles + code:GXSZAPVG + cheat + description:Sets missiles to 5 when you refuel + code:IEVAISYA + cheat + description:Sets missiles to 30 when you refuel + code:TOVAISYE + cheat + description:Infinite health (alt) + code:00B9:00 + cheat + description:Infinite lives (alt) + code:036C:02 + +cartridge sha256:60b1aebdc0a19afc5d3e7dc4f09d8a968580e007197461a8a142656702c27f0d + name:Akumajou Dracula (Japan) + cheat + description:Infinite health + code:SXKTAYSE + cheat + description:Infinite lives + code:OZOGZLVK + cheat + description:Infinite time + code:SXUZGAAX + cheat + description:Clock doesn't use hearts + code:KXXSXZKA + cheat + description:Weapons don't use hearts + code:KXVISZKA + cheat + description:Can't add hearts + code:KXVVPYSA + cheat + description:Keep weapon after losing a life + code:GZUKLUSE + cheat + description:Start with rapid-fire shots + code:AEELATPA + cheat + description:Start with 80 hearts + code:ASEGUPIA + cheat + description:Start with 99 hearts + code:LVEGUPIA + +cartridge sha256:c70f0f5d4054ce7c4850259879c9823add73ccc234ddcf96d95681bb78bd2c58 + name:Akumajou Densetsu (Japan) + cheat + description:Infinite life + code:SAXANGSZ + cheat + description:Infinite hearts + code:AANEKLPA + cheat + description:Infinite time + code:IEOESPLA + cheat + description:Infinite lives + code:SZNEKPSE + cheat + description:Multi-jump + code:OZVPEAES+SASOSESX+SAVPXESX+SZUOEASA+SZSOEAGA+ZASOXEAE+AVSANLAP+ASSOGYTS+ASSOGLTS+AZSOOEOK+EIVPUAIV+EPSOUAEL+IAVOEEAA+IAVPOEGA+IAVPVATZ + +cartridge sha256:ff5b96853cf67171918aad5157661dc223e0002e0373e2580cee2e207bb0a682 + name:Akumajou Special - Boku Dracula-kun (Japan) + cheat + description:Invincibility + code:AVASEI + cheat + description:Infinite health + code:SXESEIVG + cheat + description:Infinite lives + code:SXXSVGVG + +cartridge sha256:722096b8929442310bc268f9cfea10b26cff8a7e900197b54c73b4a8603b5d96 + name:Aladdin (Europe) + cheat + description:Invincibility + code:ESNKNGEY+ESEYUPEY + cheat + description:Infinite energy + code:SZEUSZSA + cheat + description:Infinite lives + code:SXKGYXSE + cheat + description:Infinite Apples + code:SXEKKESE + +cartridge sha256:4b088e1e78981308da68883cf8292337ff8d899bf82a78d17e7a7af2745846e7 + name:Alfred Chicken (USA) + cheat + description:Invincibility + code:SXZNIG + cheat + description:Infinite time (alt) + code:AVGLXA + cheat + description:Infinite lives + code:EVKNKAPA + cheat + description:Infinite lives (alt) + code:SXGNXE + cheat + description:Infinite time + code:AVULEESZ + cheat + description:255 points for each present collected + code:NNXYKPZU + cheat + description:108 points for each present collected + code:GVXYKPZL + cheat + description:Only need 1 diamond for an extra life + code:PAKLTPTA + cheat + description:3 balloons needed to complete a level + code:OZXKXZOU+LAXKUZPI + cheat + description:2 balloons needed to complete a level + code:OZXKXZOU+ZAXKUZPI + cheat + description:1 balloon needed to complete a level + code:OZXKXZOU+PAXKUZPI + cheat + description:Start with 1 life + code:AASGITZA + cheat + description:Start with 2 lives + code:PASGITZA + cheat + description:Always spring-jump + code:DD68:90 + +cartridge sha256:d73a9a1fae7396754c19eecd6aa9e44d02c230df8efed0bafd86aa1cb0dd2a23 + name:Alien 3 (USA) + cheat + description:Invincibility + code:SXOPNKVK+YEKVUPGV+YESIGIGV + cheat + description:Infinite health + code:SXUYUXSE + cheat + description:Infinite time + code:SUEUTXSO + cheat + description:Infinite lives + code:SZKVZXVK + cheat + description:Infinite gun heat + code:SXOSNKVT + cheat + description:Super-jump + code:IPUZTALA+IPUXPALA + cheat + description:Invincible against long falls + code:AASGKNYA + cheat + description:Always have Radar + code:NNKVNPAE + cheat + description:Infinite Radar + code:SZVXVXVK + cheat + description:Infinite ammo for Machine gun + code:SXXSNKVK + cheat + description:Infinite ammo for Grenade Launcher + code:SZVSSKVK + cheat + description:Infinite ammo for Grenade Launcher 2 + code:SZKLVSVK + cheat + description:Infinite ammo for Flame Thrower + code:SZEIUOVK + cheat + description:Level skip (pause and press any key (except left) + code:TUVUYLZG + cheat + description:Invincibility (alt) + code:03C8:4A + cheat + description:Infinite health (alt) + code:074A:12 + cheat + description:Infinite time + code:0742:09+0743:09+0744:09 + cheat + description:Infinite weapon 1 + code:074B:3F + cheat + description:Infinite weapon 2 + code:074C:20 + cheat + description:Infinite weapon 3 + code:074E:1C + cheat + description:Infinite weapon 4 + code:074D:32 + cheat + description:Rescue all now + code:0747:00 + +cartridge sha256:cd1a9bc6c9e2181668fea96db14bc67fbbf9bf1572eef2bb074e5912a0dd54c9 + name:Alien Syndrome (Japan) + cheat + description:Infinite lives + code:OUYKKT + cheat + description:Infinite time + code:SUANPN + cheat + description:Don't lose life when touched + code:OLZEEP + +cartridge sha256:d676ef6f7aa3b042ae5a0c95a7f07fabb4c3a5fccb3767ae1950713e51189a47 + name:Alien Syndrome (USA) (Unl) + cheat + description:Infinite time + code:SZUNYXVK + cheat + description:Don't lose life when shot or touched + code:AEEKXONY + cheat + description:Don't lose life from falling down holes + code:AANGVXNY + cheat + description:Set timer to 440 + code:GUONPPLL + cheat + description:1 life after continue + code:PEXGGLGA + cheat + description:8 lives after continue + code:AEXGGLGE + cheat + description:Start with 1 life - both players + code:PAOGPIGA + cheat + description:Start with 8 lives - both players + code:AAOGPIGE + cheat + description:Start with Flame Thrower + code:PAVKGIAA + cheat + description:Start with Fireball + code:ZAVKGIAA + cheat + description:Start with Laser + code:LAVKGIAA + cheat + description:Start on round 2 + code:PENNELAP+KUNNXLAA+LENNULAZ + cheat + description:Start on round 3 + code:ZENNELAP+KUNNXLAA+LENNULAZ + cheat + description:Start on round 4 + code:LENNELAP+KUNNXLAA+LENNULAZ + cheat + description:Start on round 5 + code:GENNELAP+KUNNXLAA+LENNULAZ + cheat + description:Start on round 6 + code:IENNELAP+KUNNXLAA+LENNULAZ + cheat + description:Start on round 7 + code:TENNELAP+KUNNXLAA+LENNULAZ + +cartridge sha256:a762d0a90d16c84b5f2b014816b37675cf5115320be7e815effbb64d91b2014d + name:All Night Nippon Super Mario Brothers (Japan) (Promotion Card) + cheat + description:All blocks are starmen + code:SKGEOO + cheat + description:Invisible 1-up blocks are visible and all mushroom blocks are 1-ups + code:OKYEOP + cheat + description:Start on level 8-4 + code:YEUGZGAA+LEUKGGAA + +cartridge sha256:3addebdec132929ecad2a8612a4ba54ccc39b9ada2295692f836c6b48d015054 + name:Alpha Mission (USA) + cheat + description:Invincibility + code:OUXKZPOP + cheat + description:Infinite lives + code:SXSPYZVG + cheat + description:Keep power up after death + code:GZNAILSA + cheat + description:Keep energy after death + code:GZNAYLSA + cheat + description:Thunder uses 25% normal energy + code:GAEOUEAA + cheat + description:Triple energy gained on 'E' pick-up + code:TEXLPTZA + cheat + description:Less energy lost on 'Bad E' pick-ups + code:ZEULGTGA + cheat + description:Shield doesn't use energy + code:SZEGGASA + cheat + description:You can re-use weapon after selecting + code:IZNAEGSA + cheat + description:Start with all weapons available + code:NYKAYLLE + cheat + description:Start with 1 life + code:PASATLLA + cheat + description:Start with double lives + code:TASATLLA + cheat + description:Start with triple lives + code:PASATLLE + +cartridge sha256:a978de5d5f343eacb0a6f12427327ecbe9b2e9cf881569aec7b838bd44237d84 + name:Amagon (USA) + cheat + description:Invincibility + code:ESNIZLEY + cheat + description:Invincible against enemies + code:AVOXGOOZ + cheat + description:Invincible against bullets + code:ATXZPOOZ + cheat + description:Invincible against area boss + code:AVNZAOOZ + cheat + description:Infinite mega-power + code:GZSZIZSP + cheat + description:Infinite ammo + code:AAVYLTPA + cheat + description:Infinite ammo (alt) + code:SLVYGTSP + cheat + description:Hit anywhere + code:AEUNYTZT + cheat + description:One hit kills + code:AESYZVTG + cheat + description:Multi-jump + code:AANKKTTA+AEEKVTGA+AEEGNTTE + cheat + description:Gain 10 bullets on pick-up + code:PAVKUIZA + cheat + description:Gain 30 bullets on pick-up + code:LAVKUIZA + cheat + description:Start with no bullets + code:PEOVPZGA + cheat + description:Start with 600 bullets + code:YEOVPZGA + cheat + description:Start with infinite lives + code:AAXGNYPA + cheat + description:Start with 1 life + code:PEOVIZGA + cheat + description:Start with 8 lives + code:AEOVIZGE + +cartridge sha256:be12cff13a06e0b5de2dad4d431f7cf9a6aa73be45cdbd952dfd03a9d23571b6 + name:American Gladiators (USA) + cheat + description:Less joust time + code:GLUOZGLV + cheat + description:Stop joust timer + code:GZXXLUVK + cheat + description:Less cannonball time + code:GLOEGALV + cheat + description:Stop cannonball time + code:GZEPGOVK + cheat + description:Less wall time + code:GLKXXZLV + cheat + description:Stop wall timer + code:GXOXEXVS + cheat + description:More assault time + code:LTXATNIL + cheat + description:Less assault time + code:PZXATNIU + cheat + description:Stop assault timer + code:GZSAINVK + cheat + description:More power ball time - level 1 + code:LTSOZOIL + cheat + description:More power ball time - level 2 + code:LTSOLOAL + cheat + description:More power ball time - level 3 + code:LTSOGPLL + cheat + description:More power ball time - level 4 + code:LTSOIOTZ + cheat + description:Start with 1 life - P1 + code:PEXALTIA + cheat + description:Start with 8 lives - P1 + code:AEXALTIE + cheat + description:Start with 10 lives - P1 + code:ZEXALTIE + cheat + description:Start with 20 lives - P1 + code:GOXALTIA + cheat + description:Start with 1 life - P2 + code:PEVALTIA + cheat + description:Start with 8 lives - P2 + code:AEVALTIE + cheat + description:Start with 10 lives - P2 + code:ZEVALTIE + cheat + description:Start with 20 lives - P2 + code:GOVALTIA + cheat + description:Start on level 2 - P1 + code:PEXAPTAA + cheat + description:Start on level 3 - P1 + code:ZEXAPTAA + cheat + description:Start on level 4 - P1 + code:LEXAPTAA + cheat + description:Start on level 2 - P2 + code:PEVAPTAA + cheat + description:Start on level 3 - P2 + code:ZEVAPTAA + cheat + description:Start on level 4 - P2 + code:LEVAPTAA + +cartridge sha256:427876021e6c077479a1a1171e013f84ae951197005a317b099df3b6c2862603 + name:Anticipation (USA) + cheat + description:More time to answer questions + code:ZUUPYNPP + cheat + description:Less time to answer questions + code:YEUPYNPO + cheat + description:Infinite chances + code:AANZATEG + +cartridge sha256:bb834eb82f0ac53114035e6f353434a934d4aa47742644740de5fa8b2b033b5b + name:Arch Rivals - A Basketbrawl! (USA) + cheat + description:More time for a quarter + code:ALXLNZGU+ALNLPPGU + cheat + description:Less time for a quarter + code:ZLXLNZGL+ZLNLPPGL + cheat + description:Run faster without ball + code:AVNPLAAZ+ATVPAPAZ + cheat + description:Super speed + code:IXVOPAGA+IZSPGPGA + +cartridge sha256:751d3bf4722ce117d8ab7ff78059f42206ead5299716d91d5ff27d3900d555ad + name:Archon (USA) + cheat + description:Unrestricted ground movement + code:AASSIEUT + cheat + description:Unrestricted flying movement + code:AAKIGAGA + +cartridge sha256:7768ef85519c94dc40d09bc598121825d103fcf1d4927be59f597b0a3509d15f + name:Argus (Japan) + cheat + description:Invincibility + code:SZEOKASA + cheat + description:Infinite lives + code:SGXEYPVG + +cartridge sha256:a3763e702f8ae0818480cf0a8b2395d3f928c539f75e230ed43fa6b904fe6365 + name:Arkanoid (USA) + cheat + description:Infinite lives - both players + code:OZNEATVK + cheat + description:Infinite lives + code:SZNEATVG + cheat + description:No lasers + code:SXVATAAX + cheat + description:Square ball + code:VVZZPP + cheat + description:Start with 1 life - P1 + code:PAOPUGLA + cheat + description:Start with 6 lives - P1 + code:TAOPUGLA + cheat + description:Start with 9 lives - P1 + code:PAOPUGLE + cheat + description:Start on boss level + code:GZOONGPA + cheat + description:Start on level 0 + code:AAOONGPA + cheat + description:Start on level 1 + code:PAOONGPA + cheat + description:Start on level 2 + code:ZAOONGPA + cheat + description:Start on level 3 + code:LAOONGPA + cheat + description:Start on level 4 + code:GAOONGPA + cheat + description:Start on level 5 + code:IAOONGPA + cheat + description:Start on level 6 + code:TAOONGPA + cheat + description:Start on level 7 + code:YAOONGPA + cheat + description:Start on level 8 + code:AAOONGPE + cheat + description:Start on level 9 + code:PAOONGPE + cheat + description:Start on level 10 + code:ZAOONGPE + cheat + description:Start on level 11 + code:LAOONGPE + cheat + description:Start on level 12 + code:GAOONGPE + cheat + description:Start on level 13 + code:IAOONGPE + cheat + description:Start on level 14 + code:TAOONGPE + cheat + description:Start on level 15 + code:YAOONGPE + cheat + description:Start on level 16 + code:APOONGPA + cheat + description:Start on level 17 + code:PPOONGPA + cheat + description:Start on level 18 + code:ZPOONGPA + cheat + description:Start on level 19 + code:LPOONGPA + cheat + description:Start on level 20 + code:GPOONGPA + cheat + description:Start on level 21 + code:IPOONGPA + cheat + description:Start on level 22 + code:YPOONGPA + cheat + description:Start on level 23 + code:YPOONGPA + cheat + description:Start on level 24 + code:APOONGPE + cheat + description:Start on level 25 + code:PPOONGPE + cheat + description:Start on level 26 + code:ZPOONGPE + cheat + description:Start on level 27 + code:LPOONGPE + cheat + description:Start on level 28 + code:GPOONGPE + cheat + description:Start on level 29 + code:IPOONGPE + cheat + description:Start on level 30 + code:TPOONGPE + cheat + description:Start on level 31 + code:YPOONGPE + cheat + description:Start on level 32 + code:AZOONGPA + cheat + description:Start on level 33 + code:PZOONGPA + cheat + description:Start on level 34 + code:ZZOONGPA + cheat + description:Start on level 35 + code:LZOONGPA + cheat + description:Start on level 36 + code:GZOONGPA + +cartridge sha256:8593b6ae7b19b2e767ad2c207c5a83dea90030414f45eef4c0dec3c3a5530364 + name:Arkanoid II (Japan) + cheat + description:Infinite lives + code:SKSGXAVG + +cartridge sha256:381fcbe2b714c38fdeb4045d93f0867fe80f4a219077c3dc5a683a05a8b8e78a + name:Arkista's Ring (USA) + cheat + description:Infinite health + code:GZOPTIST + cheat + description:Less damage from powerful monsters + code:LAEPYSYA + cheat + description:Infinite lives + code:SZULXKVK + cheat + description:Start with fewer hearts + code:ZAKATIIA + cheat + description:Start with more hearts + code:PAKATIIE + cheat + description:Start with 20 continues + code:IPUAGSLA + cheat + description:Start with 5 continues + code:TAUAGSLA + cheat + description:Start with 1 life + code:PAKETILA + cheat + description:Start with 6 lives + code:TAKETILA + cheat + description:Start with 9 lives + code:PAKETILE + cheat + description:Infinite health (alt) + code:03D6:05 + cheat + description:Have Ring, Necklace, Mirror + code:03DC:FF + cheat + description:Have all armor + code:03D5:0A+03D6:0A + cheat + description:Have Ultimate Bow status + code:03D3:07 + cheat + description:Have Ultimate Arrow status + code:03D4:07 + cheat + description:Max item slots + code:03D7:03 + cheat + description:Unlock doors (enable only when at a door otherwise you'll move very slowly) + code:0001:FF + cheat + description:Have Fire Ball + code:0022:40 + cheat + description:Start on stage 02 + code:03D0:01 + cheat + description:Start on stage 03 + code:03D0:02 + cheat + description:Start on stage 04 + code:03D0:03 + cheat + description:Start on stage 05 + code:03D0:04 + cheat + description:Start on stage 06 + code:03D0:05 + cheat + description:Start on stage 07 + code:03D0:06 + cheat + description:Start on stage 08 + code:03D0:07 + cheat + description:Start on stage 09 + code:03D0:08 + cheat + description:Start on stage 10 + code:03D0:09 + cheat + description:Start on stage 11 + code:03D0:0A + cheat + description:Start on stage 12 + code:03D0:0B + cheat + description:Start on stage 13 + code:03D0:0C + cheat + description:Start on stage 14 + code:03D0:0D + cheat + description:Start on stage 15 + code:03D0:0E + cheat + description:Start on stage 16 + code:03D0:0F + cheat + description:Start on stage 17 + code:03D0:10 + cheat + description:Start on stage 18 + code:03D0:11 + cheat + description:Start on stage 19 + code:03D0:12 + cheat + description:Start on stage 20 + code:03D0:13 + cheat + description:Start on stage 21 + code:03D0:14 + cheat + description:Start on stage 22 + code:03D0:15 + cheat + description:Start on stage 23 + code:03D0:16 + cheat + description:Start on stage 24 + code:03D0:17 + cheat + description:Start on stage 25 + code:03D0:18 + cheat + description:Start on stage 26 + code:03D0:19 + cheat + description:Start on stage 27 + code:03D0:1A + cheat + description:Start on stage 28 + code:03D0:1B + cheat + description:Start on stage 29 + code:03D0:1C + cheat + description:Start on stage 30 + code:03D0:1D + cheat + description:Start on stage 31 + code:03D0:1E + +cartridge sha256:54526dc9444c0eb4b0e5814f98b5e522bcb9881a6f2c0644fc7a21ca8c03502b + name:Armadillo (Japan) + cheat + description:Invincibility + code:OXXUAKOK+AEXUPGLA + +cartridge sha256:20aaf9705d2cc17bac10468544afb250019f43983677b904ca88328f67aa9439 + name:Astro Fang - Super Machine (Japan) + cheat + description:Infinite fuel + code:SXESXPSA + cheat + description:Infinite Missiles + code:SZNUAZSA + +cartridge sha256:a08e6b53f1fa593e001719d87e2f203deb24ee1d389a8f3f339d75e9fb7c02f4 + name:Astyanax (USA) + cheat + description:Invincibility + code:EYNAGPEI + cheat + description:Infinite health + code:SZUGTISA + cheat + description:Infinite SP (spell) + code:AUEKGUAP + cheat + description:Hit anywhere + code:GXKSKPEL+GXUISPAL + cheat + description:Double health and SP + code:AZKAVZGO + cheat + description:Keep weapons after death + code:SZUGEUVK + cheat + description:Start with Blast Spell + code:PAKEKZAA + cheat + description:Start with Bind Spell + code:ZAKEKZAA + cheat + description:Start with extra weapon power + code:GPKAXZGA + cheat + description:Start with 1 life + code:AEUEUGZA+AASAXZZA + cheat + description:Start with double lives + code:IEUEUGZA+IASAXZZA + cheat + description:Start with triple lives + code:AEUEUGZE+AASAXZZE + cheat + description:Invincibility (alt) + code:007D:03 + cheat + description:Infinie lives + code:0096:03 + +cartridge sha256:2137d1621d29df50100f4d0fba3bafa0be56ccd0c832e44cd29dd7f0d75b374e + name:Athena (USA) + cheat + description:Infinite health (after first 2 units) + code:GZUZLISA + cheat + description:Infinite time + code:AAULLYPA + cheat + description:Collect items from anywhere + code:AOKEOPEL + cheat + description:Start with energy boost + code:AXKNYOGA + cheat + description:Start with extra time + code:YASVAYIA + cheat + description:Start with less time + code:GASVAYIA + cheat + description:Start with 1 life + code:AEKNLPZA + cheat + description:Start with 6 lives + code:IEKNLPZA + cheat + description:Start with 9 lives + code:AEKNLPZE + cheat + description:Infinite health + code:0095:0F + cheat + description:Infinite lives + code:009B:09 + cheat + description:Infinite time (alt) + code:0092:59 + +cartridge sha256:3b687bf0a8ccd23736bb7ed2e6e75f9d150318d79da22bbf7ff1dd97ab980957 + name:Attack of the Killer Tomatoes (USA) + cheat + description:Invincibility + code:AVTYTP + cheat + description:Infinite health + code:SXYYTO + cheat + description:Infinite lives + code:SKYYGK + cheat + description:Invincibility (alt) + code:07F4:32 + cheat + description:Infinite health (alt) + code:0722:3C + cheat + description:Infinite lives (alt) + code:0718:03 + +cartridge sha256:f3601248633f47a0ef10723e42a1072c76dd487d7ddf943e618611bb7cfec737 + name:Atlantis no Nazo (Japan) + cheat + description:Infinite lives + code:SUVEAOVK + cheat + description:Partial invincibility + code:SXOUYYAX+SZNUPZAX+SZOLPGAX+SXUAAPAX + +cartridge sha256:f91113b6a4bcd39d86ad5bbeaeb0f103461ada2cae513d1648a77ee575caf69b + name:Auto-Upturn (Asia) (PAL) (Unl) + cheat + description:Infinite health (blinking) + code:SXNZTLVG+SZXXLGVG + cheat + description:Infinite lives + code:SZOZTGVG + cheat + description:Infinite time + code:SXKPTIVG + +cartridge sha256:fb20d9562088cfa620ad0221e6e6f6c6d1f08e5a9cee2a97c0ef4fc39f050c6c + name:Baby Boomer (USA) (Unl) + cheat + description:Infinite lives + code:SGKTZXVK + +cartridge sha256:2bd744ff0d76653b9e218f6cea37f86bbdc6bc9b7a816c5fa236594ed1eb496a + name:Back to the Future (USA) + cheat + description:Invincibility - Street stages + code:AENEXZIA+AONENZYL+APUEKLEY + cheat + description:Disable all timers + code:AVVOUZSZ + cheat + description:Never lose a life in Hill Valley game + code:SZKEGOVK + cheat + description:Never lose a life in Cafe game + code:SXOELOVK + cheat + description:Never lose a life in School game + code:SXKALOVK + cheat + description:Never lose a life in Dancing Hall game + code:SXVELOVK + cheat + description:Start with 1 life + code:PEXEGAGA + cheat + description:Start with 8 lives + code:AEXEGAGE + +cartridge sha256:b265adba4a6f751f4da7b157672f324264f11fed3ca0b1e4ca703eb0b8a5ab77 + name:Back to the Future Part II & III (USA) + cheat + description:Infinite lives + code:SXXELOVK + cheat + description:Infinite fuel + code:GZEEPZST+GZOEZZST + cheat + description:Keep shots + code:GZKAKGSA + cheat + description:Quicker shots + code:PEKASEPO + cheat + description:Start with 20 nuclear fuel units + code:ZAXKYZPA + cheat + description:Start with 30 nuclear fuel units + code:LAXKYZPA + cheat + description:Start with 20 lives + code:ZAXKZZPA + cheat + description:Start with 30 lives + code:LAXKZZPA + +cartridge sha256:56382fac9104b26797de262a7c70ddd5850451d81a5008f3943d7bc492cbeb41 + name:Bad Dudes (USA) + cheat + description:Invincibility + code:AIEAZPAP+AVSOYOSZ+ELEAPOZE + cheat + description:Infinite health + code:APEETPEY + cheat + description:Infinite health (alt) + code:SZOEAOSE + cheat + description:Infinite lives + code:SZNKASVK + cheat + description:Infinite continues + code:GXOKASVK + cheat + description:Infinite time + code:SGVYOUVK + cheat + description:Hit anywhere + code:AAUPIOGI + cheat + description:One hit kills + code:AOUSNGEY + cheat + description:Start with 1 life and 1 continue + code:PENXYZLA + cheat + description:Start with double lives and continues + code:TENXYZLA + cheat + description:Start with triple lives and continues + code:PENXYZLE + cheat + description:Gain double usual energy from drinks + code:PESAIYIE + cheat + description:Have the Nunchaku + code:02A2:01 + cheat + description:Have the Knife + code:02A2:02 + cheat + description:One hit kills on bosses + code:032F:00+0344:00 + +cartridge sha256:467a2e53c7af4c60809db9c2670850a6e21a98ea37c1d920dc4fcb6afcb5a104 + name:Bad News Baseball (USA) + cheat + description:Play as girls team + code:PYEGZPLP+PAEGAPEP + cheat + description:Have 0 outs + code:050D:0 + cheat + description:Have 2 outs + code:050D:02 + cheat + description:Team 1 score is 0 + code:0305:0 + cheat + description:Team 2 score is 0 + code:0306:0 + +cartridge sha256:98658d5c8e530994730be6f4f7f76fe09142dee90e0afca613f5d6baaf208f52 + name:Bad Street Brawler (USA) + cheat + description:Infinite health + code:SUNGXOSO + cheat + description:Infinite time + code:SIXILYVI + cheat + description:Don't die at time out + code:SZOITNVK + cheat + description:Infinite lives + code:OZOIYPVK + cheat + description:Infinite lives (alt) + code:SGESGZVG + cheat + description:Start with 1 life + code:PAXITALA + cheat + description:Start with 6 lives + code:TAXITALA + cheat + description:Start with 9 lives + code:PAXITALE + cheat + description:Start on level 5 + code:GEUZZYAA + cheat + description:Start on level 10 + code:PEUZZYAE + cheat + description:Start on level 15 + code:TEUZZYAE + cheat + description:Infinite health (alt) + code:05F1:14 + +cartridge sha256:7328b2eb1c9fe06b98e0cba5c9058bf026e06a94900d490f79436d714eb48d6b + name:Balloon Fight (USA) + cheat + description:Infinite lives + code:SUNNIZVI + cheat + description:Start with only one balloon + code:PEUYTLZA + cheat + description:Balloons are unburstable + code:AVXTNYKA + cheat + description:Enemies can't burst balloons + code:LATTEX + cheat + description:Start with 1 life + code:AENYPPZA + cheat + description:Start with 6 lives + code:IENYPPZA + cheat + description:Start with 9 lives + code:AENYPPZE + cheat + description:Start on level 5 - 2P only + code:GENNIPAA + cheat + description:Start on level 10 - 2P only + code:PENNIPAE + cheat + description:Start on level 15 - 2P only + code:TENNIPAE + cheat + description:Infinite lives - P1 + code:0041:02 + cheat + description:Infinite lives - P2 + code:0042:02 + +cartridge sha256:d718f10d4ab57f7ed3891a84bdc496472a242b9c8496a3c0a0de77b45ae2fd58 + name:Banana Prince (Germany) + cheat + description:Invincibility + code:GAUXTAGZ + cheat + description:Invincible to enemies + code:AAXZKZAG + cheat + description:Invincible to shots + code:AESZOPAG + cheat + description:Invincible to lava + code:ASNLSZAL + cheat + description:Infinite energy + code:SGXXXOVK + cheat + description:Infinite lives + code:SKXSLUVK + cheat + description:Infinite time + code:SGXSYKVK + cheat + description:Infinite errors in quizes + code:SZSZSNVK + cheat + description:Max health when you die instead of 00 + code:GEXULGAE + cheat + description:Each Ring worth 10 + code:AYNGOIEP + cheat + description:Disable invincibility flickering + code:AIOSKZAP + cheat + description:Dice always at 9 in bonus island + code:PEUTITAE + cheat + description:Don't loose health when you touch lava + code:SZELVUVK + cheat + description:Start with 9 lives + code:PAVIOTLE + cheat + description:Start with max health + code:GANSOTTE + +cartridge sha256:bb30e4f4b1f6d8ccfdbd538b6f20347ed732cd37e8ac0a8305a277cf298b3dc8 + name:Barbie (USA) + cheat + description:Invincibility (blinks) + code:ESUSAIEY + cheat + description:Infinite Z's on Dream Meter + code:SXKSKNVK + cheat + description:Can re-enter Barbie's dream an infinite number of times + code:SZVAAVVK + cheat + description:Cannot re-enter Barbie's dream + code:AEEEYAZA + cheat + description:Start with 9 Z's (1st credit only) + code:PEEZEZIE + cheat + description:Start with 1 Z (1st credit only) + code:PEEZEZIA + +cartridge sha256:8bb20791eb3f4fd2455c33f0eead4538af3372205fba70fd4c3e0867b2c34c9a + name:Baseball Simulator 1.000 (USA) + cheat + description:Strike outs aren't allowed + code:OXVZITVV + cheat + description:Balls aren't counted + code:SZNAATVT + cheat + description:1 strike and you're out + code:PESEPTLA + cheat + description:2 strikes and you're out + code:ZESEPTLA + cheat + description:5 strikes and you're out + code:IESEPTLA + cheat + description:Strikes aren't counted + code:SZVAYTVT + cheat + description:1 ball and you walk + code:PESALTGA + cheat + description:2 balls and you walk + code:ZESALTGA + cheat + description:3 balls and you walk + code:LESALTGA + cheat + description:9 balls and you walk + code:PESALTGE + +cartridge sha256:5f8807999205f3800e445d6265b66fa6edff0070fc38905f7284f0ad437f9f53 + name:Baseball Stars II (USA) + cheat + description:Strikes do not count + code:SZSSZSVV + cheat + description:Balls do not count + code:SXSITKVV + cheat + description:One strike for an out + code:PAVIPILA + cheat + description:Two strikes for an out + code:ZAVIPILA + cheat + description:Four strikes for an out + code:GAVIPILA + cheat + description:Five strikes for an out (only 3 show on screen) + code:IAVIPILA + cheat + description:One ball for a walk + code:PESSIGGA + cheat + description:Two balls for a walk + code:ZESSIGGA + cheat + description:Three balls for a walk + code:LESSIGGA + cheat + description:Five balls for a walk (only 3 show on screen) + code:IESSIGGA + cheat + description:Six balls for a walk (only 3 show on screen) + code:TESSIGGA + cheat + description:One out per side instead of 3 (against human players) + code:PANILTLA + cheat + description:Two outs per side (against human players) + code:ZANILTLA + cheat + description:Four outs per side (against human players) + code:GANILTLA + cheat + description:One out per side instead of 3 (against computer) + code:PAOAILLA + cheat + description:Two outs per side (against computer) + code:ZAOAILLA + cheat + description:Four outs per side (against computer) + code:GAOAILLA + cheat + description:Game ends after 1 inning + code:PEXPVGLZ + cheat + description:Game ends after 2 innings + code:LEXPVGLZ + cheat + description:Game ends after 3 innings + code:TEXPVGLZ + cheat + description:Game ends after 4 innings + code:AEXPVGLX + cheat + description:Game ends after 5 innings + code:ZEXPVGLX + cheat + description:Game ends after 6 innings + code:GEXPVGLX + cheat + description:Game ends after 7 innings + code:TEXPVGLX + cheat + description:Game ends after 8 innings + code:AOXPVGLZ + +cartridge sha256:b9af9efdf490e14895e7980097a86d2f69d6396383773c221e77c6183a4ab9c8 + name:Bases Loaded II - Second Season (USA) + cheat + description:1 strike and you're out - most of the time + code:PEOGOALA + cheat + description:2 strikes and you're out - most of the time + code:ZEOGOALA + cheat + description:Outs aren't counted + code:SZOEVXVV + cheat + description:Only 2 outs allowed + code:PAOEUZZA + cheat + description:Only 1 out allowed + code:AAOEUZZA + cheat + description:Strikes aren't counted + code:SXNAXOVV+SXSGUKVV + cheat + description:Balls aren't counted + code:SZEEXXVV+SZEESXVV + +cartridge sha256:5d84d61e7e4c2b7d72a2b4599bd8cc415b71c90d1e332a83f95d96c75bc48efd + name:Bases Loaded 3 (USA) + cheat + description:Computer can't score + code:SZSYGNVV+SZSNTNVN + cheat + description:Some strikes aren't counted + code:SXOPSEVV + cheat + description:Balls aren't counted + code:SXKOXEVV + cheat + description:Strike outs aren't counted + code:SXOAIUVV + cheat + description:1 strike and you're out + code:AEOPXAZA + cheat + description:2 strikes and you're out + code:PEOPXAZA + cheat + description:Each strike out counts as 3 outs + code:PEOEGLLA + cheat + description:Each strike out counts as 2 outs + code:ZEOEGLLA + cheat + description:5 strike outs allowed + code:IEOEGLLA + cheat + description:9 strike outs allowed + code:PEOEGLLA + +cartridge sha256:e4aa19e0fd2800b58655eac814e1d9a9aa16d83eabd641789f8a6625591063a3 + name:Bases Loaded 4 (USA) + cheat + description:Balls do not count + code:SZNXGUVV + cheat + description:Strikes do not count + code:SXOXYUVV + cheat + description:2 strikes and you're out + code:PEOXGLZA + cheat + description:4 strikes and you're out + code:LEOXGLZA + cheat + description:1 ball and you walk + code:AANZGLLA + cheat + description:2 balls and you walk + code:PANZGLLA + cheat + description:3 balls and you walk + code:ZANZGLLA + cheat + description:Some batters start with count of 1 and 1 - 2P mode + code:PANPUTAA+PEOETGAA + cheat + description:Some batters start with count of 2 and 2 - 2P mode + code:ZANPUTAA+ZEOETGAA + +cartridge sha256:f28821df0114eb6cff1d7b4eadcee87713591709da1dd8b3525cf250156111f1 + name:Batman - The Video Game (USA) + cheat + description:Infinite health + code:PPOPEZVG + cheat + description:Infinite health (alt) + code:SKGGTT + cheat + description:Regenerates health meter (except Joker's gun) + code:SKGGGT + cheat + description:Infinite lives + code:SZUGGTVG + cheat + description:Infinite weapons + code:SXEPOGSA + cheat + description:Infinite bullets on pick-up + code:GZNOUGST + cheat + description:Hit anywhere + one hit kills + code:SZKPNUGK + cheat + description:Extra health on heart pick-up + code:GEEPOTPA + cheat + description:Double usual bullets on pick-up + code:GPSPXVZA + cheat + description:Half usual bullets on pick-up + code:IASPXVZA + cheat + description:Multi-jump + code:SNUPIKKI + cheat + description:Start with 1 life + code:AEESKGZA + cheat + description:Start with 6 lives + code:IEESKGZA + cheat + description:Start with 9 lives + code:AEESKGZE + cheat + description:Invincibility + code:00CC:A4 + cheat + description:Infinite health (alt 2) + code:00B7:08 + cheat + description:Infinite weapons (alt) + code:00B8:63 + cheat + description:Super gun (cannot change weapons) + code:00A6:FF + +cartridge sha256:183ede1115b428b046ae223f27e2db366a5b62c43f52b6fced5f22a57d39e663 + name:Batman - Return of the Joker (USA) + cheat + description:Invincible to bosses + code:SZVUIASE + cheat + description:Invincibility lasts until next stage + code:AAKOPIZA + cheat + description:Protection from enemy bullets + code:SZXZONSE + cheat + description:Protection from collisions + code:SZSZKXSE + cheat + description:Protection from electric grids + code:SXSATXSE + cheat + description:Infinite lives + code:SZXSZSVK + cheat + description:Each Backpack Energy Capsule counts as two + code:GAVXVLZA + cheat + description:Each Backpack Energy Capsule counts as four + code:AAVXVLZE + cheat + description:Don't get stunned when hit + code:GXEUIOSE + cheat + description:Stand your ground + code:AEUUAPGA+GXKLAOKE + cheat + description:Intense knock-back when hit (may get stuck if you knock back into a wall) + code:VNULTONN+PEUUGPAA + cheat + description:Continue game with 3 life increments instead of 8 + code:GASOTOTA + cheat + description:Start with 7 Backpack Energy Capsules instead of none + code:GEOSPKVN + cheat + description:Start with 3 life increments instead of 8 + code:GEOSTKTA + cheat + description:Start with 1 life + code:AEXILGZA + cheat + description:Start with 100 lives + code:GVXILGZA + cheat + description:Invincibility after first hit + code:0479:00 + cheat + description:Infinite health + code:0478:08 + cheat + description:Bosses lose health quickly + code:00AA:00 + +cartridge sha256:8b7363e037883aaa36d2c643c36a6f09ce49bd515f166154bd2a48e0a6468b9d + name:Batman Returns (USA) + cheat + description:Infinite Batarangs + code:SXSKGKVK + cheat + description:Don't lose health from spin attack + code:AAVASZZA + cheat + description:Almost infinite lives and health + code:GZEGLVSE + cheat + description:Small hearts give more health + code:AUSAPPAP + cheat + description:Hit anywhere + code:ESUXIPEP+ESUZZPEP + cheat + description:One hit kills + code:GZOZIZEL + cheat + description:Power punch + code:YAKZTIZE + cheat + description:Power slide attack + code:YAKXLIIE + cheat + description:Power jump kick + code:ZPKXZIIE + cheat + description:Walk faster horizontally + code:GESAKIPA+GEVEVIPA + cheat + description:Start with 9 Batarangs + code:PAXELAIE + cheat + description:Start with full health + code:YLOALEAX + cheat + description:Start with less health + code:APOALEAZ + cheat + description:Invincibility (blinking) + code:04C8:15 + cheat + description:Infinite health + code:0140:41 + cheat + description:Infinite Batarangs (alt) + code:0141:09 + cheat + description:0 health - Enemy 1 + code:0145:00 + cheat + description:0 health - Enemy 2 + code:0146:00 + cheat + description:0 health - Enemy 3 + code:0147:00 + +cartridge sha256:64832bef6533d98f49e807c000537c8cb26ef94e6c3f871b8b6b35c5a11e427b + name:Battle City (Japan) + cheat + description:Infinite freeze time once you obtain a clock + code:SZEIEKVK + cheat + description:256 seconds of freeze time once you obtain a clock + code:NNNTVOZE + +cartridge sha256:a50c0b6d93f7e20ecfd8a95abd5b7bccd4cf290901376fcf9e4053b3f964fca1 + name:Battle Formula (Japan) + cheat + description:Infinite life + code:SXSOEZSA + +cartridge sha256:d095eab5376c2b7c4f1c09018c9591598831c557e0b691c01ca2480e49e60c0a + name:Battle of Olympus, The (USA) + cheat + description:Start with less stamina + code:AAUGPAAO + cheat + description:Start with more stamina + code:AZUGPAAP + cheat + description:Start with Sandals of Hermes + code:AAEGOZZA + cheat + description:Start with Staff of Fennel + code:PAUGYAAA+GZUKGASA+GZUKTASA + cheat + description:Start with Sword + code:ZAUGYAAA+GZUKGASA+GZUKTASA + cheat + description:Start with Divine Sword + code:LAUGYAAA+GZUKGASA+GZUKTASA + +cartridge sha256:c49a5d7f565646d76bdc307ccb0202197f579b77c5bf5ea409b5cb29f72edf3a + name:Battleship (USA) + cheat + description:1 round per level + code:PEUAUGIA + cheat + description:3 rounds per level + code:LEUAUGIA + cheat + description:Each ship can take only one hit + code:SZUAOSOU + cheat + description:You only have RIM-66 missiles + code:SAXAOISP + cheat + description:Start on level 2 + code:PASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 3 + code:ZASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 4 + code:LASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 5 + code:GASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 6 + code:IASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 7 + code:TASAKGAA+VASEOGSA+VASASGSA + cheat + description:Start on level 8 + code:YASAKGAA+VASEOGSA+VASASGSA + +cartridge sha256:a2039efb5b5b8d4941c31ae0977dacccec5aaa72fe307ae36af2a454d30d9e26 + name:Battletank (USA) + cheat + description:Infinite energy + code:SKOPAAVT + cheat + description:Infinite hits + code:SXOPAAVT+SXSLNPSA + cheat + description:Infinite fuel + code:SKUAANSE + cheat + description:Infinite weapons + code:SIXTEEVS+SGKVINVK + cheat + description:Infinite ammo + code:SLXTEEVS + cheat + description:Start with half 150mm ammo + code:TOVZIAZL + cheat + description:Start with double 150mm ammo + code:LVVZIAZL + cheat + description:Start with more wire guided shells + code:ZUVXTAPA + cheat + description:Start with max wire guided shells + code:LVVXTAPA + cheat + description:Start with more smoke shells + code:ZUNXAAPA + cheat + description:Start with max smoke shells + code:LVNXAAPA + cheat + description:Start with less 50mm shells + code:LGEZPPVO + cheat + description:Start with max 50mm shells + code:NYEZPPVO + cheat + description:Start with less 50mm ammo after mission 5 + code:GTEZIOEG + cheat + description:Start with max 50mm ammo after mission 5 + code:NYEZIOEK + +cartridge sha256:56d25e05dde2048c3a9b4e36ab5325091310ce2b65171615b5596fc542db66fa + name:Battletoads (USA) + cheat + description:Infinite lives + code:GXXZZLVI + cheat + description:One hit kills + code:OUAILU + cheat + description:Enemies easier to kill + code:GXEILUSO + cheat + description:Mega-jumping + code:EYSAUVEI + cheat + description:Double health from flies + code:AOUKXNAA + cheat + description:Maximum health from flies + code:YXUKXNAE + cheat + description:Super fast punching + code:AEUZITPA + cheat + description:Force 2-player mode + code:AENTAIPL + cheat + description:Start with 1 life + code:PENVZILA + cheat + description:Start with 6 lives + code:TENVZILA + cheat + description:Start with 9 lives + code:PENVZILE + cheat + description:Start on level 2 - Wookie Hole + code:ZAXAALAA + cheat + description:Start on level 3 - Turbo Tunnel + code:LAXAALAA + cheat + description:Start on level 4 - Arctic Cavern + code:GAXAALAA + cheat + description:Start on level 5 - Surf City + code:IAXAALAA + cheat + description:Start on level 6 - Karnath's Lair + code:TAXAALAA + cheat + description:Start on level 7 - Volkmire's Inferno + code:YAXAALAA + cheat + description:Start on level 8 - Intruder Excluder + code:AAXAALAE + cheat + description:Start on level 9 - Terra Tubes + code:PAXAALAE + cheat + description:Start on level 10 - Rat Race + code:ZAXAALAE + cheat + description:Start on level 11 - Clinger Winger + code:LAXAALAE + cheat + description:Start on level 12 - The Revolution + code:GAXAALAE + cheat + description:Invincibility + code:0574:02 + cheat + description:Infinite lives (alt) + code:0011:05 + +cartridge sha256:4f67a81cc978e5aaf8aa03046c27ddc954f835e2110e346bc28d35f6b4ac61ca + name:Battletoads-Double Dragon (USA) + cheat + description:Infinite lives (except stage 4) + code:GXXLAAVI + cheat + description:Infinite lives on stage 4 + code:GZSOXPVI + cheat + description:Bonus score now gives invincibility (instead of invincibility pod) + code:IYKNIKGX + cheat + description:Longer invincibility + code:YPSYPGIE + cheat + description:Even longer invincibility + code:ILSYPGIA + cheat + description:Double Dragon super punch + code:AOSEVAZA + cheat + description:Battletoads super punch + code:AOUEUAGA + cheat + description:Stronger enemies + code:AXUIPOYA + cheat + description:Start with 10 continues + code:PEVELZZE + cheat + description:Start with full lives + code:IEEOOALA + cheat + description:Start with 1 life + code:AEEOOALA + cheat + description:Infinite lives - P1 + code:0011:05 + cheat + description:Infinite lives - P2 + code:0012:05 + cheat + description:0 hits to SMASH! enemies + code:051C:00+051D:00+051E:00+051F:00+0520:00+0521:00 + +cartridge sha256:3b3865e6e44f8ef749e8a9509651a6fad688b8d744fab22974a6f4cb9e7f2b0b + name:Beauty and the Beast (Europe) + cheat + description:Infinite hits + code:SLNKKYVK + cheat + description:Infinite lives + code:SUESZGVK + cheat + description:Infinite time + code:SUXSAZVV + +cartridge sha256:b9434d2f359f6e464da36fbcf6d9eb794b7edff03b89467d1609158f13bfef52 + name:Beetlejuice (USA) + cheat + description:Invincibility + code:EIEISGEY + cheat + description:Invincibility (blinking) + code:SZOSYNSE + cheat + description:Infinite hits + code:AAOITYPA + cheat + description:Infinite lives + code:SZOIYKVK + cheat + description:Take fewer hits to die + code:PEOAIAZA+PENSYLZA + cheat + description:Start with 1 life + code:PEOAAALA + cheat + description:Start with 6 lives + code:TEOAAALA + cheat + description:Start with 9 lives + code:PEOAAALE + +cartridge sha256:f93163a51f4a671c5f4da390d4d286d6d8440d87dfe24285c40ed73dc422bf7d + name:Bee 52 (USA) (Unl) + cheat + description:Invincibility + code:EINTILEY + cheat + description:Invincibility (alt) + code:SXNTLPSA + cheat + description:Infinite lives + code:SXSGOSVK + cheat + description:Keep pick-ups + code:SZXNXTAX + cheat + description:Don't get stunned + code:GZSSTTEI + cheat + description:Fly quicker + code:GXNKNTAL+GZOKUYAP + cheat + description:Start with 1 life + code:PAXYKGLA + cheat + description:Start with 6 lives + code:TAXYKGLA + cheat + description:Start with 9 lives + code:PAXYKGLE + +cartridge sha256:2366af9fc0512d39bfa6e908b4caa12be3d21225af49274ffe2ff51cf0b9c1e6 + name:Best of the Best - Championship Karate (USA) + cheat + description:Infinite time (round never ends) + code:SXVSAZVG + cheat + description:Each round is 0:10 instead of 1:00 + code:AANIGYPA+VTNIPYSA + cheat + description:Each round is 0:20 + code:AANIGYPA+OZVSYYSE+ZANIANTI + cheat + description:Each round is 0:30 + code:AANIGYPA+OZVSYYSE+LANIANTI + cheat + description:Each round is 0:40 + code:AANIGYPA+OZVSYYSE+GANIANTI + cheat + description:Each round is 0:50 + code:AANIGYPA+OZVSYYSE+IANIANTI + cheat + description:Each round is 2:00 + code:ZANIGYPA + cheat + description:Each round is 3:00 + code:LANIGYPA + cheat + description:Each round is 4:00 + code:GANIGYPA + cheat + description:Each round is 5:00 + code:IANIGYPA + cheat + description:Each round is 6:00 + code:TANIGYPA + cheat + description:Each round is 7:00 + code:YANIGYPA + cheat + description:Each round is 8:00 + code:AANIGYPE + cheat + description:Each round is 9:00 + code:PANIGYPE + cheat + description:Each match is 1 round instead of 5 + code:PAOSUZIA + cheat + description:Each match is 2 rounds + code:ZAOSUZIA + cheat + description:Each match is 3 rounds + code:LAOSUZIA + cheat + description:Each match is 4 rounds + code:GAOSUZIA + cheat + description:Each match is 6 rounds + code:TAOSUZIA + cheat + description:Gain more strength and reflex points in training + code:AAEVVAGE+AEETOPZA + cheat + description:Gain more resistance points in training + code:APEVVAGA+AEETOPZA + cheat + description:All physical types are 30 (causes graphic errors near top of screen) + code:OXNSGIOU+TONSIIZE + cheat + description:All physical types are 50 (causes graphic errors near top of screen) + code:OXNSGIOU+ZUNSIIZA + cheat + description:Start with 50 resistance points + code:ZLEAZETP + cheat + description:Start with 50 strength points + code:ZLEAPEAZ + cheat + description:Start with 50 reflex points + code:ZLEALAGP + cheat + description:Start with 70 resistance points + code:TGEAZETP + cheat + description:Start with 70 strength points + code:TGEAPEAZ + cheat + description:Start with 70 reflex points + code:TGEALAGP + +cartridge sha256:18c134f8cc7effc0b90dcca86a27c305cbd7dadfb159689c89790c7fe4ff9b77 + name:Bible Adventures (USA) (v1.4) (Unl) + cheat + description:Infinite health + code:SUVIKXSO + +cartridge sha256:b56f867ad6b067f9ca7e46afb8e7a953fa281404232e2497c88e43448a2c3a57 + name:Bible Adventures (USA) (v1.3) (Unl) + cheat + description:Infinite health + code:SUVSEXSO + +cartridge sha256:981b39b22c9b17055c90a612b9c8ea6711541ff5196018043f3516ed238f3ce9 + name:Bible Adventures (USA) (v1.2) (Unl) + cheat + description:Infinite health + code:SUNSVXSO + +cartridge sha256:88ee64119746de659f70f3d459c62dd2af3b21f29f5064ea14f0fb03904cbcfe + name:Bible Adventures (USA) (v1.1) (Unl) + cheat + description:Infinite health + code:SUXIUXSO + +cartridge sha256:2807c405f072a1e828cbdd4812822ec301979472fd9b8c6225aa4d1dca89613c + name:Bible Adventures (USA) (Unl) + cheat + description:Infinite health + code:SLOSGVSO + +cartridge sha256:32fa00d52f39b053c30061d6789944fc61c0c88c885bd8248ff5771fd2f78ae6 + name:Bigfoot (USA) + cheat + description:Infinite nitros + code:SUKXVUVS + cheat + description:Longer nitro boost + code:NNKXXLGV + cheat + description:Shorter nitro boost + code:AXKXXLGT + cheat + description:Engines are half price + code:GEKAOKAA + cheat + description:Engines cost more + code:PEKAOKAE + cheat + description:Tires are half price + code:LEKAXGTA + cheat + description:Tires cost more + code:PEKAXGTE + cheat + description:Transmission work is half price + code:ZEKAUGGA + cheat + description:Transmission work is double price + code:AEKAUGGE + cheat + description:Suspension is half price + code:PEKAKGZA + cheat + description:Suspension is triple price + code:TEKAKGZA + cheat + description:P1 gets P2's nitros + code:VTVUYOVN+SZVUAOSE + +cartridge sha256:d290ac95ca512a37380cd534394ad600109a8eb97651f50e46e45c2eb5fb405c + name:Big Nose the Caveman (USA) (Unl) + cheat + description:Invincibility + code:SXNNEISA + cheat + description:Infinite lives + code:SXOTPAVG + cheat + description:Infinite lives (alt) + code:SUOTPAVK + cheat + description:Slower timer + code:ANENAKLL + cheat + description:Faster timer + code:AXENAKLL + cheat + description:Never lose bones when buying + code:AEEYYZPA + cheat + description:Always enable instant win level + code:EIXVIPEY + cheat + description:Start on Monster Island + code:XXXYITSZ+VEKYAVSE+AOUGTAE + cheat + description:Start on Terror Island + code:XXXYITSZ+VEKYAVSE+ZOUGTAE + cheat + description:Start with 1 life + code:PEUYITLA + cheat + description:Start with 6 lives + code:TEUAITLA + cheat + description:Start with 9 lives + code:PEUYITLE + +cartridge sha256:b183c0952994cadc1c8d6dd290730f43ecacb051d3dfe53784578635a1049455 + name:Bill & Ted's Excellent Video Game Adventure (USA) + cheat + description:Infinite skeleton keys + code:SZKUPXVK + cheat + description:Infinite coins for locals + code:SZEKUOSE + cheat + description:Infinite Good Stuff + code:OUOOUEOO + cheat + description:Phone call segments cost only 1 coin + code:SXOTTOSE + cheat + description:Ted starts with 99 coins instead of 15 + code:OOKKUTIO + cheat + description:Bill starts with 99 coins + code:OOSVAPIO + cheat + description:Ted starts with 5 coins + code:IEKKUTIP + cheat + description:Bill starts with 5 coins + code:IESVAPIP + +cartridge sha256:ddf58f90fa5966137e71a0f30a162bf03b3e8b1b99f4f1d16cac26d5e2cf5b35 + name:Bill Elliott's NASCAR Challenge (USA) + cheat + description:Accelerate faster + code:EUEKTLEP + cheat + description:Infinite 'free time' in the pits + code:SZUETKVK + cheat + description:Freeze timer while crew works on car in pits + code:SXOAZVVK + +cartridge sha256:4f59f3ef6045be753ed5f7988e4b302b7f71216354a644f760f4a0aa43af7d22 + name:Bio Force Ape (Japan) (En) (Proto) + cheat + description:Infinite health + code:SZSUNXSE + cheat + description:Walk through walls + code:ATEPAVAL+AVUPAVAL + cheat + description:Start on level 2 + code:PAXAYGAA + cheat + description:Start on level 3 + code:ZAXAYGAA + +cartridge sha256:92c481350b63c57385834dfa0ab02aeb527df7e80cec14a3e1a1a77118cd38d1 + name:Bio Miracle Bokutte Upa (Japan).nes + cheat + description:Hit anywhere - normal enemies + code:AAKTZTIG+AEOLVGTZ + +cartridge sha256:aeb61fd5cf5a5ed73344c46a43f8a8d539f601ff57e8f56c49bc1caea4ab3d9e + name:Bionic Commando (USA) + cheat + description:Invincibility + code:AVSTYNVG + cheat + description:Infinite lives in main game + code:SZNUIYVG + cheat + description:Infinite lives in sub-game + code:SXUEZPVG + cheat + description:Don't take damage from bullets and collisions + code:SXSTYNVK + cheat + description:Don't take damage from spikes + code:VTNZXVVK + cheat + description:Don't take damange from bullets and collisions in sub-game + code:SZUOAOVK + cheat + description:Hit anywhere + code:ATOVUGAZ+AVKOPEEP+AVNVUKAL+AVXENVSL+SZKTVUOO + cheat + description:Autofire - main game + code:XYXUUOEN + cheat + description:Longer grapple line - sidescrolling levels + code:AINPTZAL+TSEOGZAG+YIVPAXZU + cheat + description:Longest grapple line - sidescrolling levels + code:EINPYZEP+EIVPPZEP+ESEOIZEP + cheat + description:Longer range for normal 3-way gun - sidescrolling levels + code:YOVUESPA + cheat + description:Longer range for fireball 3-way gun - sidescrolling levels + code:IPKLKVGA + cheat + description:Use with BIO Code 11 for improved autofire with normal gun + code:AAKUOOZA + cheat + description:Have all items (using the hidden gun will crash the game) + code:ELKLZAEY+EIXLTPEY + cheat + description:Start with 3 life energy capsules + code:LAUKOZAA+XTUKUXVU + cheat + description:Start with 1 life + code:AAUGSZZA + cheat + description:Start with double lives + code:IAUGSZZA + cheat + description:Start with triple lives + code:AAUGSZZE + cheat + description:Start with 3-way gun + code:VGKKNXUK + +cartridge sha256:abde6fc87b2d90e0b40cd3420d4b7381e1f23285efbbdc62fd27b59c591ad2cc + name:Blades of Steel (USA) + cheat + description:Invincible in minigame + code:AINXIYEI + cheat + description:Faster timer + code:GEUGTTYA + cheat + description:Slower timer + code:GOUGTTYA + cheat + description:Player with puck don't slow down + code:AAOSSAAZ + cheat + description:Players can take only one punch + code:PAXZLGIA + cheat + description:Players 2/CPU don't throw punches + code:OXKXTVPK+SXSZZSSU + cheat + description:Start a new game to view the ending + code:YASGITLA + +cartridge sha256:7a26c62a9b1605cbedf7cd5b2672aa0fc15b688b227a6cb57dbf74aa71a05f1c + name:Blaster Master (USA) + cheat + description:Infinite car health + code:XVLAKO + cheat + description:Enemies are killed instantly + code:YAASLY + cheat + description:Infinite lives + code:SZUGYIVG + cheat + description:Infinite Hover + code:SZXOALVG + cheat + description:Infinite Homing Missiles + code:GZSOEEVK + cheat + description:Infinite Thunderbreaks + code:GXKPEOVK + cheat + description:Infinite Multi-Warheads + code:GXSOVXVK + cheat + description:Start with all abilities + code:NNKKGZAE + cheat + description:Start with 5 of each weapon + code:IAEKPLAA + cheat + description:Start with 10 of each weapon + code:ZAEKPLAE + cheat + description:Start with 15 of each weapon + code:YAEKPLAE + cheat + description:Start with 99 of each weapon + code:LTEKPLAA + cheat + description:Start with 99 of each weapon and max Hover + code:NYEKPLAE + cheat + description:Start with 1 life + code:AAEGZLZA + cheat + description:Start with 6 lives + code:IAEGZLZA + cheat + description:Start with 9 lives + code:AAEGZLZE + cheat + description:Start on world 2 + code:PENKTXAE + cheat + description:Start on world 3 + code:ZENKTXAE + cheat + description:Start on world 4 + code:LENKTXAE + cheat + description:Start on world 5 + code:GENKTXAE + cheat + description:Start on world 6 + code:IENKTXAE + cheat + description:Start on world 7 + code:TENKTXAE + cheat + description:Start on world 8 + code:YENKTXAE + cheat + description:Start at the boss of world 1 + code:OXNKIXPE+AENKTXAA + cheat + description:Start at the boss of world 2 + code:OXNKIXPE+PENKTXAA + cheat + description:Start at the boss of world 3 + code:OXNKIXPE+ZENKTXAA + cheat + description:Start at the boss of world 4 + code:OXNKIXPE+LENKTXAA + cheat + description:Start at the boss of world 5 + code:OXNKIXPE+GENKTXAA + cheat + description:Start at the boss of world 6 + code:OXNKIXPE+IENKTXAA + cheat + description:Start at the boss of world 7 + code:OXNKIXPE+TENKTXAA + cheat + description:Start at the boss of world 8 + code:OXNKIXPE+YENKTXAA + cheat + description:Die to see ending + code:ZGUKZITP + cheat + description:Invincibility + code:007E:00 + cheat + description:Infinite health (alt) + code:040D:FF + cheat + description:Infinite Hover (alt) + code:0092:FF + cheat + description:Infinite lives (alt) + code:00DD:03 + cheat + description:Infinite Homing Missiles (alt) + code:06F0:63 + cheat + description:Infinite Thunderbreaks (alt) + code:06F1:63 + cheat + description:Infinite Multi-Warheads (alt) + code:06F2:63 + cheat + description:Full Gun Power - Jason + code:00C3:FF + cheat + description:Most end bosses die instantly + code:047D:00 + +cartridge sha256:e311f33f98a4461f9ca79e2df863323d42572234bc59321bb9fb39ca1b18d0cf + name:Blue Marlin, The (USA) + cheat + description:Line is a 1000 yards long + code:GENTUIZA + cheat + description:Catch fish right after they bite - most of the time + code:AESVOXEG + cheat + description:When fish bite they are close to the boat + code:PESVOXEK + cheat + description:Line is set to 153 feet + code:OOSVOXEK + cheat + description:Pull fish in quicker + code:PESVXIAA + cheat + description:Vitality always at max + code:OZSVKKPV+YASVSGPE + +cartridge sha256:46fb05f80167bd185bd6eef40e1f86a0dcdd36e250ef8e2b29a575550d75473a + name:Blues Brothers, The (USA) + cheat + description:Invincibility + code:EIVTVIEY+EIXTAGEY + cheat + description:Infinite health + code:SUOVAEVS + cheat + description:Infinite lives + code:SUUVYEVS + cheat + description:Multi-jump + code:PESYAPAA + cheat + description:Invincibility (alt) (blinking) + code:03C2:02 + cheat + description:Infinite energy (alt) + code:042A:03 + cheat + description:Infinite lives (alt) + code:0428:02 + +cartridge sha256:2967746c2a434c97a074b14d894ea132fab8e443899f6ca870718eeee1669039 + name:Bomberman (USA) + cheat + description:Immune to explosions + code:OXVGITSX + cheat + description:Infinite time + code:SZIGAT + cheat + description:Infinite lives + code:SXPKAG + cheat + description:Hit anywhere (all enemies killed with one bomb) + code:AAOGTYYL+AAOKIYAL + cheat + description:Remove all breakable blocks + code:AAVKXZZA + cheat + description:Never lose Detonator once obtained + code:GXEKLGSA + cheat + description:Increase Bomb detonation time + code:NYXKUIEX + cheat + description:Reduce Bomb detonation time + code:AYXKUIEZ + cheat + description:Use up to 10 Bombs + code:XZEGNIVZ+PAEKEIGN + cheat + description:Walk through walls + code:OZNKNNPK+AEEGEYPA + cheat + description:Decrease time + code:VPGKGG + cheat + description:Increase timer + code:VYGKGK + cheat + description:Start with double power Bomb blasts + code:AXKKALAP + cheat + description:Start with triple power Bomb blasts + code:AUKKALAP + cheat + description:Start with maximum power Bomb blasts + code:EEKKALAP + cheat + description:Start with Detonator, max Bomb power and use up to 10 Bombs + code:AESKGUIZ + cheat + description:Start with and keep Detonator + code:OXEKVPSX+AESKNKTA + cheat + description:Start with 1 life + code:AEZKLL + cheat + description:Start with 10 lives + code:PEZKLU + cheat + description:Start on stage 10 + code:ZELGYU + cheat + description:Start on stage 20 + code:GOLGYL + cheat + description:Start on stage 30 + code:TOLGYU + cheat + description:Start on stage 40 + code:AXLGYU + cheat + description:Start on stage 50 + code:ZULGYL + cheat + description:Invincibility + code:005C:00 + cheat + description:Immune to explosions (alt) + code:0079:01 + cheat + description:Infinite time (alt) + code:0093:EE + cheat + description:Infinite lives (alt) + code:0068:09 + cheat + description:Max Bomb power + code:0073:80 + cheat + description:Use up to 10 Bombs (alt) + code:0074:0A + cheat + description:Walk through walls (alt) + code:0076:01 + cheat + description:Have Detonator + code:0077:01 + cheat + description:Start on stage 50 (alt) + code:0058:32 + +cartridge sha256:83cb47fda376900e8c1d8eef5c413229fb6cacaff43201afd421c71610c20368 + name:Bomberman II (USA) + cheat + description:Infinite lives + code:GXKGKXVK + cheat + description:Infinite time + code:GXXONEVK + cheat + description:Super start + code:GAXKSTAA+GASKKTAA + cheat + description:Immune to explosions + code:OXXAPYSX+PEXAZNVZ + cheat + description:Walk through walls + code:OXOEGYSX+PEOEINSZ + cheat + description:Always have Detonator + code:AEKAZYLA + cheat + description:Hit anywhere (kill all enemies with one bomb) + code:LPXAYUYX+PTXEAUPZ+SZXATLOU+XTXEPLEE + cheat + description:Remove all breakable bricks + code:AAKLVPAZ+SZKUNPAX + cheat + description:Slower timer + code:LVXOUELL + cheat + description:Faster timer + code:TOXOUELU + cheat + description:Bomb has a longer fuse + code:YNEOLXLK + cheat + description:Bomb has a shorter fuse + code:AXEOLXLG + cheat + description:Stop Bombs from exploding + code:GXOLSXVS + cheat + description:Dollar sign acts as flame face + code:EASPTANG + cheat + description:Dollar sign acts as Bomb + code:GYSPTANG + cheat + description:Dollar sign acts as heart with Bomb + code:KASPTANK + cheat + description:Dollar sign acts as skate + code:OPSPTANG + cheat + description:Dollar sign acts as vest for a short time + code:OZSPTANK + cheat + description:Start with 1 life + code:AEEGEPZA + cheat + description:Start with 6 lives + code:IEEGEPZA + cheat + description:Start with 9 lives + code:AEEGEPZE + cheat + description:Invincibility (except in normal game) - P1 + code:0069:05 + cheat + description:Invincibility (except in normal game) - P2 + code:006A:05 + cheat + description:Invincibility (except in normal game) - P3 + code:006B:05 + cheat + description:Infinite time (hundred's digit) + code:0559:09 + cheat + description:Infinite time (ten's digit) + code:055A:09 + cheat + description:Infinite time (one's digit) + code:055B:09 + cheat + description:Infinite lives - P1 + code:04E5:09 + cheat + description:Max Bomb power - P1 + code:0093:0C + cheat + description:Max Bomb power - P2 + code:0094:0C + cheat + description:Max Bomb power - P3 + code:0095:0C + cheat + description:Max Bomb quantity - P1 + code:0090:0C + cheat + description:Max Bomb quantity - P2 + code:0091:0C + cheat + description:Max Bomb quantity - P3 + code:0092:0C + +cartridge sha256:b3d82e2818aea6caa69dcfe7d56197a7a51afe87819527880cf08876d1a988de + name:Bonk's Adventure (USA) + cheat + description:Infinite lives + code:SZVZINVK + cheat + description:Hit anywhere + code:AAXXZILA+LINXTZYZ + cheat + description:Super-jump when normal + code:GXEEYEGA + cheat + description:Keep speed up after powered down + code:GXVPIKSE + cheat + description:Gain energy from picking up smiles + code:GASZTYAA + cheat + description:Start with less initial energy (but more maximum energy) + code:GEUAAEGA + cheat + description:Start with more energy + code:AOUAAEGE + cheat + description:Start with 1 life + code:AEKAAAZA + cheat + description:Start with 6 lives + code:IEKAAAZA + cheat + description:Start with 9 lives + code:AEKAAAZE + cheat + description:Start on stage 2-1 + code:YEXELAAA + cheat + description:Start on stage 3-1 + code:IEXELAAE + cheat + description:Start on stage 4-1 + code:ZOXELAAA + cheat + description:Start on Stage 5-1 + code:YOXELAAA + cheat + description:Start on stage 6-1 + code:PXXELAAA + +cartridge sha256:0e58f270e7b116782e0822f52058eff66465df49527c6f8c6f0eca994d8cae7a + name:Boulder Dash (USA) + cheat + description:Infinite lives + code:SLEZXTVI + cheat + description:Infinite time + code:SXSGSYAX + cheat + description:Speed up timer + code:YOSGXNYU + cheat + description:Slow down timer + code:NNSGXNYU + cheat + description:1 life after continue + code:PEOXEYLA + cheat + description:6 lives after continue + code:TEOXEYLA + cheat + description:9 lives after continue + code:PEOXEYLE + cheat + description:Start with 1 life + code:PAKIELLA + cheat + description:Start with 6 lives + code:TAKIELLA + cheat + description:Start with 9 lives + code:PAKIELLE + +cartridge sha256:911fb75ec1f900a5c258635fae79e56520eeb4aec35b40737c44b735eeccdc56 + name:Boy and His Blob, A - Trouble on Blobolonia (USA) + cheat + description:Invincible (restart if you die underwater and get stuck by being unable to call your Blob) + code:AVOGAEOZ + cheat + description:Never take damage from enemies + code:AVOPVGEI + cheat + description:Infinite lives + code:GXXEOPVG + cheat + description:Infinite Jellybeans + code:AAVKIPPA + cheat + description:1 life only + code:AAULNGIA + cheat + description:Double lives + code:ZAULNGIE + cheat + description:Fast play + code:SXEEZAAX + cheat + description:Gives 10 Orange Jellybeans + code:APEUUIAA + cheat + description:10 Lime Jellybeans + code:AONUSGAA + cheat + description:99 Licorice Jellybeans + code:OONLOGZN + cheat + description:Double Strawberry Jellybeans + code:AUNLUGIP + cheat + description:Double Cola Jellybeans + code:TUNLNKAP + cheat + description:Double Cinnamon Jellybeans + code:AKNUOGGX + cheat + description:Double Apple Jellybeans + code:GXNUUGZP + cheat + description:Double Vanilla Jellybeans + code:AVNUNGAL + cheat + description:Double Ketchup Jellybeans + code:ZPELNITA + cheat + description:Triple Coconut Jellybeans + code:AONLSGTE + cheat + description:Triple Rootbeer Jellybeans + code:APELUITE + cheat + description:10 Vitamin A for Vita-Blaster + code:APEUSIAA + cheat + description:10 Vitamin B for Vita-Blaster + code:APEUNIAA + cheat + description:10 Vitamin C for Vita-Blaster + code:APOLOIAA + cheat + description:Start with 101 of all starting Jellybeans + code:SZXLXKSU+YYXLUGEY + +cartridge sha256:a8b6829d8d1e17cc23c8815e0b0add09e26fc5a2a27ad6bba260cef926535af2 + name:Bram Stoker's Dracula (USA) + cheat + description:Invincibility + code:ASVIAPEI + cheat + description:Invincibility after getting hit + code:SZKLVZAX + cheat + description:Infinite health (except falling off cliffs) + code:SUXLISVS + cheat + description:Infinite health + code:SXXLISVS + cheat + description:Infinite lives + code:NUNTZUKU + cheat + description:Infinite lives (alt) + code:SXNTPUVK + cheat + description:Infinite time + code:AEVGPPPA + cheat + description:Infinite time (alt) + code:SXNKGOSE+SXNGYOSE + cheat + description:Infinite ammo + code:SZNVVSVK + cheat + description:Infinite weapons (except scene 1 daytime) + code:UUETEIZE + cheat + description:Faster timer + code:ZEVGPPPA + cheat + description:Always have 63 ammo + code:AANGYZIA + cheat + description:Disable axe + code:NNSNGPZE + +cartridge sha256:e1487d23800aa2c29cb9da6f2bf538aa10044930ef566d087f7acf1aa649fb9e + name:BreakThru (USA) + cheat + description:Infinite lives - both players + code:GZUKYPVG + cheat + description:Infinite weapon time + code:GZKSLZVG + cheat + description:Start each life with 3-way firing and 99 seconds + code:LTUKTLAA + cheat + description:Start with 1 life - P1 + code:PEUKPZLA + cheat + description:Start with 6 lives - P1 + code:TEUKPZLA + cheat + description:Start with 9 lives - P1 + code:PEUKPZLE + cheat + description:Start with 1 life - P2 + code:PEKGGZLA + cheat + description:Start with 6 lives - P2 + code:TEKGGZLA + cheat + description:Start with 9 lives - P2 + code:PEKGGZLE + cheat + description:Start on level 2 + code:ZANKLZPA + cheat + description:Start on level 3 + code:LANKLZPA + cheat + description:Start on level 4 + code:GANKLZPA + cheat + description:Start on level 5 + code:IANKLZPA + +cartridge sha256:fde81fc5af055819700842db8650077d64b853f95b3542bf12f039a6df48115d + name:Break Time - The National Pool Tour (USA) + cheat + description:Start in Milwaukee + code:VAVEILSA+PAVEGLAA + cheat + description:Start in Atlanta + code:VAVEILSA+ZAVEGLAA + cheat + description:Start in Los Angeles + code:VAVEILSA+LAVEGLAA + cheat + description:Start in Las Vegas + code:VAVEILSA+GAVEGLAA + +cartridge sha256:3bcce1ff03b55c20eeaefa44f35f19b3f06b3ff88a86ed51968bad9bd44d9144 + name:Bubble Bath Babes (USA) (Unl) + cheat + description:Infinite credits + code:SZEOLLVG + cheat + description:View slideshow + code:AAKAIAPE+VTXEXPSA+EAXEUPGV+GAUASOLE + +cartridge sha256:31523322db8f94e7244f6e2d958692a412c1395fc744601d83d1e5111eff9042 + name:Bubble Bobble (USA) + cheat + description:Skip only 2 levels + code:ZAOGOLGA + cheat + description:Skip 10 levels + code:ZAOGOLGE + cheat + description:Lots of bubble power + code:AAUILSPP + cheat + description:Monsters move faster + code:ZANEAGPA+NNEEAKVN + cheat + description:Monsters move super fast + code:LANEAGPA+NNEEAKSN + cheat + description:Angry monsters move faster + code:LANEIGZA+SNEEIKVN + cheat + description:Always wear turbo shoes + code:AANSIGTA+AESIPGTA + cheat + description:Start with 1 life - both players + code:PAUKEZLA + cheat + description:Start with 6 lives - both players + code:TAUKEZLA + cheat + description:Start with 9 lives - both players + code:PAUKEZLE + cheat + description:Start on level 10 + code:ZAUGEZPE + cheat + description:Start on level 25 + code:PPUGEZPE + cheat + description:Start on level 50 + code:ZLUGEZPA + cheat + description:Start on level 75 + code:LGUGEZPE + cheat + description:Invincibility - P1 + code:003F:2F + cheat + description:Invincibility - P2 + code:0053:2F + cheat + description:Infinite lives - P1 + code:002E:09 + cheat + description:Infinite lives - P2 + code:0042:09 + cheat + description:Float + code:0032:0A + cheat + description:Have Long Shot + code:0030:02 + cheat + description:Have Rapid Shot + code:0030:04 + cheat + description:Have Long and Rapid Shot + code:0030:06 + cheat + description:Have Lightning Shot + code:0030:45 + +cartridge sha256:d02b24e4ee8e639bf77af6746d6b3a92e996c0d2298861071851e2beec0ef812 + name:Bucky O'Hare (USA) + cheat + description:Infinite lives + code:SZVKOTVG + cheat + description:Hit anywhere + code:GXOEZTEL+GZNEYTEL+OXEAGVPV+OXOEYVPV + cheat + description:One hit kills + code:SLKSVUSO + cheat + description:Multi-jump + code:AEUEOYEL+AEXAUYAP + cheat + description:Double Bucky's special health + code:EPELVNKE + cheat + description:Triple Bucky's special health + code:KZELVNKA + cheat + description:All characters always selectable + code:ENKEVGAP + cheat + description:All characters start with normal special health + code:KAEUXNGE + cheat + description:All characters start with 2x special health + code:EPEUXNGE + cheat + description:All characters start with 3x special health + code:KZEUXNGA + cheat + description:1 life after continue + code:AEXGVYZA + cheat + description:6 lives after continue + code:IEXGVYZA + cheat + description:10 lives after continue + code:PEXGVYZE + cheat + description:Press Start to complete the level + code:AESGILPE+AESKALPA+GOSGYUPE+OXSGGUPK + cheat + description:Start a new game to see ending + code:PEUKEIZE + cheat + description:Start with 1/2 health + code:TAOLKYGP + cheat + description:Start with 1 life + code:AAELXYZA + cheat + description:Start with 6 lives + code:IAELXYZA + cheat + description:Start with 10 lives + code:PAELXYZE + cheat + description:Infinite health - all characters + code:05A0:14 + cheat + description:Infinite lives - all characters + code:004C:09 + cheat + description:Play as Jenny + code:0034:01 + cheat + description:Play as Dead Eye + code:0034:02 + cheat + description:Play as Blinky + code:0034:03 + cheat + description:Play as Willy DuWitt + code:0034:04 + +cartridge sha256:f01fe9436ca7b50953dbe5b8dd3574612df0e5df1fa9ae50d3f3b5faac818ab2 + name:Bugs Bunny Birthday Blowout, The (USA) + cheat + description:Invincibility + code:ATYZPL + cheat + description:Infinite health + code:SXEZGUSE + cheat + description:Infinite lives + code:SZVIGKVK + cheat + description:Mega-jumping Bugs + code:LAOANZTE + cheat + description:Two hearts of energy gained on pick-up + code:AEOXPZGE + cheat + description:Less energy gained on pick-up + code:PEOXPZGA + cheat + description:Stunned for longer + code:ATNZALAL + cheat + description:Stunned for less time + code:IPNZALAL + cheat + description:Use hammer when stunned + code:AASAKOTL + +cartridge sha256:7882e99e08deb1c22a3c38b17e12bd6373af503fd76e97b31699f3d19bef5aad + name:Bugs Bunny Crazy Castle, The (USA) + cheat + description:Invincibility + code:GXETZZEI + cheat + description:Baddies go as fast as Bugs Bunny + code:GXKGZZEY + cheat + description:Make platforms invisible + code:GASGAAPA + cheat + description:Start with super rabbit punches + code:PXXTGGEN+PXXTAGAO + cheat + description:Start with infinite lives + code:SZOKGPVG + cheat + description:Start with 1 life + code:PAUGPAIA + cheat + description:Start with 10 lives + code:ZAUGPAIE + cheat + description:Start on level 10 + code:SZOKGAAX+PEXYVYAE + cheat + description:Start on level 20 + code:SZOKGAAX+LOXYVYAA + cheat + description:Start on level 30 + code:SZOKGAAX+IOXYVYAE + cheat + description:Start on level 40 + code:SZOKGAAX+YXXYVYAA + +cartridge sha256:6f37316bbfec539809a946f7020e7a411fe5dbe204157522f01b9c616e918247 + name:Bugs Bunny Fun House (USA) (Beta) + cheat + description:Infinite turns + code:SXNKSKVK + cheat + description:Slower timer + code:EAXOLVGL + cheat + description:Faster timer + code:YPXOLVGU + cheat + description:Quicker turning + code:ZESXVGGA + cheat + description:More time from Large Glop Clocks + code:TOVOUEYE + cheat + description:Less time from Large Glop Clocks + code:YEVOUEYA + cheat + description:1 turn after continuing + code:PAXGSILA + cheat + description:9 turns after continuing + code:PAXGSILE + cheat + description:Start with 1 turn + code:PEOGXALA + cheat + description:Start with 9 turns + code:PEOGXALE + cheat + description:Start on Floor 2 + code:YEEKSAPA + cheat + description:Start on Floor 4 + code:LOEKSAPA + cheat + description:Start on Floor 6 + code:YOEKSAPE + cheat + description:Start on Floor 8 + code:LXEKSAPE + +cartridge sha256:ba8c9990f378b941ea362858509182b2b009e5b463e9732dc0071392b6253c2b + name:Bump'n'Jump (USA) + cheat + description:Jump OK, even with no power + code:AAVPNLGP + cheat + description:Gain double power on every pick-up + code:ZAUZAIPA + cheat + description:Jump OK at any speed + code:AGVONLAA + cheat + description:Set jump OK speed to 190 + code:PANPNLIE + cheat + description:Set jump OK speed to 130 + code:LANPNLIA + cheat + description:Start on scene 5 + code:GEOAGGAA + cheat + description:Start on scene 10 + code:PEOAGGAE + cheat + description:Start on scene 15 + code:TEOAGGAE + +cartridge sha256:abbddcb7c85a9956f94e6185aa1f30c34c45ad0db2f7f9db40066d749ffa7920 + name:Burai Fighter (USA) + cheat + description:Infinite lives + code:VNOTENVK + cheat + description:Extra lives for Eagle level + code:PEOLATIE + cheat + description:Extra lives for Albatross level + code:AEOLPTGE + cheat + description:Extra lives for Ace level + code:TEOLZTLA + cheat + description:More power for weapons + code:LAXTTPPA + cheat + description:Maximum power for weapons + code:ZAXTTPPE + cheat + description:Increase cobalt power picked up + code:PASVTPZE + cheat + description:Never lose weapon power + code:OUVNAXOO + cheat + description:Never lose speed up + code:KXNYLZSA + cheat + description:Never lose weapons + code:KXVNYZSA + cheat + description:Never lose rotating pod + code:KXNYPZSA + cheat + description:Never lose anything + code:AVVNLXOZ + cheat + description:Start with laser + code:VTVNIPSA + cheat + description:Start with rotating pod + code:VTNYPPSA + +cartridge sha256:8f349b0ed7d31a07ccdf26958de8219165eff7c9ad43801a82c5dcf831fd82c2 + name:BurgerTime (USA) + cheat + description:Anti-gravity shoes + code:GZVIAZEI + cheat + description:Peter Pepper gets super speed + code:YPESOUGO + cheat + description:Fast play for experts + code:SZKNNIAX + cheat + description:Monsters always move slowly + code:SXVSSXSU + cheat + description:Monsters move at double speed + code:SXVSSXSU+GOVSVXAO + cheat + description:Monsters move at quadruple speed + code:SXVSSXSU+YOVSVXAO + cheat + description:Start with infinite lives + code:SZSTVAVI + cheat + description:Start with 8 lives + code:AASGKLGE + cheat + description:Start with infinite peppers + code:SLKIZYVI + cheat + description:Start with double peppers + code:APVGSLIA + +cartridge sha256:2b4ac20082e2f45a8f8fd4922a0e995829719a523e118a9eec891c3206adf25b + name:B-Wings (Japan) + cheat + description:Invincibility + code:SAUXGISZ + cheat + description:Infinite lives + code:SLNZUSVK + cheat + description:Enable unlimited morphs + code:ASEUZLEY + cheat + description:Enable secret weapons morph + code:TEOLYULE + cheat + description:Can always morph + code:GXEUZLAI + cheat + description:Start with secret weapon 1 + code:LENUGAPE + cheat + description:Start with secret weapon 2 + code:IENUGAPE + +cartridge sha256:47dfae941b3c660be476bc28f199474b6c418431e3d493da4384a6aef3cc5016 + name:Cabal (USA) + cheat + description:Invincibility + code:ENNOLGEI + cheat + description:Infinite lives + code:GXEOZZVI + cheat + description:Infinite lives (alt) + code:SSEOZZVI + cheat + description:Infinite grenades + code:AEUXSIPA + cheat + description:Shorter immunity + code:AKOPLZEG + cheat + description:Longer immunity + code:NNOPLLEK + cheat + description:12 Grenades on pick-up + code:GAVXNGGE + cheat + description:2 Grenades on pick-up + code:ZAVXNGGA + cheat + description:Start with 20 grenades + code:KYVEOZUY + cheat + description:Start with 50 grenades + code:NYVEOZUY + cheat + description:Start with 9 lives - both players + code:UNUOTTNN + cheat + description:Start with 1 life - both players + code:UNUOTTNY + cheat + description:Invincibility - P1 + code:009F:02 + cheat + description:Invincibility - P2 + code:00A0:01 + cheat + description:Infinite Grenades - P1 + code:00D7:09 + cheat + description:Infinite Grenades - P2 + code:00D8:FB+00D9:FB + +cartridge sha256:85da8656317bb939de111a036132ccf358259bab29cf2e4fc694bbef4e55fff0 + name:California Raisins - The Grape Escape (USA) (Proto1) + cheat + description:Infinite health + code:SZXIKPVG + cheat + description:Infinite health (alt) + code:0048:04 + cheat + description:Infinite lives + code:0049:02 + +cartridge sha256:9ea5bedef90810b89afb70db90c6e0338aa2a6976603058dafe08838009651f0 + name:California Raisins - The Grape Escape (USA) (Proto2) + cheat + description:Invincibility + code:EIXSTPEY + cheat + description:Infinite lives + code:SKEKOTVG + cheat + description:Invincibility (blinking) + code:004D:FF + cheat + description:Infinite health + code:004A:04 + cheat + description:Infinite lives (alt) + code:004B:03 + +cartridge sha256:4ec881462687e08433605516d28624c5d9a7f33a243c64989c957adff8e0432a + name:Capcom's Gold Medal Challenge '92 (USA) + cheat + description:Massive run power + code:OXSYZVON+ASSYLTEY+XVSYGTVN + +cartridge sha256:6d694349435603c0dcd7645081b0761e109f3994b30f9d822586c991d93510d8 + name:Captain America and the Avengers (USA) + cheat + description:Infinite life - Captain America and Hawkeye, 1P mode + code:OLNUNEOO + cheat + description:Infinite continues + code:SZSULYVG + cheat + description:Large power stones worth 20 points + code:GPNXIUZA + cheat + description:Large power stones worth 30 points + code:TPNXIUZE + cheat + description:Large power stones worth 50 points + code:ZLNXIUZA + cheat + description:Small power stones worth 10 points + code:ZAUZILPE + cheat + description:Hawkeye shoots arrows faster + code:LSUPUELO + cheat + description:Faster Captain America and Hawkeye - one direction only + code:VYNXTXNN+ZEEZAZPA + cheat + description:Even faster Captain America and Hawkeye - one direction only + code:SYNXTXNN+LEEZAZPA + cheat + description:Ininite life - Captain America, 1P mode + code:03D9:0F + cheat + description:Infinite life - Hawkeye, 1P mode + code:03DA:0F + cheat + description:Have 99 Red Gems - Captain America, 1P mode + code:03DD:63 + cheat + description:Have 99 Red Gems - Hawkeye, 1P mode + code:03DE:63 + +cartridge sha256:935aa637ca8fb0ec4e0f3f09881c46c134b9a5821707e35899d8a7eedb17c6c3 + name:Captain Comic - The Adventure (USA) (Unl) + cheat + description:Invincibility + code:SZATEK + cheat + description:Infinite energy + code:SLATVK + cheat + description:Infinite lives + code:SZATZN + cheat + description:Max blast level + code:0316:09 + cheat + description:Infinite blast meter + code:0318:80 + cheat + description:Have Door Key + code:05AA:01 + cheat + description:Have Corkscrew + code:05AB:01 + cheat + description:Have Power Boots + code:05AC:01 + cheat + description:Have Teleport Wand + code:05B3:01 + cheat + description:Have Lantern + code:05B4:01 + cheat + description:Have Mystical Gems of Lascorbanos + code:05B5:01 + cheat + description:Have Coins of Tenure + code:05B6:01 + cheat + description:Have Crown of the Ages + code:05B7:01 + +cartridge sha256:41dd396fbd9b0883b4222b6fbdae09d0e3894eb015e965a0d228f21edd98ad8c + name:Captain Planet and the Planeteers (USA) + cheat + description:Invincibility + code:SZNKNUSE + cheat + description:Infinite lives (alt) + code:SKNLYVVK + cheat + description:Infinite lives, outside levels + code:SXNLYVVK + cheat + description:Infinite lives, inside levels + code:SZSUGVVK + cheat + description:Infinite power, outside levels + code:SZNXGXVK+SZVXPKVK + cheat + description:Infinite power, inside levels + code:SXXXEUVK+SZEUGKVK + cheat + description:Start with 2 lives instead of 5, outside levels + code:PENVIGGA + cheat + description:Start with 10 lives, outside levels + code:PENVIGGE + cheat + description:Start with 10 lives, inside levels + code:PAETITGE + cheat + description:Start with 2 lives, inside levels + code:PAETITGA + cheat + description:Start inside level 1 instead of outside. + code:AANVAEGZ + +cartridge sha256:da7886920245b1342185ed5fb963798dc38f96e8c5186b9c23446ef68c58a248 + name:Captain Skyhawk (USA) (Rev A) + cheat + description:Infinite lives + code:OZKAIGVK + cheat + description:Infinite lives (alt) + code:SGKAIGVG + cheat + description:Infinite Maverick missiles + code:OZXPUZVK + cheat + description:Infinite Hawk Bombs + code:OXKPVGVK + cheat + description:Double cost of Hawk Bombs + code:GENXKGZA + cheat + description:Double cost of Phoenix missiles + code:GAXZKIZA + cheat + description:Double cost of Maverick missiles + code:ZAOZEIIE + cheat + description:Start with half Hawk Bombs + code:LESITITA + cheat + description:Start with 20 Hawk Bombs + code:GOSITITA + cheat + description:Start with 8 Phoenix and Maverick missiles + code:AESSZIZE + cheat + description:Start with 1 life + code:PEUITIIA + cheat + description:Start with 10 lives + code:ZEUITIIE + +cartridge sha256:141cda262aad72971c00dd9a9655f32cee03e259d371bd8937a864e3300e9e58 + name:Captain Skyhawk (USA) + cheat + description:Invincibility (PRG0) + code:ESOOVIEY + cheat + description:Infinite lives + code:OZKAIGVK + cheat + description:Infinite lives (alt) + code:SGKAIGVG + cheat + description:Infinite Maverick missiles + code:OZXPUZVK + cheat + description:Infinite Hawk Bombs + code:OXKPVGVK + cheat + description:Double cost of Hawk Bombs + code:GENXKGZA + cheat + description:Double cost of Phoenix missiles + code:GAXZKIZA + cheat + description:Double cost of Maverick missiles + code:ZAOZEIIE + cheat + description:Start with half Hawk Bombs + code:LESITITA + cheat + description:Start with 20 Hawk Bombs + code:GOSITITA + cheat + description:Start with 8 Phoenix and Maverick missiles + code:AESSZIZE + cheat + description:Start with 1 life + code:PEUITIIA + cheat + description:Start with 10 lives + code:ZEUITIIE + +cartridge sha256:f76f1779454a8a98168c2c26bc79058161cbaefb3006c8e6aa8c63d301a66f4f + name:Casino Kid (USA) + cheat + description:Always win hand in Blackjack + code:OXKEPTES + cheat + description:Always win hand in Poker + code:SZOOUKGK + cheat + description:Can always bet all money in Blackjack + code:OXOEIIEO + cheat + description:Can always bet all money in Poker + code:VAVAKXAT + +cartridge sha256:87e479b14421fc4b56553937dc817789ebfb2987b0724c6790705f0361a955a7 + name:Casino Kid II (USA) + cheat + description:Can't double down in blackjack (game will say you do not have enough money) + code:PAOASGIE + cheat + description:Can't split in blackjack (game will say you do not have enough money) + code:PAKAVIIE + cheat + description:Start new game with $82 instead of $200 + code:AZKKYOTG + cheat + description:Start new game with $512 + code:EGKKYOTK + cheat + description:Start new game with $21,171 + code:AZSGGPAA + cheat + description:Start new game with $131,272 + code:EGSGGPAE + cheat + description:Start new game with $1,342,377 + code:AASKPPAE + cheat + description:Start new game with $5,368,909 + code:AZSKPPAA + +cartridge sha256:98ba2353111a0b2cf557b03d8b8c4f5c15d7be56e47182536d710913d62582fa + name:Castelian (USA) + cheat + description:Invincibility + code:SXKTEISA + cheat + description:Infinite lives + code:SLOKZLVI + cheat + description:Infinite lives (alt) + code:SIOKZLVI + cheat + description:Infinite time + code:SZNXYAVG + cheat + description:Start with 1 life + code:PEVGYPLA + cheat + description:Start with 6 lives + code:TEVGYPLA + cheat + description:Start with 9 lives + code:PEVGYPLE + cheat + description:Start with 5 continues + code:IAOGTZZA + cheat + description:Start with 8 continues + code:AAOGTZZE + +cartridge sha256:3668454e1904ada7f80ec2f94c4c2d45272d8a8c9e8d3b78ceebae5f890eb164 + name:Castle of Deceit (USA) (Unl) + cheat + description:Infinite energy + code:SXNIOUVK + cheat + description:Infinite lives + code:SZOSYSVK + +cartridge sha256:6887230077d8eefa311d313672c31e7497211e21c5df78aa8d2030ea72471108 + name:Castle of Dragon (USA) + cheat + description:Infinite health + code:YNOLSYAE + cheat + description:Super health + code:NYXKLAGE + cheat + description:No harm from most enemy attacks + code:SZVUSNVK + cheat + description:Stop Skeletons from fighting + code:PEVPULAP + cheat + description:Faster fighting + code:GEOGYZPA + cheat + description:Super strong enemies + code:ZPSLONLP + cheat + description:Start with Knives + code:ZAXGLAAA + cheat + description:Start with Knives and Mace + code:LAXGLAAA + cheat + description:Start with Armor + code:EAXGLAAA + cheat + description:Start with Armor, Knives and Mace + code:UAXGLAAA + +cartridge sha256:9abebd837287a38ab64153ff662b3bd79ebc8e55b07c2fc2fef8c15244517576 + name:Castlequest (USA) + cheat + description:Invincibility + code:SXUEXSSE + cheat + description:Infinite lives + code:SXKAVIVG + cheat + description:Infinite keys + code:ATSXATEY + cheat + description:75 lives instead of 50 + code:LKUZTZZU + cheat + description:25 lives instead of 50 + code:POUZTZZU + cheat + description:Don't lose life from 'reset' or 'back' options + code:SXKNKLVG + cheat + description:Use sword (press 'B') as long as you like + code:SZOEIUVK + cheat + description:Now you can move while using sword + code:XXOAZGYA + cheat + description:Must use with the last code for permanent sword-wielding ability + code:IAEEALYP + cheat + description:Supercharged speed-up + code:GAXEGIZA+GAUEGIZA + cheat + description:Turbo fuel-injected 16-valve speed-up + code:AAXEGIZE+AAUEGIZE + +cartridge sha256:7eba1637cd2fdbc4f0732eb5249e32d827dbdadbd7e165f961440af4310880dc + name:Castlevania (USA) (Rev A) + cheat + description:Invincibility + code:SKSTZTSZ + cheat + description:Invincibility after one hit + code:VXNVXAVG + cheat + description:Infinite lives + code:OXNGLZVK + cheat + description:Infinite time + code:SXXXYAAX + cheat + description:Infinite hearts + code:KZSSEZKA+KXESUZKA + cheat + description:Keep weapons after losing a life + code:GZOGYUSE + cheat + description:Gain triple shot on weapon pick-up + code:ZEUTAYAA + cheat + description:Don't get knocked back when hit + code:NAPOLN + cheat + description:Jump 3x as high + code:SKPPEL + cheat + description:Jump 2x as high + code:EVPPEL + cheat + description:Multi-jump + code:AVOPZYEP+VEEOGGSV+KOEOIGOZ+OZOOIKSE+PAOOTGLG+SAOOYGPE+GTXPAKVV+GAXPPKGT+ZGXPZGGE+AXKOZKSZ+PEKOLGGP+KOKOGGIA + cheat + description:Start with 40 hearts + code:AXOGOPIE + cheat + description:Start with 80 hearts + code:ASOGOPIA + cheat + description:Start with 1 life + code:PANKXPGA+PANGSAGA + cheat + description:Start with 8 lives + code:AANKXPGE+AANGSAGE + cheat + description:Start on last level + code:VXOLEOVE+PEEUEPLE+ZOEUSPAA + cheat + description:Invincibility (blinking) + code:005B:02 + cheat + description:Infinite health + code:0045:40 + cheat + description:Infinite lives (alt) + code:002A:63 + cheat + description:Infinite hearts (alt) (disable at end of stage) + code:0071:63 + cheat + description:Bosses have no health + code:01A9:00 + cheat + description:Have the Axe + code:015B:0D + cheat + description:Have the Cross + code:015B:09 + cheat + description:Have the Holy Water + code:015B:0B + cheat + description:Have the Knife + code:015B:08 + cheat + description:Have the Stopwatch + code:015B:0F + cheat + description:Have the best whip + code:0070:02 + +cartridge sha256:a35e846379ff252594ace83da2a1a1cb0692717b931055d1f6603812f18ad5cd + name:Castlevania (USA) + cheat + description:Infinite time + code:SXXXYAAX + cheat + description:Hit anywhere (Whip) + code:AAOVLSVG+AAXVLSVL + cheat + description:Jump 3x as high + code:SKPPEL + cheat + description:Jump 2x as high + code:EVPPEL + cheat + description:Multi-jump + code:AVOPZYEP+VEEOGGSV+KOEOIGOZ+OZOOIKSE+PAOOTGLG+SAOOYGPE+GTXPAKVV+GAXPPKGT+ZGXPZGGE+AXKOZKSZ+PEKOLGGP+KOKOGGIA + cheat + description:Start on last level + code:VXOLEOVE+PEEUEPLE+ZOEUSPAA + cheat + description:Invincibility (blinking) + code:005B:02 + cheat + description:Infinite health + code:0045:40 + cheat + description:Infinite lives + code:002A:63 + cheat + description:Infinite hearts + code:0071:63 + cheat + description:Bosses have no health + code:01A9:00 + cheat + description:Have the Axe + code:015B:0D + cheat + description:Have the Cross + code:015B:09 + cheat + description:Have the Holy Water + code:015B:0B + cheat + description:Have the Knife + code:015B:08 + cheat + description:Have the Stopwatch + code:015B:0F + cheat + description:Have the best whip + code:0070:02 + +cartridge sha256:9575ec31c1c658fd6b77ae1d69e4861ecada8570e4eebf51409941486e4b4ef4 + name:Castlevania II - Simon's Quest (USA) + cheat + description:Infinite health + code:SZSSYLSA + cheat + description:Infinite lives + code:GXOGGZVG + cheat + description:Infinite Laurels + code:IAXIOPVG + cheat + description:Infinite Garlic + code:SZUISPVG + cheat + description:Always daytime + code:SXOSLYSA + cheat + description:Small hearts worth 100 + code:KATAZY + cheat + description:Multi-jump + code:VVSEVOSV+XVSEKPEN+EESEOPAP+ESSEXPLP+GESEUPEX+GKSESPAX+OESENPVE+PXSEEPLE+SNSANOGT+SXSAVOSZ+UNVEOPAE + cheat + description:Whip can destroy any block + code:AALSPT+AAZSAT+APISIT+XVPIPV + cheat + description:Whip destroys all enemies/townspeople on screen + code:INIEEA + cheat + description:Start with 100 Experience (E) + code:PAZNGO + cheat + description:Start with more health + code:AISKTIAL + cheat + description:Start with 25 hearts + code:IZSKZIAI + cheat + description:Start with 75 hearts + code:IYSKZIAI + cheat + description:Start with 1 life + code:PASGLILA + cheat + description:Start with 6 lives + code:TASGLILA + cheat + description:Start with 9 lives + code:PASGLILE + cheat + description:Invincibility + code:04F8:02 + cheat + description:Infinite health (alt) + code:0080:50 + cheat + description:Infinite lives (alt) + code:0031:03 + cheat + description:Infinite hearts + code:0048:F0 + cheat + description:Infinite Laurels (alt) + code:004C:99 + cheat + description:Infinite Garlic on pick-up + code:004D:08 + cheat + description:Always daytime (alt) + code:0085:02 + cheat + description:Have all Daggers, Holy Water, Diamond, Flame and Oak Stake + code:004A:7F + cheat + description:Have White Crystal + code:0091:20 + cheat + description:Have all Dracula's parts and White Crystal + code:0091:3F + cheat + description:Have Blue Crystal + code:0091:40 + cheat + description:Have all Dracula's parts and Blue Crystal + code:0091:5F + cheat + description:Have Red Crystal + code:0091:60 + cheat + description:Have all Dracula's parts and Red Crystal + code:0091:7F + cheat + description:Have Garlic, Laurels, Silk Bag and Magic Cross + code:0092:0F + cheat + description:Have Fire Whip + code:0434:04 + +cartridge sha256:6e8d289635ac39479ff1d36733aa3f8b9650593ab972cedb8e2cdbfc03aaa739 + name:Castlevania III - Dracula's Curse (USA) + cheat + description:Invincibility (disable if you cannot enter a door) + code:EIOAZPEY + cheat + description:Invincibility (disable if you cannot enter a door) (alt) + code:SZKLPZSA + cheat + description:Infinite health + code:OXEEZZSE + cheat + description:Infinite lives + code:OXOAUPSE + cheat + description:Hit anywhere (Whip) + code:AEELYXAP + cheat + description:Multi-jump + code:SASOUESX+SASPVESX+SZSPOAGA+SZUPOASA+TZSPXEOG+ZASPUEAE+AVVAELAP+EISOKAIV+EPSPKAEL+IASONATZ+IASOXEGA+IAVPOEAA+OZSOOAES+PSSPINYG+PSVPYUYG + cheat + description:Start with 9500 seconds + code:PALUYL + cheat + description:Start each stage with 99 hearts + code:OOKPPAIE + cheat + description:Invincibility (blinking) (disable if you cannot enter a door) + code:0080:02 + cheat + description:Remove invincibility blinking + code:001A:00 + cheat + description:Infinite health (alt) + code:003C:40 + cheat + description:Infinite lives (alt) + code:0035:99 + cheat + description:Infinite hearts + code:0084:99 + cheat + description:Trevor has best Whip + code:008E:02 + cheat + description:Alucard has best attack + code:008F:02 + cheat + description:Enable Sypha + code:003A:01 + cheat + description:Enable Grant + code:003A:02 + cheat + description:Enable Alucard + code:003A:03 + cheat + description:Trevor's sub-weapon - Axe + code:0085:01 + cheat + description:Trevor's sub-weapon - Cross + code:0085:02 + cheat + description:Trevor's sub-weapon - Dagger + code:0085:03 + cheat + description:Trevor's sub-weapon - Holy Water + code:0085:04 + cheat + description:Partner's sub-weapon - Fire Spell + code:0086:05 + cheat + description:Partner's sub-weapon - Ice Spell + code:0086:06 + cheat + description:Partner's sub-weapon - Lightning Spell + code:0086:07 + cheat + description:Partner's sub-weapon - Dagger + code:0086:08 + cheat + description:Partner's sub-weapon - Axe + code:0086:09 + cheat + description:Partner's sub-weapon - Clock + code:0086:0B + cheat + description:Start on stage 2 (glitchy if you die) + code:0032:01 + cheat + description:Start on stage 3 (glitchy if you die) + code:0032:02 + cheat + description:Start on stage 4 (glitchy if you die) + code:0032:03 + cheat + description:Start on stage 5 (glitchy if you die) + code:0032:04 + cheat + description:Start on stage 6 (glitchy if you die) + code:0032:05 + cheat + description:Start on stage 7 (glitchy if you die) + code:0032:06 + cheat + description:Start on stage 8 (glitchy if you die) + code:0032:07 + cheat + description:Start on stage 9 (glitchy if you die) + code:0032:08 + cheat + description:Start on stage 10 (glitchy if you die) + code:0032:09 + cheat + description:Start on stage 11 (glitchy if you die) + code:0032:0A + cheat + description:Start on stage 12 (glitchy if you die) + code:0032:0B + cheat + description:Start on stage 13 (glitchy if you die) + code:0032:0C + cheat + description:Start on stage 14 (glitchy if you die) + code:0032:0D + cheat + description:Start on stage 15 (glitchy if you die) + code:0032:0E + +cartridge sha256:c20a8cc1b2dacb8a45e706b5763ac6c82c17b4ee4fb547ba4a853e4aabd6e35c + name:Challenge of the Dragon (USA) (Unl) + cheat + description:Infinite health + code:SZSTZXSO + cheat + description:Infinite lives + code:OUOVZKOO + cheat + description:Always have Bombs + code:ASXTVGEI + +cartridge sha256:7f4b9307e228c737b5f6e4ef3efb40438aa2024b95b29f9aabf18a15af6ed185 + name:Challenge of the Dragon (Asia) (PAL) (Unl) + cheat + description:Invincibility + code:ATNXPAEY + cheat + description:Infinite health + code:SZXZAPVG + cheat + description:Infinite lives + code:OZOEXYVK + +cartridge sha256:d5b039637a2315458f71ec57a287f93b3532e6243b712b55767f07dc83c5a3c9 + name:Championship Pool (USA) + cheat + description:1 foul loses the game (instead of 3) - only in 10-ball in party mode + code:PAOUYALA + cheat + description:2 fouls in a row loses the game - only on 9 and 10-ball in party mode + code:ZAOUYALA + cheat + description:Fouls don't count - only on 9 and 10-ball and rotation in party mode + code:SLNUKXSO + cheat + description:Number of fouls is not cleared after a good shot (3 fouls don't have to be in a row to lose) - only on 10-ball in party mode + code:SUOLXXSO + cheat + description:Always break in 9 or 10-ball - P1 + code:OZVETASX+AAVEYEST + cheat + description:Always break in 9 or 10-ball - P2 + code:OZVETASX+PAVEYEST + +cartridge sha256:ebdd748cd488c4acdc5d2c7321de692c1ab0b37044cf0c6ea043457176dbd306 + name:Cheetahmen II (USA) (Unl) + cheat + description:Infinite health - level 1 and 2 + code:SXUXGUVK + cheat + description:Infinite health - level 3 + code:SXSXGUVK + cheat + description:Infinite health - level 4 + code:SXEZGUVK + cheat + description:Infinite lives - level 1 and 2 + code:SZNUAUVK + cheat + description:Infinite lives - level 3 + code:SZEUYUVK + cheat + description:Infinite lives - level 4 + code:SXXUIXVK + +cartridge sha256:e84d90fefb92f2b6ab70e35bfb990978c7e384e357ec6b995c3880bff4c5b460 + name:Chip 'n Dale - Rescue Rangers (USA) + cheat + description:Infinite health + code:AOEITEEN + cheat + description:Multi-jump + code:AAKGSGPA+SXXKEOZA + cheat + description:Freeze mechanical bulldog + code:ATUEENSL + cheat + description:Freeze mechanical mice + code:AVKAVNSL + cheat + description:Freeze buzzer + code:AVOPTESL + cheat + description:Freeze buzz bomb + code:AVNOLKSL + cheat + description:Freeze racket-rod + code:AVVPZSSL + cheat + description:Freeze ditz + code:ATSOYKSL + cheat + description:Freeze hawk bomber + code:ATSPANSL + cheat + description:Freeze bouncing boxes + code:AVVOOUSL + cheat + description:Mega-jump + code:ZEXKNPTE + cheat + description:Never get stunned + code:GAEIIEVI + cheat + description:Press Start to finish the level + code:IVEKINEO + +cartridge sha256:afa359b53e90781ed3810642c09f7cb22f0ba21c40142649771bfb21a897b4d3 + name:Chip 'n Dale - Rescue Rangers 2 (USA) + cheat + description:Invincibility (glitchy) + code:EIXZEZEY + cheat + description:Infinite health + code:SSXLLEVS + cheat + description:Infinite health - both players + code:OUXLLEVS + cheat + description:Infinite lives - both players + code:NXKZKTVI + cheat + description:Almost infinite lives - both players + code:GXKZKTVI + cheat + description:Infinite credits + code:OXUNGIVK + cheat + description:Never get stunned + code:XVXXXGVS + cheat + description:Start with 1 life - both players + code:PEUYIILA + cheat + description:Start with 2 lives - both players + code:ZEUYIILA + cheat + description:Start with 4 lives - both players + code:GEUYIILA + cheat + description:Start with 5 lives - both players + code:IEUYIILA + cheat + description:Start with 1 heart - both players + code:PEOYZILA + cheat + description:Start with 2 hearts - both players + code:ZEOYZILA + cheat + description:Start with 4 hearts - both players + code:GEOYZILA + cheat + description:Start with 5 hearts - both players + code:IEOYZILA + cheat + description:Start with 1 credit + code:PANNAILA + cheat + description:Start with 2 credits + code:ZANNAILA + cheat + description:Start with 6 credits + code:TANNAILA + cheat + description:Start with 9 credits + code:PANNAILE + cheat + description:Start with 255 credits (ignore the counter) + code:NYNNAILE + +cartridge sha256:21a7f7a5a043ddc2017cd97b4088156b0d728271455966ab6748a79eddd3410e + name:Chubby Cherub (USA) + cheat + description:Infinite lives + code:SZEAYZVG + cheat + description:Infinite power + code:SZEXIYSA + cheat + description:Half regular power gained from food + code:GEVAKVAA + cheat + description:Slow down power loss on the ground + code:PENXATZA + cheat + description:Slow down power loss in the air + code:LENXTVPA + cheat + description:Infinite Gau (shots) + code:ZANEVSUT + cheat + description:Double Gau (shots) on candy pick-up + code:AASXOAGE + cheat + description:Start with 1 life + code:AEOAAZZA + cheat + description:Start with double lives + code:IEOAAZZA + cheat + description:Start with triple lives + code:AEOAAZZE + cheat + description:Start on Stage 5 + code:IEOALZPA+GEOAPZAA + cheat + description:Start on Stage 10 + code:ZEOALZPE+PEOAPZAE + +cartridge sha256:fa701601d39819ef26821d05350ccb793cc606191e03c06203a4274b434dfaeb + name:Circus Caper (USA) + cheat + description:Invincibility in normal levels + code:SYNNPGLA+TANNAGZS+AZNYYKSZ + cheat + description:Infinite power (health) + code:GZEYPSSE + cheat + description:Infinite power (health) (alt) + code:SZEYPSSE + cheat + description:Full energy from food + code:AASVNAZA + cheat + description:Start with lots of weapons + code:NNOTNLAE + cheat + description:Start on stage 2 (starts on stage 1 after continuing) + code:ZEVGGAPA + cheat + description:Start on stage 3 (starts on stage 1 after continuing) + code:LEVGGAPA + cheat + description:Start on stage 4 (starts on stage 1 after continuing) + code:GEVGGAPA + cheat + description:Start on stage 5 (starts on stage 1 after continuing) + code:IEVGGAPA + cheat + description:Start on stage 6 (starts on stage 1 after continuing) + code:TEVGGAPA + cheat + description:Infinite power (health) (alt 2) + code:0392:7A + +cartridge sha256:590535e8cda84cb4054425539bc320c16307f141d688b57f258a162dedc8888f + name:City Connection (USA) + cheat + description:Infinite lives + code:SZNSTPVG + cheat + description:Infinite Oil + code:SXKPZGVG + cheat + description:Start with double lives + code:IEKEYIZA + cheat + description:Start with triple lives + code:AEKEYIZE + cheat + description:Start with extra Oil + code:AXSAPIIA + cheat + description:Start on level 1 + code:PEKEIIAA + cheat + description:Start on level 2 + code:ZEKEIIAA + cheat + description:Start on level 3 + code:LEKEIIAA + cheat + description:Start on level 4 + code:GEKEIIAA + cheat + description:Start on level 5 + code:IEKEIIAA + cheat + description:Infinite lives - both players + code:00A2:09 + cheat + description:Infinite Oil - both players + code:00A4:63 + cheat + description:MI is very high + code:00A5:FF + +cartridge sha256:cf226f0d9486103bbaa19ee124b673d47aa2b3766334b6b7587d704c03e6649e + name:Clash at Demonhead (USA) + cheat + description:Invincibility + code:ENOPLZEI+ESSPPAEY + cheat + description:Infinite health + code:SZEGZISA + cheat + description:Infinite barrier hits + code:SXNZKSVK + cheat + description:Infinite supply of all items bought + code:SXKZGSVS + cheat + description:Don't die when power hits zero + code:VZSULOVV + cheat + description:All items in shop are free + code:AVUGAGST + cheat + description:Start with 1 of each item + code:VNNGNUSO + cheat + description:Start with extra cash + code:TAUGKGKY+UPUGVKXO + cheat + description:Start with 50% power + code:AAEKVGAO+AEVZNPAO+ZAOGXGGA + cheat + description:Start with 150% power + code:APEKVGAO+TAOGXGGA+AOVZNPAO + cheat + description:Start with 200% power + code:AZEKVGAP+AAOGXGGE+AXVZNPAP + cheat + description:Infinite health (alt) + code:009F:10 + +cartridge sha256:79969ab6741823e5560794489d5b20a677a1207c06265855e5d7b633e6fef29a + name:Cliffhanger (USA) + cheat + description:Protection from most hits + code:SZVPOKVK + cheat + description:Infinite lives + code:SXEKKSVK + cheat + description:Infinite continues + code:ULOTSYTN + cheat + description:Don't burn money at campfire + code:SUNPXXSO + cheat + description:Some bags contain mega-money, some contain no money + code:YONKKXAP + cheat + description:Start with 2 lives + code:PASGVGLA + cheat + description:Start with 6 lives + code:IASGVGLA + cheat + description:Start with 8 lives + code:YASGVGLA + cheat + description:Start with 10 lives + code:PASGVGLE + cheat + description:Start with 1 continue + code:PAKGUGLA + cheat + description:Start with 5 continues + code:IAKGUGLA + cheat + description:Start with 7 continues + code:YAKGUGLA + cheat + description:Start with 9 continues + code:PAKGUGLE + cheat + description:Start with 2x health (does not show on meter) + code:AXOKNGAP + cheat + description:Start with 1/2 health + code:AEOKNGAO + cheat + description:Start with $100 + code:VTVKVKSE + cheat + description:Start with $10,000 + code:VTVKUKSE + cheat + description:Start with $650,000 (displays $xx0000 until you pick up first money bag) + code:VGVKUKSE + cheat + description:Infinite health + code:0405:10 + cheat + description:Infinite lives (alt) + code:0406:03 + +cartridge sha256:ed0a1a5ca7cf404116d0073e8ccd213a082d2ac50132f54f3c8621f3dbcdb248 + name:Clu Clu Land (World) + cheat + description:Infinite lives - both players + code:GXLILL + cheat + description:Infinite time + code:GZPGSL + cheat + description:Increase extra time + code:TEYIGL + cheat + description:Shoot more rays + code:IEVISZZA + cheat + description:Shoot shorter rays + code:AOVSOZAZ + cheat + description:Shoot longer rays + code:ASVSOZAZ + cheat + description:Enemy can go thru gold bars + code:AASIAYGA + cheat + description:Start with 1 life - both players + code:PAGKGL + cheat + description:Start with 10 lives - both players + code:APGKGL + cheat + description:Start with 1 life - P2 + code:VTSKPLSA + +cartridge sha256:711eee6690af76a59321f49c8dbfec39eef702775e6cc2a1e63553b40fa3aa5f + name:Cobra Command (USA) + cheat + description:Immune to weapon damage + code:GZSSNGST + cheat + description:Start with infinite lives + code:SXUAAOVK + cheat + description:Start with 1 life + code:AAUVGZGA + cheat + description:Start with 9 lives + code:AAUVGZGE + cheat + description:Start with Infinite lives (alt) + code:05BB:09 + cheat + description:Start with Dual Gun + code:05A5:01 + cheat + description:Start with ATG + code:05A5:02 + cheat + description:Start with Rapid Fire + code:05A5:03 + cheat + description:Start with 3-Way Gun + code:05A5:04 + cheat + description:Start with Twin Missiles + code:05A6:01 + cheat + description:Start with Homing Missiles + code:05A6:02 + cheat + description:Start with Homing Missiles 1 + code:05A6:03 + cheat + description:Start with Homing Missiles 2 + code:05A6:04 + cheat + description:Start with Firebomb + code:05A6:05 + cheat + description:Start with Mines + code:05A6:06 + cheat + description:Start with Armor + code:05A7:01 + cheat + description:Start with Super Armor + code:05A7:02 + cheat + description:Start with Hyper Armor + code:05A7:03 + cheat + description:Start with Turbo Engine + code:05A8:01 + cheat + description:Start with Super Engine + code:05A8:02 + cheat + description:Start with Hyper Engine + code:05A8:03 + cheat + description:Start with Rope + code:05A9:00 + cheat + description:Start with Ladder + code:05A9:01 + +cartridge sha256:db26936868427b5b01b7823a781ec09ed15bb5dd06945bba0147ffb12215234b + name:Cobra Triangle (USA) + cheat + description:Invincibility + code:ATVXKLEI + cheat + description:Infinite continue options + code:SZUXZVVK + cheat + description:Don't lose life after dying from damage + code:SZEVNOVK + cheat + description:Don't lose life after dying from time running out + code:SZVTSOVK + cheat + description:Never lose your power-ups + code:ENXTPVSA+LEXTZVAX + cheat + description:Hit anywhere + code:EIXLPGEL+ESKZXGEL+KPULZGNO+OLKXOSOO+TAXLZGZO+YOKZUKZP + cheat + description:Gain an extra minute + code:VVXEAUSE+LOXEPLIP + cheat + description:Invincibility (blinking) + code:00B9:1A + cheat + description:Infinite health + code:05F5:0C + cheat + description:Infinite lives + code:0738:09 + cheat + description:Infinite time (disable before finishing a level) + code:0714:05 + cheat + description:Boss HP will be at minimum + code:05FF:00 + cheat + description:Max Missile power + code:072C:03 + cheat + description:Max Speed + code:072B:03 + cheat + description:One 1 mine needed for mine removing stages + code:00A3:00 + cheat + description:Start on stage 2 (disable after stage begins) + code:0702:02+0737:01 + cheat + description:Start on stage 3 (disable after stage begins) + code:0702:03+0737:02 + cheat + description:Start on stage 4 (disable after stage begins) + code:0702:04+0737:03 + cheat + description:Start on stage 5 (disable after stage begins) + code:0702:05+0737:04 + cheat + description:Start on stage 6 (disable after stage begins) + code:0702:06+0737:05 + cheat + description:Start on stage 7 (disable after stage begins) + code:0702:07+0737:06 + cheat + description:Start on stage 8 (disable after stage begins) + code:0702:08+0737:07 + cheat + description:Start on stage 9 (disable after stage begins) + code:0702:09+0737:08 + cheat + description:Start on stage 10 (disable after stage begins) + code:0702:0A+0737:09 + cheat + description:Start on stage 11 (disable after stage begins) + code:0702:0B+0737:0A + cheat + description:Start on stage 12 (disable after stage begins) + code:0702:0C+0737:0B + cheat + description:Start on stage 13 (disable after stage begins) + code:0702:0D+0737:0C + cheat + description:Start on stage 14 (disable after stage begins) + code:0702:0E+0737:0D + cheat + description:Start on stage 15 (disable after stage begins) + code:0702:0F+0737:0E + cheat + description:Start on stage 16 (disable after stage begins) + code:0702:10+0737:0F + cheat + description:Start on stage 17 (disable after stage begins) + code:0702:11+0737:10 + cheat + description:Start on stage 18 (disable after stage begins) + code:0702:12+0737:11 + cheat + description:Start on stage 19 (disable after stage begins) + code:0702:13+0737:12 + cheat + description:Start on stage 20 (disable after stage begins) + code:0702:14+0737:13 + cheat + description:Start on stage 21 (disable after stage begins) + code:0702:15+0737:14 + cheat + description:Start on stage 22 (disable after stage begins) + code:0702:16+0737:15 + cheat + description:Start on stage 23 (disable after stage begins) + code:0702:17+0737:16 + cheat + description:Start on stage 24 (disable after stage begins) + code:0702:18+0737:17 + cheat + description:Start on stage 25 (disable after stage begins) + code:0702:19+0737:18 + +cartridge sha256:2be0bd6e64cf2cb47c7b4a2d6bdb5fd4ff9ed1cd5eb6eadb4d56c410c659bdc5 + name:Code Name - Viper (USA) + cheat + description:Invincibility + code:SZSSGIAX + cheat + description:Infinite health + code:STVPVOON+AASOVZPA + cheat + description:Infinite health (alt) + code:SZVOSOSE + cheat + description:Infinite lives + code:SZOVKNVK + cheat + description:Infinite Gun + code:AENXZPPA + cheat + description:Infinite Machine Gun + code:AAOXLZPA + cheat + description:Hit anywhere + code:AASIVEAL+APOOSGLA+GLXPEGLP+SZOOKKSU + cheat + description:Double usual bullets on new life + code:GTOVEYZL + cheat + description:Half bullets on new life + code:PPOVEYZU + cheat + description:Machine Gun with 256 bullets on new life + code:VTOTONSE + cheat + description:Upper level jump + code:SXKEVNOU+ONEOYEXN + cheat + description:Keep Machine Gun after dying + code:GZOTONSE+GZEVVNSE + cheat + description:Have Bomb (can exit level without the Bomb) + code:AEESIIGA + cheat + description:Start with 1 life + code:PENTAGLA + cheat + description:Start with 6 lives + code:TENTAGLA + cheat + description:Start with 9 lives + code:PENTAGLE + cheat + description:Start with Machine Gun and 256 bullets + code:VVNVGKSE + cheat + description:Start with double usual bullets + code:GTETLIZL + cheat + description:Start with half usual bullets + code:PPETLIZU + cheat + description:Infinite health (alt) + code:06F8:04 + cheat + description:Infinite lives + code:06E8:0A + cheat + description:Infinite Gun (alt) + code:06E0:3F + cheat + description:Infinite Machine Gun (alt) + code:06E2:3F + cheat + description:Have all children rescued + code:06EA:09 + cheat + description:Have all adults rescued + code:06EC:09 + cheat + description:Have all adults and children rescued + code:0757:FF + +cartridge sha256:47ebed8be6679468d0627065153520a539b292244b51c54263c027e106b6ef65 + name:Colorful Dragon (Asia) (PAL) (Unl) + cheat + description:Invincibility + code:EIEPXZEY + cheat + description:Infinite lives + code:SUUOKPVI + cheat + description:Start on level 2 + code:ZAUAYAPA + cheat + description:Start on level 5 + code:IAUAYAPA + cheat + description:Start on level 10 + code:ZAUAYAPE + cheat + description:Start on level 15 + code:YAUAYAPE + cheat + description:Start on level 20 + code:GPUAYAPA + +cartridge sha256:0512b4aa2220f74e40fe8652b758893fa87efb6c3407808f7dda0e1901017432 + name:Commando (USA) + cheat + description:Invincibility + code:ATNITPSA + cheat + description:Infinite Grenades + code:XVULASXK + cheat + description:Infinite lives + code:EZEGNOVG + cheat + description:Infinite lives (alt) + code:SZEGNOVK + cheat + description:Start with 1 life - both players + code:AEKKIILA + cheat + description:Start with 6 lives - both players + code:TEKKIILA + cheat + description:Start with 9 lives - both players + code:PEKKIILE + cheat + description:Start with double rations of grenades + code:AOSGIIIA + cheat + description:Have all power-ups - both players + code:04AB:E9 + cheat + description:Have rapid fire - both players + code:0074:00 + +cartridge sha256:8ae9b624c08b86f6af41b5d58c328188c6df9c35868ae0763d75a22fbfb6c712 + name:Conan (USA) + cheat + description:Invincibility + code:SXUEYYAX+SZVAPGAX + cheat + description:Infinite lives + code:SXKISTVG+SZVSULVG + cheat + description:Infinite health + code:SXSTOOSE + +cartridge sha256:a5b8e24589539b0b84a6ad98aee9c91eb86eff795162be38b020dc42c3e3eca7 + name:Conquest of the Crystal Palace (USA) + cheat + description:Invincibility + code:ESVIYPEY+SEVIIPSZ + cheat + description:Invincibility (alt) + code:SXOVLIAX + cheat + description:Infinite lives + code:GZVTAPAX + cheat + description:Infinite lives (alt) + code:SZVTLPSA + cheat + description:Infinite energy (will display wrong info) + code:VVKSZOSU + cheat + description:Infinite energy for Farron + code:SXXTAIAX + cheat + description:Infinite fire power + code:SUPILU + cheat + description:Maximum energy without Life Crystal + code:GPEYUXTA + cheat + description:Don't use up money when buying things + code:GZXVPPAX+GZUTZPAX + cheat + description:Super-jump without Flight Crystal + code:AAVIGTZA+PAVITTLA + cheat + description:Increase super-jump to mega-jump + code:IOUSLVTA + cheat + description:Increase super-jump to super-mega-jump + code:IKUSLVTA + +cartridge sha256:62c9d4e0578cb1e615ce9bb2c8ebc15b1e8de4c928c5c07ba9a85c11aa36ae4d + name:Contra (Japan) + cheat + description:Invincibility + code:SXNVZPAX + cheat + description:Infinite lives + code:SZUSOPVI + +cartridge sha256:d41e28b1a33b3b6768e7c39c9fdfb1fda4b49940542d14085911fabd399e1ca9 + name:Contra (USA) + cheat + description:Invincibility + code:SXKVPZAX + cheat + description:Invincibility (blinking) + code:SLTIYG + cheat + description:Invincibility (blinking) (alt) + code:AAVITGIA + cheat + description:Hit anywhere + code:ESEVALEP+GXXTPLEL+GZNVYLEL+SXKTYLAX + cheat + description:Multi-jump - both players + code:AZNITGSL+NPNIYGEU+VINSAGEY+XTNSPKAE+SUEIAGVI+SUVSOPSP+ATKSZSOZ + cheat + description:Jump higher + code:UNVSYVKN+XNVSPVUN + cheat + description:Run 2x as fast + code:VYVIPNNN+ZASSIYPA + cheat + description:Run 4x as fast + code:GASSIYPA+KYVIPNNN + cheat + description:Keep weapons after losing life + code:GXIIUX + cheat + description:Press Select to change weapons - P1 + code:GGXNIVNN+IZOYLVNY+KZOYZVNY+PZONYVNN+LAOYIVNY+SAXNPVNY+LIOYYVNY+SZXNLVNY+OGXYPVNN+YAXYAVNY+SYXNGVNY+OZXYIVNN+ZAXYGVNY+SZONIVNY+PAXNAVNY+ZPKILAIZ+TAONGVNN+PTXYYVNN+TGXNTVNY+PZONPVNN+VYKIGAEI+XZONTVNN+XZXNZVNN+AZONZVNY+EIONAVNY+EIXNYVNY+EIXYLVNY+EYONLVNY+EYOYGVNY+GAXYZVNY+GGKIZAKX+GGOYTVNN + cheat + description:Press Start to complete the level + code:LLKSIAIX + cheat + description:Start with infinite lives + code:SLAIUZ + cheat + description:Start new life with Machine Gun + code:PEIIXZ + cheat + description:Start new life with Fireball + code:ZEIIXZ + cheat + description:Start new life with Spread Gun + code:LEIIXZ + cheat + description:Start new life with Laser + code:GEIIXZ + cheat + description:Start on level 2 + code:ALNKPKYL+PANGIGAA + cheat + description:Start on level 3 + code:ALNKPKYL+ZANGIGAA + cheat + description:Start on level 4 + code:ALNKPKYL+LANGIGAA + cheat + description:Start on level 5 + code:ALNKPKYL+GANGIGAA + cheat + description:Start on level 6 + code:ALNKPKYL+IANGIGAA + cheat + description:Start on level 7 + code:ALNKPKYL+TANGIGAA + cheat + description:Start on level 8 + code:ALNKPKYL+YANGIGAA + cheat + description:Invincibility (star effect) - P1 + code:00B0:FE + cheat + description:Invincibility (star effect) - P2 + code:00B1:FE + cheat + description:Invincibility (blinking) (alt 2) + code:00AE:41 + cheat + description:Have 99 lives + code:0032:99 + cheat + description:Have Machine Gun - P1 + code:00AA:01 + cheat + description:Have Fireball - P1 + code:00AA:02 + cheat + description:Have Spread Gun - P1 + code:00AA:03 + cheat + description:Have Laser - P1 + code:00AA:04 + cheat + description:Have Clone Attack (glitch weapon) - P1 + code:00AA:18 + cheat + description:Have Machine Gun - P2 + code:00AB:01 + cheat + description:Have Fireball - P2 + code:00AB:02 + cheat + description:Have Spread Gun - P2 + code:00AB:03 + cheat + description:Have Laser - P2 + code:00AB:04 + cheat + description:Have Clone Attack (glitch weapon) - P2 + code:00AB:18 + +cartridge sha256:0c190a8a7bfb57d7887e70183560db46fb5336abf569f6a38f5452fa32f1339f + name:Contra Force (USA) + cheat + description:Invincibility + code:SXKXZIAX+SXUZPIAX + cheat + description:Infinite lives (alt) + code:OUOXVKOO + cheat + description:Infinite lives - all characters + code:AANVIAPA + cheat + description:Keep weapons after death + code:OUEXNKOO + cheat + description:Start with 9 lives - all characters + code:PAUYTTLE + cheat + description:Start with 6 lives - all characters + code:TAUYTTLA + cheat + description:Start with 1 life - all characters + code:PAUYTTLA + +cartridge sha256:22ea833fd9466795bd2b05df96a47081ca45a26f545af1242f4c89b2d6688bdd + name:Cool World (USA) + cheat + description:Infinite lives + code:GXUVTKVK + cheat + description:Infinite Bombs + code:SXSTOTVG + cheat + description:Infinite Erasers + code:SXVVKTVG + cheat + description:Lots of Erasers + code:AZNZEYAE + cheat + description:Start with 3 Bombs + code:LEVLGZPA + cheat + description:Start with 6 Bombs + code:TEVLGZPA + cheat + description:Start with 9 Bombs + code:PEVLGZPE + cheat + description:Start with 2 lives + code:PEKGYAZA+PAKZKYZA + cheat + description:Start with 7 lives + code:TEKGYAZA+TAKZKYZA + cheat + description:Start with 10 lives + code:PEKGYAZE+PAKZKYZE + cheat + description:Start with 3 Erasers + code:LEKKGAPA+LAVXXYPA + cheat + description:Start with 6 Erasers + code:TEKKGAPA+TAVXXYPA + cheat + description:Start with 9 Erasers + code:PEKKGAPE+PAVXXYPE + cheat + description:Infinite energy + code:04E8:00 + +cartridge sha256:528d501320ed0276bbc542f03c7c05fb59f9eeb540cd0d39e7286b1542aa153a + name:Cowboy Kid (USA) + cheat + description:Infinite lives + code:OUNKEUOO + cheat + description:Infinite health + code:0698:08 + +cartridge sha256:23b16928a7615ec599536b17dd2026370e2e1a13835f61276ea383d6b4d3f8c0 + name:Crackout (USA) (Proto) + cheat + description:Infinite lives + code:SZNUXAVG + +cartridge sha256:fda4fd839497634df5e77b1842f88c05ffa0ac13a894c9ea288aedcd168489c3 + name:Crash 'n' the Boys - Street Challenge (USA) + cheat + description:Start with 99 Gold + code:OOVUAIIE + cheat + description:Start with 50 Gold + code:ASVUAIIA + +cartridge sha256:b504d0ebff8aa6439f1f9606526d8739f5007c1fdac31f9550caa7ca26edce16 + name:Crisis Force (Japan) + cheat + description:Infinite lives + code:SUNEITVI + cheat + description:Infinite Bombs + code:SLOEGVVS + cheat + description:Start on stage 2 + code:PAOGKLAA + cheat + description:Start on stage 3 + code:ZAOGKLAA + cheat + description:Start on stage 4 + code:LAOGKLAA + cheat + description:Start on stage 5 + code:GAOGKLAA + cheat + description:Start on stage 6 + code:IAOGKLAA + cheat + description:Start on stage 7 + code:TAOGKLAA + +cartridge sha256:7eca4ce264363ab8cc2c9aeb52f2e5be43a72a8223bac977492c7f8d78a49fb4 + name:Cross Fire (USA) (Proto) + cheat + description:Invincibility + code:ENVOALEI+ESVPLLEY + cheat + description:Infinite energy + code:OZNEPYES+SANELNSX + cheat + description:Infinite lives + code:SXUEYOVK + cheat + description:Protection from enemies + code:SXNNUXSE+SZEXLEVK + +cartridge sha256:5ad644d368f70b61700b74a1d04778888efcbbf98d5435d79f9fcefd23ac39c2 + name:Crystalis (USA) + cheat + description:Always fire charged shot + code:OZNOOKZK+PANOXKZG + cheat + description:Always fire bracelet charged shot + code:OZNOOKZK+LANOXKZG + cheat + description:Faster sword charge + code:AAOPETLA + cheat + description:Allow sword charge while moving + code:SZEPEVGK + cheat + description:First pupil gives you more gold + code:NYVSPZGV + cheat + description:Magic doesn't use up MP + code:SXNOVXSE + cheat + description:Immune to poison + code:AASVVNYA + cheat + description:Immune to paralysis + code:AEKTSNYA + cheat + description:Stronger poison + code:TEOTVYGA + cheat + description:Weaker poison + code:ZEOTVYGA + cheat + description:Walk through walls + code:AEKOUPTA + cheat + description:Don't get charged for boarding at Inn + code:SZUOIVSE+SZKPLVSE + cheat + description:Don't get charged for items in shops + code:SXVPUOSE+SXVOOOSE + cheat + description:Start with some gold + code:VVOGUOSE + +cartridge sha256:e239709320fca149b40a1f04625741dc2b6d3b9cc933d4062882ad762fa67ca7 + name:Cyberball (USA) + cheat + description:Infinite level time + code:SXUYAKVK + cheat + description:Start with level time at 1 minute + code:PENOYLLA + cheat + description:Start with level time at 2 minutes + code:ZENOYLLA + cheat + description:Start with level time at 5 minutes + code:IENOYLLA + cheat + description:Start with level time at 9 minutes + code:PENOYLLE + cheat + description:Goals worth 0 points + code:AAXEZAZA + cheat + description:Goals worth 1 points + code:PAXEZAZA + cheat + description:Goals worth 5 points + code:IAXEZAZA + cheat + description:Goals worth 9 points + code:PAXEZAZE + cheat + description:Goals worth mega points + code:LTXEZAZA + +cartridge sha256:ad1e14d08657d99c8b70f779931f62524b4beb529090b82b368925d8b642e40c + name:Cybernoid - The Fighting Machine (USA) + cheat + description:Infinite Bombs + code:SZNPVOVK + cheat + description:Infinite Genocides + code:SXEUSSVK + cheat + description:Infinite Shields + code:SXOPUSVK + cheat + description:Infinite Seekers + code:SZNOLNVK + cheat + description:20 Genocides on new life + code:GOOZZPZA + cheat + description:Keep rear laser after death + code:GZKZZOSE + cheat + description:Keep mace after death + code:GZKXAOSE+GZKZIOSE + cheat + description:Start with rear laser + code:NNOEPPAE + cheat + description:Start with infinite lives + code:SZVZGOVK + cheat + description:Start new life with 20 shields + code:GPUETZPA+GOOZYPPA + cheat + description:Start with 20 seekers and bouncers + code:GPKAZZIA+GOOXGPIA + cheat + description:Start with double Bombs + code:AZUALZGO+AXEXIPGO + cheat + description:Start with 1 life + code:NYEATXNY + cheat + description:Start with 5 lives + code:UYEATXNN + cheat + description:Start with 18 lives + code:AAEATXNN + cheat + description:Invincibility + code:06D4:00 + cheat + description:Infinite lives + code:06D5:FF + +cartridge sha256:9d832956a533292e740be553e0eb46d3a3d449578bcbaa9c7556a31d2b6a594d + name:D.J. Boy (Unl) + cheat + description:Infinite health + code:SZVAZVSO + cheat + description:Infinite time + code:SZOENISA + cheat + description:Infinite lives + code:SXENAYVG + +cartridge sha256:4cbf1c1d0be227127513065ccbc8ecf5e5ee61a7a58b6dea79ff01f0eb9f26af + name:Danny Sullivan's Indy Heat (USA) + cheat + description:Infinite turbos + code:SZELSOVS + cheat + description:Infinite fuel + code:SXVASVSO + cheat + description:Everything costs how much you have + code:SVKLTOSO + cheat + description:Don't take damage in the front + code:OUVZAXOO + cheat + description:Start with $255,000 + code:NYUOZLGV + +cartridge sha256:9b6d967f493a565e25b51aee044354f857c5cefc41f476d4f259e7368b1fdd70 + name:Darkman (USA) + cheat + description:Infinite health + code:SXKGUSSE + cheat + description:Infinite health (alt) + code:0496:37+04B5:37 + cheat + description:Infinite lives + code:0497:04 + cheat + description:Multi-jump + code:AAKATNIP+AAUATNTI + cheat + description:Hit anywhere - side-scrolling levels + code:GXEOVGEI+GXEPVGEY+GZVOKGEY + cheat + description:Never lose balance + code:ATSKSLEP + +cartridge sha256:f97f05a4f8747d81dc8adaf07df70d1f87366632ae3e93103d387043ef5ec508 + name:Darkwing Duck (USA) + cheat + description:Invincibility + code:EYUEIPEI + cheat + description:Infinite health + code:AVVNSOOG + cheat + description:Infinite lives + code:GZOGSUVK + cheat + description:Infinite lives (alt) + code:SGOGSUVK + cheat + description:Infinite gas (if you avoid the "Go" missions) + code:AVUEUOSZ + cheat + description:More gas on pick-up + code:IYEAKPAY + cheat + description:Start with infinite health + code:SXNYUOSE + cheat + description:Start with 2 lives + code:PYSKXPLY + cheat + description:Start with 6 lives + code:IYSKXPLY + cheat + description:Start with 9 lives + code:AYSKXPLN + +cartridge sha256:227e789fef94eabcf24a5ec9a3944de58b183bbc7d96140269d1c908f162b853 + name:Dash Galaxy in the Alien Asylum (USA) + cheat + description:Invincibility + code:XVUGLNSX + cheat + description:No damage from shots and collisions + code:AAEPZIPA + cheat + description:Infinite Oxygen + code:SZOPISVK + cheat + description:Infinite Bombs in elevator shaft + code:VTNSEXSX + cheat + description:Infinite Bombs in rooms + code:VVVSXXSX + cheat + description:Infinite Detonators in shafts + code:VVOSSXSX + cheat + description:Infinite Detonators in rooms + code:VTESNUSX + cheat + description:Infinite Keys in shafts + code:VTEZIKSX + cheat + description:Infinite Keys in rooms + code:VVOXTOSX + cheat + description:Can't lose lives in rooms + code:SZVPTOVK + cheat + description:Can't lose lives in elevator shaft + code:SZUPLOVK + cheat + description:Oxygen used up more slowly in shaft + code:NYSXAOAN + cheat + description:Oxygen used up more quickly in rooms + code:AYXXSNNY + cheat + description:Start with 1 life + code:PENPIALA + cheat + description:Start with 6 lives + code:TENPIALA + cheat + description:Start with 9 lives + code:PENPIALE + cheat + description:Start with 99 lives + code:LVNPIALA + cheat + description:Start on level 5 + code:OZEPOISE+IAEPXSVI + cheat + description:Start on level 10 + code:OZEPOISE+ZAEPXSVS + cheat + description:Start on level 15 + code:OZEPOISE+YAEPXSVS + cheat + description:Start on level 20 + code:OZEPOISE+GPEPXSVI + +cartridge sha256:41f949cfedf7167985f779c0782ee17ee83d82e35111c5f22ee5037f54313a06 + name:Day Dreamin' Davey (USA) + cheat + description:Infinite health + code:SXSPZGSA + cheat + description:Hit anywhere + code:AANLZKZG + cheat + description:Infinite health (alt) + code:0067:FF + cheat + description:Infinite Small Spears + code:0411:99 + cheat + description:Infinite Long Spears + code:0412:99 + cheat + description:Infinite One Rock + code:0413:99 + cheat + description:Infinite Three Rock + code:0414:99 + cheat + description:Infinite Four Rock + code:0415:99 + cheat + description:Infinite Potions + code:041F:99 + cheat + description:Infinite Red Potions + code:0420:99 + cheat + description:Have Key + code:0420:01 + cheat + description:Have Ring + code:0422:01 + cheat + description:Have Pendant + code:0423:01 + cheat + description:Have Sword + code:040E:01 + cheat + description:Have Long Lance + code:040F:01 + cheat + description:Have Long Sword + code:0410:01 + cheat + description:Walk through walls + code:CE42:00+CED9:00+CF64:00+CFE0:00 + +cartridge sha256:9371fab4f58fa6d6e5211950fdaff2810cccff512fc301e88af9c5b1bf586257 + name:Days of Thunder (USA) + cheat + description:Faster acceleration + code:SXEYPUSU + cheat + description:Tires don't burst + code:AAVOEXNY + cheat + description:Better left-hand cornering + code:SNXOSKEY + cheat + description:Maximum acceleration + code:IEUNLLLA+SXEYPUSU + cheat + description:Start with more fuel + code:NYKNIUNO + cheat + description:Start with less fuel + code:YIKNIUNO + cheat + description:Infinite fuel + code:021F:FF + cheat + description:Always 1st place + code:0464:01 + cheat + description:Always excellent condition - front left tire + code:046C:00 + cheat + description:Always excellent condition - front right tire + code:046D:00 + cheat + description:Always excellent conditon - rear left tire + code:046E:00 + cheat + description:Always excellent condition - rear right tire + code:046F:00 + cheat + description:Always excellent condition - engine + code:0471:00 + cheat + description:Max speed + code:0473:15 + cheat + description:Lap 02 + code:0463:02 + cheat + description:Lap 03 + code:0463:03 + cheat + description:Lap 04 + code:0463:04 + cheat + description:Lap 05 + code:0463:05 + cheat + description:Lap 06 + code:0463:06 + cheat + description:Lap 07 + code:0463:07 + cheat + description:Lap 08 + code:0463:08 + cheat + description:Lap 09 + code:0463:09 + cheat + description:Lap 10 + code:0463:0A + +cartridge sha256:0115356b0791cc8ddcb7d3163d6ef7aa664f3ff4e68dba561ffffb79eefcbca9 + name:Deadly Towers (USA) + cheat + description:Infinite HP + code:GXSONPST + cheat + description:1 Ludder gives 10 on pick-up + code:ZEUPKYPE + cheat + description:5 Ludder gives 20 on pick-up + code:GOUPUYIA + cheat + description:Shopkeeper forgets to charge you + code:GXUGLVON + cheat + description:Start with 127 Ludder + code:YYXELPZU + cheat + description:Start with 75 Ludder + code:LGXELPZU + cheat + description:Always max Ludder + code:009B:FA + cheat + description:Max HP + code:01B3:FF + cheat + description:All belts burned (door on the right in the beginning of the game is now open) + code:01B4:07 + cheat + description:Slot 1 - Splendor (game's best sword) + code:0176:10 + cheat + description:Slot 2 - Hyper Helm + code:0177:04 + cheat + description:Slot 3 - Shield Of Kings + code:0178:08 + cheat + description:Slot 4 - Hyper Armor + code:0179:0C + cheat + description:Slot 5 - Hyper Boots + code:017A:14 + cheat + description:Slot 6 - Parallel Shot + code:017B:1A + +cartridge sha256:32aeef6bae170d2628d9c678f0b198a61e787a498a995eb374518635f0b55199 + name:Deathbots (USA) (Rev 1) (Unl) + cheat + description:Infinite energy + code:SLNZOXSO + cheat + description:Infinite lives + code:SXXZIEVK + cheat + description:Infinite shots + code:OLUZEVOO + +cartridge sha256:5dac8da44ac4e28bebf3d33c8e00e1fdffcc7baee3ff98bec5a10415d1226791 + name:Deathbots (USA) (Unl) + cheat + description:Infinite energy + code:SLNZOXSO + cheat + description:Infinite lives + code:SXXZIEVK + cheat + description:Infinite shots + code:OLUZEVOO + +cartridge sha256:bf58512dc3bc427d14a6d851445801967cd14f3d02ae236eabceeb7928a55462 + name:Defender II (USA) + cheat + description:Invincibility + code:SXVIOTSA + cheat + description:Infinite lives + code:GXTGEY + cheat + description:Infinite Smart Bombs + code:GXYSGI + cheat + description:Super speed + code:YAZVPG+YETVIL + cheat + description:Start with 1 life + code:PELGNY + cheat + description:Start with 6 lives + code:TELGNY + cheat + description:Start with 9 lives + code:PELGNN + +cartridge sha256:9e31d3d918a352c0c5a81c52efc364253f3fb75cc84151ee904ad078be62d8e1 + name:Defender of the Crown (USA) + cheat + description:Only 10 soldiers in your Garrison + code:ZAVVALGO + cheat + description:40 soldiers in your Garrison + code:AZVVALGO + cheat + description:Soldiers for free + code:AAEOUPPA + cheat + description:Triple the cost of soldiers + code:LAEOUPPA + cheat + description:Halve the cost of knights + code:GAEOKOAA + cheat + description:Double the cost of knights + code:APEOKOAA + cheat + description:Halve the cost of catapults + code:YAEOSOYA + cheat + description:Halve the cost of castles + code:ZAEOVPGO + +cartridge sha256:c408dd19ca49e55173ff2c491868f437d8100671f7b9646ee20e3204e0ba216f + name:Demon Sword - Release the Power (USA) + cheat + description:Invincibility + code:SZUEUZAX + cheat + description:Infinite health (life) + code:SZKGTTSA + cheat + description:Infinite powers and lives + code:AESVLTPA + cheat + description:Infinite lives + code:SXSIYASA + cheat + description:Phoenix always rescues you + code:VTVTAESX + cheat + description:Infinite Fire, Lightning, Power Beams on pick-up + code:SLNNANSO + cheat + description:Hit anywhere + code:ALXGAYSU+ATXGPNEP+SXNKPVGK + cheat + description:Extra dart strength + code:VTNXAOSE + cheat + description:Start with 44 Red Spheres + code:XZNZGPSA+VEEZYOSE + cheat + description:Start with 44 Black Spheres + code:XZNZGPSA+VEEXZOSE + cheat + description:Start with 44 Fire Spheres + code:XZNZGPSA+VANXLOSE + cheat + description:Start with 44 Lightning Bolts + code:XZNZGPSA+VANXTOSE + cheat + description:Start with 44 Power Beams + code:XZNZGPSA+VEEZPOSE + cheat + description:Start with 1 life + code:AEVSUIZA + cheat + description:Start with 6 lives + code:IEVSUIZA + cheat + description:Start with 9 lives + code:AEVSUIZE + cheat + description:Start on level 2 + code:ATNXAOSA+PANZLPAA + cheat + description:Start on level 3 + code:ATNXAOSA+ZANZLPAA + cheat + description:Start on level 4 + code:ATNXAOSA+LANZLPAA + cheat + description:Start on level 5 + code:ATNXAOSA+GANZLPAA + cheat + description:Start on level 6 + code:ATNXAOSA+IANZLPAA + cheat + description:Infinite health (life) (alt) + code:007E:08 + cheat + description:Infinite Power + code:007C:0F + cheat + description:Infinite lives (alt) + code:007D:99 + cheat + description:Infinite Keys + code:0207:99 + cheat + description:Infinite Red Spheres + code:0208:99 + cheat + description:Infinite Black Spheres + code:0209:99 + cheat + description:Infinite Phoenix + code:020A:99 + +cartridge sha256:4b13643e53f2f7b43075233eebe65489d1d0a4ce3cf71a4f934178c3091930cf + name:Dengeki - Big Bang! (Japan) + cheat + description:Invincibility (blinking) + code:EOSOPALA+GXSPPAEY+OXSOAAES + +cartridge sha256:281ad7bdb4f94e2303d95c6078c20295e240b80370fdceda27950966b0e09198 + name:Desert Commander (USA) + cheat + description:Start with 99 Tank units + code:0084:63 + cheat + description:Start with 99 Tank #2 units + code:0085:63 + cheat + description:Start with 99 Truck units + code:0086:63 + cheat + description:Start with 99 Troop units + code:0087:63 + cheat + description:Start with 99 Grenade units + code:0088:63 + cheat + description:Start with 99 Stationary Artillery units + code:0089:63 + cheat + description:Start with 99 Transport Truck units + code:008A:63 + cheat + description:Start with 99 Heavy Airplane units + code:008B:63 + cheat + description:Start with 99 Light Airplane units + code:008C:63 + +cartridge sha256:44cd6b2aa05286c37e78bd04d15793018bb0656b24260e5c76fc5cfad39f699b + name:Destination Earthstar (USA) + cheat + description:Infinite lives + code:SXVSVIVG + cheat + description:Less energy + code:ISNEUUOP + cheat + description:More energy + code:NNNEUUOO + cheat + description:Don't lose special weapon in sub-game + code:XTNVSNXK + cheat + description:Start with 1 life + code:PAVTXGLA + cheat + description:Infinite energy (ten-thousand's digit) + code:05A8:99 + cheat + description:Infinite energy (hundred's digit) + code:05A9:75 + cheat + description:Infinite energy (ten's and one's digit) + code:05AA:76 + cheat + description:Infinite Ruby Laser + code:05AD:FF + cheat + description:Infinite Torpedos + code:05AF:FF + +cartridge sha256:6d082c801942ce6787b471428ab4c8a6acb3e21f3f38fa197f2aeb698d9a2d7e + name:Destiny of an Emperor (USA) + cheat + description:Buy 300 provisions for no money + code:AEKPZZGT + cheat + description:Buy 30,000 provisions for no money + code:AEKPIZYZ+AEKPTZAP + cheat + description:Dagger costs nothing + code:AENLULZL + cheat + description:Bandana costs nothing + code:AEVLKGZL + cheat + description:Flail costs nothing + code:AENUKLGT + cheat + description:Robe costs nothing + code:AEXLXGGT + cheat + description:Elixir A costs nothing + code:AEUUXLGP + cheat + description:Resurrect costs nothing + code:AEXUVLGT + cheat + description:Steed costs nothing + code:AEXLVUEG + cheat + description:Gullwing costs nothing + code:AEEUKUEG + cheat + description:Leather costs nothing + code:AEXUOKGZ+AEXUXGPA + +cartridge sha256:163479e2b1571538cf2f0f147bcbdebaab8ed8b0251f87dabd9bc4c80d786ea1 + name:Dick Tracy (USA) + cheat + description:Infinite health + code:GXVOINSV + cheat + description:Infinite hand gun bullets + code:SZXZEOVK + cheat + description:Infinite machine gun bullets + code:SXVXZEVK + cheat + description:Infinite super punches + code:SZKZIXVK + cheat + description:Infinite tear gas + code:SZEXIXVK + cheat + description:More super punches on pick-up + code:GOEPIOZA + cheat + description:Mega-jump + code:KYVZAANY + cheat + description:Take more damage + code:AOVOGNAU + cheat + description:Infinite health (alt) + code:0663:09 + cheat + description:Infinite hand gun bullets (alt) + code:0761:31 + +cartridge sha256:e060fd43ef58d6e022f1fcab853a388142fd68d4bbd00dedc095992152e27976 + name:Die Hard (USA) + cheat + description:Infinite health against Pistol ammo + code:SXEZTYSA + cheat + description:Infinite health against Submachine Gun ammo + code:SXOZIYSA + cheat + description:Infinite health against punches + code:SXXZLYSA + cheat + description:Infinite Pistol ammo + code:ATNALXVG + cheat + description:Infinite Submachine Gun ammo + code:ATNEIXVG + cheat + description:Infinite ammo on all guns + code:ATVEIZSZ + cheat + description:Infinite time + code:AVUNGPSZ + cheat + description:Lose foot health very slowly + code:SXOYYUSE + cheat + description:Time runs at 1/4 normal speed + code:ENUYPOGL + cheat + description:Time runs at 1/3 normal speed + code:KUUYPOGL + cheat + description:Time runs at 1/2 normal speed + code:ANUYPOGU + cheat + description:Time runs at 2x normal speed + code:TOUYPOGU + cheat + description:Time runs at 3x normal speed + code:GOUYPOGL + cheat + description:Time runs at 4x normal speed + code:YEUYPOGU + cheat + description:Start with no Pistol shots instead of 15 + code:AEXGPOYA + cheat + description:Start with 5 Pistol ammo + code:IEXGPOYA + cheat + description:Start with 10 Pistol ammo + code:ZEXGPOYE + cheat + description:Start with 20 Pistol ammo + code:GOXGPOYA + cheat + description:Start with 25 Pistol ammo + code:POXGPOYE + cheat + description:Start with 1 life point instead of 16 + code:PEOKIPAP + cheat + description:Start with 2 life points + code:ZEOKIPAP + cheat + description:Start with 4 life points + code:GEOKIPAP + cheat + description:Start with 8 life point + code:AEOKIPAO + cheat + description:Start with 12 life points + code:GEOKIPAO + cheat + description:Start with 20 life points + code:GOOKIPAP + cheat + description:Invincibility + code:00A5:05 + cheat + description:Infinite health (alt) + code:00AC:10 + cheat + description:Infinite feet health + code:0798:00 + cheat + description:Infinite time (alt) + code:00AF:60 + cheat + description:Immune to flashes + code:00A8:00 + cheat + description:0 crooks left + code:00AB:00 + cheat + description:Have all items + code:0779:FF + cheat + description:Infinite pistol ammo (alt) + code:077A:14 + cheat + description:Infinite Submachine Gun ammo (alt) + code:077B:64 + cheat + description:Infinite Submachine Gun cartridges + code:077C:07 + cheat + description:Infinite C4 + code:077D:05 + cheat + description:Infinite flashes + code:077E:07 + +cartridge sha256:721c464598519132fbb62f74c39a5b0ef67d1b74ebc571e77d33b5b2b4fae8c4 + name:Digger - The Legend of the Lost City (USA) + cheat + description:Infinite health + code:SXSYOPVG + cheat + description:Infinite lives + code:SXVAYTVG + cheat + description:Less rocks on pick-up + code:IAUGZUPA + cheat + description:Infinite rocks on pick-up + code:SZEYTVVK + cheat + description:Infinite rope on pick-up + code:SXEUIUVK + cheat + description:Infinite dynamite on pick-up + code:SXEXTEVK + cheat + description:Start with weapons + code:PAONOGAE + cheat + description:Infinite time (disable before exiting stage) + code:0187:09 + +cartridge sha256:7c8b6add50b20e4612e3043df0671e701cd2aa163e4af864913e3940feee27f2 + name:Dig Dug (Japan) + cheat + description:Infinite lives - both players + code:0060:03 + cheat + description:Start on stage 25 (disable after loading stage) + code:006E:18 + cheat + description:Start on stage 50 (disable after loading stage) + code:006E:31 + cheat + description:Start on stage 75 (disable after loading stage) + code:006E:4A + cheat + description:Start on stage 99 (disable after loading stage) + code:006E:63 + +cartridge sha256:1bf92138500e24a4e48da6d1f2eecbaeb3f36d28a425f06179fe9283381640e6 + name:Dig Dug II - Trouble in Paradise (USA) + cheat + description:Instant inflate and explode + code:GZETIZEI + cheat + description:Never lose lives from touching water + code:SZXLSVVK + cheat + description:Never lose lives from Fygar's flame + code:SXVKLVVK + cheat + description:Never lose lives from hitting enemies + code:SXNIPEVK + cheat + description:Turbo speed + code:OZNYPUPX+ZANYZLLA + cheat + description:Start with 1 life - both players + code:PEETOPLA + cheat + description:Start with 8 lives - both players + code:AEETOPLE + +cartridge sha256:5aaa8382ec79c170472840dfd8e9d93512bdf2be09ecd6b3709a9d27658888cd + name:Dirty Harry (USA) + cheat + description:Infinite health + code:GXXGXGST + cheat + description:Infinite lives + code:SXUKOKVK + cheat + description:Maximum health from Chili Dogs + code:AEVLIPZA + cheat + description:Only 10 Magnum Bullets allowed + code:ZESSTSPO+ZEVIZSPO + cheat + description:50 Magnum Bullets allowed + code:ZUSSTSPP+ZUVIZSPP + cheat + description:Start with 1 life + code:PANSGIIA + cheat + description:Start with 10 lives + code:ZANSGIIE + cheat + description:Infinite Time Bombs + code:06D3 63 + cheat + description:Infinite Hot Dogs + code:06D4 63 + cheat + description:Infinite Spear Gun + code:06D5 63 + cheat + description:Infinite Bazooka + code:06D6 63 + cheat + description:Infinite Rope + code:06D7 63 + cheat + description:Infinite Armor Vest + code:06D8 63 + cheat + description:Infinite Mask + code:06D9 63 + cheat + description:Infinite Flashlight + code:06DA 63 + cheat + description:Infinite Prybars + code:06DB 63 + +cartridge sha256:65295da1f14578b659b6613be80d0516c2a4932dc6bc33bad2cc71a3154672e7 + name:Doki! Doki! Yuuenchi (Japan) + cheat + description:Invincibility + code:APEPPPAL + cheat + description:Infinite hits + code:SXVXENVK + cheat + description:Infinite lives + code:SXSSKNVK + +cartridge sha256:aa408f5a6b97c0d738e7e8b489a5617ad4a9ecdee2b05c4ee504210ce31b2825 + name:Donkey Kong (World) (Rev A) + cheat + description:Invincible against barrels + code:SXXVKGSA + cheat + description:Invincible against fireballs + code:SXUTXISA + cheat + description:Infinite lives + code:SXNGOZVG + cheat + description:Hammer lasts 3.4 times longer + code:NYUITVLK + cheat + description:Start with 1 life + code:PENKNPLA + cheat + description:Start with 9 lives + code:PENKNPLE + +cartridge sha256:b15b298dc37692d0bed2cbf922727ea48ed38bbd6cf3acdd28be6d2b9be344d3 + name:Donkey Kong 3 (World) + cheat + description:Invincibility + code:AVVGELEY + cheat + description:Reduce the time for pros + code:ZEKKGYEE + cheat + description:Normal spray more powerful + code:ZAOSZAPA + cheat + description:Normal spray longer + code:ZLOSLAAA + cheat + description:Spray cuts through baddies + code:AASSYPPA + cheat + description:Normal bees explode + code:AAKVZALL + cheat + description:Speeding Stanley + code:TEXKVGLA + cheat + description:Start with infinite lives + code:SZNKOPVI + cheat + description:Start with 1 life + code:PEEGITLA + cheat + description:Start with 9 lives + code:PEEGITLE + +cartridge sha256:950ebe68e7f74219b9e5e104200b03165d59c24264f02e32c12be967fd311ac2 + name:Donkey Kong Jr. (World) (Rev A) + cheat + description:Cannot die from falling from a high platform + code:PAUIEZIA + +cartridge sha256:07dd16464d769429c651bd203ac2e74c7aa5852824482ca8877959d643bc8689 + name:Donkey Kong Jr. Math (USA, Europe).nes + cheat + description:Always get the correct answer + code:AAKILSZA+AAUILSZP + +cartridge sha256:234c2f62cbc3c72eb7519425a1893229e19a3fd1b1630fb75f3e951960a300e5 + name:Donkey Kong Classics (USA, Europe) + cheat + description:Donkey Kong - Infinite lives + code:SXYAOP + cheat + description:Donkey Kong - Start with 1 life + code:PETANA + cheat + description:Donkey Kong - Start with 6 lives + code:TETANA + cheat + description:Donkey Kong - Start with 9 lives + code:PETANE + cheat + description:Donkey Kong - Controllable jump + code:AEVAVSIA + cheat + description:Donkey Kong - Keep hammer longer + code:EAKOLSLG + cheat + description:Donkey Kong Jr - Infinite lives + code:SZZGTP + cheat + description:Donkey Kong Jr - Start with 1 life + code:PATLST + cheat + description:Donkey Kong Jr - Start with 6 lives + code:TATLST + cheat + description:Donkey Kong Jr - Start with 9 lives + code:PATLSV + cheat + description:Donkey Kong Jr - Controllable jump + code:AEKGAUIA + cheat + description:Donkey Kong Jr - Faster single vine climbing + code:EAVGVIAG + cheat + description:Donkey Kong Jr - Can fall onto platforms + code:PAXIPAIA + cheat + description:Donkey Kong Jr - Speed up + code:EXSKSGEY+EXUKNGEY + +cartridge sha256:56cb5897c539b6874e311a314767df85186184690f10d9982b02cb90ff606537 + name:Double Dare (USA) + cheat + description:Infinite time to answer questions + code:SXXANUVK + +cartridge sha256:8f2f9ba926280edd3652745e1d04a30ecce64089fbf3f022a35b4039a2dd7b66 + name:Double Dragon (USA) + cheat + description:Infinite lives + code:EEUTLZZE + cheat + description:Infinite time + code:AAUNYLPA + cheat + description:Gain hearts quickly + code:VKKYXLVT + cheat + description:Gain a heart every time you hit an enemy + code:EKINNL + cheat + description:More health - P1 + code:XTKYOEZK + cheat + description:More health - P2 or computer + code:XTKNXEZK + cheat + description:No enemies + code:IIIOOO + cheat + description:Enemies will not fight back + code:IIIEOO + cheat + description:Slow motion + code:KOTKOK + cheat + description:Timer will count down faster + code:AZUYZLAL + cheat + description:Timer will count down super-fast + code:APUYZLAL + cheat + description:Disable level 4 wall trap + code:NYZSIU + cheat + description:Start with 1 life + code:AEUTLZZA + cheat + description:Start with 6 lives + code:IEUTLZZA + cheat + description:Start with 9 lives + code:AEUTLZZE + cheat + description:Infinite health + code:03B4:64 + cheat + description:Start with all hearts + code:0040:07 + cheat + description:Start on stage 2 (disable after stage begins) + code:003D:01 + cheat + description:Start on stage 3 (disable after stage begins) + code:003D:02 + cheat + description:Start on stage 4 (disable after stage begins) + code:003D:03 + +cartridge sha256:c564704993cf79c94db5c2954792e99e86100586d0ef1d4bf1aefc6d008d4c0f + name:Double Dragon II - The Revenge (USA) (Rev A) + cheat + description:No enemies + code:ZYZPPA + cheat + description:Never lose lives from falling + code:SZXAYKVS + cheat + description:Never lose lives from low energy + code:SXOANXVS + cheat + description:Never lose lives from water + code:SZVESUVS + cheat + description:Uppercut after only two punches + code:PAVUELZA + cheat + description:Slow down gameplay + code:NNEVOIAE + cheat + description:Start with 259 lives - P1 + code:NYSVETGE + cheat + description:Start with 8 lives - P1 + code:AASVETGE + cheat + description:Start with 8 lives - P2 + code:AAVVSTGE + cheat + description:Start with 1 life - P1 + code:PASVETGA + cheat + description:Start with 1 life - P2 + code:PAVVSTGA + cheat + description:Start on mission 2 + code:PAUTXTAA + cheat + description:Start on mission 3 + code:ZAUTXTAA + cheat + description:Start on mission 4 + code:LAUTXTAA + cheat + description:Start on mission 5 + code:IAUTXTAA + cheat + description:Start on mission 6 + code:TAUTXTAA + cheat + description:Start on mission 7 + code:PAUTXTAE + cheat + description:Start on mission 8 + code:GAUTXTAE + cheat + description:Start at final boss + code:TAUTXTAE + cheat + description:Start at final boss (alt) + code:TALTXV + cheat + description:Invincibility + code:03CC:F0 + cheat + description:Enemies die after one knockdown (disable at final boss) + code:0420:00+0421:00 + +cartridge sha256:f329de1e2653499221dc4d14d0e8b1040fee87bda4daccf6098b316a1a024fe2 + name:Double Dragon II - The Revenge (USA) + cheat + description:No enemies + code:ZYZPPA + cheat + description:Never lose lives from falling + code:SZXAYKVS + cheat + description:Never lose lives from low energy + code:SXOANXVS + cheat + description:Never lose lives from water + code:SZVESUVS + cheat + description:Uppercut after only two punches + code:PAVUELZA + cheat + description:Slow down gameplay + code:NNEVOIAE + cheat + description:Start with 259 lives - P1 + code:NYSVETGE + cheat + description:Start with 8 lives - P1 + code:AASVETGE + cheat + description:Start with 8 lives - P2 + code:AAVVSTGE + cheat + description:Start with 1 life - P1 + code:PASVETGA + cheat + description:Start with 1 life - P2 + code:PAVVSTGA + cheat + description:Start on mission 2 + code:PAUTXTAA + cheat + description:Start on mission 3 + code:ZAUTXTAA + cheat + description:Start on mission 4 + code:LAUTXTAA + cheat + description:Start on mission 5 + code:IAUTXTAA + cheat + description:Start on mission 6 + code:TAUTXTAA + cheat + description:Start on mission 7 + code:PAUTXTAE + cheat + description:Start on mission 8 + code:GAUTXTAE + cheat + description:Start at final boss + code:TAUTXTAE + cheat + description:Start at final boss (alt) + code:TALTXV + cheat + description:Invincibility + code:03CC:F0 + cheat + description:Enemies die after one knockdown (disable at final boss) + code:0420:00+0421:00 + +cartridge sha256:9f5891d333ea410c9a20f952ed21ec8b35c1b4f2a6fc2408fb2510921b64660f + name:Double Dragon III - The Sacred Stones (USA) + cheat + description:Infinite health - Bill, Jimmy and Chin + code:SZUUPAAX + cheat + description:Infinite special weapons - everyone + code:AAELIGPA+GZXUPUVS + cheat + description:More powerful punch, weapon and high kick + code:OZVLGASX + cheat + description:More health - Billy and Jimmy + code:GVEPXGGI + cheat + description:More health - Ranzou + code:GVEOXKZG + cheat + description:Less health - Billy and Jimmy + code:ZXEPXGGS + cheat + description:Less health - Ranzou + code:IXEOXKZG + cheat + description:Less health - Chin + code:ZUEONGGT + cheat + description:Start with Chin enabled + code:AEULUKYA + cheat + description:Start with Ranzou enabled + code:AEKLVKAA + cheat + description:Start with Jimmy enabled + code:AEKNPPIA + cheat + description:Start with 255 health - Billy and Jimmy + code:NNEPXGGS + cheat + description:Start with 255 health - Chin + code:NNEONGGV + cheat + description:Start with 255 health - Ranzou + code:NNEOXKZK + cheat + description:Start with 99 weapon use - Billy, Jimmy and Chin + code:LVOPKGIA + cheat + description:Infinite health - P1 + code:045D:40 + cheat + description:Infinite health - P2 + code:045E:40 + +cartridge sha256:eb0e5f318e84e931a9bd663764c43fefa1a78565fa1328c1544b41bc8155ccb1 + name:Double Dribble (USA) (Rev A) + cheat + description:CPU scores add to your score + code:KNEKPKEY + cheat + description:CPU never scores + code:KNEKPKEN + cheat + description:50 points - team 1 + code:07F4:50 + cheat + description:50 points - team 2 + code:07F8:50 + +cartridge sha256:f5517606d81d4e993d7fb86f11cae24c7b5029fd7184c7247771d6d7791e54ab + name:Double Dribble (USA) + cheat + description:CPU scores add to your score + code:KNEKPKEY + cheat + description:CPU never scores + code:KNEKPKEN + cheat + description:50 points - team 1 + code:07F4:50 + cheat + description:50 points - team 2 + code:07F8:50 + +cartridge sha256:ddc08430b83061814fec929872aa6df3abc1a624888a8e3eb3fa96abb8d32e36 + name:Double Moon Densetsu (Japan) + cheat + description:Play as girl + code:ESSUGTEY + +cartridge sha256:aa3b652591a7310e6e2cc025deabd9accf49506bd2313265fee67f2c5e83036a + name:Drac's Night Out (USA) (Proto) + cheat + description:Infinite Blood + code:SZSGAVSE + cheat + description:Infinite time + code:SVNKTSVV + +cartridge sha256:af505b8530b3303ebe0bf727730733cdbcd83ce1a19781d9487cd7cb202933c1 + name:Dragon Fighter (USA) + cheat + description:Invincibility + code:EYEVAIEI + cheat + description:Invincibility (alt) + code:004D:4F + cheat + description:Invincible to spikes + code:AESSILPA + cheat + description:Infinite health + code:SZSVGISA + cheat + description:Max Dragon energy + code:KAUIEGSZ + cheat + description:Always shoot special + code:YYXSYZAE + cheat + description:Infinite health (alt) + code:0050:08 + cheat + description:Max Dragon energy (alt) + code:0053:18 + cheat + description:Have green shots + code:004F:00 + cheat + description:Have red shots + code:004F:01 + cheat + description:Have blue shots + code:004F:02 + cheat + description:Hard mode + code:007B:01 + +cartridge sha256:038f2241fd6e58600ce234623be752cca47875ef7295fe92c30c328c81ffe7ec + name:Dragon Power (USA) + cheat + description:Infinite health (POW) + code:SZVOSZVG + cheat + description:Start with 128 health (POW) + code:EAXAILGT + cheat + description:Start with 24 Wind Waves (turtle shells) (hold B then press A) + code:KAOETLSA + cheat + description:Infinite health (POW) (alt) + code:002E:63 + cheat + description:Infinite Wind Waves (turtle shells) (hold B then press A) + code:012F:09 + cheat + description:Infinite Red Power Pole time (spin attack) + code:0036:0F + +cartridge sha256:901b7a9b3e8c0256bd091f845f48b0e7bd903f7456ce3dcea386cc1871fe70c1 + name:Dragon Spirit - The New Legend (USA) + cheat + description:Invincibility and three heads after one hit (blinking) + code:EXAXEU + cheat + description:Infinite health + code:OZVZOZVG + cheat + description:Hit anywhere + code:OXNLEIES+OXXLOIES + cheat + description:Always gold dragon + code:VEOIKAKA + cheat + description:Always blue dragon + code:KXOIKAKA + cheat + description:Invincibility + code:0588:00 + +cartridge sha256:5564e54943deddc6d290b256638c774aa379a0d33dcea3b0a4f0c4b9fc2034e3 + name:Dragon's Lair (USA) + cheat + description:Infinite E (health) + code:AEXSGEKY + cheat + description:Infinite Candle energy + code:SXKYUOVK+SXVYXOVK + cheat + description:Infinite lives + code:AAXITVNY + cheat + description:Less energy gained on pick-up + code:IAVNPYAP + cheat + description:More energy gained on pick-up + code:YZVNPYAP + cheat + description:Start with Axe + code:PEUIGIAA + cheat + description:Start with Fireball + code:ZEUIGIAA + cheat + description:Start with 1 extra life + code:NNXSGSUY + cheat + description:Start with 6 extra lives + code:KNXSGSUN + cheat + description:Start with 9 extra lives + code:NNXSGSUN + cheat + description:Start on level 2 + code:PANSZIAA + cheat + description:Start on level 3 + code:ZANSZIAA + cheat + description:Start on level 4 + code:LANSZIAA + cheat + description:Infinite E (health) (alt) + code:0330:1F + cheat + description:Infinite Gold (hundred's digit) + code:05EA:FF + cheat + description:Infinite Gold (ten's digit) + code:05EB:FF + cheat + description:Infinite Gold (one's digit) + code:05EC:FF + +cartridge sha256:abc5bcb459316a7d245065149ea72b5a8317f62fa6ed578569e15b670d3c0022 + name:Dragon Warrior (USA) + cheat + description:Infinite Magic Power + code:SXOIVLSA + cheat + description:Take no damage in swamp + code:AEVGUIZA + cheat + description:Start with 256 gold coins + code:VVOYYTSA + cheat + description:All spells use only one magic point + code:VKOIVLSA + cheat + description:Barriers cause half usual damage + code:YAKKEVYA + +cartridge sha256:c15ab051ff066f018cf4b0159780c58026114bb47a6376ef81c1571a39a8fe9b + name:Dragon Warrior II (USA) + cheat + description:Prince of Midenhall starts with 50 HP + code:ZUKLUSGP + cheat + description:Prince of Midenhall starts with 99 HP + code:LVKLUSGP + cheat + description:Prince of Midenhall starts with 40 strength points + code:AXKLOIIE + cheat + description:Prince of Midenhall starts with 80 strength points + code:ASKLOIIA + cheat + description:Prince of Midenhall starts with 40 agility points + code:AXKLXIGE + cheat + description:Prince of Midenhall starts with 80 agility points + code:ASKLXIGA + cheat + description:Prince of Cannock starts with 50 HP + code:ZUKLNSYP + cheat + description:Prince of Cannock starts with 99 HP + code:LVKLNSYP + cheat + description:Prince of Cannock starts with 40 strength points + code:AXKLSIGE + cheat + description:Prince of Cannock starts with 60 strength points + code:GUKLSIGE + cheat + description:Prince of Cannock starts with 30 agility points + code:TOKLVIGE + cheat + description:Prince of Cannock starts with 60 agility points + code:GUKLVIGE + cheat + description:Prince of Cannock starts with 40 magic points + code:AXKUEITE + cheat + description:Prince of Cannock starts with 60 magic points + code:GUKUEITE + cheat + description:Princess of Moonbrooke starts with 50 HP + code:ZUKUUIAZ + cheat + description:Princess of Moonbrooke starts with 99 HP + code:LVKUUIAZ + cheat + description:Princess of Moonbrooke starts with 25 strength points + code:POKUOIZE + cheat + description:Princess of Moonbrooke starts with 50 strength points + code:ZUKUOIZA + cheat + description:Princess of Moonbrooke starts with 40 agility points + code:AXKUXITO + cheat + description:Princess of Moonbrooke starts with 40 magic points + code:AXKUKSGO + +cartridge sha256:f91a8bfc25bd267f5ae77bafa7fc650f77f8e50067869e99682b32d5b410644e + name:Dragon Warrior III (USA) + cheat + description:King gives 255 gold + code:NYUOYPZU + cheat + description:King gives mega-gold + code:PASPZPAA + cheat + description:Player starts with increased strength and/or attack power + code:YTVUGZYE + cheat + description:Player starts with greatly increased strength and/or attack power + code:VYVUGZYE + cheat + description:Player starts with increased agility and/or defense + code:LTNLPZIA + cheat + description:Player starts with greatly increased agility and/or defense + code:NYNLPZIE + cheat + description:Player starts with increased vitality and/or HP + code:LTNLTZYA + cheat + description:Player starts with greatly increased vitality and/or HP + code:NYNLTZYE + cheat + description:Player starts with increased magic, maximum magic points and/or intelligence + code:LTNULZTA + cheat + description:Player starts with greatly increased magic, maximum magic points and/or intelligence + code:NYNULZTE + cheat + description:Player starts with increased luck + code:ZVELAZGA + cheat + description:Player starts with greatly increased luck + code:VNELAZGE + cheat + description:Wizard starts with increased strength and/or attack power + code:LTVUIZPA + cheat + description:Wizard starts with greatly increased strength and/or attack power + code:VYVUIZPE + cheat + description:Wizard starts with increased agility and/or defense + code:ZTNLZZGA + cheat + description:Wizard starts with greatly increased agility and/or defense + code:NYNLZZGE + cheat + description:Wizard starts with increased vitality and/or maximum HP + code:ZTNLYZZA + cheat + description:Wizard starts with greatly increased vitality and/or maximum HP + code:OPNLYZZE + cheat + description:Wizard starts with increased magic, intelligence and/or maximum magic + code:LTNUGXPA + cheat + description:Wizard starts with increased luck + code:LVELPZZA + cheat + description:Wizard starts with greatly increased luck + code:VNELPZZE + cheat + description:Pilgrim starts with increased strength and/or attack power + code:ZTVUTZLA + cheat + description:Pilgrim starts with greatly increased strength and/or attack power + code:VYVUTZLE + cheat + description:Pilgrim starts with increased agility and/or defense + code:ZTNLLZGA + cheat + description:Pilgrim starts with increased vitality and/or maximum HP + code:LTNUAZLA + cheat + description:Pilgrim starts with greatly increased vitality and/or maximum HP + code:VYNUAZLE + cheat + description:Pilgrim starts with increased magic and/or intelligence + code:LTNUIXAA + cheat + description:Pilgrim starts with greatly increased magic and/or intelligence + code:VYNUIXAE + cheat + description:Pilgrim starts with increased luck + code:ZVELZZLA + cheat + description:Pilgrim starts with greatly increased luck + code:VNELZZLE + cheat + description:Soldier starts with increased strength and/or attack power + code:LTNLAXPA + cheat + description:Soldier starts with greatly increased strength and/or attack power + code:VYNLAXPE + cheat + description:Soldier starts with increased agility and/or defense + code:ZTNLIZZA + cheat + description:Soldier starts with increased vitality and/or maximum HP + code:LTNUZZYA + cheat + description:Start with 6 battle-axes + code:IAOZENNY + cheat + description:Start with 6 broadswords + code:TAOZENNY + cheat + description:Start with 6 wizard's wands + code:YAOZENNY + cheat + description:Start with 6 demon's axes + code:YAOZENNN + cheat + description:Start with 6 multi-edge swords + code:GPOZENNY + cheat + description:Start with 6 staffs of force + code:IPOZENNY + cheat + description:Start with 6 swords of illusion + code:TPOZENNY + cheat + description:Start with 6 falcon swords + code:APOZENNN + cheat + description:Start with 6 armor of radiance + code:AZOZENNN + +cartridge sha256:e49cb745370065a40aff078ae52b5de1c0db137fedcbe93b78ab18d76479deed + name:Dragon Warrior IV (USA) + cheat + description:No damage and lose no MP - all members (don't combine with the "start with items" codes) + code:ATVATGSL + cheat + description:Start Chapter 1 with 25 gold + code:POSOAPZU + cheat + description:Start Chapter 1 with 100 gold + code:GVSOAPZL + cheat + description:Start Chapter 1 with 255 gold + code:NNSOAPZU + cheat + description:Start Chapter 1 with lots 'o gold + code:AIXOZAYS + cheat + description:Start Chapter 1 with 15 HP + code:YEEXYXLO + cheat + description:Start Chapter 1 with 100 HP + code:GVEXYXLP + cheat + description:Start Chapter 1 with 255 HP + code:NNEXYXLO + cheat + description:Start Chapter 1 with final key + code:LNKPLONY + cheat + description:Start Chapter 1 with metal babble sword + code:TEKPLONN + cheat + description:Start Chapter 1 with multi-edge sword + code:LOKPLONY + cheat + description:Start Chapter 1 with thorn whip + code:PEKPLONN + cheat + description:Start Chapter 1 with shield of strength + code:AKKPLONY + cheat + description:Start Chapter 1 with dragon shield + code:LKKPLONY + cheat + description:Start Chapter 1 with final key and chain sickle + code:LNKPLONY+GEKPGONY + cheat + description:Start Chapter 1 with metal babble sword and boomerang + code:TEKPLONN+LEKPGONN + cheat + description:Start Chapter 1 with multi-edge sword and wizard's ring + code:LOKPLONY+PSKPGONN + cheat + description:Start Chapter 1 with thorn whip and demon hammer + code:PEKPLONN+ZOKPGONY + cheat + description:Start Chapter 1 with shield of strength and meteorite armband + code:AKKPLONY+ASKPGONY + cheat + description:Start Chapter 1 with dragon shield and iron fan + code:LKKPLONY+IEKPGONN + cheat + description:Start Chapter 2 with 50 gold + code:ZUSOPPGT + cheat + description:Start Chapter 2 with 255 gold + code:NNSOPPGV + cheat + description:Start Chapter 2 with lots of gold + code:AIXOZAYS + cheat + description:Start Alena with 100 HP + code:GVOZAZAP + cheat + description:Start Alena with 255 HP + code:NNOZAZAO + cheat + description:Start Alena with final key + code:LNKOZONY + cheat + description:Start Alena with fire claw + code:ZOKOZONN + cheat + description:Start Alena with multi-edge sword + code:LOKOZONY + cheat + description:Start Alena with thorn whip + code:PEKOZONN + cheat + description:Start Alena with boomerang + code:LEKOLONN + cheat + description:Start Alena with final key and fire claw + code:LNKOZONY+ZOKOLONN + cheat + description:Start Alena with multi-edge sword and wizard's ring + code:LOKOZONY+PSKOLONN + cheat + description:Start Alena with thorn whip and demon hammer + code:PEKOZONN+ZOKOLONY + cheat + description:Start Alena with shield of strength and meteorite arm band + code:AKKOZONY+ASKOLONY + cheat + description:Start Alena with dragon shield and iron fan + code:LKKOZONY+IEKOLONN + cheat + description:Start Brey with final key + code:LNUPLONY + cheat + description:Start Brey with magma staff + code:TOUPLONN + cheat + description:Start Brey with multi-edge sword + code:LOUPLONY + cheat + description:Start Brey with thorn whip + code:PEUPLONN + cheat + description:Start Brey with shield of strength + code:AKUPLONY + cheat + description:Start Brey with dragon shield + code:LKUPLONY + cheat + description:Start Brey with boomerang + code:LEUPGONN + cheat + description:Start Brey with final key and magma staff + code:LNUPLONY+TOUPGONN + cheat + description:Start Brey with multi-edge sword and wizard's ring + code:LOUPLONY+PSUPGONN + cheat + description:Start Brey with thorn whip and demon hammer + code:PEUPLONN+ZOUPGONY + cheat + description:Start Brey with shield of strength and meteorite arm band + code:AKUPLONY+ASUPGONY + cheat + description:Start Brey with dragon shield and iron fan + code:LKUPLONY+IEUPGONN + cheat + description:Start Cristo with final key + code:LNOOLONY + cheat + description:Start Cristo with metal babble sword + code:TEOOLONN + cheat + description:Start Cristo with multi-edge sword + code:LOOOLONY + cheat + description:Start Cristo with thorn whip + code:PEOOLONN + cheat + description:Start Cristo with shield of strength + code:AKOOLONY + cheat + description:Start Cristo with dragon shield + code:LKOOLONY + cheat + description:Start Cristo with final key and chain sickle + code:LNOOLONY+GEOOGONY + cheat + description:Start Cristo with metal babble sword and boomerang + code:TEOOLONN+LEOOGONN + cheat + description:Start Cristo with multi-edge sword and wizard's ring + code:LOOOLONY+PSOOGONN + cheat + description:Start Cristo with thorn whip and demon hammer + code:PEOOLONN+ZOOOGONY + cheat + description:Start Cristo with shield of strength and meteorite arm band + code:AKOOLONY+ASOOGONY + cheat + description:Start Cristo with dragon shield and iron fan + code:LKOOLONY+IEOOGONN + cheat + description:Start Chapter 3 with 16 HP + code:AOEXTZGP + cheat + description:Start Chapter 3 with 100 HP + code:GVEXTZGP + cheat + description:Start Chapter 3 with 255 HP + code:NNEXTZGO + cheat + description:Start Chapter 3 with 100 gold + code:GVSOZPAA + cheat + description:Start Chapter 3 with 255 gold + code:NNSOZPAE + cheat + description:Start Chapter 3 with final key + code:UNUOLONY + cheat + description:Start Chapter 3 with metal babble sword + code:LEUOLONN + cheat + description:Start Chapter 3 with multi-edge sword + code:TOUOLONY + cheat + description:Start Chapter 3 with thorn whip + code:LEUOLONN + cheat + description:Start Chapter 3 with shield of strength + code:PKUOLONY + cheat + description:Start Chapter 3 with dragon shield + code:AKUOLONY + cheat + description:Start Chapter 3 with final key and chain sickle + code:LNUOLONY+GEUOGONY + cheat + description:Start Chapter 3 with metal babble sword and boomerang + code:TEUOLONN+LEUOGONN + cheat + description:Start Chapter 3 with multi-edge sword and wizard's ring + code:LOUOLONY+PSUOGONN + cheat + description:Start Chapter 3 with thorn whip and demon hammer + code:PEUOLONN+ZOUOGONY + cheat + description:Start Chapter 3 with shield of strength and meteorite arm band + code:AKUOLONY+ASUOGONY + cheat + description:Start Chapter 3 with dragon shield and iron fan + code:LKUOLONY+IEUOGONN + cheat + description:Start Nara with 100 HP + code:GVEXLZZP + cheat + description:Start Nara with 255 HP + code:NNEXLZZO + cheat + description:Start Nara with final key + code:LNXPLONY + cheat + description:Start Nara with metal babble sword + code:TEXPLONN + cheat + description:Start Nara with multi-edge sword + code:LOXPLONY + cheat + description:Start Nara with thorn whip + code:PEXPLONN + cheat + description:Start Nara with shield of strength + code:AKXPLONY + cheat + description:Start Nara with dragon shield + code:LKXPLONY + cheat + description:Start Nara with final key and chain sickle + code:LNXPLONY+GEXPGONY + cheat + description:Start Nara with metal babble sword and boomerang + code:TEXPLONN+LEXPGONN + cheat + description:Start Nara with multi-edge sword and wizard's ring + code:LOXPLONY+PSXPGONN + cheat + description:Start Nara with thorn whip and demon hammer + code:PEXPLONN+ZOXPGONY + cheat + description:Start Nara with shield of strength and meteorite arm band + code:AKXPLONY+ASXPGONY + cheat + description:Start Nara with dragon shield and iron fan + code:LKXPLONY+IEXPGONN + cheat + description:Start Mara with 100 HP + code:GVEXGZAP + cheat + description:Start Mara with 255 HP + code:NNEXGZAO + cheat + description:Start Mara with final key + code:LNXOPONY + cheat + description:Start Mara with magma staff + code:TOXOPONN + cheat + description:Start Mara with multi-edge sword + code:LOXOPONY + cheat + description:Start Mara with thorn whip + code:PEXOPONN + cheat + description:Start Mara with shield of strength + code:AKXOPONY + cheat + description:Start Mara with dragon shield + code:LKXOPONY + cheat + description:Start Mara with final key and chain sickle + code:LNXOPONY+GEXOZONY + cheat + description:Start Mara with metal babble sword and boomerang + code:TEXOPONN+LEXOZONN + cheat + description:Start Mara with multi-edge sword and wizard's ring + code:LOXOPONY+PSXOZONN + cheat + description:Start Mara with thorn whip and demon hammer + code:PEXOPONN+ZOXOZONY + cheat + description:Start Mara with shield of strength and meteorite arm band + code:AKXOPONY+ASXOZONY + cheat + description:Start Mara with dragon shield and iron fan + code:LKXOPONY+IEXOZONN + cheat + description:Start Chapter 5 with final key + code:LNOPIONY + cheat + description:Start Chapter 5 with zenithian sword + code:PXOPIONY + cheat + description:Start Chapter 5 with zenithian shield + code:GKOPIONY + cheat + description:Start Chapter 5 with zenithian armor + code:YUOPIONY + cheat + description:Start Chapter 5 with zenithian helmet + code:LKOPIONN + +cartridge sha256:a0b2ec9b44033fc4d2356259ad99a4f2dcdf5396da53efdfcb17a54c0e7fcdbe + name:Dr. Chaos (USA) + cheat + description:Infinite life + code:GXKIKIST + cheat + description:Take minimal damage + code:OVKIKISV+PEKISIGY + cheat + description:Infinite Gun ammo on pick-up + code:GZEYEEVK + cheat + description:More invincibility time + code:AKSSKIGP + cheat + description:Less invincibility time + code:GESSKIGP + cheat + description:Take more damage and Shield Suit has no effect + code:TVOSSITG+AEOSKIYA + cheat + description:Mega-jump + code:AEEGUZLE + cheat + description:Start with Shield Suit + code:PASKSPAA+ZISKNPLG + cheat + description:Start with 99 life + code:LTKKVPZL + cheat + description:Start with less health + code:PPKKVPZU + cheat + description:Invincibility (blinking) + code:0073:03 + cheat + description:Infinite life (alt) + code:0744:FF + cheat + description:Infinite Gun ammo + code:0746:63 + cheat + description:Infinite Machine Gun ammo + code:0747:63 + cheat + description:Infinite Grenades + code:0748:63 + +cartridge sha256:5860e217030f9da957d487b3ca59000d5f4d79bf23486bad08205c5aa4d992ea + name:Dr. Jekyll and Mr. Hyde (USA) + cheat + description:Infinite life + code:GZXVTKVK+GZXTTSVK + cheat + description:Multi-jump + code:NKNGVYUK+PXNKENOK+PENKOYGA+ENNKXYEI+PENKSYAA+OUNKNYUK + cheat + description:Keep coins from previous games + code:GXNLKVSE + cheat + description:Instant game restart + code:NXNSZEOO + cheat + description:Start with 16 coins + code:KENLKVSE + +cartridge sha256:01d303a8c0ed6f374586d3a2562065b77f627e8dbf071bd919877e3b48dbdb57 + name:Dr. Mario (Japan, USA) + cheat + description:Vitamin capsules don't fall (press down) + code:GZNEVIVT + cheat + description:5 in a row needed to complete a vertical line instead of 4 + code:GEXPYGLA + cheat + description:6 in a row needed to complete a vertical line instead of 4 + code:IEXPYGLA + cheat + description:7 in a row needed to complete a vertical line instead of 4 + code:TEXPYGLA + cheat + description:5 in a row needed to complete a horizontal line instead of 4 + code:GAKPPZLA + cheat + description:6 in a row needed to complete a horizontal line instead of 4 + code:IAKPPZLA + cheat + description:7 in a row needed to complete a horizontal line instead of 4 + code:TAKPPZLA + cheat + description:More pieces sent across to other player when two or more rows or columns are eliminated at once in a 2P game + code:AUVONUAO + cheat + description:No pieces sent across to other player when two or more rows or columns are eliminated at once in a 2P game + code:GXXOZGVT+GZKPGZVT + +cartridge sha256:7026334a7e8742b61b450f4b3b182922c6a69fc723d7cd19c83db365f15e45ba + name:Duck Hunt (World) + cheat + description:Infinite ammo + code:SZNIPPVG + cheat + description:Hit anywhere + code:AAXSGZSY + cheat + description:Always get the perfect bonus + code:AASIAUZA+ALSIPLEI + cheat + description:Ducks never fly away - Game A + code:IAVKKZVG + cheat + description:Enable game "D" (hit select three times) + code:GEOKTPLA + cheat + description:Infinite ammo (alt) + code:00BA:03 + +cartridge sha256:262c1fcacd30a7f3018bd33ea6cf3fb86f8d9a77273d4f822268bff2c7deeb9a + name:Duck Maze (Australia) (Unl) + cheat + description:Invincibility + code:SXUUVLAX + cheat + description:No breaking eggs from falling + code:AEEUEUZZ + +cartridge sha256:8ba8baed01a9fbaf1e9ff29e0c9825db1963ac2aff211d6f1f3bcfd3839e2013 + name:DuckTales (USA) + cheat + description:Invincibility + code:EISVZLEY+EIEEGAEY + cheat + description:Infinite health + code:ATVVXLEZ + cheat + description:Infinite health (alt) + code:AANVSLPA + cheat + description:Infinite lives + code:SXUIEKVK + cheat + description:Infinite time + code:OVUVAZSV + cheat + description:Lose half normal health (in easy game) + code:LAVTNLPA + cheat + description:Double usual time + code:ZAXSKLIE+SXNIUKOU+SZNISESU + cheat + description:Multi-jump + code:EUOTYULU+UVXVALVT+AOUVILEY+NAETLKLL+GXOTPTEY + cheat + description:Walk 2x faster + code:ZEOVYGPA + cheat + description:Walk 4x faster + code:GEOVYGPA + cheat + description:Start with 1 life + code:AAESULZA + cheat + description:Start with 6 lives + code:IAESULZA + cheat + description:Start with 9 lives + code:AAESULZE + cheat + description:Invincibility (star effect) + code:0075:01 + cheat + description:Invincibility (blinking) + code:007D:FA + cheat + description:Infinite health (alt) + code:0342:00+0346:00+034A:00 + cheat + description:Infinite time (one's digit) + code:0159:09 + cheat + description:Infinite time (ten's digit) + code:0155:09 + cheat + description:Infinite time (hundred's digit) + code:0151:09 + cheat + description:All levels cleared except the Amazon + code:00A0:1E + cheat + description:Have the Skeleton Key, Mine Key and Remote Control + code:00A1:01+00A3:FF + cheat + description:Have $9,000,000 + code:0324:09 + +cartridge sha256:54c70628739c9cfab40b8d79555e9076adae34127ef369988ca91635b4a688bf + name:DuckTales 2 (USA) + cheat + description:Invincibility + code:ESOTVAEY + cheat + description:Infinite health + code:SZONTZSA + cheat + description:Infinite lives + code:GZXGZGVG + cheat + description:Infinite lives (alt) + code:SGXGZGVG + cheat + description:Multi-jump + code:ENVVIPNP+PXVVPOVP+XOVVTPXT+ZKVVGOGK + cheat + description:Take more damage + code:APONPXAA + cheat + description:Take less damage + code:GAONPXAA + cheat + description:Take very little damage + code:ZAONPXAA + cheat + description:Have lots of money + code:PAXSPZAA + cheat + description:$5,000 cash from small diamonds + code:IEKSPLPA + cheat + description:$9,000 cash from small diamonds + code:PEKSPLPE + cheat + description:Start with full energy + code:ASNKPAAL + cheat + description:Start with a lot less energy + code:AONKPAAL + cheat + description:Start with 1 life + code:AAEKAPZA + cheat + description:Start with 6 lives + code:IAEKAPZA + cheat + description:Start with 9 lives + code:AAEKAPZE + +cartridge sha256:12c92261dfae9c01ce0172cd1e7d70192105ceb350b37c3f1cb2c72f9a10a6b9 + name:Dudes with Attitude (USA) (Rev 1) (Unl) + cheat + description:Infinite energy + code:SLUSSIVI + cheat + description:Infinite time + code:SZUSIYVG + +cartridge sha256:99bba29bd92942f64d8a0beda7df3d8bff1ddcebcd3172eec16009fcb4a8bd3e + name:Dudes with Attitude (USA) (Unl) + cheat + description:Infinite energy + code:SLUSSIVI + cheat + description:Infinite time + code:SZUSIYVG + +cartridge sha256:c613c10e32b93dbc402356273d698efa14814a51b0339d6d7aacdfb639a7acd7 + name:Dungeon Magic - Sword of the Elements (USA) + cheat + description:Take no damage except from scorpions + code:SXVLTLSA + cheat + description:Take less damage + code:OVVLGLSV+ZEVLIUYL + cheat + description:Stay at the Inn for free + code:PXSTLZPG+AXSTYZAG + cheat + description:Items at Grocer's shop are free + code:PXUVXTPG+AXUVVTAG + cheat + description:Items at Armory are free + code:PXENPLPG+AXENILAG + cheat + description:Start with 100 gold pieces + code:GTKIITAA + cheat + description:Start with 512 gold pieces + code:ZAKIITAA+PGKSGTAG + +cartridge sha256:690ec2de233486d9fdb1e096ca4aa07aa6e764b0d6d6417454d0a770c875078d + name:Dynowarz - Destruction of Spondylus (USA) + cheat + description:Mostly invincible + code:PANSAEPX+GZNITAVG + cheat + description:Infinite shield + code:AVNTNKXA + cheat + description:No harm from spikes + code:ATSIOGSZ + cheat + description:No harm from any dinosaur + code:AAVNVPLA + cheat + description:Mega-jump power + code:YEXIYLLA + cheat + description:Speed up left and right + code:LANSIZPA + cheat + description:Start on level 2 + code:TAXGLPPA + cheat + description:Start on level 3 + code:ZAXGLPPE + cheat + description:Start on level 4 + code:TAXGLPPE + cheat + description:Start on level 5 + code:ZPXGLPPA + +cartridge sha256:7951287af48ef9f2e2b375934acff99fe1543aea39d2729d2863b38ab498e231 + name:Egypt (Japan) + cheat + description:Infinite power-ups + code:OUEPXNOO + cheat + description:No steps + code:SXVAULVT+SXVANLVT + cheat + description:No rotates + code:SZEANGVT+SZEAUGVT + +cartridge sha256:e2824a71c74106326013915d9f8a67be22c367599feefd8da6538f62d5e6f5b0 + name:Elevator Action (USA) + cheat + description:Infinite lives - P1 + code:GXEUOUVK + cheat + description:Can only shoot one bullet + code:GASTLPTA + cheat + description:Slower man + code:PESIAYLA+NNUSZNSN + cheat + description:Faster man + code:IESIAYLA+XNUSZNSN + cheat + description:Faster bullets + code:ZAVTLOAE+VYVTYOEY + cheat + description:Slower bullets + code:GAVTLOAA+KYVTYOEN + cheat + description:Faster enemy + code:GEONGPZA+XNXNGOVN + cheat + description:Slower enemy + code:PEONGPZA+NNXNGOVN + cheat + description:Start with 1 life - P1 + code:AAULNLZA + cheat + description:Start with 6 lives - P1 + code:IAULNLZA + cheat + description:Start with 9 lives - P1 + code:AAULNLZE + cheat + description:Start with 6 lives - P2 + code:IEVUULZA + cheat + description:Start with 9 lives - P2 + code:AEVUULZE + +cartridge sha256:9d0396286f2c027367422b8347216a309200a21b019939f08a7c457c7c4c918d + name:Eliminator Boat Duel (USA) + cheat + description:Almost infinite nitros - no on buoy stage + code:SZVSVNVS + cheat + description:Boat starts with full turbo, steering, hull, max engine power + code:IENEYPPA + cheat + description:Have full hull strength + code:SXUGOEVS + cheat + description:Computer boat goes crazy + code:KAAISZ + cheat + description:Start with 0 nitros + code:AAEEZZGA + cheat + description:Start with 36 nitros + code:IZEEZZGA + +cartridge sha256:761df2c2e04f9ffec5eec59afd821bd74af3b155546519d649876aad37160c06 + name:Esper Dream 2 - Aratanaru Tatakai (Japan) + cheat + description:Infinite HP + code:SZNIIGSA + cheat + description:Infinite ESP + code:SZUTEPSA + cheat + description:Quick level up + code:AEXIYVPE + cheat + description:Chests worth lots of gold + code:AEXOSTPA + +cartridge sha256:e9f4c9d1b7c66c6af83f2db5d4f704cf5f4b3c86e26a49c05539237807d8875e + name:Excitebike (Japan, USA) + cheat + description:Never crash + code:SZOSKTSP + cheat + description:Never crash when holding forward + code:ATSVIASP+ATVTLASP+ATVSUGSP + cheat + description:Never lose speed (even if you crash) + code:SLNKSTVI + cheat + description:Never overheat + code:SXXTYUVV + cheat + description:Recover fast after crashes + code:YEXIKOYA + cheat + description:Reduced enemy bikes in game B + code:PEXIEZLA + cheat + description:Timer runs at half speed + code:AAUSEYAO + cheat + description:Timer runs at quarter speed + code:GAUSEYAP + cheat + description:Turbo speed on button A + code:ENUKGEAP+GESGPALA + cheat + description:Mega turbo speed on button A + code:EVUKGEAP+TESGPALA + cheat + description:Infinite obstacles in design mode + code:AAEYSAPA + cheat + description:Start racing before gate opens + code:AAEVXXAL+AAXGXSIP+AAXSOXYL+APUSOTEI + cheat + description:Press Start to complete current race (uses your race position for the verdict) + code:AASKOZLA+ZISKEZOL + +cartridge sha256:9e3c5574e31cbf74146808df930a70856d7196ec581e40cae3061743504bfba2 + name:Exodus - Journey to the Promised Land (USA) (v4.0) (Unl) + cheat + description:Infinite lives + code:SZUZKAVI + cheat + description:Infinite time + code:SXNSKIVG + +cartridge sha256:e9aab85fd91822b9dc7a89997eda3415e45a07fe21580c0df4765ce392e63824 + name:F-1 Race (Japan) + cheat + description:Invincibility + code:ATOTPGVT + cheat + description:Infinite time + code:SAUSTPVG + cheat + description:Don't lose speed when driving over grass/dirt + code:SXXIIZSA+SXXSLZSA + cheat + description:Don't lose speed when skidding in the road + code:SXEKYLSA + +cartridge sha256:3fd39ba2cdd6e220b07050d752a2c67d4a0f16a72ea9e519adf7390721cd9bdd + name:F15 City War (USA) (v1.1) (Unl) + cheat + description:Infinite lives + code:00E4:09 + +cartridge sha256:0e3db714b82795111afa386f32534ece968d0f8ccb63dc70189d2010dc77a2a7 + name:F15 City War (USA) (v1.0) (Unl) + cheat + description:Infinite lives + code:00E4:09 + +cartridge sha256:bf4b9f8706814e9164971a3c32535bb2ec718232cf05decda785770fa949d396 + name:F-15 Strike Eagle (USA) + cheat + description:Infinite type 1 missiles + code:004A:09 + cheat + description:Infinite type 2 missiles + code:004B:09 + cheat + description:Infinite type 3 missiles + code:004C:09 + cheat + description:Billions of points + code:0171:09 + +cartridge sha256:69bc9f0a2f0cd50d624fafced0051056fd91816f0593719678a42c8637622426 + name:F-117A - Stealth Fighter (USA) + cheat + description:Invincibility + code:SXXOATSA + cheat + description:Invincibility (alt) + code:0026:00 + cheat + description:Infinite AAM Missiles + code:001F:63 + cheat + description:Infinite AGM Missiles + code:0020:63 + cheat + description:Infinite Flares + code:0021:63 + cheat + description:Infinite Chaff + code:0022:63 + cheat + description:Have 5 million+ points + code:0175:FF + +cartridge sha256:0de5af54fd433bc6678cd8c62b5e6f0a0987c26d64b2081764e66263cf0c658c + name:Family Feud (USA) + cheat + description:Infinite time to answer a question + code:SXKKESVK + cheat + description:10 strikes allowed + code:ZESOGALE + +cartridge sha256:e0b124ddd8ac7be9e0f0b14679a089c475646fe97425fea36674d75a0f481461 + name:Fantastic Adventures of Dizzy, The (USA) (Unl) + cheat + description:Infinite lives + code:SXVIAAVG + cheat + description:Spiders, bats, ants and rats do no damage + code:AAVYPXAA + cheat + description:Play bubble sub-game only + code:YYUZPSTE + cheat + description:Play river sub-game only + code:TYUZPSTE + cheat + description:Play mine sub-game only + code:IYUZPSTE + cheat + description:Play puzzle sub-game ony + code:ZYUZPSTE + cheat + description:Start with 10 stars instead of 100 + code:ZEKYVZGV + cheat + description:Start with 10 lives + code:PAOAZAZE + +cartridge sha256:ad14301747e0ae0f9b941c6002102d69916ca5e87b355156ab79311ce8dd7236 + name:Fantasy Zone (USA) (Unl) + cheat + description:Infinite lives + code:OZEVYTVK + cheat + description:Keep bought weapon for a life + code:OXETOAVK + cheat + description:Keep bought weapon until next shop visit + code:OXETOAVK+OGOVATSE + cheat + description:Autofire on all weapons + code:AAOVKTPA + cheat + description:Start with 1 life + code:PAXVOPLA + cheat + description:Start with 6 lives + code:TAXVOPLA + cheat + description:Start with 9 lives + code:PAXVOPLE + cheat + description:Start on level 2 + code:PASVYYAA + cheat + description:Start on level 3 + code:ZASVYYAA + cheat + description:Start on level 4 + code:LASVYYAA + cheat + description:Start on level 5 + code:GASVYYAA + cheat + description:Start on level 6 + code:IASVYYAA + cheat + description:Start on level 7 + code:TASVYYAA + +cartridge sha256:6f23f245b9edc5af0c07fab9e12f5c0571ea0f52413e4ce6ad36e2f57ddf4097 + name:Faria - A World of Mystery & Danger! (USA) + cheat + description:Infinite HP + code:SAOEGPST+SEUUEAST + cheat + description:Infinite batteries + code:SZXGINVK + cheat + description:Infinite Bombs + code:SXOLYOVK + cheat + description:Infinite Sede magic + code:GXSAASVK + cheat + description:Infinite Saba magic + code:GXNEZSVK + cheat + description:Get 250 arrows when buying any amount of arrows + code:AAVZSPZA + cheat + description:Don't get charged in shops for items you can afford + code:GZXXZUSE+GZXXYUSE+GZUZGUSE + +cartridge sha256:58f2ba801354a8e5b32e7d1cbcc740b8dc838e7d48c3d2f3eedea36b49b1a518 + name:Faxanadu (USA) (Rev A) + cheat + description:Infinite P (health) + code:GXOGZESV+GXOKLESV + cheat + description:Infinite M (magic) + code:AEENEZZA + cheat + description:Infinite Gold + code:SXXNUOSE+SXUYUOSE+SXUNUOSE + cheat + description:Jump in direction you are facing + code:AVXVGPSZ + cheat + description:Slow mode + code:AAUTAEOY+AAKTPAKY+AAUTZAPA + cheat + description:Start with double P (health) + code:AXXSNTAP + cheat + description:Start with triple P (health) + code:AUXSNTAP + cheat + description:Start with half normal amount of Gold + code:IASEPSZA + cheat + description:Start with double normal amount of Gold + code:GPSEPSZA + cheat + description:Invincibility + code:00AD:48 + cheat + description:Infinite P (health) (alt) + code:0431:55 + cheat + description:Infinite M (magic) (alt) + code:039A:50 + cheat + description:Infinite Gold (alt) + code:0394:FF + cheat + description:Have Wing Boots ability (hold up and A) + code:0429:0A + cheat + description:Walk faster + code:00AA:02 + +cartridge sha256:52f7e7309f1f53f632912182f3a65f574c949392ab92f55c2494a7e648ef5ccb + name:Faxanadu (USA) + cheat + description:Infinite P (health) + code:GXOGZESV+GXOKLESV + cheat + description:Infinite M (magic) + code:AEENEZZA + cheat + description:Infinite Gold + code:SXXNUOSE+SXUYUOSE+SXUNUOSE + cheat + description:Jump in direction you are facing + code:AVXVGPSZ + cheat + description:Slow mode + code:AAUTAEOY+AAKTPAKY+AAUTZAPA + cheat + description:Start with double P (health) + code:AXXSNTAP + cheat + description:Start with triple P (health) + code:AUXSNTAP + cheat + description:Start with half normal amount of Gold + code:IASEPSZA + cheat + description:Start with double normal amount of Gold + code:GPSEPSZA + cheat + description:Invincibility + code:00AD:48 + cheat + description:Infinite P (health) (alt) + code:0431:55 + cheat + description:Infinite M (magic) (alt) + code:039A:50 + cheat + description:Infinite Gold (alt) + code:0394:FF + cheat + description:Have Wing Boots ability (hold up and A) + code:0429:0A + cheat + description:Walk faster + code:00AA:02 + +cartridge sha256:884b46ad4eb5160a94c19e8954846d644be36803efc53c977e99b1342886cc6b + name:Felix the Cat (USA) + cheat + description:Infinite time + code:SUNNGNSO + cheat + description:Infinite lives + code:AEUYKPPA + cheat + description:Hearts can't be replenished from bottles + code:AAEENAZA + cheat + description:Bottles replenish more hearts + code:GAEENAZA + cheat + description:Bottles replenish even more hearts + code:AAEENAZE + cheat + description:1 Felix icon gives 2 + code:ZAOSOZPA+APNSOXPO + cheat + description:Start with 9 lives + code:APUGAGZO + cheat + description:Start with 6 lives + code:IPUGAGZP + cheat + description:Start with 1 life + code:APUGAGZP + cheat + description:Invincibility (blinking) + code:03CD:03 + cheat + description:Infinite lives (alt) + code:03A6:19 + cheat + description:Infinite special + code:03C0:0A + cheat + description:Have 99 Felix icons + code:03A7:19+03A8:19 + cheat + description:Play as Magic/Balloon Felix + code:03C6:01 + cheat + description:Play as Buggy/Plane Felix + code:03C6:02 + cheat + description:Play as Tank Felix + code:03C6:03 + +cartridge sha256:c0c98471130cd09c82af6ead5e706c9299cc2cb4584016a5e5eb0c8897380172 + name:Fester's Quest (USA) + cheat + description:Invincibility + code:AYIPOG + cheat + description:Infinite health + code:XVEPUKVK + cheat + description:Infinite Invisible Potions on pick-up + code:SZEIYOVK + cheat + description:Infinite Missiles on pick-up + code:SZVVXUVK + cheat + description:Infinite Money + code:SZUSYOSE + cheat + description:Infinite Nooses on pick-up + code:SXUITEVK + cheat + description:Infinite Potions on pick-up + code:SXVSLEVK + cheat + description:Infinite T.N.T on pick-up + code:SZNIYOVK + cheat + description:Infinite Vice Grips on pick-up + code:SXSITEVK + cheat + description:Invincibility (alt) + code:04F8:C0 + cheat + description:Infinite health (alt) + code:04E5:03+04E9:03 + cheat + description:Max health + code:04EA:04 + cheat + description:Have level 8 Gun + code:04E7:08 + cheat + description:Have level 4 Whip + code:04E8:04 + cheat + description:Infinite Bulbs + code:015C:64 + cheat + description:Infinite Invisible Potions + code:0161:64 + cheat + description:Infinite Keys + code:015D:64 + cheat + description:Infinite Money (alt) + code:0162:64 + cheat + description:Infinite Missiles + code:0163:64 + cheat + description:Infinite Nooses + code:015E:64 + cheat + description:Infinite Potions + code:0160:64 + cheat + description:Infinite T.N.T + code:0164:64 + cheat + description:Infinite Vice Grips + code:015F:64 + +cartridge sha256:179bd9c16fc5b85168fecac685045ed58f6bec5a51363babb7aaaaceb6fa0932 + name:Fighting Road (Japan) + cheat + description:Infinite health + code:SXESLTSA + +cartridge sha256:2ae778c5a59fac650fa97e93d883381dbf96c5a0ad2c1db94fd822663904f7e5 + name:Final Combat (Asia) (PAL) (Unl) + cheat + description:Infinite health + code:SXSZAVSE+SXOGGNSE + cheat + description:Infinite lives + code:SZVLOLVI + cheat + description:Infinite time + code:SZNOOSVK + +cartridge sha256:fa456d852372173ea31b192459ba1a2026f779df67793327ba6e132476c1d034 + name:Final Fantasy (USA) + cheat + description:Almost infinite Gold + code:GXSZPKSV+GXSXZKSV + cheat + description:999999+ Gold + code:NYOUTAAE + cheat + description:Non-magic users can use level 1 magic + code:ELEXVLEY+AESGANGA+AESGGNAA + cheat + description:LIFE spell never uses up Magic Points + code:SZULIEVS + cheat + description:LIF2 spell never uses up Magic Points + code:SZVULEVS + cheat + description:Magic users start with 6 Magic Points + code:TESGTYZA + cheat + description:Magic users start with 9 Magic Points + code:PESGTYZE + cheat + description:No random battles (enable at start of game) + code:OOTPVP + cheat + description:Double Fighter's Hit Points (enable at start of game) + code:TGKLPALZ + cheat + description:Double Fighter's Hit (enable at start of game) + code:GPKUAEZA + cheat + description:Double Fighter's Evade (enable at start of game) + code:ZTKUPAIU + cheat + description:Double Fighter's Luck (enable at start of game) + code:ZAKLTAIE + cheat + description:Double Thief's Hit Points (enable at start of game) + code:GLSLPETO + cheat + description:Triple Thief's Damage (enable at start of game) + code:TASLYAZA + cheat + description:Double Thief's Hit (enable at start of game) + code:ZASUAAIE + cheat + description:Double Thief's Evade (enable at start of game) + code:GYSUPEZL + cheat + description:Double Thief's Luck (enable at start of game) + code:TPSLTEYE + cheat + description:Double Black Belt's Hit Points (enable at start of game) + code:ZGVLPAPZ + cheat + description:Triple Black Belt's Damage (enable at start of game) + code:TAVLYAZA + cheat + description:Double Black Belt's Hit (enable at start of game) + code:ZAVUAAIE + cheat + description:Double Black Belt's Evade (enable at start of game) + code:ZTVUPAIU + cheat + description:Double Black Belt's Luck (enable at start of game) + code:ZAVLTAIE + cheat + description:Double Red Mage's Hit Points (enable at start of game) + code:GLNLPETO + cheat + description:Double Red Mage's Damage (enable at start of game) + code:ZANLYAIE + cheat + description:Double Red Mage's Hit (enable at start of game) + code:TANUAAYE + cheat + description:Double Red Mage's Evade (enable at start of game) + code:GYNUPEZL + cheat + description:Double Red Mage's Luck (enable at start of game) + code:ZANLTAIE + cheat + description:Double White Mage's Hit Points (enable at start of game) + code:AUELPEGO + cheat + description:Triple White Mage's Damage (enable at start of game) + code:TEELYAZA + cheat + description:Double White Mage's Hit (enable at start of game) + code:ZEEUAAIE + cheat + description:Double White Mage's Evade (enable at start of game) + code:ZVEUPAIU + cheat + description:Double White Mage's Luck (enable at start of game) + code:ZEELTAIE + cheat + description:Double Black Mage's Hit Points (enable at start of game) + code:ZUOLPEPP + cheat + description:Triple Black Mage's Damage (enable at start of game) + code:LEOLYAPA + cheat + description:Double Black Mage's Hit (enable at start of game) + code:ZEOUAAIE + cheat + description:Double Black Mage's Evade (enable at start of game) + code:GNOUPEZL + cheat + description:Double Black Mage's Luck (enable at start of game) + code:GOOLTEZA + cheat + description:Start with 800 Gold + code:AZOUGAEP+LAOUIAPA + cheat + description:More enemies, more difficult + code:6D8D:99 + cheat + description:No random battles (alt) + code:00F5:FF + cheat + description:Have Adamant + code:6027:01 + cheat + description:Have Bottle + code:602F:01 + cheat + description:Have Canoe + code:6031:01 + cheat + description:Have Chime + code:602C:01 + cheat + description:Have Crown + code:6022:01 + cheat + description:Have Crystal + code:6023:01 + cheat + description:Have Cube + code:602E:01 + cheat + description:Have Floater + code:602B:01 + cheat + description:Have Herb + code:6024:01 + cheat + description:Have Key + code:6025:01 + cheat + description:Have Lute + code:6021:01 + cheat + description:Have Oxyale + code:6030:01 + cheat + description:Have Rod + code:602A:01 + cheat + description:Have Ruby + code:6029:01 + cheat + description:Have Slab + code:6028:01 + cheat + description:Have Tail + code:602D:01 + cheat + description:Have TNT + code:6026:01 + cheat + description:Have first Crystal lit + code:6032:01 + cheat + description:Have second Crystal lit + code:6033:01 + cheat + description:Have third Crystal lit + code:6034:01 + cheat + description:Have last Crystal lit + code:6035:01 + cheat + description:Character 1 - 255 HP + code:610A:FF + cheat + description:Character 1 - 99 STR + code:6110:63 + cheat + description:Character 1 - 99 AGL + code:6111:63 + cheat + description:Character 1 - 99 INT + code:6112:63 + cheat + description:Character 1 - 99 VIT + code:6113:63 + cheat + description:Character 1 - 99 Luck + code:6114:63 + cheat + description:Character 1 - 255 Damage + code:6120:FF + cheat + description:Character 1 - 255 Hit % + code:6121:FF + cheat + description:Character 1 - 255 Absorb + code:6122:FF + cheat + description:Character 1 - 255 Evade % + code:6123:FF + cheat + description:Character 1 - Infinite level 1 magic use + code:6320:08+6328:08 + cheat + description:Character 1 - Infinite level 2 magic use + code:6321:08+6329:08 + cheat + description:Character 1 - Infinite level 3 magic use + code:6322:08+632A:08 + cheat + description:Character 1 - Infinite level 4 magic use + code:6323:08+632B:08 + cheat + description:Character 1 - Infinite level 5 magic use + code:6324:08+632C:08 + cheat + description:Character 1 - Infinite level 6 magic use + code:6325:08+632D:08 + cheat + description:Character 1 - Infinite level 7 magic use + code:6326:08+632E:08 + cheat + description:Character 1 - Infinite level 8 magic use + code:6327:08+632F:08 + cheat + description:Character 2 - 255 HP + code:614A:FF + cheat + description:Character 2 - 99 STR + code:6150:63 + cheat + description:Character 2 - 99 AGL + code:6151:63 + cheat + description:Character 2 - 99 INT + code:6152:63 + cheat + description:Character 2 - 99 VIT + code:6153:63 + cheat + description:Character 2 - 99 Luck + code:6154:63 + cheat + description:Character 2 - 255 Damage + code:6160:FF + cheat + description:Character 2 - 255 Hit % + code:6161:FF + cheat + description:Character 2 - 255 Absorb + code:6162:FF + cheat + description:Character 2 - 255 Evade % + code:6163:FF + cheat + description:Character 3 - 255 HP + code:618A:FF + cheat + description:Character 3 - 99 STR + code:6190:63 + cheat + description:Character 3 - 99 AGL + code:6191:63 + cheat + description:Character 3 - 99 INT + code:6192:63 + cheat + description:Character 3 - 99 VIT + code:6193:63 + cheat + description:Character 3 - 99 Luck + code:6194:63 + cheat + description:Character 3 - 255 Damage + code:61A0:FF + cheat + description:Character 3 - 255 Hit % + code:61A1:FF + cheat + description:Character 3 - 255 Absorb + code:61A2:FF + cheat + description:Character 3 - 255 Evade % + code:61A3:FF + cheat + description:Character 4 - 255 HP + code:61CA:FF + cheat + description:Character 4 - 99 STR + code:61D0:63 + cheat + description:Character 4 - 99 AGL + code:61D1:63 + cheat + description:Character 4 - 99 INT + code:61D2:63 + cheat + description:Character 4 - 99 VIT + code:61D3:63 + cheat + description:Character 4 - 99 Luck + code:61D4:63 + cheat + description:Character 4 - 255 Damage + code:61E0:FF + cheat + description:Character 4 - 255 Hit % + code:61E1:FF + cheat + description:Character 4 - 255 Absorb + code:61E2:FF + cheat + description:Character 4 - 255 Evade % + code:61E3:FF + +cartridge sha256:7ff89b50156b6f5b3d78d3d2eeec8a9221d9f7b18f8350abf89b7867a205f710 + name:Final Fantasy III (Japan) + cheat + description:Infinite capacity points. You still have to have enough points to make the job change, but no points will be subtracted from your total + code:SXOXUUSE + cheat + description:All items in shops are free. You must have enough to cover the item, but will not be charged + code:XVULAASV + cheat + description:Knife casts a FIRE spell when used as a item in battle + code:PUNPGKYY + cheat + description:Knife casts a FIRE3 spell when used as a item in battle + code:TENPGKYN + cheat + description:Knife casts a BOLT3 spell when used as a item in battle + code:IONPGKYY + cheat + description:Knife casts a ICE3 spell when used as a item in battle + code:IONPGKYN + cheat + description:Knife casts a DEATH spell when used as a item in battle + code:PENPGKYY + cheat + description:Knife casts a METEO spell when used as a item in battle + code:ZENPGKYY + cheat + description:Knife casts a HEAL spell when used as a item in battle + code:LENPGKYN + cheat + description:Knife casts a CURE4 spell when used as a item in battle + code:ZENPGKYN + cheat + description:Dagger casts a FIRE3 spell when used as a item in battle + code:TENOGKYN + cheat + description:Dagger casts a BOLT3 spell when used as a item in battle + code:IONOGKYY + cheat + description:Dagger casts a ICE3 spell when used as a item in battle + code:IONOGKYN + cheat + description:Dagger casts a DEATH spell when used as a item in battle + code:PENOGKYY + cheat + description:Dagger casts a METEO spell when used as a item in battle + code:ZENOGKYY + cheat + description:Dagger casts a HEAL spell when used as a item in battle + code:LENOGKYN + cheat + description:Dagger casts a CURE4 spell when used as a item in battle + code:ZENOGKYN + cheat + description:Long Sword casts a FIRE3 spell when used as a item in battle + code:TAXPGSYN + cheat + description:Long Sword casts a BOLT3 spell when used as a item in battle + code:IPXPGSYY + cheat + description:Long Sword casts a ICE3 spell when used as a item in battle + code:IPXPGSYN + cheat + description:Long Sword casts a DEATH spell when used as a item in battle + code:PAXPGSYY + cheat + description:Long Sword casts a METEO spell when used as a item in battle + code:ZAXPGSYY + cheat + description:Long Sword casts a HEAL spell when used as a item in battle + code:LAXPGSYN + cheat + description:Long Sword casts a CURE4 spell when used as a item in battle + code:ZAXPGSYN + +cartridge sha256:5f21fadd084947d11224d1f37218a504bd75f7c6f17212f638a6917ba8a96f99 + name:Fire Bam (FDS) + cheat + description:All fire items worth 65,535 + code:NYEPXZAE + cheat + description:Start with 65,534 Fire + code:VNKIKYOE+NNKISNPE + +cartridge sha256:9a0cc935c7d8452eff5b90f591bb6390d04362545ecd66b4be67a875ad63dc73 + name:Fire Dragon (Asia) (Unl) + cheat + description:One fireball needed to finish the level + code:034F:04 + cheat + description:Start on stage 50 + code:034D:32 + +cartridge sha256:3f5ed8b5207ff10ef490e7533bdd8419e5266101d4049d7689c01b5b352a4547 + name:Fire Hawk (USA) (Unl) + cheat + description:Invincibility + code:OZOXOTES + cheat + description:Start with 1 life + code:PAOEPALA + cheat + description:Start with 6 lives + code:TAOEPALA + cheat + description:Start with 9 lives + code:PAOEPALE + cheat + description:Infinite Missiles + code:04DA:1F + cheat + description:Infinite ammo + code:04DC:1F + cheat + description:Infinite fuel + code:04F4:26 + +cartridge sha256:04264565cf33f4bd1b23a3f7a1be1487a548c7f6b85323c68af754b0927b0a56 + name:Fist of the North Star (USA) + cheat + description:Invincibility + code:SXXGAIAX + cheat + description:Infinite health + code:SZSGUGSA + cheat + description:Infinite time + code:SZSVGTVG + cheat + description:Infinite lives + code:SXKKYPVG + cheat + description:One hit kills you + code:OTSGOGSV + cheat + description:Sweep kick damages enemies more + code:TEELTPPA + cheat + description:Straight kick damages enemies more + code:AEOLGPLE + cheat + description:Can't be knocked back by big thugs + code:AAUKVGGA + cheat + description:Pogo stick + code:EISGUPEY + cheat + description:Take minimum damage from all enemies + code:OTSGOGSV+PASGXKOI + cheat + description:Any attack mega-damages enemies + code:OVOUZPSV+ZEOULOOS + cheat + description:Start with 1 life + code:PEKKGALA + cheat + description:Start with 6 lives + code:TEKKGALA + cheat + description:Start with 9 lives + code:PEKKGALE + cheat + description:Invincibility (blinking) + code:0066 01 + cheat + description:Infinite health (alt) + code:0073:38 + cheat + description:Infinite time (alt) + code:0065 09 + cheat + description:Infinite power + code:006C 07 + cheat + description:Infinite Bomb + code:0063 07 + +cartridge sha256:6e5bdfe7ee4cc4d949ea80016dbfb2b4322bbe193b5f28483ce7009e506efe40 + name:Flight of the Intruder (USA) + cheat + description:Infinite radar-guided missiles - bombing/strafing screen + code:GZUOZYVG + cheat + description:Start with 9 radar-guided missiles - bombing/strafing screen + code:PAOALZTE + cheat + description:Infinite missiles - cockpit screen + code:GZUOLKVK + cheat + description:Start each mission with 6 missiles + code:OZKZTXOK+AAKXGZPA + cheat + description:Start on mission 3 + code:GAKGKGAA + cheat + description:Start on mission 6 + code:ZAKGKGAE + cheat + description:Start on mission 9 + code:APKGKGAA + cheat + description:Start on mission 12 + code:TPKGKGAA + +cartridge sha256:3036a59bb7bf16a3b80c94750bccaa35be9ab5cd94f99d68d3979ec53cd42c03 + name:Flintstones, The - The Rescue of Dino & Hoppy (USA) + cheat + description:Invincibility + code:AVOPZOVG + cheat + description:Infinite lives + code:SXOAAEVK + cheat + description:Infinite energy (hearts) + code:SZNTZKVK+SXOPZOVK + cheat + description:15 coins on pick-up + code:YESTZZIE + cheat + description:2 coins on pick-up + code:ZESTZZIA + cheat + description:Slingshot doesn't use up coins + code:AAUAXTLA + cheat + description:Axe doesn't use up coins + code:AAUAUTLA + cheat + description:Bomb doesn't use up coins + code:AAUAKVZA + cheat + description:Infinite Firepower + code:AETEKI + cheat + description:Max power charge + code:LOKOEPPA+LPEZLPPA+LOEPLPPA+LPUOLZPA + cheat + description:Start with Slingshot + code:PEEAAPAA + cheat + description:Start with Axe + code:ZEEAAPAA + cheat + description:Start with Bomb + code:GEEAAPAA + cheat + description:Start with 1 life + code:AAVAYPZA + cheat + description:Start with 6 lives + code:IAVAYPZA + cheat + description:Start with 9 lives + code:AAVAYPZE + cheat + description:Start with 99 coins + code:LTNELOZA + cheat + description:Infinite energy (hearts) (alt) + code:0308:03 + cheat + description:Infinite lives + code:0305:09 + cheat + description:Infinite Coins + code:030B:FF + cheat + description:Max power charge (alt) + code:0312:0C + cheat + description:One hit kills on most bosses + code:03D7:00 + +cartridge sha256:8da82a28be164453d1f8aa293fc8b02aaede397b52622a14ead331e475e5ca2f + name:Flintstones, The - The Surprise at Dinosaur Peak! (USA) + cheat + description:Invincibility + code:AVEPKOSA + cheat + description:Infinite lives + code:SXEETEVK + cheat + description:Infinite energy + code:AANONPPA + cheat + description:Infinite energy (alt) + code:SXEPKOSE + cheat + description:Infinite stone hammers on pick-up + code:SXXOUVSE + cheat + description:Enemies do more damage (3 hearts) + code:LANONPPA + cheat + description:Get bowling ball instead of stone hammer + code:ZEEEUYPA + cheat + description:Get mystery item instead of stone hammer + code:LEEEUYPA + cheat + description:Continue on Level 2 + code:PAKAVPAA + cheat + description:Continue on Level 3 + code:ZAKAVPAA + cheat + description:Continue on Level 4 + code:LAKAVPAA + cheat + description:Continue on Level 5 + code:GAKAVPAA + cheat + description:Continue on Level 6 + code:IAKAVPAA + cheat + description:Continue on Level 7 + code:TAKAVPAA + cheat + description:Continue on Level 8 + code:YAKAVPAA + cheat + description:Continue on Level 9 + code:AAKAVPAE + cheat + description:Continue on Level 10 + code:PAKAVPAE + cheat + description:Start with max power + code:GOEATOGA + cheat + description:Start with 1 heart + code:PANELPLA + cheat + description:Start with 2 hearts + code:ZANELPLA + cheat + description:Start with 6 hearts + code:TANELPLA + cheat + description:Start with 9 hearts + code:PANELPLE + cheat + description:Start with 1 life instead of 3 + code:AASALPZA + cheat + description:Start with 5 lives + code:GASALPZA + cheat + description:Start with 9 lives + code:AASALPZE + cheat + description:Start on level 2 + code:VTNEXOSE + +cartridge sha256:fd7523b5ec5769e4d782a9699a2253bd15d0036111b8ed26195238b35b74257d + name:Flying Dragon - The Secret Scroll (USA) + cheat + description:Start with infinite lives + code:VEKLTAKZ + cheat + description:Start with infinite time + code:GXEEEPVG + cheat + description:Start with double KO power + code:TAOXULLA + cheat + description:Start with 1 life + code:PANATALA + cheat + description:Start with 6 lives + code:TANATALA + cheat + description:Start with 9 lives + code:PANATALE + +cartridge sha256:5e2db0db6b1d3d7fe1630a6bab38a66081e3266070a4dfac9c3ace9edf39375e + name:Flying Hero (Japan) + cheat + description:Finish levels automatically + code:03A9:00 + cheat + description:Infinite lives + code:0400:03 + cheat + description:Max Bounce + code:04B0:03 + cheat + description:One hit kills on Fires + code:0510:80 + +cartridge sha256:1568e77e6533087eee26f952b0f58373fc5e56c4b2139023dbfdadc0828249c8 + name:Flying Warriors (USA) + cheat + description:Infinite life + code:SXNKIKSE + cheat + description:Infinite lives + code:SZVGKOVK + cheat + description:Infinite KO's + code:SXOZPKSE+SZSKLXSE + cheat + description:Infnite credits + code:SZXEZZVG + +cartridge sha256:eedcf3fae4fe66102a1bf1338a1ea3276f5aadb3c3bc5770dd1d260e2fc44bac + name:Formation Z (Japan) + cheat + description:Invincibility + code:SZOOTVSE+SZSXPESE+SZSXAKSE+SXXXVUSE+SXEPXNSE+SZVOTNSE+SXOXSXSE+SXUZONSE+SXNXKSSE+SZXOPVSE + cheat + description:Infinite fuel + code:IXSOTTVG + +cartridge sha256:758ea7bee928136abf612ba564fab4dd4f3caa951cb685bc8e1d4533c7b0680e + name:Formula One - Built to Win (USA) + cheat + description:Infinite nitro + code:SXUIXEVK + cheat + description:Better nitro + code:ATKSXAAZ + cheat + description:Psycho speed + code:AAVSOAZA + cheat + description:Items cost nothing + code:ATNUVUSZ + cheat + description:Items for free + code:ATNUVUSZ+ATVUKLST + +cartridge sha256:e9fe69c87a9ab1183ce8492843bacf868e1f8df2fd4e1441403091d13025a619 + name:Fox's Peter Pan & the Pirates - The Revenge of Captain Hook (USA) + cheat + description:Infinite lives + code:SZOKYLVG + cheat + description:Infinite flight meter + code:SZVSXXVK + cheat + description:Slower flight meter + code:GASSNZGE + cheat + description:Faster flight meter + code:ZASSNZGA + cheat + description:Faster flying left and right + code:ZAUIUZPA+ZAOIVAPA + cheat + description:Start with 30 units of health + code:TONGZKZE+TPXKYUZE + cheat + description:Start with 5 units of health + code:IENGZKZA+IAXKYUZA + cheat + description:Start with 1 life + code:PENKLGLA + cheat + description:Start with 6 lives + code:TENKLGLA + cheat + description:Start with 9 lives + code:PENKLGLE + cheat + description:Infinite health + code:0051:FF + cheat + description:Infinite lives (alt) + code:0050:09 + cheat + description:Infinite Flight meter (alt) + code:0640:FF + +cartridge sha256:682a0629d25275a95975e3822ded9fc6cfe5ce8dfb4650aeda0981bfe6a6afc0 + name:Frankenstein - The Monster Returns (USA) + cheat + description:Invincibility + code:ZEVKLGAA + cheat + description:Invincible after you die once (may get stuck in boss stages) + code:SZKEPASA+SZEGPASA + cheat + description:Infinite health + code:SXKELLSA+SZNOYASA+SXKEOLSA+SXUOZASA+SXUOGASA + cheat + description:Can't collect extra energy + code:SZEEULSA + cheat + description:Die after one hit + code:EEKAYLEL + cheat + description:Start with 0 continue + code:PEOGYPLA + cheat + description:Infinite health (alt) + code:007D:08 + +cartridge sha256:995b57f7d2c68a5689549fc53645dcc44f871c8d172e15deafd7389bc3f6ee0a + name:Freedom Force (USA) + cheat + description:Infinite health + code:GZVAYLSA + cheat + description:Infinite ammo + code:AEUTLYZZ + cheat + description:Infinite errors allowed + code:OXOTYNOK + cheat + description:Fewer errors allowed + code:LEOVAYTA + cheat + description:Start with half health + code:GAKVYVAO + cheat + description:Start with half ammo + code:ZOOTYTGZ + cheat + description:Start at level 2 + code:ZAUTLTPA + cheat + description:Start at level 3 + code:LAUTLTPA + cheat + description:Start at level 4 + code:GAUTLTPA + cheat + description:Start at level 5 + code:IAUTLTPA + cheat + description:Infinite health - P1 + code:0516:18 + cheat + description:Infinite health - P2 + code:0526:18 + cheat + description:Infinite ammo - P1 + code:0515:24 + cheat + description:Infinite ammo - P2 + code:0525:24 + cheat + description:Infinite errors allowed - P1 + code:0517:00 + cheat + description:Infinite errors allowed - P2 + code:0527:00 + cheat + description:Infinite time in bonus stages (disable to continue) + code:0089:09 + cheat + description:Automatically finish stage + code:00C2:3C + +cartridge sha256:ea054316b0e2ab99c2dcbcccacb4f28bae6809f183d29a4cb797a07f55ad8ff8 + name:Free Fall (USA) (Proto) + cheat + description:Infinite hands + code:OLNKSVOO + cheat + description:Freeze time (disable at end of level so counter can decrease) + code:SLKIAASP + cheat + description:One saved to beat level + code:OZVSZGSX+IYVSIKEI+PAVSTGGA + cheat + description:No score decrease with loss of men + code:AAOGUTZV+ALOGXTSZ + cheat + description:Each dead man, one to score instead of five + code:LTOGUTZT + +cartridge sha256:7e94b4fe8c33439779bb653d007ba4678dd589636ffbc87d1535629578a64d5e + name:Friday the 13th (USA) + cheat + description:Invincibility + code:SZEXSYAX + cheat + description:Infinite health + code:SZESKSSE + cheat + description:Infinite health for active counselor + code:OTEIVISV + cheat + description:Infinite child save time + code:SZNUGYAX + cheat + description:Infinite children + code:SZSLUEVK+IYKLSEAY + cheat + description:Hit anywhere + code:AIKIUGEI + cheat + description:One hit kills + code:AEOSOGZP + cheat + description:Enemies die automatically + code:AESGXZZZ + cheat + description:No enemies + code:AEKGKLZA+SXXISXVN + cheat + description:Vitamins heal active counselor better + code:ZZOUAGTE + cheat + description:Vitamins heal others better + code:AZEVXLGE + cheat + description:Autofire + code:INNLIZGY + cheat + description:Everyone can jump high + code:GAEUZIAE + cheat + description:Turbo running + code:SZVLGXOU+YPVLIXAV + cheat + description:Throw rocks straight + code:YEEGIZSZ + cheat + description:Start with 55 children + code:IEVANTPA+YUNESVYA + cheat + description:Invincibility (alt) + code:0488:03 + cheat + description:Infinite health (alt) + code:0505:FF + cheat + description:Infinite Medicine + code:0519:09 + cheat + description:Infinite Children + code:0504:05 + cheat + description:Infinite child save time (alt) + code:058D:09 + cheat + description:Have the Torch + code:0506:00 + cheat + description:Have the Knife + code:0506:01 + cheat + description:Have the Axe + code:0506:02 + cheat + description:Have the Stone + code:0506:03 + cheat + description:Have the Cleaver + code:0506:04 + cheat + description:Have the Pitchfork + code:0506:05 + cheat + description:Have the Lighter Torch + code:0517:01 + cheat + description:Have the Flashlight + code:0518:01 + cheat + description:Have the Key + code:051A:01 + cheat + description:Jason has no health + code:051C:00 + cheat + description:Play as George + code:0507:00 + cheat + description:Play as Mark + code:0507:01 + cheat + description:Play as Paul + code:0507:02 + cheat + description:Play as Laura + code:0507:03 + cheat + description:Play as Debbie + code:0507:04 + cheat + description:Play as Crissy + code:0507:05 + cheat + description:Set time - day + code:0508:00 + cheat + description:Set time - dusk + code:0508:01 + cheat + description:Set time - night + code:0508:02 + +cartridge sha256:d077b282b751a246549e334885d83ee587d9e6178b170afcf57553ec62015c52 + name:G.I. Joe - A Real American Hero (USA) + cheat + description:Invincibility + code:ESVOGGEY+XVNPAKAU + cheat + description:Infinite health + code:OLNTYKOO + cheat + description:Infinite ammo + code:SXVXOVSE + cheat + description:Infinte time + code:SXNETUSE + cheat + description:Infinite time (alt) + code:AENATLPA + cheat + description:More health - Duke + code:GOUTKSIA + cheat + description:More health - Blizzard + code:GOUTSSGA + cheat + description:More health - Snake Eyes + code:GOUTVSZA + cheat + description:More health - Capt. Grid-Iron + code:GOUTNSLA + cheat + description:More health - Rock and Roll + code:GOUVESPA + cheat + description:Less health - Duke + code:TEUTKSIA + cheat + description:Less health - Blizzard + code:TEUTSSGA + cheat + description:Less health - Snake Eyes + code:IEUTVSZA + cheat + description:Less health - Capt. Grid-Iron + code:IEUTNSLA + cheat + description:Less health - Rock and Roll + code:GEUVESPA + cheat + description:Shorter immunity + code:ALNVIKAY + cheat + description:Longer immunity + code:NYNVIKAN + cheat + description:Max health on pick-up + code:AAUEPPLA + cheat + description:Mega-jump - Duke + code:AXNVKIYP + cheat + description:Mega-jump - Blizzard + code:AXNVSIZP + cheat + description:Mega-jump - Snake Eyes + code:AXNVVSGP + cheat + description:Mega-jump - Capt. Grid-Iron + code:AXNVNIGP + cheat + description:Mega-jump - Rock and Roll + code:AZETETAP + +cartridge sha256:9e65e4d55123612c5eb05b332e48fd975a187d706a3fd44b62125e1ae48af028 + name:G.I. Joe - The Atlantis Factor (USA) + cheat + description:Invincibility + code:EISPUZEY+XTSPNXAU + cheat + description:Infinite health + code:OUSTLSOO + cheat + description:Infinite time + code:AASEZIPA + cheat + description:Infinite Mines + code:SUOPEUVS + cheat + description:Infinite stamina + code:SXSTLSOP+SUOAISSO + cheat + description:Infinite bullets after obtaining a power up shell + code:GXSUZVSE+GXVLTVSE + cheat + description:Don't flash after getting hit + code:AESVPSAY + cheat + description:Flash about half as long after getting hit + code:PUSVPSAN + cheat + description:Each Pow worth increases player level by one + code:GAXPPYPA + cheat + description:Infinite ammo + code:SXSUZVSE+SXVLTVSE+SXSLIVVK+SXVUPVSE + cheat + description:Start with all characters + code:YUKETLPE + cheat + description:Start with 500 bullets + code:IAEELGPA + cheat + description:Start with 1 life + code:PENVSYIA + +cartridge sha256:023ff157d96a8efc847c7d7cbe89574091fe099996e6283c63e3fb58918f3502 + name:Gaiapolis (Asia) (Unl) + cheat + description:Invincibility + code:EIKANTEY + cheat + description:Infinite time + code:SZUKVPVG + cheat + description:Infinite credits + code:SXXGSVVK + cheat + description:Hit anywhere + code:AIUPKZEL+APUPSZGX+ASEOEPEL+EUEZTGGN+GKEZIKOS+KXEZYGIA+ZUEOOOAI + cheat + description:Get items from anywhere + code:AINPXZEL+YPNPUXPX + +cartridge sha256:a636a947acf1ef0b50e66d31699b64aa4f3b4865e2f2031385780974fb6d8c91 + name:Galactic Crusader (USA) (Unl) + cheat + description:Invincibility + code:EIUNTPEY + cheat + description:Infinite lives + code:VXUSUTVG + +cartridge sha256:df49cc788fff36881fcf1d1cb22281d305260d4d8fbbe07ca2c4d699fe54843a + name:Galaga - Demons of Death (USA) + cheat + description:Invincibility + code:ATNVSAVZ + cheat + description:Infinite lives + code:XVOKVUXK + cheat + description:Play challenge stages only + code:GXOKOTEI + cheat + description:Can't be caught by tractor beam + code:OXSTZPSX+YESTLOPY + cheat + description:Press Start for next wave + code:KPNIPZEA+GANIZZIA+AAVSIZPA + cheat + description:Press Start for extra life + code:GGVSGXOX+EZVSIZPE+UGVSTZSE + cheat + description:Start with twin shots + code:GXEVPAEI + cheat + description:Start with 1 life + code:PAKKKILA + cheat + description:Start with 6 lives + code:TAKKKILA + cheat + description:Infinite lives (alt) + code:0485:05+0487:05 + +cartridge sha256:e6fe68b9f12578e74ba016ca146aaf8232b20475fb675c7d32e0ea4e47eb1cc8 + name:Galaga (Japan) + cheat + description:Invincibility + code:ATETKOOZ + cheat + description:Infinite lives + code:XVOKVUXK + cheat + description:Keep double ship after being destroyed + code:AVNTKEOZ + cheat + description:Only one part to collect + code:PESEGPGT + cheat + description:Always get a perfect bonus + code:PXVIIEOK+AEVITEAZ + cheat + description:Start with double shot + code:SSVGILEA+PZKGNISO + cheat + description:Infinite lives (alt) + code:0485:05+0487:05 + +cartridge sha256:50178a2856f8ed3574b4e7fd45b9d1ec44c660d51fe9783d0012a19df5892cce + name:Galaxian (Japan) + cheat + description:Infinite lives + code:0042:05 + +cartridge sha256:c019750cc439810de6cbf1c3a895099674df3f397744ad3149ba1b25dd55d0ab + name:Galaxy 5000 (USA) + cheat + description:Infinite time + code:SLKPAEVS + cheat + description:Reduce damage free of charge + code:GXNXSVSN + cheat + description:No damage from falling + code:SXKZEPAX + cheat + description:Take less damage + code:OXNNVPSX+PENNNOZP + cheat + description:More damage from falling + code:SXUXSOSU+ALVUVYLZ + cheat + description:More damage from shots + code:TEEOZGVV+NUEOLKVN + cheat + description:Always in 1st place - P1 + code:00AB:00 + cheat + description:Always in 1st place - P2 + code:00AC:00 + cheat + description:Always in 1st place - P3 + code:00AD:00 + cheat + description:Always in 1st place - P4 + code:00AE:00 + cheat + description:Infinite time (one's digit) + code:069A:09 + cheat + description:Infinite time (ten's digit) + code:069B:09 + cheat + description:Infinite time (hundred's digit) + code:069C:09 + +cartridge sha256:055fb73baaed0f3c4a31902402e7fe581d2d2cb948d3a2f5c3552050f316e6df + name:Gargoyle's Quest II (USA) + cheat + description:Invincibility (except Doppelganger when it mimics you) + code:OESAKAIE + cheat + description:Invincible against spikes + code:KVNVYLIA + cheat + description:Infinite fight + code:OXSELPSX + cheat + description:Walk through walls + code:APOEGLEP + +cartridge sha256:fbc976422ca910d9391060898c8b58694f19b6e53a68bd33c457fb38dac1e5c6 + name:Gauntlet (USA) (Unl) + cheat + description:Infinite health + code:SLNAEYSP+SLVPOASP + cheat + description:Infinite keys + code:PAOXVLAE+SAXZOLSZ + cheat + description:Infinite time in puzzle and treasure rooms + code:XVOONAVK + cheat + description:Infinite time in puzzle and treasure rooms (alt) + code:00C0:1E + cheat + description:Have all power-ups - P1 + code:00AC:3F + cheat + description:Have all power-ups - P2 + code:00AD:3F + cheat + description:Have Invisibility - P1 + code:00AA:01 + cheat + description:Have Invisibility - P2 + code:00AC:01 + cheat + description:Have Invulnerability - P1 + code:00AA:20 + cheat + description:Have Invulnerability - P2 + code:00AC:20 + cheat + description:Have Reflective shot - P1 + code:00AA:04 + cheat + description:Have Reflective Shot - P2 + code:00AC:04 + cheat + description:Have Repulsiveness - P1 + code:00AA:02 + cheat + description:Have Repulsiveness - P2 + code:00AC:02 + cheat + description:Have Super Shot - P1 + code:00AA:10 + cheat + description:Have Super Shot - P2 + code:00AC:10 + +cartridge sha256:fd2a8520314fb183e15fd62f48df97f92eb9c81140da4e6ab9ff0386e4797071 + name:Gauntlet (USA) + cheat + description:Infinite health + code:SLNAEYSP+SLVPOASP + cheat + description:Infinite keys + code:PAOXVLAE+SAXZOLSZ + cheat + description:Infinite time in puzzle and treasure rooms + code:XVOONAVK + cheat + description:Infinite time in puzzle and treasure rooms (alt) + code:00C0:1E + cheat + description:Have all power-ups - P1 + code:00AC:3F + cheat + description:Have all power-ups - P2 + code:00AD:3F + cheat + description:Have Invisibility - P1 + code:00AA:01 + cheat + description:Have Invisibility - P2 + code:00AC:01 + cheat + description:Have Invulnerability - P1 + code:00AA:20 + cheat + description:Have Invulnerability - P2 + code:00AC:20 + cheat + description:Have Reflective shot - P1 + code:00AA:04 + cheat + description:Have Reflective Shot - P2 + code:00AC:04 + cheat + description:Have Repulsiveness - P1 + code:00AA:02 + cheat + description:Have Repulsiveness - P2 + code:00AC:02 + cheat + description:Have Super Shot - P1 + code:00AA:10 + cheat + description:Have Super Shot - P2 + code:00AC:10 + +cartridge sha256:ffa61d9f7bfb1d60662ddf246b21a8756d518292e8fdc0f58ac1c9b3fbad672d + name:Gauntlet II (USA) + cheat + description:Infinite health + code:SLXSNNSO+SLETYXSO + cheat + description:Take less damage + code:OTXSSYSV+ZAXSVYAA + cheat + description:Infinite keys (new game) + code:PAOVYAAA+SZVTEUVS + cheat + description:Infinite time in treasure rooms + code:XVOTGXSU + cheat + description:Walk through walls + code:APUVTIEP+ELSVGIEP + cheat + description:Weaker poison + code:ZLVVVIGT + cheat + description:Stronger poison + code:EGVVVIGV + cheat + description:5 super shots on pick-up + code:IAUTEUZA + cheat + description:20 super shots on pick-up + code:GPUTEUZA + cheat + description:Invincibility lasts longer + code:AYETVUGU + cheat + description:Invincibility doesn't last as long + code:LPETVUGU + cheat + description:Repulsiveness lasts longer + code:ANNTUXGU + cheat + description:Repulsiveness doesn't last as long + code:LONTUXGU + cheat + description:Invisibility lasts longer + code:AYOTKUGU + cheat + description:Invisibility doesn't last as long + code:LPOTKUGU + cheat + description:Infinite health - P1 + code:0739:FF + cheat + description:Infinite health - P2 + code:073A:FF + cheat + description:Infinite health - P3 + code:073B:FF + cheat + description:Infinite health - P4 + code:073C:FF + cheat + description:Infinite Keys - P1 + code:0743:04 + cheat + description:Infinite Keys - P2 + code:0744:04 + cheat + description:Infinite Keys - P3 + code:0745:04 + cheat + description:Infinite Keys - P4 + code:0746:09 + cheat + description:Infinite Potions - P1 + code:0748:03 + cheat + description:Infinite Potions - P2 + code:0749:03 + cheat + description:Infinite Potions - P3 + code:074A:03 + cheat + description:Infinite Potions - P4 + code:074B:03 + cheat + description:Have Invulnerability - P1 + code:0707:FF + cheat + description:Have Invulnerability - P2 + code:0708:FF + cheat + description:Have Invulnerability - P3 + code:0709:FF + cheat + description:Have Invulnerability - P4 + code:070A:FF + cheat + description:Have Reflective Shot - P1 + code:0716:FF + cheat + description:Have Reflective Shot - P2 + code:0717:FF + cheat + description:Have Reflective Shot - P3 + code:0718:FF + cheat + description:Have Reflective Shot - P4 + code:0719:FF + cheat + description:Have Repulsiveness - P1 + code:0711:FF + cheat + description:Have Repulsiveness - P2 + code:0712:FF + cheat + description:Have Repulsiveness - P3 + code:0713:FF + cheat + description:Have Repulsiveness - P4 + code:0714:FF + cheat + description:Have Super Shot - P1 + code:071B:0A + cheat + description:Have Super Shot - P2 + code:071C:0A + cheat + description:Have Super Shot - P3 + code:071D:0A + cheat + description:Have Super Shot - P4 + code:071E:0A + cheat + description:Have Transportability - P1 + code:0720:FF + cheat + description:Have Transportability - P2 + code:0721:FF + cheat + description:Have Transportability - P3 + code:0722:FF + cheat + description:Have Transportability - P4 + code:0723:FF + +cartridge sha256:cf517940496d6085563bdbbe74f4a06d2c4eca48da8eb2b35d5cfe463df35ce4 + name:George Foreman's KO Boxing (USA) + cheat + description:Infinite health + code:036E:43 + cheat + description:Knock opponent down with 1 punch + code:036F:01 + +cartridge sha256:43221ae8a386e8ddf68251d5870d6fe3d696be14a5e41d9a44c36227894044d8 + name:Ghostbusters (USA) + cheat + description:Infinite fuel + code:SXKZAZVG + cheat + description:Infinite energy during Gozer fight + code:SZVYAUSE + cheat + description:Immune to ghosts on Zuul stairway + code:OXOXKPVK + cheat + description:Permanent ghost alarm + code:PAEEXKPX + cheat + description:Permanent ghost vacuum + code:PASPLOPX + cheat + description:Self-emptying traps + code:OXSESGSX + cheat + description:Super sprinting up Zuul stairway + code:AEEZOAPA + cheat + description:Stay Puft does not climb building during Gozer fight + code:SZXYVOVV + cheat + description:Gozer dies in one hit + code:EIUYZLEY + cheat + description:No walk up Zuul stairway + code:AAXXPTYP + cheat + description:Start with $1,000,000 + code:AVVETNTI + +cartridge sha256:1ea36ebd81692d3a3c1db217e0df832f060c1566c69a74fac299aaeb0d8eb82f + name:Ghostbusters II (USA) + cheat + description:Invincibility + code:EINPOYEY+ESVOKIEY + cheat + description:Infinite lives + code:SUKYAUVS + cheat + description:Infinite continues + code:SZXPSXVK + cheat + description:Triple continues + code:TAEGTAZA + cheat + description:Rapid-firing proton rifle + code:ZEEOOXYO + cheat + description:All Ghostbusters can mega-jump + code:KYSOKXVN + cheat + description:Shield lasts longer - car scenes + code:NNXXAPAS + cheat + description:Infinite shield - car scenes + code:SZOXLNVK + cheat + description:Start with 1 life + code:AAXVGGLA + cheat + description:Start with 6 lives + code:IAXVGGLA + cheat + description:Start with 9 lives + code:AAXVGGLE + +cartridge sha256:eea66f7bcc90d1145454da487791be5926473bee4014313af12dfa0f7453ea81 + name:Ghosts'n Goblins (USA) + cheat + description:Invincibility + code:AEVNGIPA + cheat + description:Infinite armor + code:SKITTL + cheat + description:Infinite lives - both players + code:SZEGNOVK + cheat + description:Infinite time + code:SXOITUVK + cheat + description:Hit anywhere + code:ALEYYTEO+ATENATPA+OUKYPSOO+OUUUTVOO + cheat + description:Enable stage select (disable after loading stage) + code:AAVIZEYA + cheat + description:Speed up game + code:ZAKILZLA + cheat + description:Slow down game + code:GAKILZLA + cheat + description:Start with Axe + code:TUNKYIAG + cheat + description:Start with Dagger + code:ZKNKYIAG + cheat + description:Start with Fireball + code:GKNKYIAG + cheat + description:Start with Cross + code:YKNKYIAK + cheat + description:Start with Blue Sphere + code:KXNKYIAK + cheat + description:Start with 1 life - both players + code:PAEKPTLA + cheat + description:Start with 6 lives - both players + code:TAEKPTLA + cheat + description:Start with 9 lives - both players + code:PAEKPTLE + cheat + description:Start with 4 lives - P1 + code:VAEKZVSE + cheat + description:Enable stage select (disable after loading stage) + code:00A7:0F + cheat + description:Automatically complete level + code:00BF:01: + cheat + description:Game difficulty - normal + code:00AA:00 + cheat + description:Game difficulty - hard + code:00AA:01 + cheat + description:Game difficulty - harder + code:00AA:02 + cheat + description:Game difficulty - hardest + code:00AA:03 + cheat + description:Game difficulty - expert + code:00AA:04 + +cartridge sha256:48aaef58dee3ad370546db569306e40aeecd27b88b7faef3ccd9b8b818c9ea71 + name:Ghoul School (USA) + cheat + description:Invincibility + code:SZKZOZAX + cheat + description:Infinite health + code:SXSXSUSE + cheat + description:Infinite lives + code:SXEKYVVK + cheat + description:Infinite health (alt) + code:060A:FF + cheat + description:Infinitel lives (alt) + code:0467:09 + cheat + description:One hit kills on most enemies + code:060D:00+060E:00+060F:00+0610:00+0611:00+0612:00+0613:00 + +cartridge sha256:bf22e6aff97bb44210987f5631c1667d4fa75ef79522e8c46dbb3b0f4877896b + name:Goal! (USA) + cheat + description:CPU score adds to your score + code:OGOKLYEN+OGOKYYEN + +cartridge sha256:7911375ab98da4ac5c628ba4dfffcba8ba4fc13a341901aed120ab967be5e26c + name:Goal! Two (USA) + cheat + description:Infinite time - Italy, P2 + code:SZEYAPVG + cheat + description:P2 or computer can't score - Italy, P2 + code:SXNELNSE + cheat + description:Start with more KP - Italy, P2 + code:AZKIANPA + cheat + description:Start with a lot of KP - Italy, P2 + code:AIKIANPA + cheat + description:Start with mega KP - Italy, P2 + code:OPKIANPE + cheat + description:Start with more TP - Italy, P2 + code:AZKIPYYA + cheat + description:Start with a lot of TP - Italy, P2 + code:AIKIPYYA + cheat + description:Start with mega TP - Italy, P2 + code:OPKIPYYE + +cartridge sha256:c2383e5cd8670c7107d59887026b9001f30045aa5f07be4b687b7a6bc290db1f + name:Godzilla - Monster of Monsters! (USA) + cheat + description:Infinite life (health) + code:018C:30 + cheat + description:Infinite power + code:0178:30 + +cartridge sha256:af24262bc78865b81b1a42d2842e222553fca27fb841a4eb8fbe26da7eba6163 + name:Golf Grand Slam (USA) + cheat + description:Strokes aren't recorded + code:SXEZGYSA + cheat + description:Some shots can be done more accurately + code:PEXTETIA + cheat + description:Wind always at 9 + code:OZOIPGIX+PAOIZKAX+SXSZZYSA + +cartridge sha256:9f559f83b9b5179137069bae0ca4b8eacf84378892b598044b88ef50681b58bb + name:Golgo 13 - Top Secret Episode (USA) + cheat + description:Infinite health + code:SZOETGSA+OXKVXAVK+SXKNNPSA + cheat + description:Health does not gradually decrease + code:SXKVXAVG + cheat + description:Infinite bullets in horizontal mode + code:GXUVXTSA + cheat + description:Infinite damage in horizontal mode + code:GXKNNPSA + cheat + description:Infinite damage in pan/zoom mode + code:GZOEGGST + cheat + description:Infinite damage in maze + code:GZKLZGST + cheat + description:Have a health and bullets boost + code:ZAVKIAAA + +cartridge sha256:16c7de15b7dc72c567f58172bbf0cd1328d11625f6707814da030df15f95dc92 + name:Goonies II, The (USA) + cheat + description:Invincibility + code:SESEZESX + cheat + description:Infinite health + code:SZSUNTSA + cheat + description:Infinite time + code:SSOOUZVI + cheat + description:Infinite lives + code:SZUGUYVG + cheat + description:Infinite Bombs on pick-up + code:SXUASSVK + cheat + description:Infinite Molotov Bombs on pick-up + code:SZVAESVK + cheat + description:Infinite Sling Shots on pick-up + code:SZNEEVVK + cheat + description:Super-jump + code:YEUAOPZA + cheat + description:Mega-jump + code:LEUAOPZA + cheat + description:Better Jumping Boots on pick-up + code:IEUEKPGA + cheat + description:Super-speed + code:ZESAPAPA + cheat + description:Walk through walls + code:AOSAYVOG+APSAZYEY+SZNAANSE + cheat + description:Start with all items + code:YPVIAGPE + cheat + description:Start with Boomerang + code:IAVIAGPA + cheat + description:Start with 4 health cells + code:GAUIZGZA+AGUIYGAZ + cheat + description:Start with 8 health cells + code:AAUIZGZE+EAUIYGAZ + cheat + description:Start with 1 life + code:PAXSZGLA + cheat + description:Start with 6 lives + code:TAXSZGLA + cheat + description:Start with 9 lives + code:PAXSZGLE + cheat + description:Invincibility (alt) + code:0516:41 + cheat + description:Infinite health (alt) + code:0503:20 + cheat + description:Infinite lives (alt) + code:0022:09 + cheat + description:Have all weapons + code:050B:FF+050C:FF + cheat + description:Have all Implements + code:050A:FF + cheat + description:Infinite Keys + code:0500:08 + +cartridge sha256:15685dee8bc1c588dfa2649b7b5f715aa7b4136454ba09c046d1b17209749d76 + name:Gotcha! - The Sport! (USA) + cheat + description:Infinite time + code:AASUTIPA + cheat + description:Increase timer to 59 seconds + code:IAEPOAGA+PAEPVAIE + cheat + description:Decrease timer to 25 seconds + code:ZAEPOAGA+IAEPVAIA + cheat + description:Start with double rations of ammo + code:ZAEOKAPA + cheat + description:Enemies never shoot at you + code:05F1:63 + cheat + description:Infinite ammo + code:061A:09+061B:09 + cheat + description:Infinite time (alt) + code:061E:09+061F:09 + +cartridge sha256:6918d7cbb81bfcd20d95bb08bcf137c7ea80ae9f0c12b92bfdcc90a6cf9752a0 + name:Gradius (USA) + cheat + description:Infinite lives - both players + code:SXOOYYVI + cheat + description:Keep power capsules + code:KOXOLYSP + cheat + description:Increase force field protection + code:NNOEKPIE + cheat + description:Never lose weapons + code:YGUONUZS+YGKPUUIL + cheat + description:Hit anywhere + code:AAOKYAAP+AAXKGALA + cheat + description:Start with 1 life - both players + code:AENELZLA + cheat + description:Start with 6 lives - both players + code:IENELZLA + cheat + description:Start with 9 lives - both players + code:AENELZLE + +cartridge sha256:2974ad16b994cfdc9418310ced6c7f4ed64433063d12439a7b37a816f797dd0e + name:Gradius II (Japan) + cheat + description:Invincibility + code:ATENGIAZ + +cartridge sha256:fe3d2f94dadd3b2437e45ed9a38276b8b32af9e25d484de79c3cc7bf60eef386 + name:Grand Master (Japan) + cheat + description:Invincibility + code:0420:01 + cheat + description:Infinite HP + code:044F:20 + cheat + description:Infinite MP + code:0450:20 + cheat + description:Have Armor + code:0439:01 + cheat + description:Have Axe + code:0431:01 + cheat + description:Have Boots + code:0435:01 + cheat + description:Have Cross + code:043B:01 + cheat + description:Have Diamond + code:0437:01 + cheat + description:Have Exit Key + code:0436:01 + cheat + description:Have Harp + code:0434:01 + cheat + description:Have Hourglass + code:043C:01 + cheat + description:Have Mirror + code:043E:01 + cheat + description:Have Morning Star + code:0433:01 + cheat + description:Have Necklace + code:043D:01 + cheat + description:Have Potion + code:0438:01 + cheat + description:Have Red Sword + code:0430:01 + cheat + description:Have Rod + code:0432:01 + cheat + description:Have Shield + code:043A:01 + +cartridge sha256:60a7d102deac7491e08b7ed5a7b96e66e09758b8411f682a4df1a7e8b49e55c5 + name:Great Waldo Search, The (USA) + cheat + description:Only need to find Waldo to complete the level + code:EKEIXTEA + cheat + description:Only need to find the magic scroll + code:EKXSNTAG + cheat + description:Faster timer + code:ZEKKOTPA + cheat + description:Much faster timer + code:GEKKOTPA + cheat + description:Play the Super Waldo Challenge + code:OZSIEEOV+GASIOALA + cheat + description:Extra clocks last forever + code:SXSGKTVG + cheat + description:Extra clocks worth nothing + code:SZXINYVT + +cartridge sha256:2b77da430b08e6a91a3453fde8ea82692415d44c3e953fdf281aa39352d5289d + name:Gremlins 2 - The New Batch (USA) + cheat + description:Invincibility + code:EYESUIEI + cheat + description:Infinite health + code:SXKEZPVG + cheat + description:Infinite lives + code:SZNETEVK + cheat + description:Infinite balloons + code:SZXEUXVK + cheat + description:Start with 5 lives + code:GAEGEAAA + cheat + description:Start with 10 lives + code:PAEGEAAE + cheat + description:Start with 3 balloons + code:LAEGSAPA + cheat + description:Start with 6 balloons + code:TAEGSAPA + cheat + description:Start with only 1 heart + code:ZAEKXATA+ZEEELATA + cheat + description:Start with 4 hearts + code:AAEKXATE+AEEELATE + cheat + description:Invincibility after one hit + code:00A9:09 + cheat + description:Infinite health (alt) + code:00AD:06 + cheat + description:Infinite lives (alt) + code:057C:03 + cheat + description:Infinite Balloons (alt) + code:050C:05 + cheat + description:Infinite Crystals + code:056C:FF + cheat + description:One hit kills on bosses + code:0360:00 + +cartridge sha256:d18ad8b76f9d067858dc8012ee84119c90524cdc3f4d555dd5a752a6f469fe6b + name:Guardian Legend, The (USA) + cheat + description:Invincibility + code:AVKSLZSZ + cheat + description:Infinite health + code:AAXTIUNY + cheat + description:Hit anywhere + code:AASIYUYT+EGSITLIZ+EISSALEY+PASSPLIE + cheat + description:Use up minimum shots + code:OVOAKLSV+PEOASLAP + cheat + description:Never use up shots (To finish the game, save before opening the entrance to corridor 6. Restart with no codes and go through the enterance. Save again, then restart.) + code:GXOAKLST + cheat + description:Start with less health + code:AXVAIAAG + cheat + description:Start with more health + code:EEVAIAAG + cheat + description:Start on area 1 + code:PAKVELAA + cheat + description:Start on area 3 + code:LAKVELAA + cheat + description:Start on area 5 + code:IAKVELAA + cheat + description:Start on area 7 + code:YAKVELAA + cheat + description:Start on area 9 + code:PAKVELAE + cheat + description:Fighter shape (Adventure and Space mode) + code:0030:50 + cheat + description:Fighter shape in TGL mode (Adventure and Space mode) + code:0030:52 + cheat + description:Max consecutive firing + code:003A:01 + cheat + description:Have 2-way shot + code:003A:01 + cheat + description:Have 3-way shot + code:003A:02 + cheat + description:Have 4-way shot + code:003A:03 + cheat + description:Max weapon power - Blue + code:003D:01 + cheat + description:Max weapon power - Green + code:003D:02 + cheat + description:Max weapon power - Red + code:003D:03 + cheat + description:Start on area 10 + code:0050:0A + cheat + description:Start on Corridor 01 + code:0051:01 + cheat + description:Start on Corridor 02 + code:0051:02 + cheat + description:Start on Corridor 03 + code:0051:03 + cheat + description:Start on Corridor 04 + code:0051:04 + cheat + description:Start on Corridor 05 + code:0051:05 + cheat + description:Start on Corridor 06 + code:0051:06 + cheat + description:Start on Corridor 07 + code:0051:07 + cheat + description:Start on Corridor 08 + code:0051:08 + cheat + description:Start on Corridor 09 + code:0051:09 + cheat + description:Start on Corridor 10 + code:0051:0A + cheat + description:Start on Corridor 11 + code:0051:0B + cheat + description:Start on Corridor 12 + code:0051:0C + cheat + description:Start on Corridor 13 + code:0051:0D + cheat + description:Start on Corridor 14 + code:0051:0E + cheat + description:Start on Corridor 15 + code:0051:0F + cheat + description:Start on Corridor 16 + code:0051:10 + cheat + description:Start on Corridor 17 + code:0051:11 + cheat + description:Start on Corridor 18 + code:0051:12 + cheat + description:Start on Corridor 19 + code:0051:13 + cheat + description:Start on Corridor 20 + code:0051:14 + cheat + description:Start on Corridor 21 + code:0051:15 + cheat + description:Start on Corridor 22 + code:0051:16 + +cartridge sha256:a2033c3b3d9f54b37fad8083604d37e2b2cb4ff77e0e183021141f55dfa9c4cd + name:Guerrilla War (USA) + cheat + description:Invincibility + code:EYSTGGEI+EIETUGEY + cheat + description:Infinite lives - both players + code:SLTKOV + cheat + description:Infinite lives - both players (alt) + code:SZVKOVVS + cheat + description:Keep weapon after death + code:SXUTEUSO + cheat + description:Press Start to complete the level + code:LASKYYPO + cheat + description:Start a new game to view the ending + code:PEXXAEAE + cheat + description:Start with 1 life - both players + code:AELGVP + cheat + description:Start with 6 lives - both players + code:IELGVP + cheat + description:Start with 9 lives - both players + code:PELGVO + cheat + description:Invincibility - P1 + code:0680:02 + cheat + description:Invincibility - P2 + code:0681:02 + cheat + description:Infinite lives - P1 + code:0028:05 + cheat + description:Infinite lives - P2 + code:0029:04 + cheat + description:Infinite time for tank + code:04C2:FA + cheat + description:Start on stage 2 (disable after loading stage) + code:0039:01 + cheat + description:Start on stage 3 (disable after loading stage) + code:0039:02 + cheat + description:Start on stage 4 (disable after loading stage) + code:0039:03 + cheat + description:Start on stage 5 (disable after loading stage) + code:0039:04 + cheat + description:Start on stage 6 (disable after loading stage) + code:0039:05 + cheat + description:Start on stage 7 (disable after loading stage) + code:0039:06 + cheat + description:Start on stage 8 (disable after loading stage) + code:0039:07 + cheat + description:Start on stage 9 (disable after loading stage) + code:0039:08 + cheat + description:Start on stage 10 (disable after loading stage) + code:0039:09 + +cartridge sha256:4628f32db9b826d19fe5dd8e2c45a9f70e1041f15b7b44b06dee2f01731566e8 + name:Gumshoe (USA, Europe) + cheat + description:Gain 1 bullet on pick-up + code:PASAUALA + cheat + description:Gain 6 bullets on pick-up + code:TASAUALA + cheat + description:Timer set to 04:00 + code:LAKEGYTA + cheat + description:Timer set to 10:00 + code:PAKEGYTE + cheat + description:Different attack waves + code:SAKAVEKE + cheat + description:Start with 1 life + code:PAUENALA + cheat + description:Start with 6 lives + code:TAUENALA + cheat + description:Start with 9 lives + code:PAUENALE + cheat + description:Start with 25 bullets + code:IZSEEAAI + cheat + description:Start with 150 bullets + code:PASEKAAA + cheat + description:Start with 250 bullets + code:ZASEKAAA + +cartridge sha256:d22a0c390dfc47c99226226c98158bf0ca3b4cd07dbd3d46cc50c2f1b9303c22 + name:Gun Nac (USA) + cheat + description:Invincibility + code:AGEZPAAI+AGUXGPAI + cheat + description:Infinite lives + code:SXOZYUSE + cheat + description:Infinite special weapons + code:SXVZTXSE + cheat + description:One hit kills + code:EIEIYYEP + cheat + description:Enemies die automatically + code:AAUZLOAP+AUSSANAO+SAUZTOVK + cheat + description:Get items from anywhere + code:AUVSINKU+AVVSTNAP + cheat + description:Invincibility (alt) + code:0400:02 + cheat + description:Infinite lives (alt) + code:018D:03 + cheat + description:Infinite Bombs + code:018F:04 + cheat + description:Weapon level 1 + code:0033:00 + cheat + description:Weapon level 2 + code:0033:01 + cheat + description:Weapon level 3 + code:0033:02 + cheat + description:Weapon level 4 + code:0033:03 + cheat + description:Weapon level 5 + code:0033:04 + cheat + description:Weapon level 6 + code:0033:05 + cheat + description:Weapon level 7 + code:0033:06 + cheat + description:Weapon level 8 + code:0033:07 + cheat + description:Weapon type 1 + code:0034:00 + cheat + description:Weapon type 2 + code:0034:01 + cheat + description:Weapon type 3 + code:0034:02 + cheat + description:Weapon type 4 + code:0034:03 + cheat + description:Weapon type 5 + code:0034:04 + cheat + description:Bomb power level 2 + code:003B:01 + cheat + description:Bomb power level 3 + code:003B:02 + cheat + description:Bomb power level 4 + code:003B:03 + cheat + description:Turbo power level 2 + code:003C:01 + cheat + description:Turbo power level 3 + code:003C:02 + cheat + description:Turbo power level 4 + code:003C:03 + cheat + description:Turbo power level 5 + code:003C:04 + cheat + description:Start on level 2 + code:0180:02 + cheat + description:Start on level 3 + code:0180:03 + cheat + description:Start on level 4 + code:0180:04 + cheat + description:Start on level 5 + code:0180:05 + cheat + description:Start on level 6 + code:0180:06 + cheat + description:Start on level 7 + code:0180:07 + cheat + description:Start on level 8 + code:0180:08 + +cartridge sha256:f39421a126f3b93caa37d6c3ed899840ddfd51b0587446ca459f72564aca1433 + name:Gun.Smoke (USA) + cheat + description:Infinite lives + code:SXUYTLVG + cheat + description:Keep weapons after death + code:PEXNALAA + cheat + description:Start with all weapons and lots of ammo + code:PAUTTYAA + cheat + description:Start with all weapons, lots of ammo, all 4 boots and all 4 rifle icons + code:GAUTTYAA + cheat + description:Start with 9 lives + code:PAXVTYLE + cheat + description:Start with 25 lives + code:PPXVTYLE + +cartridge sha256:0d895a031dd38f2661ba2af4a1b3c7b9753632b1530ea28eec936cf3fda8bf54 + name:Gyromite (World) + cheat + description:Invincible against enemies + code:SZUZKTAX + cheat + description:Invincible against upward crushing + code:ATOXXOOZ + cheat + description:Infinite lives + code:SUZAAI + cheat + description:Climb up through flooring + code:AESZVZLA + cheat + description:Climb down through flooring + code:AEOZEZLA + cheat + description:Slow down timer + code:ZEAAUS + cheat + description:Start with 1 life + code:PEUAGLIA + cheat + description:Start with 10 lives + code:ZEUAGLIE + cheat + description:Start with 20 lives + code:GOUAGLIA + +cartridge sha256:c6e275929764f7950ee85806ef5fdab9dda36e27f9f29935101bfc0916bf90a6 + name:Gyruss (USA) + cheat + description:Invincibility + code:OXSXTASX + cheat + description:Infinite lives + code:AEEOIEZA + cheat + description:Never lose twin shots + code:GEEPIAZA+OEEPYAPA + cheat + description:Gain 2 phasers when you die with none + code:ZEEPYAPA + cheat + description:Gain 4 phasers when you die with none + code:GEEPYAPA + cheat + description:Start with 1 ship + code:PAXEGLGA + cheat + description:Start with 10 ships + code:ZAXEGLGE + cheat + description:Start with 4 phasers + code:GAKEATPA + cheat + description:Start with 8 phasers + code:AAKEATPE + cheat + description:Start with twin shots + 1 phaser + code:OAKEATPA + cheat + description:Start with twin shots + 4 phasers + code:KAKEATPA + cheat + description:Start with twin shots + 8 phasers + code:EAKEATPE + +cartridge sha256:bd5c7925e616da879ee63ac4ac2004af26e20ae36a494247e704d41440ac971a + name:Hammerin' Harry (Europe) + cheat + description:Infinite energy (except spikes) + code:SXULUKSE + cheat + description:Infinite lives + code:SZKZKOVK + cheat + description:Invincibility + code:ESSNPTEY+SESYTVSX + +cartridge sha256:6e2b0e222eb8dba29c0ca363f1d7d59ed1fa307bafc150b5c8e1dd13638555a6 + name:Happy Pairs (Asia) (PAL) (Unl) + cheat + description:Infinite tries + code:SZKUZAVG + cheat + description:Infinite time + code:SXXUNTVG + cheat + description:Infinite autos + code:SZNLIPVG + +cartridge sha256:07bfd5bf6d3e5cea26d0a521e7d599d67a4b794c5efa66e4189877c1361aad47 + name:Harlem Globetrotters (USA) + cheat + description:Slower timer + code:IIUGSOIZ + cheat + description:Faster timer + code:GPUGSOIX + cheat + description:Slower shot clock + code:IIVGKOIZ + cheat + description:Faster shot clock + code:GPVGKOIX + +cartridge sha256:fd3c19b0339bf2b326d8a0526216b5143f035f68dabb3b3392689c92d6c140d9 + name:Heavy Barrel (USA) + cheat + description:Invincibility + code:AVVUEUPA + cheat + description:Invincibility and invisibility on second life + code:XTOVVEXK + cheat + description:Infinite lives + code:SZOTXTVG + cheat + description:Infinite Bombs + code:SXVVVLVI + cheat + description:Infinite Keys + code:SUKUZISP + cheat + description:Infinite Mace + code:OXNUTNPV + cheat + description:Infinite hand weapons on pick-up - both players + code:ENVVKLEI + cheat + description:Infinite hand weapons and firearms on pick-up - both players + code:OXVVVLVS + cheat + description:Hand weapons last 4x longer + code:AEKVXLII + cheat + description:Only 1 hand weapon + code:ZAOVEPAA + cheat + description:Autofire - P1 + code:ENSTPVSN + cheat + description:Autofire - P2 + code:EYNVINSN + cheat + description:Enemies don't fire handguns + code:XVKZVEXK + +cartridge sha256:0a23312c8e07b9af753b25c1307f07f8061d6ac4f8427f4660382d925e7a84e2 + name:Heavy Shreddin' (USA) + cheat + description:Infinite penalties + code:SXSOYIVG+SXOPPLVG+SXUOZLVG + cheat + description:Select any level + code:NNUEYLAE + cheat + description:Slow timer + code:AUEXNVAO + cheat + description:Faster left and right movement + code:ZESEKLPA+ZEVEKLPA + cheat + description:1 penalty + code:PEKAPLGA + cheat + description:8 penalties + code:AEKAPLGE + cheat + description:16 penalties + code:AOKAPLGA + +cartridge sha256:429c833eb61c0728b0d9335c61f4bd8d3fb19c3bf8a18564917bf75526f104af + name:Heisei Tensai Bakabon (Japan) + cheat + description:Invincibility + code:ESKGLIEY + cheat + description:Infinite health + code:SGOGYPVG + cheat + description:Infinite time + code:SXKEOZSA + +cartridge sha256:1c8e9b6c4c57850d4ab1dea011e0226970034a46fa29fab1d370c01fac90538d + name:Hell Fighter (Asia) (PAL) (Unl) + cheat + description:Infinite lives + code:SZSXNSVK+SZVZXSVK + +cartridge sha256:680a56e038176c7b8deca9fb910b26b097cadd58fa553ea29f3c9836c9a4e11b + name:Hello Kitty no Ohanabatake (Japan) + cheat + description:Invincibility + code:SXSSLNSE + cheat + description:Infinite lives + code:SLONNKSO + +cartridge sha256:72fa562dfb319bfe982a68053128126e2ed5d579ff1a36f7345bd3fe624e8e92 + name:Heracles no Eikou - Toujin Makyou Den (Japan) + cheat + description:No random battles + code:AVSVTZAZ + +cartridge sha256:8e4a04076b6a728a7e65a09737776dcb9defed7922bf0437d9a89bbe8c724b55 + name:Hogan's Alley (World) + cheat + description:Hit anywhere - Game B + code:AAOSIASY+AAXSPGEA + cheat + description:5 misses allowed - Game A + code:IAEKOIAP + cheat + description:20 misses allowed - Game A + code:AZEKOIAP + cheat + description:Infinite misses allowed - all games + code:AAOGETPA + cheat + description:Each miss counts as 2 - all games + code:ZAOGETPA + cheat + description:Infinite misses allowed - all games (alt) + code:00B3:00 + +cartridge sha256:1c1ad2992f728c7fb6a8f3980b1a0f8e01e5b24a0c43c713300846d87be5987a + name:Holy Diver (Japan) + cheat + description:Invincibility + code:AVNYNESA + cheat + description:Infinite health + code:SXNYNESE + cheat + description:Infinite lives + code:SXKVTOVK + +cartridge sha256:3f761f529d40cf42aed60fabc0e60ecfecf528f4165948e6157b552e3bbb4f89 + name:Home Alone 2 - Lost in New York (USA) + cheat + description:Infinite power units/life points + code:SZNYSSVK + cheat + description:Become almost invincible after losing 1 life point (against most enemies, vacuum cleaner can still kill you) + code:SZSVLVVK + cheat + description:Infinite lives + code:SZEYKVVK + cheat + description:Infinite slides on pick-up + code:SZOELKVK + cheat + description:Infinite darts on pick-up + code:SZVETKVK + cheat + description:Infinite flying fists on pick-up + code:SZSAAKVK + cheat + description:Every 4 cookies count as 8 + code:AENYVGGE + cheat + description:Every 4 cookies count as 12 + code:GENYVGGE + cheat + description:Every 4 cookies count as 16 + code:AONYVGGA + cheat + description:Every 4 cookies count as 20 (extra life point) + code:GONYVGGA + cheat + description:Extra life with 5 pizza slices instead of 6 + code:IAOVUGTA + cheat + description:Extra life with 4 pizza slices + code:GAOVUGTA + cheat + description:Extra life with 3 pizza slices + code:LAOVUGTA + cheat + description:Extra life with 2 pizza slices + code:ZAOVUGTA + cheat + description:Extra life with every pizza slice + code:PAOVUGTA + cheat + description:Start with 1 life instead of 3 + code:PEEPILLA + cheat + description:Start with 5 lives + code:IEEPILLA + cheat + description:Start with 7 lives + code:YEEPILLA + cheat + description:Start with 9 lives + code:PEEPILLE + cheat + description:Start with 25 lives + code:POEPILLE + cheat + description:Start with 50 lives + code:ZUEPILLA + cheat + description:Start with 75 lives + code:LKEPILLE + cheat + description:Start with 99 lives + code:LVEPILLA + +cartridge sha256:f3ff0c50c05aa5d461c293e306e553152e63564cd09e80ae0b6dcfa97b07d073 + name:Hook (USA) + cheat + description:Infinite health - P1 + code:GZVIKIST + cheat + description:Infinite health - P2 + code:GZNSNIST + cheat + description:Infinite lives - P1 + code:SZONIEVK + cheat + description:Max health from food - P1 + code:AENIOIIA + cheat + description:Max health from food - P2 + code:AAEINTIA + cheat + description:No health from food + code:AVVIXSGZ + cheat + description:Start with 1 life + code:AEXVNTZA + cheat + description:Start with 6 lives + code:IEXVNTZA + cheat + description:Start with 9 lives + code:AEXVNTZE + cheat + description:Infinite health - P1 (alt) + code:0365:6F + cheat + description:Infinite lives - P1 (alt) + code:0367:09 + cheat + description:Max Green Balls + code:0363:63 + cheat + description:Infinite Cakes + code:0487:63 + cheat + description:Max Green Thimbles + code:0364:63 + +cartridge sha256:3991a761116131dc412fd7cfe8e70bf414d11fa4778e9dfb049ffcc9a8586cac + name:Hudson Hawk (USA) + cheat + description:Infinite health + code:SXETGYSA + cheat + description:Infinite lives + code:OZSKYYUK+OZVGZYEN + cheat + description:Infinite continues + code:OZKKEAAU+OZKGVAVK + cheat + description:Start with very little health - first life only + code:PEVKZVNY + cheat + description:Start with 1/4 health - first life only + code:AKVKZVNY + cheat + description:Start with 1/2 health - first life only + code:ANVKZVNY + cheat + description:Start with 3/4 health - first life only + code:EUVKZVNY + cheat + description:Start with 1 continue + code:PESKPTLA + cheat + description:Start with 5 continues + code:IESKPTLA + cheat + description:Start with 9 continues + code:PESKPTLE + cheat + description:Start with 1 life + code:PEVGTTIA + cheat + description:Start with 3 lives + code:LEVGTTIA + cheat + description:Start with 9 lives + code:PEVGTTIE + +cartridge sha256:53bfc94fce46a25188f84f102810406f686a7fb13fb5e4ae8f13760106acb969 + name:Hudson's Adventure Island (USA) + cheat + description:Invincibility + code:ATSKZAKZ + cheat + description:Infinite health + code:SXKKIAVG + cheat + description:Immune to rocks + code:GXNGLAKA + cheat + description:Keep weapons + code:GZXEAPSA + cheat + description:Hit anywhere + code:AAKGTOKI+AAKKYPYA+OLSGZOOO + cheat + description:Multi-jump + code:GXVAGGEI+GXVEPGEI + cheat + description:Get fruits from anywhere + code:EIUEOLEL + cheat + description:Collectable items never disappear + code:ATKAEUVI + cheat + description:Can mega-jump while at rest + code:SPEEIIEG + cheat + description:Can mega-jump while running + code:SPEETSOZ + cheat + description:Multi-mega-maxi-moon jumps + code:AAEAYIPA+AEVEZGPZ + cheat + description:Skateboard doesn't automatically move forward + code:ALSAIIEI + cheat + description:Hudson can moonwalk + code:AEKAPIPA+PEEEZIAA + cheat + description:Start with infinite lives + code:SZOEGPVG + cheat + description:Start with 1 life + code:PEEEPALA + cheat + description:Start with 6 lives + code:TEEEPALA + cheat + description:Start with 9 lives + code:PEEEPALE + +cartridge sha256:bafe68d5e6bbebb0d71432d09bed0a482215d4534778a76d471150a3bdd01b08 + name:Hunt for Red October, The (USA) (Rev A) + cheat + description:Infinite lives + code:SXEZXZVG + cheat + description:Infinite time + code:SXEUPUVK + cheat + description:Infinite horizontal torpedoes + code:SXUXYSVK + cheat + description:Infinite vertical torpedoes + code:SZUZPVVK + cheat + description:Maximum power horizontal torpedoes on pick-up + code:OZEUEKOK+AAEUVGPA + cheat + description:Maximum power vertical torpedoes on pick-up + code:OZSLNKOK+AASUSGPA + cheat + description:Start with 10 horizontal torpedoes + code:ZANLVKPO + cheat + description:Start with 50 horizontal torpedoes + code:ZLNLVKPP + cheat + description:Start with 99 horizontal torpedoes + code:LTNLVKPP + cheat + description:Start with 5 vertical torpedoes + code:IANUUKYA + cheat + description:Start with 50 vertical torpedoes + code:ZLNUUKYA + cheat + description:Start with 99 vertical torpedoes + code:LTNUUKYA + cheat + description:Start with 5 caterpillars + code:IEELSKZA + cheat + description:Start with 50 caterpillars + code:ZUELSKZA + cheat + description:Start with 99 caterpillars + code:LVELSKZA + cheat + description:Start with 5 ECM's + code:IEEUXKZA + cheat + description:Start with 50 ECM's + code:ZUEUXKZA + cheat + description:Start with 99 ECM's + code:LVEUXKZA + cheat + description:Start with 1 life + code:PEVLYAIA + cheat + description:Start with 10 lives + code:ZEVLYAIE + +cartridge sha256:770abf58074764db12aade941ab1a389a818b8ff94d95f4b4b4913912b1f40b5 + name:Hydlide (USA) + cheat + description:Boost strength, life, magic + code:AZKAAVZE + cheat + description:Super boost strength, life, magic + code:GTKAAVZA + cheat + description:Don't take damage from most enemies + code:SXSGYYSA + cheat + description:Rapid healing + code:AEUEKVIA + cheat + description:Rapid magic healing + code:AANOVZZA + cheat + description:Infinite life + code:0038:64 + cheat + description:Max STR + code:0039:64 + cheat + description:Max EXP + code:003A:64 + cheat + description:Max Magic + code:003B:64 + cheat + description:Have the Sword + code:0059:FF + cheat + description:Have the Shield + code:005A:FF + cheat + description:Have the Lamp + code:005B:FF + cheat + description:Have the Cross + code:005C:FF + cheat + description:Have the Pot + code:005D:FF + cheat + description:Have the Medicine + code:005E:FF + cheat + description:Have the Key + code:005F:FF + cheat + description:Have the Ruby + code:0060:FF + cheat + description:Have the Ring + code:0061:FF + cheat + description:Have the Jewel + code:0062:FF + cheat + description:Have 3 Fairies + code:0063:FF+0064:FF+0065:FF + +cartridge sha256:002bb62441c1625051555109bce93ff2e2a2badb534a350b6d17ad0d7e7ef023 + name:Ice Climber (USA, Europe) + cheat + description:Invincibility + code:ATKSALAZ + cheat + description:Infinite lives + code:OKEIPGVS + cheat + description:Super-jump + code:GPUKOAZX + cheat + description:Enemies bump you instead of killing you + code:ELKITLEY + cheat + description:Double speed + code:VNSKXUNN+ZESKULPA + cheat + description:Triple speed + code:SNSKXUNN+LESKULPA + cheat + description:Start with 1 life + code:AEXKTGLA + cheat + description:Start with 6 lives + code:IEXKTGLA + cheat + description:Start with 9 lives + code:AEXKTGLE + +cartridge sha256:3775c1184419c0786841c5b4f2694b2a15e181678f92e75fb9b71bfb5668c7b3 + name:Ikari Warriors (USA) (Rev A) + cheat + description:Invincibility + code:SXVYAUGK + cheat + description:Invincibility (except against bombs) + code:ESVLZYEY + cheat + description:Invincibility (blinking) + code:KAXTLAEA + cheat + description:Infinite lives + code:SXSNZTVI + cheat + description:Infinite Missiles for Tank + code:SXXNVUVS + cheat + description:Infinite Bullets + code:SZONZSVS + cheat + description:Infinite Grenades + code:SXEYZSVS + cheat + description:Enemies die automatically + code:AAKLAYLY+AAOPYOGP+ASUUSPEL+GXOEATEP + cheat + description:Hit anywhere (except tanks and helicopters) + code:AEXUOPPA+LUXUUPLO+OKXUEOPX + cheat + description:Start with 1 life + code:PAUYPTLA + cheat + description:Start with 6 lives + code:TAUYPTLA + cheat + description:Start with 9 lives + code:PAUYPTLE + cheat + description:Start with 50 Bullets + code:ZUNNLZLT + cheat + description:Start with 99 Grenades + code:LTEYALZL + cheat + description:Start with 25 Grenades + code:PPEYALZU + cheat + description:Infinite lives - P1 + code:00E4:09 + cheat + description:Infinite lives - P2 + code:00E5:09 + cheat + description:Infinite Bullets - P1 + code:067F:63 + cheat + description:Infinite Bullets - P2 + code:0682:63 + cheat + description:Infinite Grenades - P2 + code:0680:63 + cheat + description:Infinite Grenades - P1 + code:0681:63 + cheat + description:Infinite Fuel for tank - P1 + code:0683:FF + cheat + description:Infinite Fuel for tank - P2 + code:0684:FF + cheat + description:Have 3-Way Shot, B Grenades, Super Speed, Knife - P1 + code:0674:DF + cheat + description:Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P1 + code:0674:EF + cheat + description:Have 3-Way Shot, B Grenades, Super Speed, Knife - P2 + code:0675:DF + cheat + description:Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P2 + code:0675:EF + +cartridge sha256:294f70829b72f3d1b6c81be92b542e96fec1a243d16dfd338a4226b97ad09732 + name:Ikari Warriors (USA) + cheat + description:Invincibility + code:SXVYAUGK + cheat + description:Invincibility (except against bombs) + code:ESVLZYEY + cheat + description:Invincibility (blinking) + code:KAXTLAEA + cheat + description:Infinite lives + code:SXSNZTVI + cheat + description:Infinite Missiles for Tank + code:SXXNVUVS + cheat + description:Infinite Bullets + code:SZONZSVS + cheat + description:Infinite Grenades + code:SXEYZSVS + cheat + description:Enemies die automatically + code:AAKLAYLY+AAOPYOGP+ASUUSPEL+GXOEATEP + cheat + description:Hit anywhere (except tanks and helicopters) + code:AEXUOPPA+LUXUUPLO+OKXUEOPX + cheat + description:Start with 1 life + code:PAUYPTLA + cheat + description:Start with 6 lives + code:TAUYPTLA + cheat + description:Start with 9 lives + code:PAUYPTLE + cheat + description:Start with 50 Bullets + code:ZUNNLZLT + cheat + description:Start with 99 Grenades + code:LTEYALZL + cheat + description:Start with 25 Grenades + code:PPEYALZU + cheat + description:Infinite lives - P1 + code:00E4:09 + cheat + description:Infinite lives - P2 + code:00E5:09 + cheat + description:Infinite Bullets - P1 + code:067F:63 + cheat + description:Infinite Bullets - P2 + code:0682:63 + cheat + description:Infinite Grenades - P2 + code:0680:63 + cheat + description:Infinite Grenades - P1 + code:0681:63 + cheat + description:Infinite Fuel for tank - P1 + code:0683:FF + cheat + description:Infinite Fuel for tank - P2 + code:0684:FF + cheat + description:Have 3-Way Shot, B Grenades, Super Speed, Knife - P1 + code:0674:DF + cheat + description:Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P1 + code:0674:EF + cheat + description:Have 3-Way Shot, B Grenades, Super Speed, Knife - P2 + code:0675:DF + cheat + description:Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P2 + code:0675:EF + +cartridge sha256:119f865684be58f37101b431975c827b2ad9340c0f2d3d9fc3153ee1213ee55e + name:Ikari Warriors II - Victory Road (USA) + cheat + description:Infinite health + code:OUOUIUOO + cheat + description:Don't take damage from most enemies + code:GXOLYLST + cheat + description:Start with half normal health + code:AUNYIYAT + cheat + description:Maximum weapon power on pick-up + code:OZUXVEPV+GAUXNAPA + cheat + description:Infinite health (alt) + code:06D1:32 + cheat + description:Infinite hearts + code:00F8:80 + cheat + description:Have Machine Gun + code:06C3:04 + cheat + description:Start with and keep Arrow + code:00F2:01 + cheat + description:Start with and keep Bazooka + code:06C5:04 + cheat + description:Start with and keep Boomerang + code:06C7:04 + cheat + description:Start with and keep Earthquake + code:00EC:01 + cheat + description:Start with and keep Elixir + code:00F6:01 + cheat + description:Start with and keep Grenades + code:06CB:04 + cheat + description:Start with and keep Land Mines + code:06CD:04 + cheat + description:Start with and keep Lightning + code:00EA:01 + cheat + description:Start with and keep Shield + code:00F0:01 + cheat + description:Start with and keep Sword + code:06C9:04 + cheat + description:Start with and keep Time Stopper + code:00F4:01 + cheat + description:Start with and keep Wings + code:00EE:01 + +cartridge sha256:181163b590a581b6d04baaedb815429a2342ded27b3fb7f2514661d1fd47c1cc + name:Ikari III - The Rescue (USA) + cheat + description:Invincibility + code:SZKLUZAX + cheat + description:Infinite health + code:SLSUNESO + cheat + description:Infinite lives + code:AEUGNYPA + cheat + description:Infinite lives (alt) + code:SUUKKNSO + cheat + description:Immune to most kicks and punches + code:GZSUOAST + cheat + description:3-way firing, instead of punching + code:YESKVGPA + cheat + description:Always throw grenades instead of punches + code:PESKVGPE + cheat + description:1 life after continue + code:PEXKZLLA + cheat + description:6 lives after continue + code:TEXKZLLA + cheat + description:9 lives after continue + code:PEXKZLLE + cheat + description:Start with 1 life + code:PEOKUALA + cheat + description:Start with 6 lives + code:TEOKUALA + cheat + description:Start with 9 lives + code:PEOKUALE + +cartridge sha256:7032a94d140339f9d6603accc9fed2846f5bbb781659cdff869d4b5f137d4e4a + name:Image Fight (USA) + cheat + description:Invincibility + code:ENKXYGEI+ENOPLPEI + cheat + description:Infinite lives - both players + code:SXSZTPVG + cheat + description:Never lose Pods + code:ATSLTKOZ + cheat + description:Start with V Cannon + code:PAELGGAA + cheat + description:Start with Reflecting Ball + code:ZAELGGAA + cheat + description:Start with Drilling Laser + code:LAELGGAA + cheat + description:Start with Seeking Missile + code:GAELGGAA + cheat + description:Start with Seeking Laser + code:IAELGGAA + cheat + description:Start with 1 life - both players + code:PAVXLPLA + cheat + description:Start with 6 lives - both players + code:TAVXLPLA + cheat + description:Start with 9 lives - both players + code:PAVXLPLE + cheat + description:Start at Combat Simulation Stage 2 + code:PAVZLPAA + cheat + description:Start at Combat Simulation Stage 3 + code:ZAVZLPAA + cheat + description:Start at Combat Simulation Stage 4 + code:LAVZLPAA + cheat + description:Start at Combat Simulation Stage 5 + code:GAVZLPAA + cheat + description:Start at Real Combat - 1st Target + code:IAVZLPAA + cheat + description:Start at Real Combat - 2nd Target + code:TAVZLPAA + +cartridge sha256:8bc6a252778c2909a97b3fff185c5ff2a1786afe5e8237098f15fe3eaf23adab + name:Immortal, The (USA) + cheat + description:Enemy's fatigue level doesn't go down + code:GZOLIXVK + cheat + description:Your fatigue level doesn't go down + code:GZOUIXVK + cheat + description:Your fatigue level goes down faster + code:YLEUIXYN + cheat + description:Your fatigue level goes down slower + code:NYEUIXYN + cheat + description:Don't lose energy from fighting + code:SZSLTXVK + cheat + description:Your fatigue level never rises + code:SZNLPXVV + cheat + description:More damage from fireballs + code:ZAKSIYPA + cheat + description:Instant kills on enemies + code:0362:00 + cheat + description:Infinite health in battle sequences + code:0363:0F + cheat + description:Infinite Gold + code:042C:FF + +cartridge sha256:c42fc592821b474b486ae32d1d63e8938f1735a6d45db026f7b78b2ec51427ac + name:Incredible Crash Dummies, The (USA) + cheat + description:Invincibility + code:EIUXYYEY + cheat + description:Infinite health + code:KZVGGNKE + cheat + description:Infinite lives + code:KZNKANKE + cheat + description:Invincibility (blinking) + code:053C:01 + +cartridge sha256:79c03fec3f459ac6e762c27d8f08debe6589b01df21919ef69645870a16723b3 + name:Indiana Jones and the Last Crusade (USA) (UBI Soft) + cheat + description:Infinite health (you can get trapped in certain areas) + code:VYONKZGE + cheat + description:Infinite time + code:AEEOYTPA + cheat + description:Infinite credits + code:SXXXIEVK + cheat + description:Infinite lives + code:KYSTEGGE + cheat + description:Infinite lives on bike section + code:SZUEEIVG + cheat + description:More lives on ship section + code:PAVAGYIE + cheat + description:Fewer lives on ship section + code:PAVAGYIA + cheat + description:More lives on tank section + code:PAEPIITE + cheat + description:Fewer lives on tank section + code:PAEPIITA + cheat + description:More lives on castle section + code:PEXPTALE + cheat + description:Fewer lives on castle section + code:PEXPTALA + cheat + description:Heart does nothing (may goof up energy bar) + code:AEKPXLPA + cheat + description:Super-jump + code:IAVTKAPA + cheat + description:Mega-jump + code:PAVTKAPE + cheat + description:Continue with 1 life + code:PEUZPALA + cheat + description:Continue with 5 lives + code:IEUZPALA + cheat + description:Continue with 7 lives + code:YEUZPALA + cheat + description:Continue with 9 lives + code:PEUZPALE + cheat + description:Start with 1 life + code:PAVKGALA + cheat + description:Start with 5 lives + code:IAVKGALA + cheat + description:Start with 7 lives + code:YAVKGALA + cheat + description:Start with 9 lives + code:PAVKGALE + cheat + description:Start on level 2 (after completing the level you'll go back to level 1) + code:PANGPAAA + cheat + description:Start on level 3 (after completing the level you'll go back to level 1) + code:ZANGPAAA + cheat + description:Start on level 4 (after completing the level you'll go back to level 1) + code:LANGPAAA + cheat + description:Start on level 5 (after completing the level you'll go back to level 1) + code:GANGPAAA + cheat + description:Start on level 6 (after completing the level you'll go back to level 1) + code:IANGPAAA + +cartridge sha256:5348f7f88695867de428b38eb6a7f724f5f97110c383567d7e4d1f5a2d8b612f + name:Indiana Jones and the Last Crusade (USA) (Taito) + cheat + description:Infinite health + code:SAOOLOIE + +cartridge sha256:884765e5df86042211191f7e7e4653255425e3da70a9dec6f4a9336c07b5f258 + name:Indiana Jones and the Temple of Doom (USA) (Rev A) + cheat + description:Infinite lives + code:SZEXOKVK + cheat + description:Infinite time + code:SZXZAEVK + cheat + description:Always keep Sword + code:SZSZGUVK + cheat + description:Always keep Gun + code:SZUXZVVK + cheat + description:Start with less time + code:GLKUXGLV+LVEXUUGL+LTOXVKGL + cheat + description:Start with 1 life + code:AEKLULGA + cheat + description:Start with 10 lives + code:PEKLULGE + cheat + description:Start with 15 lives + code:TEKLULGE + cheat + description:Start on level 2 + code:PPKLEKYA + cheat + description:Start on level 4 + code:IPKLEKYA + cheat + description:Start on level 6 + code:PPKLEKYE + cheat + description:Start on level 8 + code:IPKLEKYE + cheat + description:0 Maps left + code:012F:00 + cheat + description:Have all 3 Keys + code:011D:B0 + +cartridge sha256:8125d69b66dd7784246156bb669542924f1c2b7f53b8d325ffcbaa74746d14ff + name:Indiana Jones and the Temple of Doom (USA) + cheat + description:Infinite lives + code:SZEXOKVK + cheat + description:Infinite time + code:SZXZAEVK + cheat + description:Always keep Sword + code:SZSZGUVK + cheat + description:Always keep Gun + code:SZUXZVVK + cheat + description:Start with less time + code:GLKUXGLV+LVEXUUGL+LTOXVKGL + cheat + description:Start with 1 life + code:AEKLULGA + cheat + description:Start with 10 lives + code:PEKLULGE + cheat + description:Start with 15 lives + code:TEKLULGE + cheat + description:Start on level 2 + code:PPKLEKYA + cheat + description:Start on level 4 + code:IPKLEKYA + cheat + description:Start on level 6 + code:PPKLEKYE + cheat + description:Start on level 8 + code:IPKLEKYE + cheat + description:0 Maps left + code:012F:00 + cheat + description:Have all 3 Keys + code:011D:B0 + +cartridge sha256:0bb401bbd0cae2758b2bd355cd3cac3cc26a01950859c830b3b122bd379f2463 + name:Infiltrator (USA) + cheat + description:Infinite time + code:SZKLIKVK + cheat + description:Never lose Grenades outside buildings + code:SXKXXIVG + cheat + description:Never lose Grenades inside buildings + code:SZVKAIVG + cheat + description:Never lose Spray outside buildings + code:SXUXKIVG + cheat + description:Never lose Spray inside buildings + code:SZUKYIVG + cheat + description:Start with less time + code:ILOULXPL + cheat + description:Start with more Grenades + code:ZPSLPXZA + cheat + description:Start with fewer Grenades + code:IASLPXZA + cheat + description:Start with no Grenades + code:AASLPXZA + cheat + description:Start with less Spray + code:LPKUIZTZ + cheat + description:Start with no Spray + code:AAKUIZTZ + +cartridge sha256:0f406a7c853b919ed880868420808b945855146db9817ebc3102f08da13fa703 + name:Insector X (Japan) + cheat + description:Invincibility + code:00CA:00 + cheat + description:Infinite lives + code:00D8:03 + cheat + description:Max shot power-up + code:00CC:06 + +cartridge sha256:6fac8ea87f7eea5e9bf7b838ff92c2fa3369908c866631340ec489beacdcbf3b + name:Iron Tank - The Invasion of Normandy (USA) + cheat + description:Infinite health + code:SLUVKESO + cheat + description:Infinite lives + code:OIOGIIPA+SXUKTKVK + cheat + description:Start with 1 life + code:OIOGIIPA+AAUKGGZA + cheat + description:Start with 6 lives + code:OIOGIIPA+IAUKGGZA + cheat + description:Start with 9 lives + code:OIOGIIPA+AAUKGGZE + cheat + description:Infinite health (alt) + code:0306:FF + cheat + description:Infinite lives (alt) + code:01D1:09 + +cartridge sha256:aab5e0ecc46e575b1b396bd63d8fa4f3bd740061f3157a1d4afdf9f7f2dabd88 + name:IronSword - Wizards & Warriors II (USA) + cheat + description:Infinite lives + code:OXXANAVK + cheat + description:Infinite continues + code:OZUAXPVK + cheat + description:Infinite spells + code:GXXSNKVS + cheat + description:Infinite money + code:ZEOSEGAA + cheat + description:Infinite keys once one is obtained + code:SEOOTISZ + cheat + description:Super-jump + code:OTUIGLSV+PAUIILVE + cheat + description:Food gives full health + code:AEEOEAZA + cheat + description:Drink gives full health + code:AAOPNPZA + cheat + description:Fleet foot jumping + code:AASIYPLA + cheat + description:Fleet foot running + code:OXKSYUPX + cheat + description:Start with Axe and Helmet + code:LEVEXZAA + cheat + description:Start with Shield + code:ZEVAVXNY + cheat + description:Start with Ironsword + code:AAOAGUGA + cheat + description:Start on wind level + code:LEEEPZAE + cheat + description:Start on tree level + code:GOEEPZAA + cheat + description:Start on water level + code:TOEEPZAA + cheat + description:Start on outer fire level + code:IOEEPZAA + cheat + description:Start on lower earth level + code:LUEEPZAA + cheat + description:Start on lower icefire mountain + code:PUEEPZAA + cheat + description:Start a new game with full magic + code:NYEAVLAE + cheat + description:Start with 1 life + code:PENAEZLA+PESEXPLA + cheat + description:Start with 6 lives + code:TENAEZLA+TESEXPLA + cheat + description:Infinite health (disable at end of stage) + code:006A:FF + cheat + description:Infinite magic once obtained (disable at end of stage) + code:006B:FF + cheat + description:Infinite Keys + code:006C:08 + cheat + description:Infinite money (alt) + code:0096:0A+008B:64 + cheat + description:Have the Sindarin Treasures + code:00F7:0F + cheat + description:Have the Dagger + code:0067:00 + cheat + description:Have the Sword + code:0067:01 + cheat + description:Have the Long Sword + code:0067:02 + cheat + description:Have the Axe + code:0067:03 + cheat + description:Have the Large Sword + code:0067:04 + cheat + description:Have the Ironsword + code:0067:05 + cheat + description:Have the Diamond Sword + code:0067:06 + cheat + description:Have the Helmet + code:0068:01 + cheat + description:Have the Horned Helmet + code:0068:02 + cheat + description:Have the Diamond Helmet + code:0068:03 + cheat + description:Have the Large Shield + code:0069:01 + cheat + description:Have the Diamond Shield + code:0069:02 + +cartridge sha256:81311ff2507c6522172b203534f91f99749f465c8b765ac584f0e851a8bf96b2 + name:Isolated Warrior (USA) + cheat + description:Invincibility + code:OXOPKZAU+SEOPVZSZ+UVKTAYXZ + cheat + description:Infinite health + code:XTVSGGTX + cheat + description:Infinite lives + code:SZUVPAVG + cheat + description:Infinite Bombs + code:SZXOXSVK + cheat + description:More health restored on pick-up + code:TEOAAYZA + cheat + description:Less health restored on pick-up + code:PEOAAYZA + cheat + description:Start with maximum health and Bombs + code:AASVTXPA + cheat + description:Start with 1 life + code:PAXTIZLA + cheat + description:Start with 6 lives + code:TAXTIZLA + cheat + description:Start with 9 lives + code:PAXTIZLE + cheat + description:Start on Scene 2 + code:PANEGAAA+VANEYESE+VEEAZESE + cheat + description:Start on Scene 3 + code:ZANEGAAA+VANEYESE+VEEAZESE + cheat + description:Start on Scene 4 + code:LANEGAAA+VANEYESE+VEEAZESE + cheat + description:Start on Scene 5 + code:GANEGAAA+VANEYESE+VEEAZESE + cheat + description:Start on Scene 6 + code:IANEGAAA+VANEYESE+VEEAZESE + cheat + description:Invincibility (alt) + code:00E3:00 + cheat + description:Full Power Gun #1 + code:00A4:0C + cheat + description:Full Power Gun #2 + code:00A5:0C + cheat + description:Full Power Bombs + code:06A8:04 + cheat + description:Full speed + code:00DA:04 + +cartridge sha256:acc3b89bcbe3ccc2ee29d0b2eb3fb9cec143236f48d88680b462c3dfab0784bf + name:Ivan 'Ironman' Stewart's Super Off Road (USA) + cheat + description:Infinite money + code:GGUTGGOU+GGUTIGAV+KTUTTKAL + cheat + description:Infinite nitro boosts + code:AEKISPPA + cheat + description:Lots of money and full equipment + code:TEKTYGAA + cheat + description:Computer starts with no nitro boosts + code:AAUEIEPP + cheat + description:Computer starts with double nitro boosts + code:ZLUEIEPP + cheat + description:Start with double nitro boosts + code:ZLEVZSPP + cheat + description:Start with 1 life + code:PENTYGLA + cheat + description:Infinite lives - P1 + code:075D:03 + cheat + description:Infinite money - P1 + code:0305:09+0306:09+0307:09+0308:09 + cheat + description:Infinite nitro boosts - P1 + code:0310:63 + +cartridge sha256:6928e8c589d6d9cc199a7b0841877531ef53dce479e36f90ec1d9cdcbf54372d + name:Jackal (USA) + cheat + description:Invincibility - both players + code:ASUVZIEI + cheat + description:Infinite lives - both players + code:SZPTSI + cheat + description:Keep weapons after death + code:GXZTSG + cheat + description:Full weapons after death + code:LEZTKG + cheat + description:Start with 1 life - both players + code:PAPKXZ + cheat + description:Start with 9 lives - both players + code:PAPKXX + cheat + description:Invincibility - P1 + code:0053:01 + cheat + description:Invincibility - P2 + code:0531:01 + cheat + description:Infinite lives + code:0031:09 + cheat + description:Max Score + code:07E4:99+07E5:99+07E6:99 + cheat + description:Start on level 2 + code:0030:01 + cheat + description:Start on level 3 + code:0030:02 + cheat + description:Start on level 4 + code:0030:03 + cheat + description:Start on level 5 + code:0030:04 + cheat + description:Start on level 6 + code:0030:05 + +cartridge sha256:628d6696c7ac84c3ae5ab86d04b28b2fd1742076ca9478fdd5708e3bbb9f13c1 + name:Jackie Chan's Action Kung Fu (USA) + cheat + description:Invincibility + code:ESSINLEY + cheat + description:Infinite health + code:VXEGXXSE + cheat + description:Infinite special attacks + code:SXSKEXVK + cheat + description:Take less damage + code:PTYSEK + cheat + description:Hit anywhere + code:GKKEAZSK+OVKEPXPA+XEKEZZEP + cheat + description:Multi-jump + code:AEOTTIGA + cheat + description:9 Tornado Attacks on pick-up + code:PESIKYYE + cheat + description:9 360o Spin Kicks on pick-up + code:PESIVYYE + cheat + description:9 Sky Attacks on pick-up + code:PESINYYE + cheat + description:0 Tornado Attacks on pick-up + code:AESIKYYA + cheat + description:0 180o Spin Kicks on pick-up + code:AESISNPA + cheat + description:0 360o Spin Kicks on pick-up + code:AESIVYYA + cheat + description:0 Sky Attacks on pick-up + code:AESINYYA + cheat + description:Max health from Energy Bowl + code:TAVGXZZA + cheat + description:Less health from Energy Bowl + code:PAVGXZZA + cheat + description:Infinite health (alt) + code:0702:07 + cheat + description:Infinite first special move + code:0703:05 + cheat + description:Infinite second special move + code:0705:09 + cheat + description:One hit kills on bosses + code:0039:00 + +cartridge sha256:e0d4463066d9985d51f80f8a51b1b9c5945e481ef19df48056d7648337d59095 + name:James Bond Jr (USA) + cheat + description:Invincibility + code:EINLYPEY+EYNUYPEI + cheat + description:Infinite health + code:SZNYASSO + cheat + description:Infinite weapons (Bombs, Flares, Nukes, Bullets) + code:AANNSLPA + cheat + description:Immune to most damage + code:GZVYPIST + cheat + description:Infinite lives + code:SXEKSOVK + cheat + description:Slow down rate of air loss (scuba mode) + code:YUSOENYO + cheat + description:Speed up rate of air loss + code:YESOENYO + cheat + description:Shield doesn't take damage from bullets + code:GZUYZIST + cheat + description:Start with some weapons + code:XVOTAEXE + cheat + description:Start with 2 lives + code:PANTTATA + cheat + description:Start with 15 lives + code:TANTTATE + cheat + description:Infinite Pistol ammo + code:040F:63 + cheat + description:Infinite lives + code:042C:09 + cheat + description:Infinite time (minute ten's digit) + code:01F9:09 + cheat + description:Infinite time (minute one's digit) + code:01FA:09 + cheat + description:Infinite time (second ten's digit) + code:01FB:09 + cheat + description:Infinite time (second one's digit) + code:01FC:09 + +cartridge sha256:8db2cb94dc9caec681b13b66f26590e88229245fa592e5292d097e8599ee79e0 + name:Jaws (USA) + cheat + description:Infinite lives + code:SZSATSVK + cheat + description:Infinite shells + code:SZVEYNSE + cheat + description:Jaws has no health + code:AEKEPIGP+AESEGZGP+SZKEISSE + cheat + description:Hit anywhere + code:AAOOEPIP + cheat + description:Hit anywhere - bonus stages + code:ASXILLEP+GXKITLEL+GXKIZLEI + cheat + description:Don't lose shells on dying + code:SZSELSTK + cheat + description:Don't lose power on dying + code:SZSETSVK + cheat + description:Collect Crabs from anywhere + code:AENXLSTP + cheat + description:Collect Shells from anywhere + code:AANZPTTZ + cheat + description:Collect Stars from anywhere + code:AEVZTVZZ + cheat + description:99 Shells on pick-up + code:AEEZITIA + cheat + description:Start with 1 life + code:PEOAGZLA + cheat + description:Start with double lives + code:TEOAGZLA + cheat + description:Invincibility (disable to collect items) + code:9966:07 + cheat + description:Infinite lives (alt) + code:0387:09 + cheat + description:Infinite Strobes + code:0393:09 + cheat + description:Exit stage when hit instead of dying + code:8515:3A + cheat + description:Jaws has very little health + code:0389:00 + cheat + description:Jaws is attacked without actually shooting him + code:993D:10 + +cartridge sha256:c9a3c9873a859fcbb5b7442b3decfdcab3a1457e028ae444b050a377fc92afa2 + name:Jetsons, The - Cogswell's Caper (USA) + cheat + description:Infinite lives + code:SZSLXVVK + cheat + description:Infinite hearts + code:SZEELUVK + cheat + description:Better start (more lives and hearts) + code:IEEPPILA + cheat + description:Don't lose extra hearts on dying + code:GXVLEVVK + cheat + description:2 power packs on pick-up + code:ZEVEZLPA + cheat + description:5 power packs on pick-up + code:IEVEZLPA + cheat + description:Small hearts gives full health + code:AAKAIGTA + cheat + description:Defenses don't use up powerpacks + code:GXUENESE + cheat + description:Shield uses fewer powerpacks + code:IAUAKAAZ + cheat + description:Flashlight uses fewer powerpacks + code:ZENEIYAP + cheat + description:Start with 30 powerpacks + code:AUEOGIAP + cheat + description:Start with 50 powerpacks + code:ASEOGIAP + cheat + description:Invincibility + code:0126:00 + cheat + description:Invincibility (blinking) + code:0127:02 + cheat + description:Infinite health + code:0141:03 + cheat + description:Infinite lives + code:0142:0A + +cartridge sha256:69cf1773c23606cdbd8b5e556f39c7c317100914779115a8c5c8b5dbf3fe0fcc + name:Jimmy Connors Tennis (USA) + cheat + description:Only need 15 points to win game + code:AEVTIPLA + cheat + description:Only need 30 points to win game + code:PEVTIPLA + cheat + description:Only need 40 points to win game + code:ZEVTIPLA + cheat + description:Only need 1 game to win set instead of 6 + code:AEEVAZTA + cheat + description:Only need 2 games to win set + code:PEEVAZTA + cheat + description:Only need 3 games to win set + code:ZEEVAZTA + cheat + description:Only need 4 games to win set + code:GEEVAZTA + cheat + description:Only need 5 games to win set + code:IEEVAZTA + cheat + description:Must get 2 points after 40 to win and no deuces (always shows advantage after 40) + code:EEVVIPEI + cheat + description:Don't need to win by 2 to win tiebreaker + code:PEKVGPZA + cheat + description:2 points needed to win tiebreaker instead of 7 + code:ZEUVIPYA + cheat + description:3 points needed to win tiebreaker + code:LEUVIPYA + cheat + description:4 points needed to win tiebreaker + code:GEUVIPYA + cheat + description:5 points needed to win tiebreaker + code:IEUVIPYA + cheat + description:6 points needed to win tiebreaker + code:TEUVIPYA + cheat + description:10 points needed to win tiebreaker + code:ZEUVIPYE + +cartridge sha256:509f04b745d11b8d83afb42f084179a6f2ebc87f647927432a647f0e7ee51bb5 + name:Joe & Mac (USA) + cheat + description:Invincibility + code:ESXIZTEY+ENXSGTEI + cheat + description:Infinite health + code:SZKVOKVK + cheat + description:Infinite lives - both players + code:SZNXTEVK + cheat + description:Protection from most enemy hits + code:SZKVOKVK + cheat + description:Protection from water + code:SXUVYVVK + cheat + description:Stone axe and flint do more damage to bosses + code:AAKUEAPE + cheat + description:Stone axe and flint do a lot more damage to bosses + code:YAKUEAPE + cheat + description:Stone wheel and boomerang do more damage to bosses + code:AASLOAZE + cheat + description:Stone wheel and boomerang do a lot more damage to bosses + code:APSLOAZA + cheat + description:Fire does more damage to bosses + code:APSLVAGA + cheat + description:Fire does a lot more damage to bosses + code:AZSLVAGA + cheat + description:Apple and hamburger worth nothing + code:SZVTKUSE + cheat + description:Apple and hamburger restore health to 1/2 + code:AAVTULAO + cheat + description:Start with 1/2 health (die when bar is 1/2 empty) + code:AEXZGLAO + cheat + description:Start with stone wheel instead of stone axe - P1 + code:OVUXZAET + cheat + description:Start with flint instead of stone axe - P1 + code:XVUXZAET + cheat + description:Start with fire instead of stone axe - P1 + code:UVUXZAET + cheat + description:Start with boomerang instead of stone axe - P1 + code:KVUXZAET + cheat + description:Start with 1 life instead of 3 - P1 + code:PEUXYALA + cheat + description:Start with 5 lives - P1 + code:IEUXYALA + cheat + description:Start with 7 lives - P1 + code:YEUXYALA + cheat + description:Start with 9 lives - P1 + code:PEUXYALE + cheat + description:Start somewhere in level 2 + code:ZEKZGAAA + cheat + description:Infinite health (alt) + code:0499:0F + cheat + description:One hit kills on bosses + code:064D:00 + +cartridge sha256:ec54ed32302aaeb2fa6e0d7e2ca3ea2d8df888e77859e158298ecb2fa322178e + name:Joshua & the Battle of Jericho (USA) (v6.0) (Unl) + cheat + description:Exit always open + code:075F:05+003F:FF + cheat + description:Infinite Bombs + code:003E:01 + cheat + description:Immune to explosions (disable at end of level) + code:004B:C2 + +cartridge sha256:5b7afe0ff1fcf538fec60d085aa759522a2ab1cce511a6f210b672a256a87a8a + name:Joshua & the Battle of Jericho (USA) (v5.0) (Unl) + cheat + description:Exit always open + code:075F:05+003F:FF + cheat + description:Infinite Bombs + code:003E:01 + cheat + description:Immune to explosions (disable at end of level) + code:004B:C2 + +cartridge sha256:0417d7caec593852823b94f5520caea3745a28c9dac68e30d2c5e6f5545a9757 + name:Journey to Silius (USA) + cheat + description:Invincibility + code:SZXTSAAX+SXUTKAAX + cheat + description:Invincibility after first hit (blinking) + code:SZOAPAVG + cheat + description:Infinite health + code:SZUVUZSA + cheat + description:Infinite weapon power + code:SZUAUTSA + cheat + description:Infinite lives + code:SXNGYLVG + cheat + description:Protection against most aliens + code:OTUVOZSV + cheat + description:Some aliens are tougher + code:AAXTKAZE + cheat + description:Some aliens are weaker + code:PAXTKAZA + cheat + description:Mega-jump + code:TOOETOLA + cheat + description:Speed jump + code:AZVALPPA+EVNEYENY + cheat + description:Super speed + code:LPSEYPGA+KVNELEKN + cheat + description:1 life after continue + code:PEVIULLA + cheat + description:6 lives after continue + code:TEVIULLA + cheat + description:9 lives after continue + code:PEVIULLE + cheat + description:Start with all six weapons + code:YOKSOGZE + cheat + description:Start with Machine Gun + code:PEKSOGZA + cheat + description:Start with Laser Gun + code:GEKSOGZA + cheat + description:Start with Homing Missiles + code:AEKSOGZE + cheat + description:Start with Grenade Launcher + code:AOKSOGZA + cheat + description:Start with Machine Gun and Laser Gun + code:IEKSOGZA + cheat + description:Start with 1 life + code:PAOSOTLA + cheat + description:Start with 6 lives + code:TAOSOTLA + cheat + description:Start with 9 lives + code:PAOSOTLE + cheat + description:Infinite health (alt) + code:00B0:0F + cheat + description:Infinite lives (alt) + code:0053:09 + cheat + description:Infinite weapon power (alt) + code:00B1:3F + cheat + description:Have Machine Gun + code:00B8:01 + cheat + description:Have Shot Gun + code:00B8:02 + cheat + description:Have Laser Gun + code:00B8:03 + cheat + description:Have Homing Missile + code:00B8:04 + cheat + description:Have Grenade Launcher + code:00B8:05 + cheat + description:One hit kills on bosses + code:040F:00+04FF:00 + cheat + description:Start on stage 2 + code:0170:01 + cheat + description:Start on stage 3 + code:0170:02 + cheat + description:Start on stage 4 + code:0170:03 + cheat + description:Start on stage 5 (final stage) + code:0170:04 + +cartridge sha256:8471a6b7c7c7d6c7be0ee278778e2d25dc91462db22643395787eaaeb6e320c1 + name:Joust (USA) + cheat + description:Infinite lives + code:SXXKKZVI + cheat + description:Turbo flying + code:PASGKGAA + cheat + description:Heavens above? + code:GXVKOZSP + cheat + description:Start with 1 life + code:PEOGLAIA + cheat + description:Start with 9 lives + code:ZEOGLAIE + cheat + description:Start on last level reached + code:GXSKTASA+GXSKGASA+GXVGGASA + +cartridge sha256:8d36c0923103f370eb9fab5caeb2a8307cd1c7a30030db69bd5bc4f5ca46b1d2 + name:Jovial Race (Asia) (PAL) (Unl) + cheat + description:Infinite lives + code:SZNOUKVK + cheat + description:Start with 5 lives + code:IAVEZLLA + cheat + description:Start with 10 lives + code:ZAVEZLLE + cheat + description:Sart with 100 lives + code:GTVEZLLA + +cartridge sha256:a7bf6adcd838f055405963741dd3368730b0f9dc125ae7071832a9305a4c7292 + name:Jovial Race (Unknown) (Unl) + cheat + description:Infinite lives + code:SZNOUKVK + cheat + description:Start with 5 lives + code:IAVEZLLA + cheat + description:Start with 10 lives + code:ZAVEZLLE + cheat + description:Sart with 100 lives + code:GTVEZLLA + +cartridge sha256:e5bcb8838f567f485c6f872e9695d2e3ef676f4bcda1c32d51d56008efb96e7a + name:Jungle Book, The (USA) + cheat + description:Infinite lives + code:GZVEOSSE + cheat + description:Infinite time + code:AAVEEYPA + cheat + description:Infinite weapons + code:PENEEIAA + cheat + description:Need 2 gems to finish levels 1, 3, 4, 7, 9 + code:ZEKKULAP+SXXNLKOU + cheat + description:Need 4 gems to finish levels 1, 3, 4, 7, 9 + code:GEKKULAP+SXXNLKOU + cheat + description:Need 8 gems to finish levels 1, 3, 4, 7, 9 + code:AEKKULAO+SXXNLKOU + cheat + description:Start practice level with 1 life + code:PAEGVGTA + cheat + description:Start practice level with 3 lives + code:LAEGVGTA + cheat + description:Start practice level with 9 lives + code:PAEGVGTE + cheat + description:Start normal level with 1 life + code:PAEGNGIA + cheat + description:Start normal level with 3 lives + code:LAEGNGIA + cheat + description:Start normal level with 9 lives + code:PAEGNGIE + cheat + description:Start with 5 of each weapon + code:IAVYZLAA + cheat + description:Start with 10 of each weapon + code:APVYZLAA + cheat + description:Start with 20 of each weapon + code:AZVYZLAA + cheat + description:Start with 30 of each weapon + code:ALVYZLAA + cheat + description:Start with 90 of each weapon + code:EPVYZLAA + +cartridge sha256:49fe0c49cd0a2841ae9c8ae5aa19f710d187ee6931a1e531d3bff19772ca4af0 + name:Jurassic Park (USA) + cheat + description:Invincibility + code:EIUZUAEY + cheat + description:Infinite health + code:SZVGZOSE + cheat + description:Immune to most attacks + code:ATVGZOSA + cheat + description:Infinite lives (first two levels only) + code:GZEULOVK + cheat + description:Infinite ammo on pick-up + code:GZUXXKVS + cheat + description:More bullets picked up from small dinosaurs + code:PAVPAGZE + cheat + description:Fewer bullets picked up from small dinosaurs + code:PAVPAGZA + cheat + description:3-ball bolas picked up (from small dinosaurs instead of normal bullets) + code:VEXASASA+VEUAXASA + cheat + description:Explosive multi-shots (from small dinosaurs instead of normal bullets) + code:NEXASASA+NEUAXASA + +cartridge sha256:f40341cf7e76480465ba8ab2d09e44644c3e3af7d647dc04c8b38357b26e014a + name:Just Breed (Japan) + cheat + description:No health - all enemies + code:69E3:00+69E4:00+69E5:00+69E6:00+69DA:00+69DB:00+69DC:00+69DD:00+69DE:00+69DF:00+69E0:00+69E1:00+69E2:00 + cheat + description:Lots of EXP after battle + code:6F6E:FF + cheat + description:Max EXP after battle + code:6F6E:FF+6F6F:FF + cheat + description:Max gold after battle + code:6F6C:FF+6F6D:FF + cheat + description:Max Health (Swordsman/Archer, Etc. 1) + code:69C4:FF + cheat + description:Max Magic (Swordsman/Archer, Etc. 1) + code:6A04:FF + cheat + description:Max Health (Swordsman/Archer, Etc. 2) + code:69C6:FF + cheat + description:Max Magic (Swordsman/Archer, Etc. 2) + code:6A06:FF + cheat + description:Max Health (Swordsman/Archer, Etc. 3) + code:69C5:FF + cheat + description:Max Magic (Swordsman/Archer, Etc. 3) + code:6A05:FF + cheat + description:Max Health (Swordsman/Archer, Etc. 4) + code:69C3:FF + cheat + description:Max Magic (Swordsman/Archer, Etc. 4) + code:6A03:FF + +cartridge sha256:2ae0a99b457a6d00ff0b241aa08f98d40c5c5ed45e634a7ed934b386bbd17a12 + name:Kabuki - Quantum Fighter (USA) + cheat + description:Invincibility + code:AVUUZPSZ+ESUZGAEY + cheat + description:Infinite health + code:VZNGNNSE + cheat + description:Infinite chip power + code:SXEUAESU + cheat + description:Infinite lives + code:SZVGSNSE + cheat + description:Don't lose a life from health loss + code:AAVGKYPA + cheat + description:Don't lose a life from timer + code:AASSAAPA + cheat + description:1 continue + code:PENUXLZA + cheat + description:6 continues + code:IENUXLZA + cheat + description:9 continues + code:AENUXLZE + cheat + description:Slower timer + code:NYXIZEYU + cheat + description:Faster timer + code:YZXIZEYU + cheat + description:Special weapons use minimum chip power + code:SXEUAESU+AOEUPEYA + cheat + description:Start with maximum health + code:YENUNUZE+YEXLLUZE + cheat + description:Start with less health + code:IENUNUZA+IEXLLUZA + cheat + description:Start with 1 life + code:AENLSLZA + cheat + description:Start with 6 lives + code:IENLSLZA + cheat + description:Start with 9 lives + code:AENLSLZE + cheat + description:Invincibility (blinking) + code:0089:03 + cheat + description:Infinite health (alt) + code:068C:0A + cheat + description:Infinite lives (alt) + code:06C0:09 + cheat + description:Infinite time + code:0691:09 + +cartridge sha256:204b5eb443dc8f599d54e242352ba299c05015e5571f74307d78748af3d5f960 + name:Kame no Ongaeshi - Urashima Densetsu (Japan) + cheat + description:Invincibility + code:OXNGYLEN+SENKPUVK + +cartridge sha256:d67817e44f3a421a78ce4217a0660ee375ea162f1465a28da77659dfa46f8f7c + name:Karate Champ (USA) (Rev A) + cheat + description:One hit wins round + code:0069:20 + cheat + description:One hit wins stage + code:005D:02 + +cartridge sha256:54c366ec62c0faec3d5619f62bad73092996a26e674f58819e9b76433cc04e15 + name:Karate Champ (USA) + cheat + description:One hit wins round + code:0069:20 + cheat + description:One hit wins stage + code:005D:02 + +cartridge sha256:8aa5c70100080adf0f6d8945ea10382f3986b99d41e010c356991dfe061eaa8d + name:Karate Kid, The (USA) + cheat + description:Infinite health + code:SZSUYZSA + cheat + description:Infinite chances (lives) + code:SZOEKAVG + cheat + description:Infinite Crane Kicks + code:SXEXLYVG + cheat + description:Infinite Drum Punches on pick-up + code:SZNXAYVG + cheat + description:Hit anywhere + code:ASVOKAEL+GXVOSALA + cheat + description:Prevent girl from moving in final stage + code:AAUXOGPA + cheat + description:Start with 1 chance + code:PENEZTLA + cheat + description:Start with 6 chances + code:TENEZTLA + cheat + description:Start with 9 chances + code:PENEZTLE + cheat + description:Start with 8 Crane Kicks - 1P game + code:AAKVUGGE + cheat + description:Start with 8 Crane Kicks - 2P game + code:AAKVKGGE + cheat + description:Start with 5 Crane Kicks - P1, one on one game + code:IAKVSGAA + cheat + description:Start on stage 2 - 1P game + code:ZAKVVGPA + cheat + description:Start on stage 2 - 2P game + code:ZAKVNGPA + cheat + description:Start on stage 3 - 1P game + code:LAKVVGPA + cheat + description:Start on stage 3 - 2P game + code:LAKVNGPA + cheat + description:Start on stage 4 - 1P game + code:GAKVVGPA + cheat + description:Start on stage 4 - 2P game + code:GAKVNGPA + cheat + description:Infinite health (alt) + code:0085:0F + cheat + description:Infinite Drum Punches (alt) + code:0089:63 + cheat + description:Infinite Crane Kicks (alt) + code:008A:63 + cheat + description:Enemy has no health + code:008B:00 + +cartridge sha256:4ece74fde0b86ecef96d1909c517f55f2da71fd00e29102b8f2780606606e777 + name:Karnov (USA) + cheat + description:Invincibility after one hit + code:ASENYZEI + cheat + description:Invincibility + code:SZVKNLSA+SXEGXLSA+SZNGULSA + cheat + description:Infinite lives + code:SXKISXVK + cheat + description:Infinite time + code:GZVZNIVG + cheat + description:Jump higher + code:ZXLNTS + cheat + description:Gain 3 of most items + code:LEEGOYPA + cheat + description:Gain 97 of most items + code:NOEGOYPA + cheat + description:Never lose most items + code:AEOKSYPA + cheat + description:Start with 1 life + code:AAOSIAZA+AESIVTZA + cheat + description:Start with 6 lives + code:IAOSIAZA+IESIVTZA + cheat + description:Start with 9 lives + code:AAOSIAZE+AESIVTZE + cheat + description:Start on stage 2 + code:PAUSAAAA + cheat + description:Start on stage 3 + code:ZAUSAAAA + cheat + description:Start on stage 4 + code:LAUSAAAA + cheat + description:Start on stage 5 + code:GAUSAAAA + cheat + description:Start on stage 6 + code:IAUSAAAA + cheat + description:Start on stage 7 + code:TAUSAAAA + cheat + description:Start on stage 8 + code:YAUSAAAA + cheat + description:Start on stage 9 + code:AAUSAAAE + cheat + description:Invincibility after one hit (blinking) (alt) + code:0069:FA + cheat + description:Infinite lives (alt) + code:040B:09 + cheat + description:Infinite time (alt) + code:0094:A7 + cheat + description:Have 99 Ks + code:00BA:99 + cheat + description:Have Double Flame Shot + code:0065:01 + cheat + description:Have Triple Flame Shot + code:0065:02 + +cartridge sha256:7a406a58cf781b9ceb87f4266dca812a271bfe1f42aa392864e8bc404b2575e1 + name:Kekkyoku Nankyoku Daibouken (Japan) + cheat + description:Infinite time + code:SZKNALVT + +cartridge sha256:23bf669afb3125d72f352848628e201607b4cece974cce86f2558a1812056ece + name:Kick Master (USA) + cheat + description:Invincibility + code:APOSXTSA+SZOIOVSE+TAOSUTXI + cheat + description:Invincibility after one hit + code:OZVZOLEN + cheat + description:Infinite health + code:SZOIOVSE + cheat + description:Infinite magic points + code:SUELOISP + cheat + description:Infinite lives + code:SXULYUVK+OXUSZLEN + cheat + description:Don't flash at all after getting hit + code:AAOSOVGL + cheat + description:Barely flash at all after getting hit + code:IAOSOVGL + cheat + description:Don't flash as long after getting hit + code:IPOSOVGL + cheat + description:Start with more EXP and magic points + code:ITUSLLAT + cheat + description:Start with twice as much health + code:EEVYEIAG + cheat + description:Start with half health + code:AXVYEIAG + cheat + description:Start with very little health + code:LEVYEIAG + cheat + description:Start with 1 life + code:PAXSGLLA + cheat + description:Start with 5 lives + code:IAXSGLLA + cheat + description:Start with 9 lives + code:PAXSGLLE + +cartridge sha256:4a9544bb41869e88ec0610a799b5ce9c7d89bf9a48198923ea7ba22f385ea349 + name:Kickle Cubicle (USA) + cheat + description:Invincibility + code:SEEXPAOL+SANXAPOL + cheat + description:Infinite lives + code:SXEAATVG + cheat + description:Infinite time + code:SXNGSVVK + cheat + description:Infinite time (alt) + code:ANTKVT + cheat + description:Faster timer + code:YENKXVZA + cheat + description:Slower timer + code:YENKXVZE + cheat + description:Win level now + code:ESSATLEY + cheat + description:Start on land 2 + code:GZKATXSE+GZUISOSE+PAUIOPAA + cheat + description:Start on land 3 + code:GZKATXSE+GZUISOSE+ZAUIOPAA + cheat + description:Start on land 4 + code:GZKATXSE+GZUISOSE+LAUIOPAA + +cartridge sha256:56f1fe3a7881b2e9d69cd33a0971b2f26247e964c3c7dd4a6019715425ff2256 + name:Kid Icarus (USA, Europe) + cheat + description:Invincibility + code:OTXSVLON + cheat + description:Hit anywhere + code:AANIOPPP+AOEIEPZE+XTNSNPEU + cheat + description:99 Hammers on pick-up + code:EOSTEXOZ+KNSTOZPA + cheat + description:Small hearts worth 135 + code:NAKSXTPA + cheat + description:Small hearts worth 2 + code:ZAKSXTPA + cheat + description:Small hearts worth 5 + code:IAKSXTPA + cheat + description:Big hearts worth 255 + code:NYKSSVZA + cheat + description:Big hearts worth 20 + code:GPKSSVZA + cheat + description:Lave restores health + code:VVXGUYVG + cheat + description:Immune to becoming eggplant + code:AAUEVAPA + cheat + description:No damage from Medusa + code:SZSLAPSA + cheat + description:No damage from floor hazards + code:SKXGUYVG + cheat + description:Get best ending with 8uuuuu uuuuuu uuuuuu uuuuuu code + code:PEEEZPAA + +cartridge sha256:a11eec5762a029c95a5d496c0671b73e663225be50a5b1e89f16f380637b6665 + name:Kid Klown in Night Mayor World (USA) + cheat + description:Invincibility + code:EYNZVYEI + cheat + description:Infinite health + code:SZKEOESE + cheat + description:Infinite lives + code:AANAUAPA + cheat + description:Full health from hearts + code:AAEAUGLA + cheat + description:Less health from hearts + code:ZENANLIA + cheat + description:More health from hearts + code:ZENANLIE + cheat + description:Mega-jump (don't hold jump down too long or you might get stuck) + code:GXEZYVVV + cheat + description:Infinite chances in sub-game (press Start to re-enter the main game) + code:GZSEIYVG + cheat + description:Infinite health (alt) + code:043F:19 + cheat + description:Infinite Chips + code:0117:63 + cheat + description:Infinite lives (alt) + code:043E:09 + +cartridge sha256:f85a689b4ff7a5e51703e5fabc73ca1af43e6519754c4a59c11a960baa323b47 + name:Kid Kool and the Quest for the Seven Wonder Herbs (USA) + cheat + description:Invincibility + code:SEVILPSZ + cheat + description:Infinite time + code:VZOEOGVT + cheat + description:Infinite lives + code:SZKKXIVG + cheat + description:Press Start to complete the level + code:GEXGUALU+LEXGSALU+OXXGXAIK + cheat + description:Hit anywhere - throwing + code:ELXKKESZ+TIXKSAYA + cheat + description:Multi-jump when falling + code:ESXPZZEY+KOXPLZKS+OKOOYZOX+PEXPPXSG+PXXPAZES + cheat + description:One life after continue + code:PASKOILA + cheat + description:Start with one life + code:PAVGIALA + cheat + description:Start with double lives + code:TAVGIALA + cheat + description:Start with triple lives + code:PAVGIALE + cheat + description:Invincibility (alt) + code:0031:09 + cheat + description:Infinite lives (alt) + code:0015:09 + +cartridge sha256:81a77623adf819f10548052075555998c1ec1ef5f4dc4bf6ff6b6c3fa3541c1b + name:Kid Niki - Radical Ninja (USA) (Rev A) + cheat + description:Invincibility (glitchy) + code:SZEESTSA+SXVEUISA + cheat + description:Infinite lives + code:GXSOKIVG + cheat + description:Infinite time + code:AESUEGPA + cheat + description:Hit anywhere + code:AOUAESXE+ATOKTXSY+AVUAOSAG + cheat + description:Higher jump + code:NYUEXOEV + cheat + description:Multi-jump + code:KTEYSNNN+NNOOKXOE+OAENXNNN+OZEYKNNN+PPEYNNNN+SAEYVNNY+YIEYONNY+AANOVZAP+AEEPKXZA+AEOOUXIZ+APEYXNNY+ATENUNNY+AZENENNY+GAEYUNNY+GZEYENNY+IZENONNN + cheat + description:Less time + code:GAUELZTA+GEEPOTTA + cheat + description:Start with 1 life + code:PAOATZLA + cheat + description:Start with 6 lives + code:TAOATZLA + cheat + description:Start on round 2 + code:PEVAYPAA+PEUETPAA + cheat + description:Start on round 3 + code:ZEVAYPAA+ZEUETPAA + cheat + description:Start on round 4 + code:LEVAYPAA+LEUETPAA + cheat + description:Start on round 5 + code:GEVAYPAA+GEUETPAA + cheat + description:Start on round 6 + code:IEVAYPAA+IEUETPAA + cheat + description:Invincibility (glitchy) (alt) + code:0088:00+00F4:00 + cheat + description:Infinite lives + code:00CC:03 + cheat + description:Infinite time + code:0621:3B + +cartridge sha256:81e527e9c282f5078a3d08470ad3c032fea9a72f1559ee9d2702ea6b07fab45c + name:Kid Niki - Radical Ninja (USA) + cheat + description:Invincibility + code:EEKEPPAA + cheat + description:Hit anywhere + code:AOOENSXE+ATUKLXSY+AVXAESAG + cheat + description:Multi-jump + code:LPENONNN+NYNPUXOE+OAENXNNN+OZEYKNNN+PPEYNNNN+SAEYVNNY+YIEYONNY+AANPXXLP+APEYXNNY+ATENUNNY+AZENENNY+GAEYUNNY+GZEYENNY+GZSOXZEY+GZSPKZEY+KTEYSNNN + cheat + description:Invincibility (glitchy) + code:0088:00+00F4:00 + cheat + description:Infinite lives + code:00CC:03 + cheat + description:Infinite time + code:0621:3B + +cartridge sha256:a8f2987d83253adb573aa760c1bb926e951f2c2d72daff4e2d2e125ec1a181c4 + name:King Kong 2 - Ikari no Megaton Punch (Japan) + cheat + description:Infinite health and lives + code:SLSYTPSP + cheat + description:Infinite Rocks + code:SZVEPSSE + cheat + description:Start with max health + code:PESVAAPE+OOSTYAAE + cheat + description:Start with 9 lives + code:PAXVOPZE + +cartridge sha256:6cc3a973288a4c3c96a967bdf1be74eee909d3f5eb16ce0b405f20ce565c66cc + name:King Neptune's Adventure (USA) (Unl) + cheat + description:Infinite health + code:SXXSTVVK+SXUILKVK+SZNIIVSE + cheat + description:Infinite lives + code:SZSKVVVK + cheat + description:Infinite Bubble Bombs + code:SXXYSPVG + cheat + description:Start with all treasures (removes all items from level) + code:AEUGLKEY + cheat + description:Start with 99 Bubble Bombs and Money + code:LVUKGGAA + cheat + description:Start with 99 Seahorses and Keys + code:LTUKSIAA + +cartridge sha256:3249d267ca17098077bb94eee437f354066971bc03c0d06eada05efd92b0fa52 + name:King of Kings, The (USA) (v5.0) (Unl) + cheat + description:Infinite health + code:0512:06 + +cartridge sha256:dc6859332ca69a8361bb3eb8ba1ff638f4bbbc7837a3a9f8a474e05f6bc379ea + name:King of Kings, The (USA) (v1.3) (Unl) + cheat + description:Infinite health + code:0512:06 + +cartridge sha256:9ae715b6f2400d21f5d1ec426ecf310aa68ca46f3b37b37d5ae115f34049676b + name:King of Kings, The (USA) (v1.2) (Unl) + cheat + description:Infinite health + code:0512:06 + +cartridge sha256:d1002d407b544d70b4ddf4515665f6e18ac9c8ee2efd4be184e5240119fd6f70 + name:King of Kings, The (USA) (v1.1) (Unl) + cheat + description:Infinite health + code:0512:06 + +cartridge sha256:be97bca71e1bf099ef0f6ff91aed506df7b0506433c76e5deccea7b130e3a20f + name:King's Knight (USA) + cheat + description:Infinite health + code:GZVXTPSA + cheat + description:Only lose 1 HP when hit + code:OTVXAPSV+PAVXPPAP + cheat + description:Start with double usual health + code:AOSUAOGE + cheat + description:Start with half usual health + code:TESUAOGA + cheat + description:Start with a better character + code:PESUTPAA + cheat + description:Start with the best character normally possible + code:ZESUTPAA + cheat + description:Start with a super character, better than normally Possible + code:IESUTPAA + cheat + description:Infinite health (alt) + code:009A:0C + +cartridge sha256:1250a80faf865aa5ee5585ad7639e5ef2b3fa541554effda5fad2cc5dc2acef5 + name:Kirby's Adventure (USA) (Rev A) + cheat + description:Invincibility + code:EINELGEY + cheat + description:Infinite health + code:SZEPSVSE + cheat + description:Infinite lives + code:SXKTPKVG + cheat + description:Hit anywhere (spitting) + code:AOOEIOOV+AOOETPYE+EANEZAAT+GGNEAESN+GXKEIPEL+VGNEPAGY + cheat + description:Inhale from anywhere + code:AASELZZG+AINEYZEP+SZNEGXSV + cheat + description:Less health from 'pep drinks' + code:ZAKLLXAA + cheat + description:More health from 'pep drinks' + code:APKLLXAA + cheat + description:Full health from 'pep drinks' + code:YZKLLXAE + cheat + description:Start with less health + code:YONZZNYX + cheat + description:Start with more health + code:YKNZZNYX + cheat + description:Start with 2 lives + code:PEVXIYGA + cheat + description:Start with 9 lives + code:AEVXIYGE + cheat + description:Start with 17 lives + code:AOVXIYGA + cheat + description:Invincibility (alt) + code:05F9:02 + cheat + description:Infinite health (alt) + code:0597:2F + cheat + description:Infinite lives (alt) + code:0599:09 + +cartridge sha256:a6b81fec11c24a33fd763db5c28005e760a1614e70c1bb5ccde0bd4242431000 + name:Kirby's Adventure (USA) + cheat + description:Invincibility + code:EINELGEY + cheat + description:Infinite health + code:SZEPSVSE + cheat + description:Infinite lives + code:SXKTPKVG + cheat + description:Hit anywhere (spitting) + code:AEKAIEIA+AEXAIPTL+AOOAGEOV+AOOAIAYE+GXKEIPEL + cheat + description:Inhale from anywhere + code:AASELZZG+GXEAGZEL + cheat + description:Less health from 'pep drinks' + code:ZAKLLXAA + cheat + description:More health from 'pep drinks' + code:APKLLXAA + cheat + description:Full health from 'pep drinks' + code:YZKLLXAE + cheat + description:Start with less health + code:YONZZNYX + cheat + description:Start with more health + code:YKNZZNYX + cheat + description:Start with 2 lives + code:PEVXIYGA + cheat + description:Start with 9 lives + code:AEVXIYGE + cheat + description:Start with 17 lives + code:AOVXIYGA + cheat + description:Invincibility (alt) + code:05F9:02 + cheat + description:Infinite health (alt) + code:0597:2F + cheat + description:Infinite lives (alt) + code:0599:09 + +cartridge sha256:9caa01a2b81ce1f98b17520aee09d415da7192382c1e47316998b6c1be6168eb + name:Kiwi Kraze - A Bird-Brained Adventure! (USA) + cheat + description:Invincibility + code:EIUKGIEY + cheat + description:Super-jump + code:XYKTISKN + cheat + description:Infinite lives + code:SUSKLYVI + cheat + description:Infinite continues + code:GZEKXPVS + cheat + description:1 life after continue + code:AAEGNPZA + cheat + description:6 lives after continue + code:IAEGNPZA + cheat + description:9 lives after continue + code:AAEGNPZE + cheat + description:Start with 1 life (and 1 continue) + code:AANGLLZA + cheat + description:Start with 6 lives (and 6 continues) + code:IANGLLZA + cheat + description:Start with 9 lives (and 9 continues) + code:AANGLLZE + cheat + description:Start on level 2 + code:GZVKAUSE+GAVGYLAA + cheat + description:Start on level 3 + code:GZVKAUSE+AAVGYLAE + cheat + description:Start on level 4 + code:GZVKAUSE+GAVGYLAE + cheat + description:Start on level 5 + code:GZVKAUSE+PPVGYLAA + +cartridge sha256:ef63df6bcbc7e13dace53f106a247485a09409799b99c8415e934ba532cdaa53 + name:KlashBall (USA) + cheat + description:Very little team stamina - select the middle team + code:IAUUOOAZ + cheat + description:More team stamina - select the middle team + code:AGUUOOAZ + cheat + description:Mega team stamina - select the middle team + code:OPUUOOAX + cheat + description:Power is doubled for the whole team - select the middle team + code:GAUUKPZA + cheat + description:Power is tripled for the whole team - select the middle team + code:TAUUKPZA + cheat + description:Mega power for the whole team - select the middle team + code:PAUUKPZE + cheat + description:Never lose stamina - select the middle team + code:GXEZAVSO + cheat + description:Computer can't score - select the middle team + code:SZSEZGVT + cheat + description:Everyone including computer has 255 skill - select the middle team + code:GZSXTEAU+GZSXTESN + +cartridge sha256:28b3f1dde1488dd83422da47300d2e31ffce811bf2be37bf6d510019c2289f40 + name:Klax (USA) (Unl) + cheat + description:Infinite drops + code:SXXLUGVT + cheat + description:When starting on level 6, 0 drops allowed + code:PANENGGA + cheat + description:When starting on level 6, 5 drops allowed + code:IANENGGA + cheat + description:When starting on level 11, 0 drops allowed + code:PEOAXGIA + cheat + description:When starting on level 11, 3 drops allowed + code:LEOAXGIA + cheat + description:Start with 0 drops allowed + code:PAVESGLA + cheat + description:Start with 5 drops allowed + code:IAVESGLA + +cartridge sha256:b66538543d3c4c74448e896130081c39112b14898beffbe95137a410394e5dc9 + name:Knight Rider (USA) + cheat + description:Infinite shield + code:SZXSYTSA + cheat + description:Infinite missiles + code:SZEXUNVK + cheat + description:Infinite laser + code:GXXZSVVK + cheat + description:Infinite lives + code:SXXEGEVK+SXKEIEVK + cheat + description:Start with 1 life after continue + code:AEVALAZA + cheat + description:Start with 6 lives after continue + code:IEVALAZA + cheat + description:Start with 9 lives after continue + code:AEVALAZE + cheat + description:Start with 1 life + code:AANKOAZA+VTNKSESE + cheat + description:Start with 6 lives + code:IANKOAZA+VTNKSESE + cheat + description:Start with 99 missiles + code:SZKZYOSU+LYKXAOTT + cheat + description:Start with 99 lasers + code:SZSZLOSU+PYSZGPGN + cheat + description:Start with full gasoline + code:SZUZAOSU+ATUZPPTV + cheat + description:Start with full shield + code:SZUXGOSU+ITUXIOZV + +cartridge sha256:e5673075301b0c84137d24aff0ffbfa0565d33c960968d9843d7bc57f1107417 + name:Krion Conquest, The (USA) + cheat + description:Infinite health + code:SXNIVLSA + cheat + description:Infinite lives + code:SXVLOIVG + cheat + description:Float spell + code:AEOKYTTP + cheat + description:Quicker supershot + code:PEVGOIGA + cheat + description:Less energy used for fire spell + code:GEXYLEAA+IEOYTEPA + cheat + description:Start with 1 life + code:AAKAAPZA + cheat + description:Start with 6 lives + code:IAKAAPZA + cheat + description:Start with 9 lives + code:AAKAAPZE + cheat + description:Start on stage 2 + code:PAXEZPAA+EZXEPOOZ+KAXEIPSA + cheat + description:Start on stage 3 + code:ZAXEZPAA+EZXEPOOZ+KAXEIPSA + cheat + description:Start on stage 4 + code:LAXEZPAA+EZXEPOOZ+KAXEIPSA + cheat + description:Invincibility + code:03DE:02+03E0:3A + cheat + description:Infinite health (alt) + code:004C:28 + cheat + description:Infinite lives (alt) + code:0043:02 + cheat + description:Infinite oxygen in underwater stage + code:0318:05 + cheat + description:Moon-jump (disable in underwater stage) + code:0057:1F + +cartridge sha256:5f981ab1988614a96fd029c6fe3f103465dbf3219265bd8274bf8cd537adee34 + name:Krusty's Fun House (USA) + cheat + description:Infinite health + code:AAUXAEZA + cheat + description:Infinite pies - first life only + code:GXKZPKVK + cheat + description:Pick-up Super Balls instead of Custard Pies + code:AEOXSLPA + cheat + description:Start with 1 life + code:PAKATALA + cheat + description:Start with 6 lives + code:TAKATALA + cheat + description:Start with 9 lives + code:PAKATALE + cheat + description:Start with 6 pies + code:TAKELEPA + cheat + description:Start with 18 pies + code:ZPKELEPA + +cartridge sha256:0ba5e69962f6576d3729aa967092a7e8c98d00213cd98026dee343bff67b4177 + name:Kung Fu (Japan, USA) + cheat + description:Infinite health + code:AUVZEGTA+VEVZOKSX + cheat + description:Infinite time + code:SZUAOAAX + cheat + description:Infinite lives - both players + code:SUAAXA + cheat + description:Invincibility against knives + code:GXSLVYEI + cheat + description:Don't die when time runs out + code:GZVKIYSA+ATVKYNGG + cheat + description:Hit anywhere + code:AASGYXOG + cheat + description:Enemies die when trying to grab you + code:GXKZTIEI+KVKXPSIK+SXKXZIVZ+AVOZLNGG + cheat + description:Enemies easier to shrug off + code:AEVXLSPT + cheat + description:Enemies harder to shrug off + code:ZEVXPIGE + cheat + description:Give P2 an advantage + code:SEZEGG + cheat + description:Knife thrower harder to beat + code:XYUXEUZK + cheat + description:Normal enemies do more damage + code:LEEXSYPA + cheat + description:Walk 2X faster + code:VYNONUNN+ZANOVLPA + cheat + description:Walk 4X faster + code:GANOVLPA+KYNONUNN + cheat + description:Start at last level reached - P1 + code:GZLATG + cheat + description:Start at last level reached - P2 + code:GZLEPG + cheat + description:Start with 1 life - both players + code:PEZELG + cheat + description:Start with 9 lives - both players + code:PEZELK + cheat + description:Infinite health (disable at end of level) + code:04A6:1E + cheat + description:Infinite lives (alt) + code:005C:09 + cheat + description:Knife Thrower doesn't throw knives + code:03E8:00+03E9:00+03EA:00+03EB:00 + cheat + description:Max score + code:0536:09+0535:09+0534:09+0533:09+0532:09+0531:09 + cheat + description:Start on floor 2 + code:005F:01 + cheat + description:Start on floor 3 + code:005F:02 + cheat + description:Start on floor 4 + code:005F:03 + cheat + description:Start on floor 5 + code:005F:04 + +cartridge sha256:323d330cb50e0a4cd7855a3eedb0e97a08b31d9f7c638e4fa53ab58c1263154e + name:Kung-Fu Heroes (USA) + cheat + description:Invincibility + code:AAXGYOZA+AVUSPVSL + cheat + description:Infinite lives + code:AESLZLPA + cheat + description:Infinite Miracle Kicks + code:AEVSPAPA + cheat + description:Hit anywhere (most enemies) + code:SXNIALAX + cheat + description:2 E-balls for an extra life + code:ZAXUEGIA + cheat + description:Use with warp to start with 1 life + code:PASZNPLA + cheat + description:Use with warp to start with 6 lives + code:TASZNPLA + cheat + description:Use with warp to start with 9 lives + code:PASZNPLE + cheat + description:Mega-jumps left and right + code:GAOKOGPA+KYXGOKNN + cheat + description:Start with 20 Miracle Kicks + code:GPVZXPAA + cheat + description:Start with 1 life + code:PASXSPIA + cheat + description:Start with 9 lives + code:PASXSPIE + cheat + description:Start on Castle 2 + code:OZSZXPSX+GASZUOSG + cheat + description:Start on Castle 3 + code:OZSZXPSX+AASZUOSK + cheat + description:Start on Castle 4 + code:OZSZXPSX+GASZUOSK + cheat + description:Start on Castle 5 + code:OZSZXPSX+APSZUOSG + cheat + description:Start on Castle 6 + code:OZSZXPSX+GPSZUOSG + cheat + description:Start on Castle 7 + code:OZSZXPSX+APSZUOSK + cheat + description:Start on Castle 8 + code:OZSZXPSX+GPSZUOSK + +cartridge sha256:f4b7d8d31c5bbfee69c117332fa3878d04dc3b6e693d1a343d3ef2f20b10a85e + name:Last Action Hero (USA) + cheat + description:Infinite health + code:SXOLSGTG + cheat + description:One hit kills on bosses + code:ESXZLAEY + cheat + description:Infinite lives + code:SXXLOGVG + cheat + description:Infinite continues + code:SZEVZIVG + cheat + description:Red hearts worth nothing + code:VZSAEYVT + cheat + description:Continue with 1 life + code:AASTAILA + cheat + description:Continue with 2 lives + code:PASTAILA + cheat + description:Continue with 3 lives + code:ZASTAILA + cheat + description:Start with 1 life + code:AAUVSTLA + cheat + description:Start with 7 lives + code:TAUVSTLA + cheat + description:Start with 10 lives + code:PAUVSTLE + cheat + description:Start with 0 continues + code:AAKTOTZA + cheat + description:Start with 5 continues + code:IAKTOTZA + cheat + description:Start with 9 continues + code:PAKTOTZE + cheat + description:Start on stage 2 - Hamlet + code:ZENTAAAA + cheat + description:Start on stage 3 - The House + code:GENTAAAA + cheat + description:Start on stage 4 - The Freeway + code:IENTAAAA + cheat + description:Start on stage 5 - The Office block + code:TENTAAAA + cheat + description:Start on stage 6 - The Helicopter + code:YENTAAAA + cheat + description:Start on stage 7 - The Film Premiere + code:AENTAAAE + cheat + description:Start on Stage 8 - The Cinema + code:PENTAAAE + cheat + description:Start on the end-of-level bad guy + code:ZENTAAAE + cheat + description:Invincibility (blinking) + code:008C:19 + cheat + description:Infinite health (alt) + code:002E:2F + cheat + description:Infinite lives (alt) + code:0092:09 + +cartridge sha256:f15382be46e474c596566c5a726ae39dadfa18289722bac2da44b6493bbabfec + name:Last Ninja, The (USA) + cheat + description:Infinite health + code:SXSEEZSA + cheat + description:Press Select on controller 2 to skip to next level, A for next screen, B for previous screen + code:EYETYIEI + cheat + description:Infinite lives + code:007D:09 + cheat + description:Infinite time (seconds) + code:0369:00 + +cartridge sha256:54dd62754f48e39af39c3e8d645897af25aaba31523267bc41d4c95f2b0348d5 + name:Last Starfighter, The (USA) + cheat + description:Infinite lives - both players + code:SZVPATVG + cheat + description:Stop irritating shake + code:GXUPLGSA + cheat + description:Start with 1 life - both players + code:PANENLIA + cheat + description:Start with 6 lives - both players + code:TANENLIA + cheat + description:Start with 9 lives - both players + code:PANENLIE + cheat + description:Start with 1 life - P2 + code:KEEAVLSA + cheat + description:Start on level 5 - P1 + code:GAVEKLAA+GZVENLSA+GZNAOLSA + cheat + description:Start on level 10 - P1 + code:PAVEKLAE+GZVENLSA+GZNAOLSA + cheat + description:Start on level 14 - P1 + code:IAVEKLAE+GZVENLSA+GZNAOLSA + +cartridge sha256:53923dcb59afac40fbfed4aa2298be156b5b9763ec43956757ec44092ba799c5 + name:Layla (Japan) + cheat + description:Infinite energy + code:SXSTTPVG + cheat + description:Infinite Machine Gun ammo + code:SXVIPGVG + cheat + description:Infinite Dynamite Sticks + code:SXVSPIVG + cheat + description:Infinite Grenades + code:SZOSYIVG + +cartridge sha256:203dc9486ba58e65f9a4289da476dc15ff34d6fd39d355b438ae4db2d182746d + name:Legacy of the Wizard (USA) + cheat + description:Infinitel ife + code:GXVTZYSA + cheat + description:Infinite magic + code:GXNTYYVG + cheat + description:Never lose items + code:GXSVLGVI + cheat + description:Shopkeeper forgets to charge + code:GZKVUASA + cheat + description:No enemies + code:OUOVNPOP + cheat + description:Walk through walls + code:GKPSOS + cheat + description:Lyll's strength tripled + code:LEUYKYPA + cheat + description:Lyll's jumping improved + code:AUUYUNZP + cheat + description:Roas' strength tripled + code:LEUYEYPA + cheat + description:Roas' jumping improved + code:ZXXNNYGO + cheat + description:Xemn's strength tripled + code:PEXNEYLE + cheat + description:Xemn's jumping improved + code:AXXYNYZP + cheat + description:Menya's strength tripled + code:TEXNKYZA + cheat + description:Menya's jumping improved + code:AXXNUYGP + +cartridge sha256:d2a585ff6febf59447f9bd9fbb387ae4985385d6f6f61a70e145a5ee69523018 + name:Legendary Wings (USA) + cheat + description:Almost infinite health + code:AAEEGLPA+AEEATIPA + cheat + description:Hit anywhere + code:AEEEELXY+AASEAUNT+AAUEZKKT+AEOEELXT+AEOAEUXT+SXEAZUOO+SXOEZUOO + cheat + description:Gain double powers on pick-up + code:ZANAIZPA+ZEVAPIPA + cheat + description:Gain triple powers on pick-up + code:LANAIZPA+ZEVAPZPA + cheat + description:Start with 1 life - P1 + code:PEEALYLA + cheat + description:Start with 6 lives - P1 + code:TEEALYLA + cheat + description:Start with 9 lives - P1 + code:PEEALYLE + cheat + description:Start with 1 life - both players + code:PANEAYLA + cheat + description:Start with 6 lives - both players + code:TANEAYLA + cheat + description:Start with 9 lives - both players + code:PANEAYLE + cheat + description:Infinite health - P1 + code:0520:63 + cheat + description:Infinite lives - P1 + code:0058:09 + cheat + description:Have Double shot + code:007A:01 + cheat + description:Have Rapid Fire shot + code:007A:02 + cheat + description:Have Crazy Ball shot + code:007A:03 + cheat + description:Have Firebird ability + code:007A:04 + cheat + description:One hit kills on bosses + code:04B0:00 + +cartridge sha256:3b5627bc1ebaa7a84953d7337c7684a93beaf973f4a8b3a42b513dc1e0ab0a09 + name:Legends of the Diamond - The Baseball Championship Game (USA) + cheat + description:1 ball and you walk + code:PEKLAIGA + cheat + description:2 balls and you walk + code:ZEKLAIGA + cheat + description:6 balls to walk + code:TEKLAIGA + cheat + description:1 strike and you're out (fouls don't count as strikes) + code:PASUGILA + cheat + description:2 strikes and you're out (fouls don't count as strikes) + code:ZASUGILA + cheat + description:5 strikes and you're out (fouls don't count as strikes) + code:IASUGILA + +cartridge sha256:9d83796d8feba9713fa5a1354fd9253cda5cb33ab5bc6f1c6f97d5eb90aef6c3 + name:Legend of Kage, The (USA) + cheat + description:Invincibility + code:SZNPVLSA + cheat + description:Infinite lives - both players + code:SXVALZVG + cheat + description:Hit anywhere with Shurikens + code:AESXNKZA+AESZUGTP+AEXXNKLT + cheat + description:Hit anywhere with Sword + code:AAEZVIGP+AAOZXSAA+AEXXNKLT + cheat + description:Kill the white boss (you do not need to kill the butterfly) + code:AEXXNKLT + cheat + description:Super-ninja-power running ability + code:GASAOLZA + cheat + description:Super-ninja-power jumping ability + code:YAKXYPGE+YASZAPGE+YASZPPGE + cheat + description:Start with 28 lives - both players + code:KEOATAVA + cheat + description:Infinite lives - P1 + code:002B:63 + +cartridge sha256:1849bb687d038a43971651b13392481768ea0bc15f3d04b6898f052bbfa356e5 + name:Legend of the Ghost Lion (USA) + cheat + description:Infinite Courage points + code:SZUPNNSE + cheat + description:Infinite Dream points + code:SXXKTSSE + cheat + description:Buy items for free in most shops (must have enough rubies to purchase item) + code:SXSKLKSE + cheat + description:Infinite health - main character + code:04A1:FF + cheat + description:Max Dream - main character + code:04A3:FF+04A4:FF + cheat + description:Max Dream total - main character + code:04A5:FF + cheat + description:Max Hope - main character + code:04A0:FF + cheat + description:Max Rubies + code:041A:FF + cheat + description:Have #2 Whip + code:0562:2A + cheat + description:Have F-Sword + code:0562:2B + +cartridge sha256:ec0d4ebf6d2fcecd1d95fef7329954efe79676959bc281ea908b226459bc6dc2 + name:Legend of Zelda, The (USA) (Rev A) + cheat + description:Infinite health + code:AVVLAUSZ + cheat + description:Have the Pink Ring (infinite health) + code:ZTSPSTIP + cheat + description:Infinite Bombs + code:SZNZVOVK + cheat + description:Have Blue Ring effect + code:ESKUILTA + cheat + description:Have Red Ring effect + code:OSKUILTA + cheat + description:All items are free + code:SZVXASVK+AEVEVALG + cheat + description:Fewer enemies + code:AEOANAEG + cheat + description:No dark rooms + code:AOEUYTEY + cheat + description:No Zolas + code:AEVATVAA + cheat + description:Reset counter to zero + code:PALZZI + cheat + description:Speed writing + code:OPPEEA + cheat + description:Walk faster + code:OXELYLSX+EUEUALAA + cheat + description:Walk through walls in dungeons + code:SXXOPPSA+ATKOLPEY + cheat + description:Create character with 8 life hearts + code:YYKPOYZZ + cheat + description:Create character with 16 life hearts + code:NYKPOYZX + cheat + description:Invincibility + code:7AA7:60 + cheat + description:Invincibility (blinking) + code:04F0:09 + cheat + description:Infinite health (alt) + code:0670:FF + cheat + description:Hit anywhere + code:7BF2:24+7C28:AD + cheat + description:Get items from anywhere + code:7353:24+735F:24 + cheat + description:Infinite Bombs (alt) + code:0658:FF + cheat + description:Infinite Keys + code:066E:03 + cheat + description:Infinite Rupies + code:066D:FF + cheat + description:Enemies don't shoot anything + code:034C:FF + cheat + description:Turbo Sword + code:03DD:01 + cheat + description:Have all Tri-Force pieces + code:0671:FF + cheat + description:Have Maps for Dungeons 1-8 and Compass for Dungeon 9 + code:0668:FF+0669:FF + cheat + description:Have Map for Dungeon 9 + code:066A:FF + cheat + description:Have Arrows + code:0659:01 + cheat + description:Have Blue Candle + code:065B:01 + cheat + description:Have Bow + code:065A:01 + cheat + description:Have Enemy Bait + code:065D:01 + cheat + description:Have Flute + code:065C:01 + cheat + description:Have Ladder + code:0663:01 + cheat + description:Have Magic Book + code:0661:01 + cheat + description:Have Magic Boomerang + code:0675:01 + cheat + description:Have Magic Wand + code:065F:01 + cheat + description:Have Magical Key + code:0664:01 + cheat + description:Have Magical Shield + code:0676:01 + cheat + description:Have Magical Sword + code:0657:03 + cheat + description:Have Power Bracelet + code:0665:01 + cheat + description:Have Raft + code:0660:01 + cheat + description:Have Red Candle + code:065B:02 + cheat + description:Have Silver Arrows + code:0659:02 + cheat + description:Have White Sword + code:0657:02 + cheat + description:Have Wooden Sword + code:0657:01 + +cartridge sha256:085e5397a3487357c263dfa159fb0fe20a5f3ea8ef82d7af6a7e848d3b9364e8 + name:Legend of Zelda, The (USA) + cheat + description:Infinite health + code:AVVLAUSZ + cheat + description:Have the Pink Ring (infinite health) + code:ZTSOOTIP + cheat + description:Infinite Bombs + code:SZNZVOVK + cheat + description:All items are free + code:SZVXASVK+AEVEVALG + cheat + description:Almost no enemies in Overworld + code:AAXPILGA+AAXPTLIA+AAXPYLTA + cheat + description:Fewer enemies + code:AEOANAEG + cheat + description:No dark rooms + code:AOEUYTEY + cheat + description:No Zolas + code:AEVATVAA + cheat + description:Reset counter to zero + code:PALZZI + cheat + description:Speed writing + code:OPPEEA + cheat + description:Walk faster + code:OXELYLSX+EUEUALAA + cheat + description:Walk through walls in dungeons + code:SXOOYPSA+ATKPPPEY + cheat + description:Create character with 8 life hearts + code:YYKPOYZZ + cheat + description:Create character with 16 life hearts + code:NYKPOYZX + cheat + description:Invincibility + code:7AA7:60 + cheat + description:Invincibility (blinking) + code:04F0:09 + cheat + description:Infinite health (alt) + code:0670:FF + cheat + description:Hit anywhere + code:7BF2:24+7C28:AD + cheat + description:Get items from anywhere + code:7353:24+735F:24 + cheat + description:Infinite Bombs (alt) + code:0658:FF + cheat + description:Infinite Keys + code:066E:03 + cheat + description:Infinite Rupies + code:066D:FF + cheat + description:Enemies don't shoot anything + code:034C:FF + cheat + description:Turbo Sword + code:03DD:01 + cheat + description:Have all Tri-Force pieces + code:0671:FF + cheat + description:Have Maps for Dungeons 1-8 and Compass for Dungeon 9 + code:0668:FF+0669:FF + cheat + description:Have Map for Dungeon 9 + code:066A:FF + cheat + description:Have Arrows + code:0659:01 + cheat + description:Have Blue Candle + code:065B:01 + cheat + description:Have Bow + code:065A:01 + cheat + description:Have Enemy Bait + code:065D:01 + cheat + description:Have Flute + code:065C:01 + cheat + description:Have Ladder + code:0663:01 + cheat + description:Have Magic Book + code:0661:01 + cheat + description:Have Magic Boomerang + code:0675:01 + cheat + description:Have Magic Wand + code:065F:01 + cheat + description:Have Magical Key + code:0664:01 + cheat + description:Have Magical Shield + code:0676:01 + cheat + description:Have Magical Sword + code:0657:03 + cheat + description:Have Power Bracelet + code:0665:01 + cheat + description:Have Raft + code:0660:01 + cheat + description:Have Red Candle + code:065B:02 + cheat + description:Have Silver Arrows + code:0659:02 + cheat + description:Have White Sword + code:0657:02 + cheat + description:Have Wooden Sword + code:0657:01 + +cartridge sha256:494aa7d49d3f4d66f01cac0f31a9bc7bc9626faa575a635f43e7caf19a832a48 + name:Lemmings (USA) + cheat + description:Infinite time + code:SXUTLAVG + cheat + description:Infinite climbers + code:SZVVTPVG + cheat + description:Infinite floaters + code:SXOVAPVG + cheat + description:Infinite bombers + code:SXKTYPVG + cheat + description:Infinite blockers + code:SZOTPZVG + cheat + description:Infinite builders + code:SZVTPZVG + cheat + description:Infinite bashers + code:SXXVLZVG + cheat + description:Infinite miners + code:SZETGLVG + cheat + description:Infinite diggers + code:SZSTYLVG + +cartridge sha256:97c67809c952bc25060a01dca224eedc5ed76cc770bac44452c92cd3a1d4a418 + name:Lethal Weapon (USA) + cheat + description:Infinite ammo when shooting on the ground + code:OLSSGSOO + cheat + description:Infinite ammo when shooting in the air + code:OUSSISOO+OUXIPSOO + cheat + description:E restores health completely + code:AKVIXAAP + cheat + description:E worth nothing + code:AEVIXAAP + cheat + description:Extra ammo restores ammo completely + code:AKKSEAAP + cheat + description:Extra ammo worth nothing (if you run out of ammo you can't use gun till next stage) + code:AEKSEAAP + cheat + description:No health lost when falling off screen + code:AEUYXAAZ + cheat + description:Falling off screen is fatal + code:AKUYXAAZ + cheat + description:Bullet proof vest lasts longer + code:NNNISAAU + cheat + description:Bullet proof vest lasts until end of stage, except when you die from punches or falling off screen + code:XVUKOOXK + cheat + description:Bullet proof vest does not last as long + code:ZENISAAU:or:AONISAAL + cheat + description:Start on Level 2 + code:XTUGTXXK + cheat + description:Start on Level 3 + code:XZUGLXVL+LAUGGZNP+XTUGIZEK + cheat + description:Invincibility (blinking) - P1 + code:05ED:09 + cheat + description:Infinite health + code:05C0:3F + cheat + description:Infinite ammo + code:003F:3A + cheat + description:One hit kills on bosses + code:05C4:00 + +cartridge sha256:dbd530e6ca07cc4b255b1b885cd5b6b2e23b8d3cac4733c3e4d96acd7d751c28 + name:Life Force (USA) + cheat + description:Infinite lives + code:GZKGILVI + cheat + description:Keep pods after death + code:GZSGLTSP + cheat + description:Hit anywhere + code:AAUIPXTP+AAUSTXIA+ATNILXOZ+EIKSZZEP + cheat + description:One hit kills most enemies + code:OXOSPXOV + cheat + description:Press Start to finish the level + code:TKOYVIGX+ZEOYKIPA + cheat + description:Start with Speed + code:PEKGPTAA + cheat + description:Start with Missile + code:ZEKGPTAA + cheat + description:Start with Ripple + code:LEKGPTAA + cheat + description:Start with Laser + code:GEKGPTAA + cheat + description:Start with Option + code:IEKGPTAA + cheat + description:Start with Force Field + code:TEKGPTAA + cheat + description:Start at the volcanic stage + code:PEUTSTAA + cheat + description:Start at the prominence stage + code:ZEUTSTAA + cheat + description:Start at cell stage 2 + code:LEUTSTAA + cheat + description:Start at the temple stage + code:GEUTSTAA + cheat + description:Start at the mechanical city stage + code:IEUTSTAA + cheat + description:Start with 1 life + code:PEKVNTLA + cheat + description:Start with 6 lives + code:TEKVNTLA + cheat + description:Invincibility - P1 + code:0084:C0 + cheat + description:Invincibility - P2 + code:0085:C0 + cheat + description:Infinite lives (alt) + code:0034:63 + cheat + description:Complete the level + code:004E:02 + cheat + description:Progress through the level faster + code:003A:02 + cheat + description:Have 30 lives option + code:07EF:01 + cheat + description:Have upgraded Laser + code:0076:03 + cheat + description:Have double Speed + code:0080:02 + cheat + description:Have triple Speed + code:0080:03 + cheat + description:Have Shield + code:0082:09 + cheat + description:Have double Missile + code:0086:02 + cheat + description:Have Option + code:0091:01 + +cartridge sha256:36769f543b6cfb08c5ef8673a11a7b27264bdd60323a62e9083b3da47eb33a8c + name:Lightgun Game 2 in 1 - Cosmocop + Cyber Monster (Asia) (Unl) + cheat + description:Cosmo Cop - Infinite lives + code:SXXKNUVK + cheat + description:Cosmo Cop - Infinite ammo + code:SZXGXUSE + cheat + description:Cosmo Cop - Infinite energy + code:SZVKEUVK+SZVKUUVK + cheat + description:Cyber Monster - Infinite misses + code:ATSPASVG + +cartridge sha256:745164dee8e4af6a7150d21e9ef082f56a51b01c5c32f28cdf4cd211bed3714d + name:Lightgun Game 2 in 1 - Tough Cop + Super Tough Cop (Asia) (Unl) + cheat + description:Infinite health + code:037A:06 + +cartridge sha256:cecc797ffc82c5764e89038262c00b325f44afc0d9fc4b5bef295ea227e1dd22 + name:Lion King, The (Europe) + cheat + description:Invincibility + code:EINEILEY+EIVLYGEY + cheat + description:Infinite lives + code:SXNEAKVK + +cartridge sha256:68e98b1b8dc5da610321f92718b4b4c2b2b71b6c752ff25ca6926e26cd91c57f + name:Little Mermaid, The (USA) + cheat + description:Invincibility + code:ESSGSPEY+ESEELPEY + cheat + description:Invincibility after one hit + code:SXSGNPVG + cheat + description:Infinite lives + code:SZSSPLVG + cheat + description:Keep red pearls after dying + code:GZSILLSA + cheat + description:Keep green pearls after dying + code:GZSIILSA + cheat + description:Get all pearls after dying + code:LASIZLAA + cheat + description:Start with all red pearls + code:LAKKGTAA+ILKKTVOV + cheat + description:Start with all green pearls + code:LAKKGTAA+TLKKTVOV + cheat + description:Start with 1 heart + code:PASGGTLA+PAXGAYLA + cheat + description:Start with 5 hearts + code:IASGGTLA+IAXGAYLA + cheat + description:Start with 1 life + code:AASGATZA + cheat + description:Start with 6 lives + code:IASGATZA + cheat + description:Start with 9 lives + code:AASGATZE + cheat + description:Start on Ursula stage + code:IAKKGTAA + cheat + description:Start on stage 2 + code:PAKKGTAA + cheat + description:Start on stage 3 + code:ZAKKGTAA + cheat + description:Start on stage 4 + code:LAKKGTAA + cheat + description:Start on stage 5 + code:GAKKGTAA + +cartridge sha256:e95d3557fa60bacabe7a0b65277cdf2f084b6f58b55784d3d631ab030def0a91 + name:Little Nemo - The Dream Master (USA) + cheat + description:Infinite life + code:SXKTGEVK + cheat + description:Infinite lives + code:SZOKSLVG + cheat + description:Mega-jump + code:TOKZKNZA + cheat + description:Speed jumps + code:GESLYPPA+UYUUIOVN + cheat + description:Super speed + code:ZEXLLPPA+SYEUPOVN + cheat + description:Start with 1 life + code:PEKKSZLA + cheat + description:Start with 6 lives + code:TEKKSZLA + cheat + description:Start with 9 lives + code:PEKKSZLE + cheat + description:Start on stage 2 + code:PEUKOZAA + cheat + description:Start on stage 3 + code:ZEUKOZAA + cheat + description:Start on stage 4 + code:LEUKOZAA + cheat + description:Start on stage 5 + code:GEUKOZAA + cheat + description:Start on stage 6 + code:IEUKOZAA + cheat + description:Start on stage 7 + code:TEUKOZAA + cheat + description:Start on stage 8 + code:YEUKOZAA + cheat + description:Invincibility (blinking) + code:0630:03 + cheat + description:Infinite life (alt) + code:05D0:05 + cheat + description:Infinite lives (alt) + code:008E:09 + cheat + description:Infinite Keys + code:008C:09 + cheat + description:Fly + code:0540:FF + +cartridge sha256:50badb618accf0ca28966c05ca4ff159aa9afa2fccd7f0354b8eff6af105a8f0 + name:Little Ninja Brothers (USA) + cheat + description:Invincibility + code:AIULZPEI + cheat + description:Invincibility to water + code:SXSZXNTS + cheat + description:Infinite Life + code:OLKUAOOO + cheat + description:Infinite Dragon Kicks + code:AEUUYKIA + cheat + description:Infinite money + code:AVSIOOSZ + cheat + description:Mighty Ball always available + code:AEEOKZPA + cheat + description:T-Star always available + code:ATUOSUSZ + cheat + description:All T-Stars + code:OZXONUPX + cheat + description:Max money after fights + code:AEOSKPZA + cheat + description:Quick level up + code:AAXIVOZP + cheat + description:Start with 255 Life + code:NYUSKXZE + cheat + description:Start with 50 Attack + code:ZLUSSZPA + cheat + description:Have Batteries + code:0449:02 + cheat + description:Have Marks + code:042A:06 + cheat + description:Have Meat Bun + code:044D:01 + cheat + description:Have Medicine + code:044B:01 + cheat + description:Have Prism Claw + code:0439:08 + cheat + description:Have Prism Sword + code:043B:05 + cheat + description:Have Prism Shield + code:043C:04 + cheat + description:Have Sacred Robe + code:043D:04 + cheat + description:Have Sweet Buns + code:044C:08 + cheat + description:Have T-Stars + code:042B:08 + cheat + description:Have Whirly Birds + code:044A:01 + +cartridge sha256:a5165565263eaf8bdc45a8e6a615704f9bf271cd6d547d22c098c80cbaffd879 + name:Little Samson (USA) + cheat + description:Invincibility against enemies + code:APSELZEI + cheat + description:Infinite health + code:GZVEPXSN + cheat + description:Infinite lives + code:GXOVAGVG + cheat + description:Hit anywhere + code:ALUAIGEL + cheat + description:Collectable items never disappear + code:AVKXSXVI + cheat + description:Increase Samson's health gauge + code:AOKTPSAE + cheat + description:Increase Kikira's health gauge + code:AOKTZSAE + cheat + description:Increase Gamm's health gauge + code:AXKTLIAP + cheat + description:Increase K.O.'s health gauge + code:AOKTGIGA + cheat + description:Increase Samson's health + code:AOKTISAE + cheat + description:Increase Kikira's health + code:AOKTTSAE + cheat + description:Increase Gamm's health + code:AXKTYIAP + cheat + description:Increase K.O.'s health + code:AOKVAIGA + cheat + description:Crystal ball adds 4 units to health gauge + code:AAUZEZGE + cheat + description:Small hearts give 4 health units + code:AESXVPZE + cheat + description:Infinite health - Little Samson + code:0097:08 + cheat + description:Infinite health - Dragon + code:0098:08 + cheat + description:Infinite health - Golem + code:0099:0F + cheat + description:Infinite health - Mouse + code:009A:04 + +cartridge sha256:33c362ea3dbce2ac449e0d877d85904c26fcaf4b197e27b23efe9cbe67f20e15 + name:Locksmith (Asia) (PAL) (Unl) + cheat + description:Infinite health + code:0573:23 + cheat + description:Infinite time + code:056A:01 + cheat + description:Instantly beat puzzle + code:0043:FF + +cartridge sha256:6c17c7bf2f7466eb43718305a0d74bd75f31b65429bc1fe406c34565e792310c + name:Lode Runner (USA) + cheat + description:Invincibility + code:GXOKIGEY+GXOGTGEY+GZNGLGEY + cheat + description:Infinite lives + code:GZNGYIVG + cheat + description:Moonwalk + code:APOIGPAL + cheat + description:Heavy gravity + code:GAUGVGYA+AAKGEGGA + cheat + description:Start with 1 life + code:PASKLTIA + cheat + description:Start with 10 lives + code:ZASKLTIE + +cartridge sha256:622ef597b328a204fafcef55c9aef0de08489a43898a6c9adaa9d39971e06f69 + name:Lone Ranger, The (USA) + cheat + description:Infinite health - side views only + code:GZKKYPSA + cheat + description:Infinite regular and silver bullets + code:AASXUAPA + cheat + description:Cheaper silver bullets + code:IEUZTNZA + cheat + description:Cheaper standard bullets + code:ZEUZIYIA + cheat + description:Don't lose money when shooting bystanders + code:GZSZNATG+GZSXOATT + cheat + description:Start with 255 dollars + code:NNKNTIGV + cheat + description:Start with 10 silver bullet rounds + code:ZESYTIIE + cheat + description:Start with 15 silver bullet rounds + code:YESYTIIE + cheat + description:Start with 15 standard bullet rounds + code:YESYZSZE + cheat + description:Start with 30 standard bullet rounds + code:TOSYZSZE + cheat + description:Infinite health + code:005F:0C + cheat + description:Infinite money + code:0050:FF+DF30:FF + cheat + description:Infinite regular and silver bullets (alt) + code:0052:06 + cheat + description:Infinite T.N.T. + code:0055:63 + +cartridge sha256:4fb6c5c8359dcbabcb4d05cf36192c790e68a509ef8666c20ebdb81541df3243 + name:Low G Man - The Low Gravity Man (USA) + cheat + description:Invincibility + code:ATOXTPEY+YZSXTKZZ + cheat + description:Infinite life (blinking) + code:SZEENESE + cheat + description:Infinite ammo - secondary weapon + code:SXUEKUVS + cheat + description:Infinite vehicle fuel + code:SZVSKOVK + cheat + description:Infinite time + code:GZKINOVK + cheat + description:Infinite lives + code:SZNIEEVK + cheat + description:Hit anywhere + code:AEXXZELP+SXVZLAAX + cheat + description:Get items from anywhere + code:AEOXLOZA + cheat + description:Full life gained from capsules + code:AAEZATZE + cheat + description:Less life gained from capsules + code:PAEZATZA + cheat + description:Full EMDP on a new life + code:LAVSKAPA + cheat + description:Full AGM on a new life + code:ZAVIKAAA + cheat + description:10 Boomerangs on pick-up + code:ZEOZZTLE + cheat + description:10 Fireballs on pick-up + code:ZAVXGTLE + cheat + description:10 Bombs on pick-up + code:ZEUXATLE + cheat + description:10 Waves on pick-up + code:ZESXTTLE + cheat + description:1 life after continue + code:PEOSKALA + cheat + description:6 lives after continue + code:TEOSKALA + cheat + description:9 lives after continue + code:PEOSKALE + cheat + description:Start with 1 life + code:PEXIZTLA + cheat + description:Start with 6 lives + code:TEXIZTLA + cheat + description:Start with 9 lives + code:PEXIZTLE + cheat + description:Infinite life + code:0639:08 + cheat + description:Infinite lives (alt) + code:06D6:09 + cheat + description:Infinite time (alt) + code:0738:FF + cheat + description:Enemies die instantly + code:050A:00+050E:00 + cheat + description:Jump higher + code:0647:35 + cheat + description:Rank is 03/03 + code:0651:03 + cheat + description:Rank left is 99/99 + code:0656:63+0657:63 + +cartridge sha256:52812b55986f96fa77eb24a76e795dc8d79977eec7488c7b5b84ac3b47d60366 + name:M.C. Kids (USA) + cheat + description:Infinite lives + code:GXKSUOSE + cheat + description:Infinite hearts + code:EGETYTIA + cheat + description:Don't lose Golden Arches when hit + code:EKNVYIIA + cheat + description:Multi-jump + code:GLXEIPEK+OZXEGOSX+XTXETPGE + cheat + description:Super-jump + code:AOVEGTGE+AEVEPTLA + cheat + description:1 heart per life + code:AAKSAYZA+AEKSNPZA + cheat + description:8 hearts per life + code:YAKSAYZA+YEKSNPZA + cheat + description:Always find all cards in level + code:AAVNIVGA+OZVNPVSX+PAVNZVPP+XTVNLTGE + cheat + description:Access any level on the map + code:AEXALGPA + cheat + description:Start with 2 lives + code:PAKILYLA + cheat + description:Start with 7 lives + code:TAKILYLA + cheat + description:Start with 10 lives + code:PAKILYLE + +cartridge sha256:345fe1e466b3e8d7a8b7f01f545808793b120ad17ed8497ddc306e205b2589a3 + name:M.U.L.E. (USA) + cheat + description:4 'months' for beginner game + code:GEKALTTA + cheat + description:9 'months' for beginner game + code:PEKALTTE + cheat + description:6 'months' for standard game + code:TEXAIVGA + cheat + description:20 'months' for standard game + code:GOXAIVGA + cheat + description:Humanoids start with $400 + code:EPOEPNAI+PAOETYZA + cheat + description:Humanoids start with $800 + code:AZOEPNAI+LAOETYZA + cheat + description:Flappers start with $1300 + code:GPUAAYAG+IAUAIYTA + cheat + description:Flappers start with $2000 + code:EIUAAYAG+YAUAIYTA + +cartridge sha256:d10e4280b6ca868142061ab731aeb378c983334b89a1727a524c57c241812d13 + name:M.U.S.C.L.E. - Tag Team Match (USA) + cheat + description:Invincibility - P1 team + code:OZUEPZSX+LTUEZXYG + cheat + description:Set bout length timer to 20 + code:ZESELPLA + cheat + description:Set bout length timer to 60 + code:TESELPLA + cheat + description:Set bout length timer to 90 + code:PESELPLE + cheat + description:Computer controlled players jump faster + code:ZEUOUPPA + cheat + description:Computer controlled players speed up + code:ZASXAAPA + +cartridge sha256:80757aa85fe4001123cb839db0fc72fc7e06020ecba5c89abb049b8490fd3d0b + name:Mad Max (USA) + cheat + description:Infinite ammo + code:SXVAEVVK + cheat + description:No damage done to car + code:AENEPYAP + cheat + description:Less damage done to car + code:GENEPYAP + cheat + description:More damage done to car + code:AXNEPYAP + cheat + description:No damage done to you + code:AAUAUEAA + cheat + description:Less damage done to you + code:GAUAUEAA + cheat + description:More damage done to you + code:APUAUEAA + cheat + description:A better tune-up + code:AVKVLPAZ + cheat + description:Dynamite is free + code:AANEPZPA + cheat + description:Ammo is free + code:AAVEGZPA + cheat + description:Cheaper arena pass + code:GEEATZYA+GLKELZYL + cheat + description:Start with full food and water + code:NYEYVYAX + cheat + description:Start with less ammo + code:AGOYUYEA + +cartridge sha256:ab0a43bc7c33f0cdd8acf15c4da967ba2af56431de1a598b9767bd10e78cc8fa + name:Mafat Conspiracy, The (USA) + cheat + description:Infinite bullets + code:GXOGZZVG + cheat + description:Infinite time + code:XTNIVXXK + cheat + description:Immune to physical damage + code:GZNGOTOY + cheat + description:Immune to weapon damage + code:GZOKSSON + cheat + description:Immune to damage in maze + code:GXNGPOSN + cheat + description:Fewer bullets on pick-up + code:IASGUSZA + cheat + description:More bullets on pick-up + code:GPSGUSZA + cheat + description:Faster timer + code:AZNIEXGL + cheat + description:Slower timer + code:AYNIEXGL+AYVISXGL + +cartridge sha256:2eee5b14a90458088ac18c36352ab605ae4fe452a59f2675937acee0d15e94b6 + name:Magic Carpet 1001 (Unl) + cheat + description:Invincibility + code:AVEAYKAL + +cartridge sha256:9a5d7367891f4d929fe5e3be5fe2988e3e6c0b0d70b7cd401976f16b3b5f0a9d + name:Magic Jewelry (Asia) (Unl) + cheat + description:Bypass checksum check + code:GXUTAYEI+GXXVAYEI + cheat + description:Speed never increases + code:AEETNKIT+XXETVGVZ + cheat + description:Disable Game Over + code:GXUVYYEP + +cartridge sha256:caae56599689d4297c3be1afdc77d5bfc510d47d6e668244c308b9732eb41dea + name:Magician (USA) + cheat + description:Start on area 2 - Wilderness + code:0051:01 + cheat + description:Start on area 3 - Lake + code:0051:02 + cheat + description:Start on area 4 - Forest + code:0051:03 + cheat + description:Start on area 5 - Caverns + code:0051:04 + cheat + description:Start on area 6 - Dungeons + code:0051:05 + cheat + description:Start on area 7 - Castle + code:0051:06 + cheat + description:Start on area 8 - Tower + code:0051:07 + cheat + description:Start on the Tower Top boss + code:0051:08 + +cartridge sha256:527faba646cd9e959a4df5d015cd14ac3fae461b06655be99d47c1a754384097 + name:Magic of Scheherazade, The (USA) + cheat + description:Invincibility + code:OXUYZKPX + cheat + description:Infinite HP + code:OTSXLGSV + cheat + description:Infinite lives + code:SXEVPLVG + cheat + description:Hit anywhere + code:AEEYYGLA+ALNNIGEP+SZNNLGSG+TZNNTKPA+UGNNGKPE + cheat + description:Never lose Mashroobs + code:SZEAEKVK + cheat + description:Get coins from anywhere + code:TEXAXLLA + cheat + description:Less energy gained from Bread + code:POKAOZZU + cheat + description:Less magic gained from Mashroobs + code:ZAEEXGIA + cheat + description:Start with only 20 Gold Coins + code:ZAUTAZIA + cheat + description:Start with 1 life + code:PAKTAZLA + cheat + description:Start with 6 lives + code:TAKTAZLA + cheat + description:Start with 9 lives + code:PAKTAZLE + cheat + description:Infinite HP (alt) + code:0081:FF + cheat + description:Infinite MP + code:008D:18 + cheat + description:Infinite Bread + code:0306:25 + cheat + description:Infinite Carpets + code:0311:10 + cheat + description:Infinite Mashroob + code:0307:25 + cheat + description:Infinite R. Seeds + code:0310:05 + cheat + description:Infinite Troopers + code:03D7:08 + cheat + description:Gain 65280 EXP for each kill + code:0086:FF + +cartridge sha256:daa1c7263a804920b2ebeb5b2041da0a207a49b5bcddbfdf51f02ba7e3d89092 + name:Magmax (USA) + cheat + description:Infinite lives - 1P game + code:SZVVYTVG + cheat + description:Infinite lives - 2P game + code:AEEVITPA + cheat + description:Start with 1 life - both players + code:AEKGKLZA + cheat + description:Start with 6 lives - both players + code:IEKGKLZA + cheat + description:Start with 9 lives - both players + code:AEKGKLZE + cheat + description:Infinite lives - P1 + code:0058:02 + cheat + description:Infinite lives - P2 + code:0059:05 + cheat + description:Max upgrades - P1 + code:008B:05 + cheat + description:Max upgrades - P2 + code:008C:05 + +cartridge sha256:84f5377980d2fd44d71faec42f858b1e83540c2f55aba9236c3279d6dde8592a + name:Maniac Mansion (USA) + cheat + description:All codes start out as 0000 + code:SEXGKASZ + +cartridge sha256:6bc8f71a1d19cab1a1364c7e2988eaec25b2694aa29670360cab6c513f1c47ac + name:Mappy (Japan) + cheat + description:Invincibility + code:ASSSXZEI+GXEIOZEY + cheat + description:Disable Hurry! timer + code:GZENZLVT + cheat + description:Infinite time - Bonus stages + code:GZEKUZVG + cheat + description:Press Start to complete stage + code:ATXKIZIA+OZXKAZIK+PAXKGZEY+SAXKZZSE+TLXKLZLX+VAXKPZLZ + cheat + description:Ropes don't change color when jumping on them + code:SZOSNKVS+SZOVZXVS + cheat + description:Disable trap floors + code:SXKYTEOO + cheat + description:Collect items from anywhere - normal stages + code:GXKNTPEI+GXSNPPEL + cheat + description:Collect Red Balloons from anywhere - Bonus stages + code:GXKNTPEI+GXSNPPEL + +cartridge sha256:7d07d335a873205964299b2735c14fe06170329523341a651f275cdf3ed96f18 + name:Mappy-Land (USA) + cheat + description:Infinite lives + code:SZKXITVG + cheat + description:Start with 1 toy + code:PESXALLA + cheat + description:Start with coins, not toys + code:LESZALAA + cheat + description:Start with fish, not toys + code:PESZALAA + cheat + description:Start with pots, not toys + code:ZESZALAA + cheat + description:Start with 1 life + code:AEXXTAZA + cheat + description:Start with 6 lives + code:IEXXTAZA + cheat + description:Start with 6 toys + code:TESXALLA + +cartridge sha256:d77ed527cf081019dc8e1cad72872ef3bd640114221b89f030e0c03229c54ddc + name:Marble Madness (USA) + cheat + description:Infinite time + code:OXVXLZVS + cheat + description:Don't break from falling + code:EYNGALEI + cheat + description:Cannot fall into bottomless pits + code:OZGGYO+SZAEUA+SZEGPXOX + cheat + description:Extra 20 seconds to complete beginner race + code:GOOZPLAA + cheat + description:Extra 40 seconds to complete beginner race + code:AXOZPLAE + cheat + description:Bonus time not added + code:GXEXTLEL + cheat + description:Infinite time (alt) + code:0044:3C + cheat + description:Max score - P1 + code:004A:63+004B:63+004C:63 + +cartridge sha256:0cc334007d3eae698cdcd034d12ec9bab2b5266e85bc703cf24ccb4e2d63b654 + name:Mario Bros. (World) + cheat + description:Invincibility + code:AVVIEGVI + cheat + description:Infinite time - bonus rounds + code:SZNTPUVK + cheat + description:Infinite power blocks + code:SXNIIZVG + cheat + description:Infinite lives + code:SXTIEG + cheat + description:Stops green fireball from appearing + code:AVOTINSZ + cheat + description:Stops red fireball from appearing + code:AEETXZPA + cheat + description:Move faster + code:PENGSAAA + cheat + description:Move much faster + code:ZENGSAAA + cheat + description:Enemies move faster + code:EZEKEPKZ+ZAEKOPNG + cheat + description:Enemies move much faster + code:EZEKEPKZ+LAEKOPNG + cheat + description:Mega-jump + code:VYSYAUKY+VYSYPUKY + cheat + description:Coins kill you + code:AEUIUGAG + cheat + description:Start with 1 life + code:AAISPL + cheat + description:Start with 6 lives + code:IAISPL + cheat + description:Start with 9 lives + code:AAISPU + cheat + description:Infinite lives - P1 + code:0048:04 + cheat + description:Infinite lives - P2 + code:004C:04 + +cartridge sha256:c9348c4e30ef0bc62c4fd119b5e38d85af493a1eb436c6c229b7a6a52af42681 + name:Mario's Time Machine (USA) + cheat + description:Get an item after killing one Koopa + code:ZEUUGYAA + +cartridge sha256:a385f0bed8d9afd110e649b73084191d80f41728139494f8fcb92d4815cd5197 + name:Master Chu and the Drunkard Hu (USA) (Unl) + cheat + description:Invinicibility + code:SUVOIEVN + cheat + description:Infinite health + code:SLUPANVS + cheat + description:Infinite lives + code:SLXOTYVI + cheat + description:Start on round 2 + code:ZAEALPPA + cheat + description:Start on round 3 + code:LAEALPPA + cheat + description:Start on round 4 + code:GAEALPPA + cheat + description:Start on round 5 + code:IAEALPPA + cheat + description:Start on round 6 + code:TAEALPPA + cheat + description:Start on round 7 + code:YAEALPPA + +cartridge sha256:c8486cd1a35950007a3ba671a128097d780084182a854d6115ddec7dad56e806 + name:Mechanized Attack (USA) + cheat + description:Infinite lives + code:SXUNPEVK + cheat + description:Infinite grenades + code:SZUNTOVK + cheat + description:Infinite bullets + code:SZEYIOVK + cheat + description:Reduce damage by half + code:AEVOAPLA + cheat + description:Magazine holds half normal amount of bullets after first magazine used + code:GPONAOAZ+GPEYLEAZ + cheat + description:Start with only 1 life + code:EZOKIAXZ+PAOKTAAA+KANKPEVE + cheat + description:Start with 6 lives + code:EZOKIAXZ+TAOKTAAA+KANKPEVE + cheat + description:Start with 9 lives + code:EZOKIAXZ+PAOKTAAE+KANKPEVE + cheat + description:Start with only 1 magazine + code:EZOKIAXZ+AAOKTAAA+KANKTEVE + cheat + description:Start with 8 magazines + code:EZOKIAXZ+YAOKTAAA+KANKTEVE + cheat + description:Start with only 1 grenade + code:EZOKIAXZ+PAOKTAAA+KEEGZEVE + cheat + description:Start with 8 grenades + code:EZOKIAXZ+AAOKTAAE+KEEGZEVE + +cartridge sha256:5314ad0c406161195b6bb100ee11304bab8af121bba85992be896d5cb26b109e + name:Mega Man (USA) + cheat + description:Infinite health + code:SZKZGZSA + cheat + description:Invincibility (except against bosses) + code:AVVXLPSZ + cheat + description:Infinite weapons on pick-up + code:IESZXESN + cheat + description:Infinite weapons on pick-up (alt) + code:SUSZSASP + cheat + description:Infinite lives + code:OZSKPZVK + cheat + description:One hit kills + code:AAOGSOLA+ESSUNTEP + cheat + description:One hit kills on bosses + code:AUZYGL + cheat + description:Collectable items never disappear + code:SUULTVVN + cheat + description:Climb up ladders faster + code:PENOAYAA + cheat + description:Climb down ladders faster + code:VYXOXENN + cheat + description:Disable boss invulnerability after hit + code:GZVKEPSA + cheat + description:Maximum points for shooting enemies + code:OXSLEEPV+AUSLOEAZ + cheat + description:Mega-jump + code:TAOOYTGA + cheat + description:Multi-jump + code:GOUOTSAP+GXKPVGEL+SUEPLSPX+SOEPGIVP + cheat + description:Enemies always drop extra lives + code:PGOUONLL+XTXLONEK + cheat + description:Enemies always drop large health refill + code:AGOUONLL+XTXLONEK + cheat + description:Enemies always drop large weapon refill + code:XTXLONEK+YLOUONLU + cheat + description:Start with half energy + code:TAXOIOGO + cheat + description:Start with 1 life + code:AASPLAZA + cheat + description:Start with 6 lives + code:IASPLAZA + cheat + description:Start with 9 lives + code:AASPLAZE + cheat + description:Invincibility + code:0055:5A + cheat + description:Infinite health (alt) + code:006A:1C + cheat + description:Infinite lives (alt) + code:00A6:03 + cheat + description:Have all weapons and all stages cleared + code:005D:FF + cheat + description:Bosses have no invulnerability time + code:0056:00 + +cartridge sha256:1e588d435e75d80c5c0b578b4fa8d196f2cf4346c11c9a7b7e435d768828ad01 + name:Mega Man 2 (USA) + cheat + description:Invincibility + code:EIUGVTEY + cheat + description:Invincibility (alt) + code:AIUGVTEY+SAUGKTSZ + cheat + description:Infinite health + code:SXXTPSSE + cheat + description:Infinite lives + code:SXUGTPVG + cheat + description:Infinite Heat Man + code:SXSSOISA + cheat + description:Infinite Air Man + code:SXSSNZSA + cheat + description:Infinite Wood Man + code:SZVIUYSA + cheat + description:Infinite Bubble Man + code:SZUIKLVG + cheat + description:Infinite Quick Man + code:SZVSNLVG + cheat + description:Infinite Metal Man + code:SXKSOLVG + cheat + description:Infinite Clash Man + code:SXESKLVG + cheat + description:Infinite 1 + code:SZNIVGVG + cheat + description:Infinite 2 + code:SZXTGZVG + cheat + description:Infinite 3 + code:SZKTALVG + cheat + description:Burst-fire from normal weapon + code:LZVSSZYZ + cheat + description:Maximum weapon energy on pick-up + code:GZKEYLAL + cheat + description:Hit anywhere (except bosses) + code:EIUTZTEP+GXETTTEL+GZSVPTEI+GZVTGTEY+GZXTPTEL + cheat + description:One hit kills + code:GXETTTEL+GZUZGTEL + cheat + description:Power-jumps + code:TANAOZGA + cheat + description:Super power-jumps + code:AANAOZGE + cheat + description:Mega power-jumps + code:APNAOZGA + cheat + description:Multi-jump + code:AXEAUUSZ+LXEEYIYZ+SEEASLGA+VEEAKLEX + cheat + description:Moonwalking + code:PGEAKOPX + cheat + description:Collectable items never disappear + code:SSNLNKVS + cheat + description:Enemies always drop extra lives + code:ASUNZZEP+SSUNLXKK + cheat + description:Enemies always drop large health refill + code:ASUNZZEP+OSUNLXKK + cheat + description:Enemies always drop large weapon refill + code:ASUNZZEP+SSUNLXKG + cheat + description:Special items re-appear after being collected + code:OUVVASOO + cheat + description:Able to access already defeated boss stages + code:AEVAZEKI + cheat + description:Start with half health + code:TEKAIEGO + cheat + description:Start with 1 life + code:PANALALA + cheat + description:Start with 6 lives + code:TANALALA + cheat + description:Start with 9 lives + code:PANALALE + cheat + description:Invincibility (blinking) + code:004B:02 + cheat + description:Infinite health (alt) + code:06C0:1E + cheat + description:Have all weapons and all stages cleared + code:009A:FF+009B:FF + cheat + description:Infinite Heat Man once obtained + code:009C:1E + cheat + description:Infinite Air Man once obtained + code:009D:1E + cheat + description:Infinite Wood Man once obtained + code:009E:1E + cheat + description:Infinite Bubble Man once obtained + code:009F:1E + cheat + description:Infinite Quick Man once obtained + code:00A0:1E + cheat + description:Infinite Flash Man once obtained + code:00A1:1E + cheat + description:Infinite Metal Man once obtained + code:00A2:1E + cheat + description:Infinite Crash Man once obtained + code:00A3:1E + cheat + description:Infinite 1 once obtained + code:00A4:1E + cheat + description:Infinite 2 once obtained + code:00A5:1E + cheat + description:Infinite 3 once obtained + code:00A6:1E + cheat + description:Infinite energy tanks + code:00A7:03 + cheat + description:Infinite lives (alt) + code:00A8:04 + cheat + description:Atomic Fire always fully charged + code:00AC:FF + cheat + description:Bosses have no invulnerability time + code:05A8:00 + +cartridge sha256:5b85c1ff632c6ac34742ac87b9c8ddee9a13827caf1212ecfa1d11f1f9dece50 + name:Mega Man 3 (USA) + cheat + description:Invincibility + code:ENXETAEI + cheat + description:Infinite health + code:GXVAAASA + cheat + description:Infinite health (alt) + code:SXVAAASA + cheat + description:Infinite lives + code:AEEGXLPA + cheat + description:Infinite weapons (except Top Man) + code:OUNIVVOO + cheat + description:Infinite Top Man + code:SXOAZZSA + cheat + description:Hit anywhere + code:AOSYXUAU+AVSYUUSL + cheat + description:One hit kills + code:AEKEZPZA + cheat + description:Mega-jump + code:YEUKOTGA + cheat + description:Multi-jump + code:TUOKUIYA+VKUGOIES+GZUKOTEP + cheat + description:Longer slides + code:ASXSTLGP + cheat + description:Faster slides + code:NNKIALEE + cheat + description:Move faster + code:NYKGXSGK + cheat + description:Move mega-fast + code:ZAKGNIPA + cheat + description:Collectable items never disappear + code:SIUUNVVS + cheat + description:Enemies always drop extra lives + code:EZNLXYEP+IANLUNPA+TANLVNEY + cheat + description:Enemies always drop large health refill + code:EZNLXYEP+LANLUNPA+TANLVNEY + cheat + description:Enemies always drop large weapon refill + code:EZNLXYEP+PANLUNPA+TANLVNEY + cheat + description:Special items re-appear after being collected + code:AEXOXGKI + cheat + description:Able to access already defeated boss stages + code:AAOOGLSI + cheat + description:Start with 1 life + code:AENKKAZA + cheat + description:Start with 6 lives + code:IENKKAZA + cheat + description:Start with 9 lives + code:AENKKAZE + cheat + description:Start with 1 life after continue + code:PAOONPZA + cheat + description:Start with 6 lives after continue + code:IAOONPZA + cheat + description:Start with 9 lives after continue + code:AAOONPZE + cheat + description:Invincibility (alt) + code:0039:39 + cheat + description:Infinite health (alt 2) + code:00A2:9C + cheat + description:Infinite lives + code:00AE:03 + cheat + description:Infinite slide time + code:0033:FF + cheat + description:Mega-jump (alt) + code:CEB9:09 + cheat + description:Infinite Gemini Man + code:00A3:9C + cheat + description:Infinite Needle Man + code:00A4:9C + cheat + description:Infinite Hard Man + code:00A5:9C + cheat + description:Infinite Magnet Man + code:00A6:9C + cheat + description:Infinite Top Man (alt) + code:00A7:9C + cheat + description:Infinite Snake Man + code:00A8:9C + cheat + description:Infinite Rush Coil + code:00A9:9C + cheat + description:Infinite Spark Man + code:00AA:9C + cheat + description:Infinite Rush Sub + code:00AB:9C + cheat + description:Infinite Shadow Man + code:00AC:9C + cheat + description:Infinite Rush Jet + code:00AD:9C + +cartridge sha256:ed8bc89c9cd44bf566666451779d7db2da3d9c211ff2a4824372c172b554e05b + name:Mega Man 4 (USA) (Rev A) + cheat + description:Infinite health + code:GXVEIPSA + cheat + description:Infinite health (alt) + code:SXVEIPSA + cheat + description:Infinite weapons + code:OUENESOO + cheat + description:Infinite weapon power + code:GXENESOO + cheat + description:Always have 10 E-Tanks + code:VENOEASZ + cheat + description:Infinite lives + code:SZUGUAVG + cheat + description:Infinite energy pods on pick-up + code:GXNPZTVG + cheat + description:Instant full Mega Buster + code:AEOAIEPA + cheat + description:Instant full Mega Buster (alt) + code:LXKESKAP + cheat + description:Hit anywhere + code:APKYKXOU+ATKYSXAZ + cheat + description:Hit anywhere continually + code:APKYKXOU+ATKYSXAZ+GZKYXZEY + cheat + description:Longer slides + code:YXEAIOZO + cheat + description:Shorter slides + code:ZOEAIOZP + cheat + description:Faster slides + code:GEOAGPZA + cheat + description:Mega-jump + code:AAKEYPIE + cheat + description:Multi-jump + code:AUNELEEG+OAEEYPXA+GZUALPEP + cheat + description:Move faster + code:ZANKPTPA+ZEVALLPA + cheat + description:Cosack can't hurt you + code:SXEAEASA + cheat + description:Collectable items never disappear + code:SIUUNVVS + cheat + description:Enemies always drop extra lives + code:AEOLNLTA+LEOUXUEY + cheat + description:Enemies always drop large health refill + code:AEOLNLTA+LEOUXUEY+ZEOLELGA + cheat + description:Enemies always drop large weapon refill + code:AEOLNLTA+LEOUXUEY+IEOLELGA + cheat + description:Special items re-appear after being collected + code:AEXOXGKI + cheat + description:Start with 1 life + code:AAUKZIZA + cheat + description:Start with 6 lives + code:IAUKZIZA + cheat + description:Start with 79 lives + code:AAUKZIZE + cheat + description:Invincibility + code:003C:1F + cheat + description:Infinite health (alt 2) + code:00B0:9C + cheat + description:Infinite lives (alt) + code:00A1:03 + cheat + description:Infinite Bright Man + code:00BC:9C + cheat + description:Infinite Dive Man + code:00B7:9C + cheat + description:Infinite Drill Man + code:00B9:9C + cheat + description:Infinite Dust Man + code:00BA:9C + cheat + description:Infinite Pharaoh Man + code:00BB:9C + cheat + description:Infinite Ring Man + code:00B8:9C + cheat + description:Infinite Skull Man + code:00BD:9C + cheat + description:Infinite Toad Man + code:00B4:9C + cheat + description:Infinite Rush Coil + code:00B1:9C + cheat + description:Infinite Rush Jet + code:00B2:9C + cheat + description:Infinite Rush Marine + code:00B3:9C + cheat + description:Infinite Balloon + code:00B6:9C + cheat + description:Infinite Wire + code:00B5:9C + cheat + description:Infinite time for 1st Balloon + code:046B:FE + cheat + description:Infinite time for 2nd Balloon + code:046A:FE + cheat + description:Infinite time for 3rd Balloon + code:0469:FE + cheat + description:Instant full Mega Buster (alt 2) + code:0559:23 + cheat + description:Bosses have no invulnerability time + code:05CF:00 + +cartridge sha256:a1fda74d03a9dd0c168b1ecae66803d78723cf7ccd85a482dedf017b97e660e8 + name:Mega Man 4 (USA) + cheat + description:Infinite health + code:GXVEIPSA + cheat + description:Infinite health (alt) + code:SXVEIPSA + cheat + description:Infinite weapons + code:OUENESOO + cheat + description:Infinite weapon power + code:GXENESOO + cheat + description:Always have 10 E-Tanks + code:VENOEASZ + cheat + description:Infinite lives + code:SZUGUAVG + cheat + description:Infinite energy pods on pick-up + code:GXNPZTVG + cheat + description:Instant full Mega Buster + code:AEOAIEPA + cheat + description:Instant full Mega Buster (alt) + code:LXKESKAP + cheat + description:Hit anywhere + code:APKYKXOU+ATKYSXAZ + cheat + description:Hit anywhere continually + code:APKYKXOU+ATKYSXAZ+GZKYXZEY + cheat + description:Longer slides + code:YXEAIOZO + cheat + description:Shorter slides + code:ZOEAIOZP + cheat + description:Faster slides + code:GEOAGPZA + cheat + description:Mega-jump + code:AAKEYPIE + cheat + description:Multi-jump + code:AUNELEEG+OAEEYPXA+GZUALPEP + cheat + description:Move faster + code:ZANKPTPA+ZEVALLPA + cheat + description:Collectable items never disappear + code:SIUUNVVS + cheat + description:Enemies always drop extra lives + code:AEOLNLTA+LEOUXUEY + cheat + description:Enemies always drop large health refill + code:AEOLNLTA+LEOUXUEY+ZEOLELGA + cheat + description:Enemies always drop large weapon refill + code:AEOLNLTA+LEOUXUEY+IEOLELGA + cheat + description:Special items re-appear after being collected + code:AEXOXGKI + cheat + description:Start with 1 life + code:AAUKZIZA + cheat + description:Start with 6 lives + code:IAUKZIZA + cheat + description:Start with 9 lives + code:AAUKZIZE + cheat + description:Invincibility + code:003C:1F + cheat + description:Infinite health (alt 2) + code:00B0:9C + cheat + description:Infinite lives (alt) + code:00A1:03 + cheat + description:Infinite Bright Man + code:00BC:9C + cheat + description:Infinite Dive Man + code:00B7:9C + cheat + description:Infinite Drill Man + code:00B9:9C + cheat + description:Infinite Dust Man + code:00BA:9C + cheat + description:Infinite Pharaoh Man + code:00BB:9C + cheat + description:Infinite Ring Man + code:00B8:9C + cheat + description:Infinite Skull Man + code:00BD:9C + cheat + description:Infinite Toad Man + code:00B4:9C + cheat + description:Infinite Rush Coil + code:00B1:9C + cheat + description:Infinite Rush Jet + code:00B2:9C + cheat + description:Infinite Rush Marine + code:00B3:9C + cheat + description:Infinite Balloon + code:00B6:9C + cheat + description:Infinite Wire + code:00B5:9C + cheat + description:Infinite time for 1st Balloon + code:046B:FE + cheat + description:Infinite time for 2nd Balloon + code:046A:FE + cheat + description:Infinite time for 3rd Balloon + code:0469:FE + cheat + description:Instant full Mega Buster (alt 2) + code:0559:23 + cheat + description:Bosses have no invulnerability time + code:05CF:00 + +cartridge sha256:4ddb728c3a007f1aa7184b60a1355cfd376cae46edc007fd48e6bcf41207cdb7 + name:Mega Man 5 (USA) + cheat + description:Infinite health + code:GXSEYZSA + cheat + description:Invincible against spikes + code:SAKEZAIA + cheat + description:Infinite lives + code:GXXAAIVG + cheat + description:Infinite weapons + code:OLKOYSOO+OUNUZSOO+SZSAGZSA + cheat + description:Infinite energy for most weapons + code:OVNLZISV+OTKPYISV + cheat + description:Infinite mega-tanks on pick-up + code:GXSEPZVG + cheat + description:Infinite energy tanks on pick-up + code:GZSATPVG + cheat + description:Hit anywhere + code:APOYYEOU+ATONAEAZ + cheat + description:Hit anywhere continually + code:APOYYEOU+ATONAEAZ+GZOYIAEY + cheat + description:One hit kills + code:AEUAZOIZ + cheat + description:Starting weapons use less energy + code:PEVLLPGA + cheat + description:Super-jump + code:YEXETAIA+ONUELEUN + cheat + description:Mega-jump + code:PEXETAIA+NNUELEUY + cheat + description:Multi-jump + code:SAKATAIO+EAVEZAXA+GXOAAAEP + cheat + description:Collectable items never disappear + code:ATKXOVVI + cheat + description:Enemies always drop extra lives + code:ASEZVTEP+LEEZETGA + cheat + description:Enemies always drop large health refill + code:ASEZVTEP+PEEZETGA + cheat + description:Enemies always drop large weapon refill + code:ASEZVTEP + cheat + description:Special items re-appear after being collected + code:AEUOVPSI + cheat + description:Start with at least 2 energy tanks + code:XAKSUTEA + cheat + description:Start with at least 6 energy tanks + code:VAKSUTEA + cheat + description:Start with at least 2 mega-tanks + code:XASIOTEA + cheat + description:Start with at least 6 mega-tanks + code:VASIOTEA + cheat + description:Invincibility + code:05B8:2D + cheat + description:Infinite health (alt) + code:00B0:9C + cheat + description:Infinite lives (alt) + code:00BF:03 + cheat + description:Infinite Beat + code:00BC:9C + cheat + description:Infinite Charge Kick + code:00B8:9C + cheat + description:Infinite Crystal Eye + code:00B3:9C + cheat + description:Infinite Gravity Hold + code:00B7:9C + cheat + description:Infinite Gyro Attack + code:00B2:9C + cheat + description:Infinite Napalm Bomb + code:00B4:9C + cheat + description:Infinite Power Stone + code:00B6:9C + cheat + description:Infinite Star Crash + code:00B9:9C + cheat + description:Infinite Super Arrow + code:00B5:9C + cheat + description:Infinite Water Wave + code:00B1:9C + cheat + description:Infinite Rush Coil + code:00BA:9C + cheat + description:Infinite Rush Jet + code:00BB:9C + cheat + description:Bosses have no invulnerability time + code:05C0:00 + +cartridge sha256:2037babe50fed7a13b6f6559914cb81497245c9477592e6f8da183df09a3609a + name:Mega Man 6 (USA) + cheat + description:Invincibility + code:ESXAKTEY + cheat + description:Infinite health + code:SXEAVNSE + cheat + description:Infinite health (except fires, falling into pits and spikes) + code:GXEAKYST + cheat + description:Infinite weapons + code:OUXPXVOO + cheat + description:Infinite Rush Jet + code:SZVAIZVG + cheat + description:Infinite lives (can sometimes die and go to another part of the game) + code:SXEEXTVG + cheat + description:Normal shots do more damage + code:LOOEKGPP + cheat + description:Mega shots do more damage + code:TOKENGLP + cheat + description:Hit anywhere and shoot to pick-up items + code:LEVVNGIA + cheat + description:One hit kills + code:AEVVUUZA+OXVVXLOU + cheat + description:Multi-jump + code:AGEEYOYA+EAOAPOEG+EIOAZPIA+PZOAAOSX+SZEETPEI+XGOALPAU+XTOAGOZE + cheat + description:Collectable items never disappear + code:UKXOTXVI + cheat + description:Enemies always drop extra lives + code:AENAIOPP+YLOEGXPG+YLOELXZG+YLOEPXPL+YLOEZXAL + cheat + description:Enemies always drop large health refill + code:AENAIOPP+PLOEGXPK+PLOEIZYU+PLOELXZK+PLOEZXAU + cheat + description:Enemies always drop large weapon refill + code:AENAIOPP+ZGOEGXPK+ZGOEIZYU+ZGOEPXPU+ZGOEZXAU + cheat + description:Start with 9 lives + code:AAUKVIZE + cheat + description:Start with 6 lives + code:IAUKVIZA + cheat + description:Start with 1 life + code:AAUKVIZA + cheat + description:Invincibility (alt) + code:00A2:36 + cheat + description:Infinite health (alt) + code:03E5:1B + cheat + description:Infinite lives + code:00A9:03 + cheat + description:Super Moonwalk (enable during stages only) + code:05B1:00 + cheat + description:Infinite Beat + code:0689:1B + cheat + description:Infinite C Flash + code:0690:1B + cheat + description:Infinite Centaur + code:0691:1B + cheat + description:Infinite F Blast + code:068C:1B + cheat + description:Infinite Knight + code:068E:1B + cheat + description:Infinite Plant B + code:068D:1B + cheat + description:Infinite W Storm + code:068B:1B + cheat + description:Infinite Yamato + code:068A:1B + cheat + description:Have the Energy Balancer + code:0696:01 + cheat + description:Bosses have no invulnerability time + code:0640:00 + +cartridge sha256:741fbfeeec83073cc3d8b407c0ddc9f78a0dc5b52d8196c6222bffb459b73ed1 + name:Menace Beach (USA) (Unl) + cheat + description:Infinite health and one hit kills (levels 1-9, 11, 12 only) + code:ETVVPOAL+EYVVLPPP+TAVVGPEL+XTVVIPZE+AAVVZPST + cheat + description:Infinite health and one hit kills (level 10 only) + code:ETVVPOAL+EYVVLPPP+TAVVGPEL+XTVVIPZE+PAVVZPST + cheat + description:Multi-jump + code:OZKYPGSX+XAKYZGZT + +cartridge sha256:1152961edf8d484f0e33294ae19fbcac8ab85099e6c8a59f1732c5f17b622885 + name:Mendel Palace (USA) + cheat + description:Infinite lives + code:SLSIXXVS + cheat + description:More stars on pick-up + code:IEXIAIPA + cheat + description:P1 gains P2's speed-ups + code:SZUIOOSU+VTUSEOVN + cheat + description:More lives - P1 + code:KEXLXKSE + cheat + description:More lives - P2 + code:KEXLSKSE + cheat + description:Start with 1 life + code:AAVZLPZA + cheat + description:Start with 5 lives + code:IAVZLPZA + cheat + description:Start with 9 lives + code:AAVZLPZE + cheat + description:Automatically finish level + code:051B:00 + +cartridge sha256:25f5359a73cac2d16ed98940f0b537f0392f232554d457ed476e21a5979419ff + name:Metal Force (K) + cheat + description:Invincibility + code:ENXTTYEI+EYNTZYEI+EYOTNAEI + cheat + description:Invincible against spikes + code:EYSTOAEI + cheat + description:Infinite energy + code:AONPTYAA+GONOLYZE + cheat + description:Infinite lives + code:SXVTZVSE + cheat + description:Keep whatever weapon you started the level with + code:SXUITXSE + cheat + description:Start with max weapon power + code:ZEOAPLAA + cheat + description:Start on Mission 7 + code:YEOATLPA + +cartridge sha256:f6d29afbd7ddad33672852232791a396695de2e77dccb83088a8d6b139d8c9cb + name:Metal Gear (USA) + cheat + description:Infinite health + code:SXVTXZVG+SZUYPZVG + cheat + description:Invincible against Gas + code:SXELYGVG + cheat + description:Invincible against Electric Floors + code:SZSUVZVG + cheat + description:Infinite Rations + code:SXXXETVG + cheat + description:Infinite Handgun ammo + code:SZSVVYVG + cheat + description:Infinite Mines + code:KXEVUTKA + cheat + description:Infinite Explosives + code:VXXVETVA + cheat + description:Infinite Missiles + code:VXVVKTVA + cheat + description:Infinite Machine Gun ammo + code:SZKVXYVG + cheat + description:Infinite Grenades + code:KZEVXYKA + cheat + description:Infinite Rockets + code:VXKVNTVA + cheat + description:Have all weapons + code:OZSXKGXX+NYSXSGAE+SASXVGSZ + cheat + description:Enemies never attack or chase you + code:SLNIUGSP + cheat + description:Hit anywhere - Punch + code:AAETIUUT+AAOTPUNI+AAOVPLNI+ASVVYZEP + cheat + description:Hit anywhere - Weapons except Grenade Launcher + code:AISNYZEY + cheat + description:Start with a health boost + code:XZVSAYVZ+PAVSPNTT+AEKSZYIE + cheat + description:Start with a super health boost + code:XZVSAYVZ+PAVSPNTT+GEKSZYIE + cheat + description:Start at mystery location 1 + code:ZASILYPA + cheat + description:Start at mystery location 2 + code:GASILYPA + cheat + description:Infinite health (alt) + code:006D:10 + cheat + description:Have all equipment + code:0075:FF+0076:FF+0077:FF+0078:0C + cheat + description:Have all weapons (alt) + code:0070:FF + cheat + description:Infinite Handgun ammo (alt) + code:0079:FF + cheat + description:Infinite Mines (alt) + code:007A:0E + cheat + description:Infinite Explosives (alt) + code:007B:0E + cheat + description:Infinite Missiles (alt) + code:007C:0E + cheat + description:Infinite Machine Gun ammo (alt) + code:007D:FF + cheat + description:Infinite Grenades (alt) + code:007E:3C + cheat + description:Infinite Rockets (alt) + code:007F:1E + cheat + description:Have Rank - 0 Stars + code:006E:00 + cheat + description:Have Rank - 1 Star + code:006E:01 + cheat + description:Have Rank - 2 Stars + code:006E:02 + cheat + description:Have Rank - 3 Stars + code:006E:03 + cheat + description:Have Rank - 4 Stars + code:006E:04 + +cartridge sha256:a00c77c3130316625403aeea9a0dbb02acf4a176740dac7b9e9a42452e574d4f + name:Metal Mech - Man & Machine (USA) + cheat + description:Invincibility + code:SZUAXYAX + cheat + description:Infinite health + code:SXNPYNSE+SZVOEESE + cheat + description:Infinite lives - Tony + code:SZEYAVVK + cheat + description:Infinite Smart Bombs + code:SZVYISVK + cheat + description:Super-jumping Tony + code:VNNXTENN + cheat + description:Super-speeding Tony + code:ZEEXGAIA + cheat + description:Mega-speeding Tony + code:PEEXGAIA + cheat + description:Start with 1 life and 1 Smart Bomb + code:PEKSILLA + cheat + description:Start with 6 lives and 6 Smart Bombs + code:TEKSILLA + cheat + description:Start with 9 lives and 9 Smart Bombs + code:PEKSILLE + cheat + description:Start on level 2 + code:AESSAUNY + cheat + description:Start on level 3 + code:PESSAUNY + cheat + description:Start on level 4 + code:ZESSAUNY + cheat + description:Start on level 5 + code:LESSAUNY + cheat + description:Start on level 6 + code:GESSAUNY + cheat + description:Infinite health (alt) + code:05DD:1F + +cartridge sha256:2fbbc465fc239b483cb89582f75451b21276d97868d67f3d8d89c2269fec5e37 + name:Metal Storm (USA) + cheat + description:Invincibility + code:SZNTGTSA+SZOUIYSA + cheat + description:Infinite time + code:SXKNAIVG + cheat + description:Infinite lives + code:AASOYYPA + cheat + description:Slower timer + code:AVKYPSGL + cheat + description:Faster timer + code:AXKYPSGL + cheat + description:Permanent Fireball + code:AESTKXGA + cheat + description:Permanent Shield + code:AESXXNGY + cheat + description:Start with extra weapons + code:NNNLOLAE + cheat + description:Start with 6 lives + code:TEXUNLZA + cheat + description:Start with 9 lives + code:PEXUNLZE + +cartridge sha256:649db8035018f2512ccea70aca6606c3b3a6988cd9ed43953b38dc5103dec7bb + name:Metroid (USA) + cheat + description:Invincibility + code:PZNVGZZN+APKYKKKP+ATEPUVSZ+AVKYXTAZ+AVOYIXSL+AVUYTZAZ+AVVNYZAZ+EPKYUGAZ+EPNVLZKA+OXEPNOOK + cheat + description:Minimum energy of 30 + code:SXSGNVSE + cheat + description:Always have Screw Attack effect + code:AOOKKSAU+AVXGESEA + cheat + description:Infinite Missiles on pick-up + code:SZUILUVK + cheat + description:Hit anywhere + code:AAKYLLLA+GXKNZZEL+NYUNYIAX+SXSYZZAX + cheat + description:Enemies die automatically + code:AAKYPSPZ + cheat + description:Beam has longer range + code:IIAIII + cheat + description:Get items from anywhere + code:AEXSNLTG+GXENAGEY + cheat + description:Gain 10 Missiles on pick-up + code:ZENSXLIE + cheat + description:Gain 15 Missiles on pick-up + code:YENSXLIE + cheat + description:Gain 255 Missiles on pick-up + code:NNNSXLIE + cheat + description:High-jump without High Jump Boots + code:ZONGKNAP + cheat + description:Mega-jump without High Jump Boots + code:GENGKNAO + cheat + description:Mega-jump with High Jump Boots + code:GENKSYZO + cheat + description:Multi-jump + code:GZUIAAEY+GZOGEIEY + cheat + description:No enemies + code:EATTOU + cheat + description:Roll through walls, but loses energy (glitchy) + code:SSAEAI + cheat + description:Start with 70 energy + code:YAXGVPLA + cheat + description:Have all items + code:6878:FF + cheat + description:Infinite energy, Missiles and all items + code:69B2:01 + +cartridge sha256:77c9100f4d3f291dd751098d3291b14e824cc367696c9167d01051041e08b5cb + name:Michael Andretti's World GP (USA) + cheat + description:Infinite time + code:0565:01 + +cartridge sha256:2d40d51736c2fa22f0cccf686e92efee3a7ebb8fa4eee5032206bab099a5aaf6 + name:Mickey Mania 7 (Unl) + cheat + description:Infinite health + code:SXEPTOVK + cheat + description:Infinite lives + code:SZEPYSVK + cheat + description:Infinite Apples + code:SZKPPVVK + +cartridge sha256:826ace604eb7a657acedd98cd3479dbe1d3ebb087dd7a1b2ad299ab854c0d519 + name:Mickey Mouse 3 - Yume Fuusen (Japan) + cheat + description:Invincibility + code:EYNXOYEI + cheat + description:Infinite health (life) + code:SZKEOESE + cheat + description:Infinite lives + code:SZNAKESE + +cartridge sha256:989243c99d6e58c4fbcc6999473e48a389eba22cf1d3cb95dbe4c8b1f3ce15d7 + name:Mickey Mousecapade (USA) + cheat + description:Invincibility + code:ESEPKZEY+ESVPNZEY + cheat + description:Infinite health + code:OVOPPTSV + cheat + description:Infinite lives + code:SZSOPZVG + cheat + description:Mickey and Minnie can shoot on any level + code:GPSIEVGE+LAVSVTZA + cheat + description:Start with 2 lives + code:PESOIPGA + cheat + description:Start with 6 lives + code:IESOIPGA + cheat + description:Start with 9 lives + code:AESOIPGE + +cartridge sha256:1df64e9554fb9997ceeab9954b2b7f8aa6206509a15e09298014ba765d87c094 + name:Micro Machines (USA) (Unl) + cheat + description:Infinite lives + code:GXSZZVVK + cheat + description:Qualify every race + code:GEKYSZZA + cheat + description:Play with 9 lives + code:PEKNAYLE + cheat + description:Ruff Trux after every race + code:PEUYXZLA + cheat + description:Kid out of game after every race + code:PASYNALA + cheat + description:Win Championship race + code:GESYOZPA + cheat + description:Faster Boat acceleration + code:AAOEIAIA + cheat + description:Faster Sports Car acceleration + code:AAOEGAIA + cheat + description:Faster Formula 1 acceleration + code:AAOETAIA + cheat + description:Faster Turbo Wheels(tm) acceleration + code:AAOEYAIA + cheat + description:Faster 4x4 acceleration + code:AAXAAAIA + cheat + description:Faster Tank acceleration + code:AAXAZAZA + cheat + description:Faster Chopper acceleration + code:AAXALAIA + cheat + description:Quicker Boat deceleration + code:AAXATEPA + cheat + description:Quicker Sports Car deceleration + code:AAXAIEPA + cheat + description:Quicker Formula 1 deceleration + code:AAXAYEPA + cheat + description:Quicker Turbo Wheels deceleration + code:AAXEAEPA + cheat + description:Quicker 4x4 deceleration + code:AAXEPEPA + cheat + description:Quicker Tank deceleration + code:AAXELAZA + cheat + description:Quicker Chopper deceleration + code:AAXEGEYA + cheat + description:Higher bounce for Boats + code:YAEAZAPA + cheat + description:Higher bounce for Sports cars + code:IAEAPAPA + cheat + description:Higher bounce for Formula 1's + code:YAEALAPA + cheat + description:Higher bounce for Turbo Wheels + code:YAEAGAPA + cheat + description:Higher bounce for 4x4's + code:YAEAIAPA + cheat + description:Higher bounce for Tanks + code:YAEAYAPA + cheat + description:Drive through vehicles + code:POLESS + cheat + description:Start on race 5 + code:GEKNIYAA + cheat + description:Start on race 10 + code:PEKNIYAE + cheat + description:Start on race 15 + code:TEKNIYAE + cheat + description:Start on race 20 + code:LOKNIYAA + cheat + description:Start on race 25 (Final Race) + code:AOKNIYAE + +cartridge sha256:31b8afd6e571d3ce8ddea49b813ceda2d350df3c84ceb5d8dd2c7a3a6de5ba88 + name:Micro Machines (USA) (Aladdin Compact Cartridge) (Unl) + cheat + description:Infinite lives + code:GZNXGVVK + cheat + description:Qualify every race + code:GAXYSZZA + cheat + description:Play with 9 lives + code:PAXNAYLE + cheat + description:Ruff Trux after every race + code:PAOYXZLA + cheat + description:Kid out of game after every race + code:PEUYYYLA + cheat + description:Win Championship race + code:GAUYOZPA + cheat + description:Faster Boat acceleration + code:AAOEIAIA + cheat + description:Faster Sports Car acceleration + code:AAOEGAIA + cheat + description:Faster Formula 1 acceleration + code:AAOETAIA + cheat + description:Faster Turbo Wheels(tm) acceleration + code:AAOEYAIA + cheat + description:Faster 4x4 acceleration + code:AAXAAAIA + cheat + description:Faster Tank acceleration + code:AAXAZAZA + cheat + description:Faster Chopper acceleration + code:AAXALAIA + cheat + description:Quicker Boat deceleration + code:AAXATEPA + cheat + description:Quicker Sports Car deceleration + code:AAXAIEPA + cheat + description:Quicker Formula 1 deceleration + code:AAXAYEPA + cheat + description:Quicker Turbo Wheels deceleration + code:AAXEAEPA + cheat + description:Quicker 4x4 deceleration + code:AAXEPEPA + cheat + description:Quicker Tank deceleration + code:AAXELAZA + cheat + description:Quicker Chopper deceleration + code:AAXEGEYA + cheat + description:Higher bounce for Boats + code:YAEAZAPA + cheat + description:Higher bounce for Sports cars + code:IAEAPAPA + cheat + description:Higher bounce for Formula 1's + code:YAEALAPA + cheat + description:Higher bounce for Turbo Wheels + code:YAEAGAPA + cheat + description:Higher bounce for 4x4's + code:YAEAIAPA + cheat + description:Higher bounce for Tanks + code:YAEAYAPA + cheat + description:Drive through vehicles + code:POLESS + cheat + description:Start on race 5 + code:GAXNIYAA + cheat + description:Start on race 10 + code:PAXNIYAE + cheat + description:Start on race 15 + code:TAXNIYAE + cheat + description:Start on race 20 + code:LPXNIYAA + cheat + description:Start on race 25 (Final Race) + code:APXNIYAE + +cartridge sha256:a2b4b0fd54028f1bbbdef152d8f2a172270b60162802d298accd0c698d258c3d + name:Mighty Bomb Jack (USA) + cheat + description:Invincibility + code:OXOOYNPX + cheat + description:Invincibility (alt) + code:SXUPPNSE+SZEOXUSE + cheat + description:Infinite lives + code:VZUEZNVK + cheat + description:Infinite time + code:SXXALNVK + cheat + description:Less time in game + code:AKOEGYAT + cheat + description:More time in game + code:EEOEGYAT + cheat + description:Enemies don't return from coin transformation + code:SXOESEVK + cheat + description:Power coins are not used up + code:SZEEXUVK + cheat + description:Disable torture room + code:OESPNTLA + cheat + description:Jump through walls + code:ZEUOUAPA + cheat + description:Start with 1 life + code:PAOEZZLA + cheat + description:Start with 6 lives + code:TAOEZZLA + cheat + description:Start with 9 lives + code:PAOEZZLE + cheat + description:Infinite lives (alt) + code:0295:09 + cheat + description:Infinite time (one's digit) + code:0229:09 + cheat + description:Infinite time (ten's digit) + code:022D:09 + cheat + description:Infinite M's + code:0235:09 + +cartridge sha256:02d86ba60b7f43f9d04131522263e7560d9ad1d4cc474b909d487cc0d470ccc3 + name:Mighty Bomb Jack (Japan) + cheat + description:Invincibility + code:PANPSEPX + cheat + description:Invincibility (alt) + code:SXEPNESE+SXVPSUSE + +cartridge sha256:ef8ccb38760604f5122e034ae0c4591362364632fe2dc2fa10f2660e15bd368f + name:Mighty Final Fight (USA) + cheat + description:Invincibility + code:EAXKNYAA + cheat + description:Infinite lives + code:SZKSNIVG + cheat + description:Infinite credits + code:SZOOLGVG + cheat + description:Protection from most hazards + code:SZXNUPSA + cheat + description:Cody is weaker + code:SZUEAVOU + cheat + description:Cody is stronger + code:EXSEYIKZ+IEVAASLT + cheat + description:Cody is stronger and has a super-powerful normal punch + code:EXSEYIKZ+IEVAASLT+AKEASELA + cheat + description:Cody is much stronger + code:OZUEAVOU+AGUEPTVI+XTUEZTNE + cheat + description:Guy is weaker + code:SZSATVOU + cheat + description:Guy is stronger + code:EZEAYTKZ+IAEEAVLT + cheat + description:Guy is stronger and has a super-powerful normal punch + code:EZEAYTKZ+IAEEAVLT+AGUAKPZA + cheat + description:Guy is much stronger + code:OZSATVOU+AGSAYVEZ+XTSEAVEE + cheat + description:Haggar is weaker + code:SZNAGVOU + cheat + description:Haggar is stronger + code:EZXAYTKZ+LAXEAVLT + cheat + description:Haggar is stronger and has a super-powerful normal punch + code:EZXAYTKZ+LAXEAVLT+AKKEUOIA + cheat + description:Haggar is much stronger + code:OZNAGVOU+AGNAITYI+XTNATVOE + cheat + description:Gain EXP faster (10 pts at a time) (may be displayed incorrectly) + code:OXKAXZSX+AOKAUZIA + cheat + description:Gain EXP much faster (20 pts at a time) (may be displayed incorrectly) + code:OXKAXZSX+AXKAUZIA + cheat + description:Cody starts with 3/4 health (1st life only) + code:ALKGOAAG + cheat + description:Cody starts with 1/2 health (1st life only) + code:AZKGOAAG + cheat + description:Cody starts with 1/4 health (1st life only) + code:APKGOAAG + cheat + description:Cody starts with 3/4 health (after 1st life) + code:ALKSKTAG + cheat + description:Cody starts with 1/2 health (after 1st life) + code:AZKSKTAG + cheat + description:Cody starts with 1/4 health (after 1st life) + code:APKSKTAG + cheat + description:Guy starts with 3/4 health (1st life only) + code:GZKGXAAL + cheat + description:Guy starts with 1/2 health (1st life only) + code:APKGXAAU + cheat + description:Guy starts with 1/4 health (1st life only) + code:GAKGXAAU + cheat + description:Guy starts with 3/4 health (after 1st life) + code:GZSIXTAL + cheat + description:Guy starts with 1/2 health (after 1st life) + code:APSIXTAU + cheat + description:Guy starts with 1/4 health (after 1st life) + code:GASIXTAU + cheat + description:Haggar starts with 3/4 health (1st life only) + code:GLKGUAAS + cheat + description:Haggar starts with 1/2 health (1st life only) + code:AZKGUAAS + cheat + description:Haggar starts with 1/4 health (1st life only) + code:GPKGUAAI + cheat + description:Haggar starts with 3/4 health (after 1st life) + code:GLSSETAS + cheat + description:Haggar starts with 1/2 health (after 1st life) + code:AZSSETAS + cheat + description:Haggar starts with 1/4 health (after 1st life) + code:GPSSETAI + cheat + description:Start with 2 lives (doesn't work on continues) + code:PEVKTYIA + cheat + description:Start with 4 lives (doesn't work on continues) + code:LEVKTYIA + cheat + description:Start with 8 lives (doesn't work on continues) + code:YEVKTYIA + cheat + description:Start with 10 lives (doesn't work on continues) + code:PEVKTYIE + cheat + description:Start with 1 credit + code:PENGZYLA + cheat + description:Start with 5 credits + code:IENGZYLA + cheat + description:Start with 7 credits + code:YENGZYLA + cheat + description:Start with 9 credits + code:PENGZYLE + cheat + description:Invincibility (alt) + code:003B:25 + cheat + description:Infinite health + code:003A:30 + cheat + description:Infinite lives (alt) + code:003E:09 + cheat + description:Max level + code:006B:05 + +cartridge sha256:5327792d8b5392cd5cec95ee254fc9f729777283c80f3d1f94d5147f3be73652 + name:MiG 29 - Soviet Fighter (USA) (Unl) + cheat + description:Keep weapon after death + code:SZSSOLVG + cheat + description:Start with best weapon + code:LANKPPAA + cheat + description:More time to refuel + code:NNEOZAAE + cheat + description:Less time to refuel + code:LEEOZAAA + cheat + description:Start with 1 life + code:AANGGPLA + cheat + description:Start with 6 lives + code:IANGGPLA + cheat + description:Start with 9 lives + code:AANGGPLE + cheat + description:Start with 255 lives + code:VYNGGPLE + cheat + description:Start on mission 2 + code:OZOOYPSX+PAXPAPIP+XIXPZPPS + cheat + description:Start on mission 3 + code:OZOOYPSX+ZAXPAPIP+XIXPZPPS + cheat + description:Start on mission 4 + code:OZOOYPSX+LAXPAPIP+XIXPZPPS + cheat + description:Start on mission 5 + code:OZOOYPSX+GAXPAPIP+XIXPZPPS + cheat + description:Start on mission 6 + code:OZOOYPSX+IAXPAPIP+XIXPZPPS + +cartridge sha256:2ebab487204c42b0d9cf19c37bdc395e396226ca3eaa664907bf7f8216b3c4d3 + name:Mike Tyson's Punch-Out!! (Japan, USA) (Rev A) + cheat + description:Infinite health + code:ATEALIXZ + cheat + description:Infinite hearts + code:PAXEUPAE + cheat + description:Infinite hearts (alt) + code:GZKETGST + cheat + description:Infinite stars + code:AAVEAOTP + cheat + description:Infinite stars once obtained + code:ALNEVPEY + cheat + description:Infinite time + code:XXXELNVA+SUSETNSO + cheat + description:Infinite time (alt) + code:SUSETNSO + cheat + description:Opponent cannot block punches + code:INUAIZSY + cheat + description:No health for opponent + code:ATOEXESA+SXKAYKSE + cheat + description:No health replenishment for opponent + code:SZSELPAX + cheat + description:Take less damage + code:SZVAAOIV + cheat + description:Take even less damage + code:SZVALPAX + cheat + description:Normal punches do more damage + code:AAVETLGA + cheat + description:Instant win + code:YZLOSS + cheat + description:Instant loss + code:UZLOSS + cheat + description:First knockdown will be a TKO + code:AXIONS + cheat + description:Start with and have infinite stars + code:ALVAYPEY + cheat + description:Start each round with 3 stars + code:LASAEPAA + cheat + description:Infinite health (alt) + code:0391:60 + cheat + description:Infinite hearts (alt 2) + code:0324:0A + cheat + description:Infinite time + code:0305:00+0306:00+0307:00 + cheat + description:No health for opponent (alt) + code:0398:00 + cheat + description:First knockdown will be a TKO + code:03CA:02+03D1:02 + cheat + description:Start with and infinite stars + code:0342:03 + cheat + description:Start on match 02 - Von Keiser + code:0001:01 + cheat + description:Start on match 03 - Piston Honda + code:0001:02 + cheat + description:Start on match 04 - Don Flamenco + code:0001:03 + cheat + description:Start on match 05 - King Hippo + code:0001:04 + cheat + description:Start on match 06 - Great Tiger + code:0001:05 + cheat + description:Start on match 07 - Bald Bull + code:0001:06 + cheat + description:Start on match 08 - Piston Honda (2nd match) + code:0001:07 + cheat + description:Start on match 09 - Soda Popinski + code:0001:08 + cheat + description:Start on match 10 - Bald Bull (2nd match) + code:0001:09 + cheat + description:Start on match 11 - Don Flamenco (2nd match) + code:0001:0A + cheat + description:Start on match 12 - Mr. Sandman + code:0001:0B + cheat + description:Start on match 13 - Super Macho Man + code:0001:0C + cheat + description:Start on match 14 - Mike Tyson + code:0001:0D + +cartridge sha256:752f9d07450e6ec075b109f5be1b1933e8385ad687ceaf24f70a590767bb5a27 + name:Mike Tyson's Punch-Out!! (Japan, USA) + cheat + description:Infinite health + code:ATEALIXZ + cheat + description:Infinite hearts + code:PAXEUPAE + cheat + description:Infinite hearts (alt) + code:GZKETGST + cheat + description:Infinite stars + code:AAVEAOTP + cheat + description:Infinite stars once obtained + code:ALNEVPEY + cheat + description:Infinite time + code:XXXELNVA+SUSETNSO + cheat + description:Infinite time (alt) + code:SUSETNSO + cheat + description:Opponent cannot block punches + code:INUAIZSY + cheat + description:No health for opponent + code:ATOEXESA+SXKAYKSE + cheat + description:No health replenishment for opponent + code:SZSELPAX + cheat + description:Take less damage + code:SZVAAOIV + cheat + description:Take even less damage + code:SZVALPAX + cheat + description:Normal punches do more damage + code:AAVETLGA + cheat + description:Start with and have infinite stars + code:ALVAYPEY + cheat + description:Start each round with 3 stars + code:LASAEPAA + cheat + description:Infinite health (alt) + code:0391:60 + cheat + description:Infinite hearts (alt 2) + code:0324:0A + cheat + description:Infinite time + code:0305:00+0306:00+0307:00 + cheat + description:No health for opponent (alt) + code:0398:00 + cheat + description:First knockdown will be a TKO + code:03CA:02+03D1:02 + cheat + description:Start with and infinite stars + code:0342:03 + cheat + description:Start on match 02 - Von Keiser + code:0001:01 + cheat + description:Start on match 03 - Piston Honda + code:0001:02 + cheat + description:Start on match 04 - Don Flamenco + code:0001:03 + cheat + description:Start on match 05 - King Hippo + code:0001:04 + cheat + description:Start on match 06 - Great Tiger + code:0001:05 + cheat + description:Start on match 07 - Bald Bull + code:0001:06 + cheat + description:Start on match 08 - Piston Honda (2nd match) + code:0001:07 + cheat + description:Start on match 09 - Soda Popinski + code:0001:08 + cheat + description:Start on match 10 - Bald Bull (2nd match) + code:0001:09 + cheat + description:Start on match 11 - Don Flamenco (2nd match) + code:0001:0A + cheat + description:Start on match 12 - Mr. Sandman + code:0001:0B + cheat + description:Start on match 13 - Super Macho Man + code:0001:0C + cheat + description:Start on match 14 - Mike Tyson + code:0001:0D + +cartridge sha256:bd84b27f752aa568374e1c8a6df948340a1374478b754f2ddc32e37d75b4a2b9 + name:Millipede (USA) + cheat + description:Infinite lives - both players + code:SUKGETVI + cheat + description:Increase territory to half screen + code:ASESIIEZ + cheat + description:Increase territory to full screen + code:AXESIIEZ + cheat + description:Shrink territory + code:NKESIIEZ + cheat + description:Player's bullets move faster + code:ZEUSXYTE + cheat + description:Player's bullets move slower + code:LEUSXYTA + cheat + description:Start with 1 life - P1 + code:PAVKSPGA + cheat + description:Start with 10 lives - P1 + code:ZAVKSPGE + +cartridge sha256:6eea421f6c0738ff3abfd6e059e91c3409eedd2150093d3e01d49dfaad4dbf80 + name:Milon's Secret Castle (USA) + cheat + description:Infinite health + code:SZNSLZSA + cheat + description:More health on pick-up + code:AOKGNXAE + cheat + description:No health on pick-up + code:AEKGNXAA + cheat + description:Max power bubbles + code:ASEZZYEI + cheat + description:Hit anywhere + code:ESUIGOOG+GXUIIOAA + cheat + description:Floating Milon + code:ASNPVZLA + cheat + description:Start with more health + code:AGSEEZAZ + cheat + description:Start with a bigger health bar + code:AISAOXAL + cheat + description:Infinite health (alt) + code:00B2:3F + cheat + description:Doors always unlocked + code:07BF:FF + cheat + description:Set money to $900 + code:00A1:09 + cheat + description:Have all Crystals + code:07B7:FA + cheat + description:Have Blimp Ship + code:07A6:FA + cheat + description:Have Feather + code:07A4:FA + cheat + description:Have Hammer + code:07A0:FA + cheat + description:Have Ice Bottle + code:07A8:FA + cheat + description:Have Jump Shoes + code:079A:FA + cheat + description:Have Lantern + code:079F:FA + cheat + description:Have Medicine + code:079D:FA + cheat + description:Have Roller Shoes + code:079B:FA + cheat + description:Have Saw + code:079C:FA + cheat + description:Have Sword + code:07A7:FA + cheat + description:Have Tube + code:07A5:FA + cheat + description:Have Vest + code:07A3:FA + +cartridge sha256:61e4e0a38f23eec3e931f21ad89cc901ca9f709dccfec952ed0e478172f04441 + name:Mission Cobra (USA) (Unl) + cheat + description:Infinite health + code:AANNZPGT+AAESVIGT+AAXIOLGT + cheat + description:Infinite health (alt) + code:009A:63 + +cartridge sha256:6b04b87ab30e885974844ad693cc39ba8c87e7e650e1f9cf22a054e0a385df4e + name:Mission Impossible (USA) + cheat + description:Infinite Type B weapons for all + code:AAUPIZPA + cheat + description:Take less damage + code:SXUETVOU + cheat + description:Take more damage + code:ZENETTPA + cheat + description:2 Type B weapons for Nicholas + code:ZEULXGIA + cheat + description:9 Type B weapons for Nicholas + code:PEULXGIE + cheat + description:5 Type B weapons for Max and Grant + code:IEXUXKZA + cheat + description:15 Type B weapons for Max and Grant + code:YEXUXKZE + cheat + description:Longer disguise time + code:VKOAVOSX+GAEOPLPA + cheat + description:Start with less health + code:TEOUNKGA + cheat + description:Start with more health + code:AOOUNKGA + cheat + description:Infinite health + code:03EC:0D+03ED:0D+03EE:0D + cheat + description:Infinite weapons + code:03F5:0A+03F6:0A+03F7:09 + +cartridge sha256:0bd6257a4566c57c582421bfbf8e81a5491a94e13f4e7a9378c3332c70884532 + name:Mitsume ga Tooru (Japan) + cheat + description:Hit anywhere + code:AEULXZLA + cheat + description:One hit kills + code:NNSLUZPE+OXSLXXOV + cheat + description:Collect money from anywhere + code:AIXALGEL+ALVEOIEL + cheat + description:Increase projectile limit to 13 + code:IEESTTLE + cheat + description:Start a new game for hidden debug TEST MODE menu + code:LAKAPLGA + cheat + description:Start a new game to view the ending + code:YAKAPLGA + +cartridge sha256:f997fe34edf1d998694aa979c81fe0063480274b4284498f230fffe694fe87ac + name:Monopoly (USA) + cheat + description:Collect $300 as you pass Go + code:YLSSOLPU + cheat + description:Collect $100 as you pass Go + code:IPSSOLPU + cheat + description:Pay $0 to get out of jail + code:AAVZKAYP + cheat + description:Pay $100 to get out of jail + code:IPVZKAYO + cheat + description:Pay $30 for luxury tax + code:LOOAVKZP + cheat + description:Pay $100 for luxury tax + code:IOOAVKZO + cheat + description:Pay $200 for luxury tax + code:PUOAVKZP + cheat + description:Pay $0 for income tax + code:AESAVGPL + cheat + description:Pay $30 for income tax + code:LOSAVGPL + cheat + description:Pay $100 for income tax + code:IOSAVGPU + cheat + description:Pay $300 for income tax + code:YUSAVGPU + cheat + description:$300 to buy Boardwalk + code:YLOSLKLK + cheat + description:$600 to buy Boardwalk + code:LIOSLKLG + cheat + description:$200 to buy Park Place + code:PLOIZGIG + cheat + description:$400 to buy Park Place + code:LGOIZGIK + cheat + description:$600 to buy Park Place + code:LIOIZGIG + cheat + description:Houses on Park Place cost $100 + code:IPOSZGPU + cheat + description:Houses on Park Place cost $300 + code:YLOSZGPU + cheat + description:Houses on Boardwalk cost $100 + code:IPXILGPU + cheat + description:Houses on Boardwalk cost $300 + code:YLXILGPU + cheat + description:Go Back 7 spaces instead of 3 on Chance + code:YAOAILLA + +cartridge sha256:08615e9e339bd2df713cdb15f6426895ba643fbd8f383758f7f5c06ebf7ac10b + name:Monster in My Pocket (USA) + cheat + description:Invincibility after first hit + code:SUKEPSVS+OOVAPTEP + cheat + description:Infinite energy + code:SUSEIVVS + cheat + description:Infinite lives + code:SLSAASVS + +cartridge sha256:219c94a1f0801ee255f4c8df6d7d1120bdcfd882fcaecba2c858b1e4c66d060b + name:Monster Party (USA) + cheat + description:Invincibility + code:AVOEZYSZ + cheat + description:Infinite life against normal enemies + code:SXXAYYVG + cheat + description:Infinite life against Guardians + code:VVXAIYVG + cheat + description:One hit kills normal enemies + code:EYEEIIEL + cheat + description:One hit kills Guardians + code:AAUEUIZA + cheat + description:Walk twice as fast + code:VNKETXNN+ZEUEAZPA + cheat + description:Jump twice as far + code:VNNAZKNN+ZESEYGPA + cheat + description:Start with double life + code:APUPZSGE+AOKPTKGE + cheat + description:Start with full life + code:GZUPZSGE+GXKPTKGE + cheat + description:Start on level 2 + code:PAKOZIAA + cheat + description:Start on level 3 + code:ZAKOZIAA + cheat + description:Start on level 4 + code:LAKOZIAA + cheat + description:Start on level 5 + code:GAKOZIAA + cheat + description:Start on level 6 + code:IAKOZIAA + cheat + description:Start on level 7 + code:TAKOZIAA + cheat + description:Start on level 8 + code:YAKOZIAA + +cartridge sha256:66cb74efa264a285a541277b935d4b6cc9c49a18653bce90b65f0de98b05aec0 + name:Moon Ranger (USA) (Unl) + cheat + description:Infinite lives + code:SXUSGVVK + +cartridge sha256:aa0fe1b0b1e0c3a0a01695f1914fbb5e92649db33b74a9bdcb51be1481221f49 + name:Mother (Japan) + cheat + description:Start a new game with $1024 + code:GAOLOTAA + cheat + description:Start a new game with $16,384 + code:AGOLOTAA + +cartridge sha256:ed219a1b03be92e3ac4a2229e3e7663fd126eca6332f0564e5d3a12ec56f2142 + name:MotorCity Patrol (USA) + cheat + description:Don't take damage + code:AEEXGTPA + cheat + description:Slow down timer + code:ANOEIOGL + cheat + description:Speed up timer + code:YOOEIOGU + cheat + description:Free equipment + code:GXUESKVK+APUAUGEI + cheat + description:Start with 5 merits + code:IAOXILAA + +cartridge sha256:3264e4c57ffaf64df816cc97b1d6d278042545a4be248f5c195d82037f0a9bfd + name:Mr. Gimmick (Europe) + cheat + description:Invincibility + code:EIOAAGEY+VTOAZKVK + cheat + description:Infinite health + code:SKOEEKVK + cheat + description:Infinite lives + code:SKVTTSVK + cheat + description:Start with 3 Bombs + code:LEVTIAAA + cheat + description:Start with 3 Fireballs + code:ZEVTIAAA + cheat + description:Start with 3 Potions + code:PEVTIAAA + cheat + description:Invincibility (alt) + code:038C:02 + cheat + description:Infinite health (alt) + code:0346:04 + cheat + description:Infinite lives (alt) + code:0104:09 + +cartridge sha256:f7cc35a736ffd7804056b92ab92bfef02ded95d999ac126b680e87b573f18182 + name:Ms. Pac-Man (USA) + cheat + description:Infinite lives - P1 + code:003F:06 + cheat + description:Infinite lives - P2 + code:004F:06 + cheat + description:Power pill effect always active + code:00CF:0F + cheat + description:Start on stage 02 + code:003E:02 + cheat + description:Start on stage 03 + code:003E:03 + cheat + description:Start on stage 04 + code:003E:04 + cheat + description:Start on stage 05 + code:003E:05 + cheat + description:Start on stage 06 + code:003E:06 + cheat + description:Start on stage 07 + code:003E:07 + cheat + description:Start on stage 08 + code:003E:08 + cheat + description:Start on stage 09 + code:003E:09 + cheat + description:Start on stage 10 + code:003E:0A + +cartridge sha256:3ec56ffa686a0e45dc5dfa02d3216b6c9302177b01a0bba506739a436c4ba730 + name:Ms. Pac-Man (USA) (Unl) + cheat + description:Infinite lives for both players in alternating type games + code:SXNETZVG + cheat + description:Infinite lives for P2 only, in other type games + code:SZEALUVK + cheat + description:Super fast turbo speed + code:XVONINZK + cheat + description:Pinky out of game + code:AAUEZTZA + cheat + description:Sue out of game + code:AASEZTZA + cheat + description:Start with 1 life - both players + code:AEUAYTZA + cheat + description:Start with 6 lives - both players + code:IEUAYTZA + cheat + description:Start with 9 lives - both players + code:AEUAYTZE + cheat + description:Start with 1 life for P2 in 2P cooperative and competitive games + code:KEUEZVSE + cheat + description:Only pink ghost escapes from center + code:002A:1B+023D:0E+002C:0B + cheat + description:Max score - P1 + code:00D0:09+00D1:99+00D2:99 + cheat + description:Infinite lives + code:00D4:09 + cheat + description:Start on level 2 + code:0127:01 + cheat + description:Start on level 3 + code:0127:02 + cheat + description:Start on level 4 + code:0127:03 + cheat + description:Start on level 5 + code:0127:04 + cheat + description:Start on level 6 + code:0127:05 + +cartridge sha256:80f6f2b9cb2669e876328cf47ad94fd5288adeddaf45dee93087142ff589b6d6 + name:Muppet Adventure - Chaos at the Carnival (USA) + cheat + description:Infinite power + code:SZKANZVG + +cartridge sha256:ac2374bd4a5f7c87a7bd51e296f79800f84ea6c91a35e0c79dd9a3b2f923ef37 + name:Mutant Virus, The - Crisis in a Computer World (USA) + cheat + description:Invincibility + code:SXEKXGVG + cheat + description:Infinite health + code:SZKGNUSE + cheat + description:Infinite time + code:VXEITKVE + cheat + description:Infinite lives + code:XVEITKVE + cheat + description:Don't flash after getting hit + code:AEESZKNY + cheat + description:Flash 1/2 as long after getting hit + code:LVESZKNY + cheat + description:Start with 1 life + code:AEOGTAIA + cheat + description:Start with 3 lives + code:ZEOGTAIA + cheat + description:Start with 7 lives + code:SEOGTAIA + cheat + description:Start with 10 lives + code:PEOGTAIE + cheat + description:Infinite health (alt) + code:0119:0C + cheat + description:Infinite lives (alt) + code:0110:06 + +cartridge sha256:61cb18d11771cffa08f79fd6973f634c8351703a2fe0f79858171d72a5a46582 + name:Mystery Quest (USA) + cheat + description:Invincibility + code:GXNPYAVG + cheat + description:Infinite vitality + code:SXNPYAVG + cheat + description:Immune to monster attacks + code:AEXOGEEY + cheat + description:Immune to shallow water + code:AEUOAENY + cheat + description:Never lose Key + code:GXVOOYSA + cheat + description:Never lose Raft + code:PENOPTAA + cheat + description:Start with more vitality + code:ATSEUYAG + cheat + description:Start with less vitality + code:AZSEUYAG + cheat + description:Start with Raft and Key + code:PEUOKPAA + +cartridge sha256:dc71dadc3f4eae03f26ac4afec8ef044e7874ad8fdee1567a9b9b9e2c112669e + name:NARC (USA) + cheat + description:Invincibility (blinking) - both players + code:AENXPOTA + cheat + description:Infinite health - both players + code:XVXVGLVN + cheat + description:Infinite Bullets + code:AAOSUPPA + cheat + description:Infinite Missiles + code:AEEILGPA + cheat + description:Infinite lives + code:SUKVTLVI + cheat + description:Enemies die automatically + code:ASUSNYEY+PSKIEYUY + cheat + description:Hit anywhere - P1 + code:AASTAPLA+ASKIOYKZ+YKKIXYTS + cheat + description:More missiles + code:PUVAGAIU + cheat + description:1 Missile on pick-up + code:PEUZPZIA + cheat + description:9 Missiles on pick-up + code:PEUZPZIE + cheat + description:45 Bullets on pick-up + code:GASPTLZA + cheat + description:Start with 1 life + code:AAUAZPZA + cheat + description:Start with 6 lives + code:IAUAZPZA + cheat + description:Start with 9 lives + code:AAUAZPZE + +cartridge sha256:55efed163edb02abc2a344aba79edc5ad873a77ed92378ad0c3e62f1e1816d3e + name:NES Open Tournament Golf (USA) + cheat + description:Always on first shot + code:PEUAGVSP + cheat + description:No wind + code:SZKINZSA + +cartridge sha256:4b382baa70cbc52977fd766f49a3c7c9a3239f0d9581cd961b8b26700c53247d + name:NES Play Action Football (USA) + cheat + description:30-minute quarters + code:TOKYLKYE + cheat + description:10-minute quarters + code:ZEKYLKYE + cheat + description:No timeouts - P2 + code:KEKLUNSE + cheat + description:6 timeouts per half (ignore display) + code:TEUUNYLA + cheat + description:1 timeout per half + code:PEUUNYLA + +cartridge sha256:c03ffd0d5fb5439eb35f22f09df3cbd8f81f5cf3eb9b6718a4d7afb67c75c543 + name:Nigel Mansell's World Championship Challenge (USA) + cheat + description:Almost no tire wear + code:SZSTLEVK+SZNNXEVK + cheat + description:Only need 1 lap on all tracks + code:ZANKXZYA+SXNKSESU + cheat + description:Accelerate faster + code:IVSNIOIN + cheat + description:Accelerate a lot faster + code:IVSNIOIN+AAKNALGE + cheat + description:No extra time in the pits + code:GZSULOVV + cheat + description:Less tire wear + code:SZSTLEVK + cheat + description:Only need 3 laps in South Africa instead of 6 + code:GANKXZYA + cheat + description:Only need 3 laps in Mexico instead of 6 + code:GANKUZYA + cheat + description:Only need 3 laps in Brazil instead of 5 + code:GANKKZTA + cheat + description:Only need 3 laps in Spain instead of 4 + code:GANKSZIA + cheat + description:Only need 3 laps in San Marino instead of 6 + code:GANKVZYA + cheat + description:Only need 3 laps in Monaco instead of 5 + code:GANKNZTA + cheat + description:Only need 3 laps in Canada instead of 6 + code:GEEGEZYA + cheat + description:Only need 3 laps in France instead of 4 + code:GEEGOZIA + cheat + description:Only need 3 laps in Great Britian instead of 5 + code:GEEGXZTA + cheat + description:Only need 3 laps in Germany instead of 5 + code:GEEGUZTA + cheat + description:Only need 3 laps in Hungary instead of 5 + code:GEEGKZTA + cheat + description:Only need 3 laps in Belgium instead of 5 + code:GEEGSZTA + cheat + description:Only need 3 laps in Italy instead of 6 + code:GEEGVZYA + cheat + description:Only need 3 laps in Portugal instead of 4 + code:GEEGNZIA + cheat + description:Only need 3 laps in Japan instead of 5 + code:GEEKEZTA + cheat + description:Only need 3 laps in Australia instead of 5 + code:GEEKOZTA + cheat + description:Full season ends after South Africa + code:PEOXOZAP + cheat + description:Full season ends after Mexico + code:ZEOXOZAP + cheat + description:Full season ends after Brazil + code:LEOXOZAP + cheat + description:Full season ends after Spain + code:GEOXOZAP + cheat + description:Full season ends after San Marino + code:IEOXOZAP + cheat + description:Full season ends after Monaco + code:TEOXOZAP + cheat + description:Full season ends after Canada + code:YEOXOZAP + cheat + description:Full season ends after France + code:AEOXOZAO + cheat + description:Full season ends after Great Britian + code:PEOXOZAO + cheat + description:Full season ends after Germany + code:ZEOXOZAO + cheat + description:Full season ends after Hungary + code:LEOXOZAO + cheat + description:Full season ends after Belgium + code:GEOXOZAO + cheat + description:Full season ends after Italy + code:IEOXOZAO + cheat + description:Full season ends after Portugal + code:TEOXOZAO + cheat + description:Full season ends after Japan + code:YEOXOZAO + cheat + description:Start with 1/2 normal tire tread + code:AEEKXAAO + +cartridge sha256:58be6a811ee3370882160115253b610581e8b4af7228669eb3fbd56e7a13117c + name:Nightmare on Elm Street, A (USA) + cheat + description:Invincibility + code:EIOLILEY + cheat + description:Infinite health + code:SUUUKNVN + cheat + description:Infinite lives + code:SUELSUVS + cheat + description:Infinite 'zzz' + code:SZUPPEVS + cheat + description:Have all characters + code:ESVLNPEY+ENSUOPEI + cheat + description:Hit anywhere + code:AAOKENIA+APXGEYEY+ASNKKTEY + cheat + description:One hit kills + code:EIVKKYEY + cheat + description:No enemies + code:AEOXAPIA+OXOZYOSX+XVOXPPPE + cheat + description:Always able to switch characters + code:AUKUVPEY + cheat + description:Freddy will not show up in Nightmare World + code:SXNTPEVK + cheat + description:Mega-jumping teenagers + code:IEULIGLA + cheat + description:Don't lose 'zzz' when hit + code:AESSLAEA + cheat + description:Don't lose 'zzz' when standing still + code:AAXOLAPA + cheat + description:Lose 'zzz' quicker + code:ZAXOLAPA + cheat + description:Start with 1 continue + code:PAUVEZLA + cheat + description:Start with 6 continues + code:TAUVEZLA + cheat + description:Start with 9 continues + code:PAUVEZLE + +cartridge sha256:02caaf66cc43a4c5a8d54252fca7bcb929dad91c71f127eabe37f29ef9199105 + name:Nightshade (USA) + cheat + description:Invincible in fights + code:TKISGT + cheat + description:Invincible out of fights + code:TKISAI + +cartridge sha256:b1c2ae757c5ec76f488893f130f0f7f1aacf36a25467b9012ca3a11ab52204ce + name:Ninja Crusaders (USA) + cheat + description:Invincibility + code:EYSKYAEI + cheat + description:Infinite lives + code:SLKKAOVS + cheat + description:Hit anywhere + code:GGNKNTEN+OSEGEVLP+VKEGOVOU + cheat + description:Collect items from anywhere + code:GZOXLTEL+GZXXTTEL + cheat + description:Multi-jump + code:GZSXETEY + cheat + description:Mega-jump + code:IZNXNTZP + cheat + description:Super speed + code:SYXESUVN+ZAXEULPA + cheat + description:Start with 1 life + code:PEOZEALA + cheat + description:Start with 6 lives + code:TEOZEALA + cheat + description:Start with 9 lives + code:PEOZEALE + cheat + description:Start on stage 1-2 + code:PAEPTGAA + cheat + description:Start on stage 2-1 + code:ZAEPTGAA + cheat + description:Start on stage 2-2 + code:LAEPTGAA + cheat + description:Start on stage 3-1 + code:GAEPTGAA + cheat + description:Start on stage 3-2 + code:IAEPTGAA + cheat + description:Start on stage 4-1 + code:TAEPTGAA + cheat + description:Start on stage 4-2 + code:YAEPTGAA + cheat + description:Start on stage 5-1 + code:AAEPTGAE + +cartridge sha256:6799437d4122b81c86ae35cefe5b6ae6e10e6f9a9c7b3140dd569f717ba32b3d + name:Ninja Gaiden (USA) + cheat + description:Invincibility + code:OZTTZO + cheat + description:Invincibility (alt) + code:ATNTYOOZ + cheat + description:Infinite health + code:SXXVYPSA + cheat + description:Infinite lives + code:SZETPGVG + cheat + description:Hit anywhere + code:AEIIST+AETIUT+AETSUT+AOYIUT+ESYINT + cheat + description:Enemies die instantly + code:AENIXILA+AESISTGZ+AEVIUTIP+AEVSUVPA+AONIUTEP+ESNINTEP + cheat + description:Multi-jump + code:AEEVSLEA+AEOTXSIP+GXVVSGEI+GZUTSTEI+SXNTVTSA + cheat + description:Use windmill throwing-star without losing spiritual strength + code:AEXVVYIA + cheat + description:Use fire-wheel without losing spiritual strength + code:AAETUYIA + cheat + description:Use shuriken without losing spiritual strength + code:AAVTNYLA + cheat + description:Maximum strength regained from restorer + code:APEIKGTA + cheat + description:Sound Test - hold down and press Start at Tecmo Presents screen + code:GASETAVT + cheat + description:Start with 9 lives + code:AAUVLIZE + cheat + description:Start with 6 lives + code:IAUVLIZA + cheat + description:Start with 1 life + code:AAUVLIZA + cheat + description:Invincibility after first hit + code:0092:02+0093:80 + cheat + description:One hit kills bosses + code:0497:00 + cheat + description:Start on stage 1-2 + code:006D:01 + cheat + description:Start on stage 2-1 + code:006D:02 + cheat + description:Start on stage 2-2 + code:006D:03 + cheat + description:Start on stage 2-3 + code:006D:04 + cheat + description:Start on stage 3-1 + code:006D:05 + cheat + description:Start on stage 3-2 + code:006D:06 + cheat + description:Start on stage 3-3 + code:006D:07 + cheat + description:Start on stage 4-1 + code:006D:08 + cheat + description:Start on stage 4-2 + code:006D:09 + cheat + description:Start on stage 4-3 + code:006D:0A + cheat + description:Start on stage 4-4 + code:006D:0B + cheat + description:Start on stage 5-1 + code:006D:0C + cheat + description:Start on stage 5-2 + code:006D:0D + cheat + description:Start on stage 5-3 + code:006D:0E + cheat + description:Start on stage 5-4 + code:006D:0F + cheat + description:Start on stage 6-1 + code:006D:10 + cheat + description:Start on stage 6-2 + code:006D:11 + cheat + description:Start on stage 6-3 + code:006D:12 + cheat + description:Start on stage 6-4 (1st boss) + code:006D:13 + cheat + description:Start on stage 6-4 (2nd boss) + code:006D:14 + cheat + description:Start on stage 6-5 (final boss) + code:006D:15 + +cartridge sha256:21c51dc47a458a7de66544533d56eb9a69de0190d012b1645699e816d2cb5008 + name:Ninja Gaiden II - The Dark Sword of Chaos (USA) + cheat + description:Invincibility + code:SZUGKGAI + cheat + description:Invincibility (alt) + code:OPOKUXUG + cheat + description:Infinite health + code:EANGKGSA + cheat + description:Infinite health (alt) + code:SZNGKGSA + cheat + description:Infinite Ninja power + code:XXEOSZVZ+LOEOVXIY+PUOOSXLK + cheat + description:Infinite time + code:SXVKLTVG + cheat + description:Infinite lives + code:SXXGXAVG + cheat + description:Hit anywhere + code:AAVKXZUI+AEEGOXKL+AEOGXXIA+ENOKKZEL + cheat + description:Multi-jump + code:EASGAPAP+GZSGYPEI+LPKKTOYP+LPSGZPTE+SZESEOSE+SZKKIPEY+SZNSXOSE+VXSSIYVA + cheat + description:Half-energy from medicine + code:LEUOSATA + cheat + description:Double energy from medicine + code:GEUOSATE + cheat + description:Never lose Ninja power item + code:GXKKUIVA + cheat + description:Fast running Ryu + code:ZEXGYAPA+SNEKYEVN + cheat + description:Mega-fast running Ryu + code:LEXGYAPA+KNEKYEVN + cheat + description:Half-energy from Blue Ninja power + code:IAUONEZA+IAKOOEZA + cheat + description:Double energy from Blue Ninja power + code:GPUONEZA+GPKOOEZA + cheat + description:Double maximum Ninja power from scroll + code:GOEPOEZA+ZEOOEAPA + cheat + description:All powers use up only 5 points + code:SVOPXXSN+SVOOKXSN+SVXOXXSN + cheat + description:Less enemies + code:AAZVYL + cheat + description:Start every life with two shadow ninjas + code:YAOIYOPE + cheat + description:Start with 1 life + code:AEKGVTZA + cheat + description:Start with 6 lives + code:IEKGVTZA+SEKKKTSP + cheat + description:Start with 9 lives + code:AEKGVTZE+SEKKKTSP + cheat + description:Invincibility (alt) + code:0068:09 + cheat + description:Infinite health (alt) + code:0080:16 + cheat + description:Infinite lives (alt) + code:00A5:03 + cheat + description:Infinite time (alt) + code:00AB:04+00B1:F4 + +cartridge sha256:ba5968f14a02f1adf8a6144fcf9c4acde80bce8a3e01bae54b555f258540dd4b + name:Ninja Gaiden III - The Ancient Ship of Doom (USA) + cheat + description:Invincibility + code:AEVPNYLA + cheat + description:Infinite lives + code:SXEKVLVG + cheat + description:Infinite health + code:SZEXILSA + cheat + description:Infinite time (timer will still countdown) + code:SZVZIIVG + cheat + description:Multi-jump and infinite time + code:ZASXPIIE+AENXOAGP+AZSXGIZL+EPSXZSUA+GXUPZLEL+LASXLIEI+LPSXASNL+OZSXTSNK+SZNXIIVG+XISXIIVK + cheat + description:Less time + code:VPKGXKXY + cheat + description:One hit kills + code:AEKXTEYA + cheat + description:Sword hits several areas of the screen at once (sword upgrade negates the effect) + code:YYXKEGAO+YYXKKGYE + cheat + description:No power required for Windmill Throwing Star + code:AESPKYPA+AEKOXNZA + cheat + description:No power required for Fire Wheel Art + code:AEKOUNAA+AESPENAA + cheat + description:No power required for Invincible Fire Wheel + code:AEKOVYGP+AESOEYZA + cheat + description:No power required for Fire Dragon Balls + code:AEKOKNAA+AESPONAA + cheat + description:No power required for Vacuum Wave Art + code:AEKOSNZA+AESPNYPA + cheat + description:Start with upgraded sword + code:PAXGKGAA+APXKEGAO+APXKKGYA + cheat + description:Invincibility (alt) + code:00AD:14 + cheat + description:Infinite health (alt) + code:00A7:0A + +cartridge sha256:648cf7ac553517573cc9b3955ab50566a91974b2348154910bfa53ef15d55b56 + name:Ninja Jajamaru - Ginga Daisakusen (Japan) + cheat + description:Invincibility + code:SZNPGTAX + cheat + description:Infinite lives + code:SIVOGKVS + +cartridge sha256:622c62d48aa244fb2427ce8d0cf45e5fc57d94ad82e47a3b5b45a0dd643c9cd7 + name:Ninja Kid (USA) + cheat + description:Infinite Feathers + code:SZOZUPVG + cheat + description:Infinite Stars + code:SZXXITVG + cheat + description:Infinite Boomerangs + code:SXNOGGVG + cheat + description:Infinite Fireflames + code:SXUZZYVG + cheat + description:More Invincibility time + code:AZEILNYE + cheat + description:Less Invincibility time + code:YAEILNYA + cheat + description:1 Feather on pick-up + code:PAXSXALA + cheat + description:6 Feathers on pick-up + code:TAXSXALA + cheat + description:10 Stars on pick-up + code:ZAXSUAGO + cheat + description:40 Stars on pick-up + code:AZXSUAGO + cheat + description:1 Boomerang on pick-up + code:ZAXSKAGA + cheat + description:10 Fireflames on pick-up + code:ZAXSSAGO + cheat + description:40 Fireflames on pick-up + code:AZXSSAGO + cheat + description:Start with 1 life + code:AAVEZAZA + cheat + description:Start with 6 lives + code:IAVEZAZA + cheat + description:Start with 9 lives + code:AAVEZAZE + +cartridge sha256:b0e4d88db0b21db4a84e3c21d51898c686e9031dc138b2939877ecad20dd2350 + name:Nintendo World Cup (USA) + cheat + description:1 minute in tournament mode + code:AAUVKZLA + cheat + description:6 minutes in tournament mode + code:IAUVKZLA + cheat + description:9 minutes in tournament mode + code:AAUVKZLE + cheat + description:6 minutes in match mode + code:IAKTXXPA + cheat + description:3 minutes in match mode + code:ZAKTXXPA + cheat + description:1 minutes in match mode + code:AAKTXXPA + cheat + description:Faster players + code:PEXLUIAA + cheat + description:More powerful 'normal' shots + code:AYXXNXAL + +cartridge sha256:6157c99fe7a214025c65fd3649e4afe9cd2d38c333e65af028b935e49fbeb500 + name:Noah's Ark (Europe) + cheat + description:Invincibility + code:SZUUNAAX + cheat + description:Invincible against spikes + code:SXEKUYAX + cheat + description:Infinite lives + code:SKNEGUVK+SKSAVEVK + cheat + description:Infinite health + code:SZKUUGSA + cheat + description:Infinite time + code:SGEVZOVK + +cartridge sha256:55c2d10ae1b034b39533f780f6205f736735df1954c0eca6d147cfc13a224f82 + name:North and South (USA) + cheat + description:Cannon has 5 shots + code:IEUATOPA + cheat + description:Cannon has 15 shots + code:YEUATOPE + cheat + description:Cannon has infinite shots + code:SZXPYUVS + cheat + description:No cannons allowed + code:GXXATOSO + cheat + description:Only 2 daggers in the fortress + code:ZAUAGPGA + cheat + description:Infinite daggers in the fortress + code:GXXPLKVS + cheat + description:2 men in the fortress + code:ZAUETOZA + cheat + description:5 men in the fortress + code:IAUETOZA + cheat + description:2 men on the train + code:ZASAGOZA + cheat + description:5 men on the train + code:IASAGOZA + +cartridge sha256:106a9cd2acc3373bf2fae05158bdf7587d5f645402ba8073aaee65cb8b7b11cd + name:Operation Secret Storm (USA) (Unl) + cheat + description:Infinite lives + code:OLUVZUOO + cheat + description:Infinite Gun ammo + code:SLKVYSOO + cheat + description:Infinite health + code:0520:17 + +cartridge sha256:36666e3314ee9e0a340b04ea8427aaefb6df8937425a016e78c26fb1fa77b017 + name:Operation Wolf (USA) (Rev 0A) + cheat + description:Infinite continues + code:IEVUNSPA + cheat + description:Never die + code:AESSLZTL + cheat + description:Infinite magazines + code:AAVSIIPA + cheat + description:Infinite grenades + code:AAEIATPA + cheat + description:Double bullets in each magazine + code:GANIYIZA + cheat + description:Heal completely between levels + code:NNESZALE + cheat + description:Grenades inflict double damage + code:GANULZZA + cheat + description:Super power drinks + code:ZAELGPIE + cheat + description:Increase magazines + code:PEVKVYYE+PAVSIIIE + cheat + description:Increase grenades + code:PENGXYIE+PAVSIILE + cheat + description:Start on mission 2 + code:PESZIGAA + cheat + description:Start on mission 3 + code:ZESZIGAA + cheat + description:Start on mission 4 + code:LESZIGAA + cheat + description:Start on mission 5 + code:GESZIGAA + cheat + description:Start on mission 6 + code:IESZIGAA + +cartridge sha256:4d2b5339703d2300539348e3aad055fd00828afcbd9f3a97565e37725221fc0a + name:Orb 3D (USA) + cheat + description:Infinite fuel + code:03FD:50 + cheat + description:Start on level 10 + code:03E2:09 + cheat + description:Start on level 15 + code:03E2:13 + cheat + description:Start on level 30 + code:03E2:1D + +cartridge sha256:6d310d9f2249932c7187130ebd696c42ff05f678c3086ac727ee6a27fdad4f43 + name:Otaku no Seiza - An Adventure in the Otaku Galaxy (Japan) + cheat + description:No random battles + code:AVEIXKOZ + +cartridge sha256:d50327afa539f4a5ccfd6e10f685326eb0f01915ccf305f752deae2bf17385a6 + name:Over Horizon (Europe) + cheat + description:Invincibility (blinking) + code:SXNIETVG + cheat + description:Infinite lives + code:SXULESVK + cheat + description:Enable alternate graphics + code:PEEIITAA + +cartridge sha256:b3a798ab7f2f237c7bd3c3e8b36cc752d850d10a8597e43771c82dcd654d5dae + name:Overlord (USA) + cheat + description:Food not decreased + code:GPEAPOIE + cheat + description:Hover tanks never decrease in battle + code:SXXUKVVK + cheat + description:Ballistic Missiles never decrease in battle + code:SZKOPOVK + cheat + description:Homing Missiles never decrease in battle + code:SZSPGOVK + cheat + description:Enemy starts with 0 Missiles + code:NZVUKNNP + cheat + description:Constantly get 9999999 cash on all planets with 1% or higher tax + code:ESKALPEL + cheat + description:View a planet's stats for high food + code:YYXLIYAE+OPXUPNOU + cheat + description:View a planet's stats for high people + code:YYOLEAAE+OPOLKEOU + cheat + description:View a planet's stats for high energy + code:YNKUYYAE+OOSLLNOU + cheat + description:View a planet's stats for high fuel + code:YNEUTYAE+OOOLZNOU + +cartridge sha256:ae2dddda1f90b8f8e3a990a2247ab4e373f69e6599f4e63f531d3a541b54bd85 + name:P.O.W. - Prisoners of War (USA) + cheat + description:Invincibility + code:ATVUUZSA + cheat + description:Infinite lives + code:AENSLPPA + cheat + description:Infinite bullets + code:AAVGOTPA + cheat + description:One hit kills + code:OLEUSOSU + cheat + description:Take less damage when hit from behind + code:STOLOUON + cheat + description:Keep weapons after dying + code:GZUUNUSE+GZSLOSSE + cheat + description:Start with half health + code:APKGPLAZ+APESYZAZ + cheat + description:Start with 1 life + code:AEUEIZZA + cheat + description:Start with 6 lives + code:IEUEIZZA + cheat + description:Start with 9 lives + code:AEUEIZZE + cheat + description:Start with 99 lives + code:LVUEIZZA + cheat + description:Have infinite Grenades, Brass Knuckles, Armor Vest + code:0438:F9 + cheat + description:Have infinite Knives, Brass Knuckles, Armor Vest + code:0438:E5 + cheat + description:Have infinite Gun, Brass Knuckles, Armor Vest + code:0438:DB + cheat + description:Start on stage 2 (disable after stage begins) + code:0047:01 + cheat + description:Start on stage 3 (disable after stage begins) + code:0047:02 + cheat + description:Start on stage 4 (disable after stage begins) + code:0047:03 + cheat + description:Start on stage 5 (disable after stage begins) + code:0047:04 + cheat + description:Start on stage 6 (disable after stage begins) + code:0047:05 + +cartridge sha256:fa12a61eb787bf8346a81e5b6eaede75238a1735db24a6f4df51ac3a6b499f18 + name:Pac-Man (USA) (Namco) + cheat + description:Invincibility + code:GZEIYLEY + cheat + description:Get 8000+ points for eating ghosts + code:EZOSLLKZ+TAOSGUOI+SZXIYLVT + cheat + description:Power Pill effect always active + code:0088:0F + cheat + description:Infinite lives + code:0067:03 + +cartridge sha256:1e60a181e1f89f2249a3e0d44a7765c2cdd9e0446f1671c63bf2c6f6df562d4c + name:Pac-Man (USA) (Tengen) + cheat + description:Invincibility + code:GXKITZEY + cheat + description:Walk through walls + code:AAVSYUAP+AIUSZGEI+AINILGEY+AYVSZGEY + cheat + description:Get 8000+ points for eating ghosts + code:EXSSZZKZ+TESSLXOI+SXVITZVT + cheat + description:Power pills last longer + code:AYVITOGL + cheat + description:Power pills last extra long + code:NYVITOGU + cheat + description:Power pills don't last as long + code:AZVITOGL + cheat + description:Power pills don't work + code:ATXTZASZ + cheat + description:Only 3 ghosts are edible + code:IAXVYEYE + cheat + description:Only 2 ghosts are edible + code:PAXVYEYE + cheat + description:Pac-Man moves manually + code:NZSSLLIU + cheat + description:Power Pill effect always active + code:0088:15 + cheat + description:Infinite lives + code:0067:03 + +cartridge sha256:25506ac6d6413a73249d3ce6a4ecc40048982596e01d778eddb71baca084efa6 + name:Pac-Man (USA) (Tengen) (Unl) + cheat + description:Invincibility + code:GXKITZEY + cheat + description:Get 8000+ points for eating ghosts + code:EXSSZZKZ+TESSLXOI+SXVITZVT + cheat + description:Power pills last longer + code:AYVITOGL + cheat + description:Power pills last extra long + code:NYVITOGU + cheat + description:Power pills don't last as long + code:AZVITOGL + cheat + description:Power pills don't work + code:ATXTZASZ + cheat + description:Only 3 ghosts are edible + code:IAXVYEYE + cheat + description:Only 2 ghosts are edible + code:PAXVYEYE + cheat + description:Power Pill effect always active + code:0088:15 + cheat + description:Infinite lives + code:0067:03 + +cartridge sha256:acc561f57cfd0490fdce649deb16fa9df309bba1695608213a0ff8066d662492 + name:Pac-Mania (USA) (Unl) + cheat + description:Infinite lives + code:SZKIOPVG + cheat + description:Trapped ghosts + code:ANTGUN + cheat + description:Go through ghosts + code:SOLIVA + cheat + description:Ghosts worth 3200 points + code:PEASNA + +cartridge sha256:6c47c73eb510fb0f71eeb2a3f5cca7c25eca8678ffe060aa17df6534dbd10ef1 + name:Panic Restaurant (USA) + cheat + description:Invincibility + code:ENUPPAEI + cheat + description:Infinite health - except when you fall on spikes + code:OXVPPAVK + cheat + description:Infinite health (alt) + code:SXVPPAVG + cheat + description:Infinite time + code:OZVKGZVK + cheat + description:Infinite time (alt) + code:SGVKGZVG + cheat + description:Infinite lives + code:SAOSAGVG + cheat + description:Infinite lives (alt) + code:SZOSAGVG + cheat + description:Start with 4 hearts + code:GASYZGZA + cheat + description:Start with 2 lives + code:PAOZNIZA + cheat + description:Start with 5 lives + code:IAOZNIZA + cheat + description:Start with 6 hearts (heart meter will be distorted) + code:TASYZGZA + cheat + description:Start with 10 hearts (heart meter will be distorted) + code:ZASYZGZE + cheat + description:Start with 10 lives (meter will display 9) + code:ZAOZNIZE + cheat + description:Start with 15 lives (meter will display 9) + code:YAOZNIZE + cheat + description:Start with 80 on timer (1st level only) + code:AIVYGGLT+AIVKXYLT + cheat + description:Start with 70 on timer (1st level only) + code:TGVYGGLT+TGVKXYLT + cheat + description:Start with 60 on timer (1st level only) + code:GLVYGGLV+GLVKXYLV + +cartridge sha256:73f0f7b9150fb080541426cedc87bf528c63393e6112812112e8c1339d9bfbf5 + name:Panda Prince, The (Shin-Shin) (Unl) + cheat + description:Infinite lives + code:SXOOLYSA + +cartridge sha256:f1c9c4723190d6be5f1f683ad5fd8cc123abd70d42f486c175a25f1237db6199 + name:Paperboy (USA) + cheat + description:Invincibility against moving objects + code:APNEOZEO+ATNEXZGA + cheat + description:Invincibility against non-moving objects + code:AAKPSGTA + cheat + description:Infinite lives + code:SXSEVZVG + cheat + description:Infinite papers + code:OZNOKAVK + cheat + description:Infinite time in training course + code:SZXOUESE + cheat + description:Gain 20 papers on pick-up + code:GPUONUZA + cheat + description:Start with 1 life + code:PAUOEIGA + cheat + description:Start with 6 lives + code:TAUOEIGA + cheat + description:Start with 20 papers + code:GOXAUOZA + +cartridge sha256:dec09033f68850bd25cf3e8bf0e05a44970301c4aaac2cbc27b8f9e96392b409 + name:Paperboy 2 (USA) + cheat + description:Infinite lives + code:AAKEZLPA + cheat + description:Infinite papers + code:AEVPNLPA + cheat + description:5 papers on pick-up + code:IEOAEOZA + cheat + description:15 papers on pick-up + code:YEOAEOZE + cheat + description:20 papers on pick-up + code:GOOAEOZA + cheat + description:Start with 1 life - Paperboy only + code:PEOUYGIA + cheat + description:Start with 3 lives - Paperboy only + code:LEOUYGIA + cheat + description:Start with 10 lives - Paperboy only + code:ZEOUYGIE + cheat + description:Start with 15 papers + code:YAELGVZE + cheat + description:Start with 20 papers + code:GPELGVZA + +cartridge sha256:25ae9f90412612715a254973006f0056016a840efc8af1fbdb6fc2eb7cd5eb7c + name:Parasol Stars - Rainbow Islands II (Europe) + cheat + description:Invincibility + code:005C:03 + cheat + description:Automatically finish levels + code:0320:00+0321:00+0322:00+0323:00+0324:00+0325:00+0326:00+0327:00 + cheat + description:Make the Miracle Icon appear (enable then disable) + code:04FB:01 + +cartridge sha256:f0d89b53126513e1df56b46bae3a43b4a4b87543d48974c9087ba94737249801 + name:Parodius (Europe) + cheat + description:Enemies die automatically + code:008B:02 + cheat + description:Infinite Shield on pick-up + code:64D0:0F + +cartridge sha256:f1762c9f40e6e45a123b73a035841768e0132fa82c92f9d066a8718a7f99b6cc + name:Pesterminator (USA) (Unl) + cheat + description:Infinite health + code:VVOSPNVG + cheat + description:Infinite lives + code:VXNIIEVK + +cartridge sha256:1c598fe0b58811b1bedfc6f2cda05f0960b4a6e2770c8a2f73cd6da370ed2448 + name:Phantom Fighter (USA) + cheat + description:Infinite health + code:SXSZLUSE + cheat + description:Take less damage when attacked + code:OVSZPLSV+PESZZLAA + cheat + description:Start with Sacred Sword + code:VTVKEGSA+KAVKOGNA + cheat + description:Start with Bell + code:VTVKEGSA+SAVKOGNA + cheat + description:Start with Tonten + code:VTVKEGSA+UAVKOGNA + cheat + description:Start with Talisman + code:VTVKEGSA+XAVKOGNA + cheat + description:Start with 3 Scrolls + code:LASKNGAA+VAVKOGNA + cheat + description:Start with 6 Scrolls + code:TASKNGAA+VAVKOGNA + cheat + description:Infinite HP + code:0408:C8 + cheat + description:Max HP + code:040A:C8 + cheat + description:One hit kills + code:0448:01 + cheat + description:Have 99 Scrolls + code:0086:63 + cheat + description:Have 3 Crystal Balls + code:0087:03 + cheat + description:Have strongest punch + code:0076:03 + cheat + description:Have strongest kick + code:0077:03 + cheat + description:Have highest jump + code:0078:03 + cheat + description:Have best Tiger move + code:0079:03 + cheat + description:Have best Mirage move + code:007A:03 + cheat + description:Have Talisman + code:0082:01 + cheat + description:Have Tonten + code:0083:01 + cheat + description:Have Sacred Sword + code:0084:01 + cheat + description:Have Bell + code:0085:01 + +cartridge sha256:c701cffa5315b4375c0a71d2e7378137bcdeed0684f57bf7eb2fbed3b2c1b1da + name:Pictionary - The Game of Video Quick Draw (USA) + cheat + description:Infinite time + code:0084:20 + +cartridge sha256:f4ddb0f1a02f823ebed30b55547344de3c8fb9d87254ff993584373ecadd9141 + name:Pin Bot (USA) + cheat + description:Infinite balls + code:OZVVYZVV + cheat + description:Start with only 1 ball + code:PANTGZLA + cheat + description:Start with 6 balls + code:TANTGZLA + cheat + description:Start with 9 balls + code:PANTGZLE + +cartridge sha256:910ba4505b46a99b3779d84fd22ba8b18f3a649b0c1a11706c4609d06ce0bc18 + name:Pinball (World) + cheat + description:Infinite balls + code:SUXKLEVS + cheat + description:Start with lots of balls + code:YZSGPALE + cheat + description:Start with 1 ball + code:PASGPALA + cheat + description:Start with 6 balls + code:TASGPALA + cheat + description:Start with 9 balls + code:PASGPALE + +cartridge sha256:7dd47bac196af9874181e86f64402035e255814739828d5d00c03bac8689d40a + name:Pipe 5 (Asia) (Unl) + cheat + description:Infinite time (disable to finish round) + code:0080:09 + cheat + description:1 distance needed + code:008E:01 + cheat + description:Automatically finish round + code:008E:00 + +cartridge sha256:a57f873ccb2c8842e9ef1a8380c87026a8ef0c6649f1cc02ce0743fae61ea120 + name:Pipe Dream (USA) + cheat + description:Infinite wrenches + code:SZKTPUVK + cheat + description:One-way pipes from level 1 + code:AAOGZZIA + cheat + description:One-way pipes from level 5 + code:IAOGAZLA + cheat + description:One-way pipes from level 10 + code:ZAOKPZLE + cheat + description:Tunnels galore + code:KEUAUVSE + cheat + description:Pumps instead of reservoirs + code:GPKIEGZP + cheat + description:Pumps before reservoirs + code:GPKIEGZP+ZPKINGGP + cheat + description:Start with 1 wrench + code:PAOALPLA + cheat + description:Start with 6 wrenches + code:TAOALPLA + cheat + description:Start with 9 wrenches + code:PAOALPLE + +cartridge sha256:ac1215af2a3315f8bbff01987f24a85e9c1fe984287c05fc21246b0a66fd5dfd + name:Platoon (USA) (Rev A) + cheat + description:Stage 1 - Infinite grenades + code:SXKOZPVG + cheat + description:Stage 1 - Start with double capacity magazine + code:SZSPYAVG + cheat + description:Stage 1 - Double hits + code:AEKESYGE + cheat + description:Stage 1 - Don't take damage + code:SXKAUYVT + cheat + description:Stage 2 - Don't take damage + code:SZVAXTVT + cheat + description:Stage 4 - Infinite time + code:SXKEUZVG + cheat + description:Stage 4 - Play with more time + code:IEVEOPLA + cheat + description:Stage 4 - Double hits + code:PAKOIPIE + cheat + description:Stage 4 - Halve hits + code:ZAKOIPIA + cheat + description:Stage 4 - Start with double ammo + code:GEXEUPTE + cheat + description:Start on stage 2 + code:GAKEAPIA + cheat + description:Start on stage 3 + code:LAEGGATA + +cartridge sha256:61ac77e84b4aa089115a682a2e8cfaa6811ba83b567ae1f13d8b644e0c42a2bf + name:Platoon (USA) + cheat + description:Stage 1 - Infinite grenades + code:SXKOZPVG + cheat + description:Stage 1 - Start with double capacity magazine + code:SZSPYAVG + cheat + description:Stage 1 - Double hits + code:AEKESYGE + cheat + description:Stage 1 - Don't take damage + code:SXKAUYVT + cheat + description:Stage 2 - Don't take damage + code:SZVAXTVT + cheat + description:Stage 4 - Infinite time + code:SXKEUZVG + cheat + description:Stage 4 - Play with more time + code:IEVEOPLA + cheat + description:Stage 4 - Double hits + code:PAKOIPIE + cheat + description:Stage 4 - Halve hits + code:ZAKOIPIA + cheat + description:Stage 4 - Start with double ammo + code:GEXEUPTE + cheat + description:Start on stage 2 + code:GAKEAPIA + cheat + description:Start on stage 3 + code:LAEGGATA + +cartridge sha256:97f56ee3bcb0542996401a65c63a0e91c1c9c71da07f0619975e910946f9540d + name:Popeye (World) (Rev A) + cheat + description:Invincibility against enemy + code:ATGIYP + cheat + description:Invincibility against shots + code:ATISTL + cheat + description:Start with 1 life + code:PAPKNA + cheat + description:Start with 6 lives + code:TAPKNA + cheat + description:Start with 9 lives + code:PAPKNE + +cartridge sha256:23e457d854d5ce2bb8b81cef9fbbff0164171505a4d2d9e28ecbc2d062c81517 + name:Popo Team (Asia) (Unl) + cheat + description:Invincibility + code:004F:01 + cheat + description:Infinite lives + code:003F:03 + cheat + description:Slower enemies + code:004D:01 + +cartridge sha256:4986c3862a04fcf5b22df58b1182ec2ad636e6083714ac7c069adc1639023ebf + name:Power Blade (USA) + cheat + description:Infinite health + code:OTKESZSV + cheat + description:Infinite lives + code:SZSIAAVG + cheat + description:Hit anywhere + code:AEOANGZZ+ENEEUGEP + cheat + description:Take minimum damage + code:SZKAKXOU + cheat + description:Mega-jump + code:AZXSAVAU + cheat + description:Don't lose boomerang strength when you die + code:GZUITAVG+GZVITASA + cheat + description:Don't lose multi-boomerangs when you die + code:GZUSGAVG+GZVSZASA + cheat + description:Press Start to finish the level (don't use on Protect level) + code:AEEIPPPE+AOEILOIK+AVEIGOOZ + cheat + description:Start a new game to view the ending + code:YANNLTZA + cheat + description:Start with 1 life + code:AAXYZYZA + cheat + description:Start with 6 lives + code:IAXYZYZA + cheat + description:Start with 9 lives + code:AAXYZYZE + cheat + description:Infinite health (alt) + code:04AB:12 + cheat + description:Infinite lives (alt) + code:0027:09 + cheat + description:Infinite time + code:0095:09+0096:99 + +cartridge sha256:6c462c3fa07aab70759376fe6b59e9c91e808f79fae2960f869bafc9cf20dca2 + name:Power Blade 2 (USA) + cheat + description:Infinite health - except for spikes + code:OVSLZLSV + cheat + description:Infinite lives + code:GZSILAVG + cheat + description:Infinite time + code:ATKKXZSZ + cheat + description:Infinite life tanks + code:GXEVXTVG + cheat + description:Infinite energy tanks + code:GZEIPLVG + cheat + description:Speed up timer + code:YPKGNXYU + cheat + description:Slow down timer + code:YYKGNXYU + cheat + description:Throw meter doesn't decrease when boomerang is thrown + code:SAKSZZSZ + cheat + description:Take minimal damage + code:OVSLZLSV+PESLLLAA + cheat + description:Maximum throwing ability on pick-up + code:OZVULSOK+SANLZIVT + cheat + description:Start a new game to view the ending + code:YAXTNTLA + cheat + description:Start with 1 life + code:AEKEPTZA + cheat + description:Start with 6 lives + code:IEKEPTZA + cheat + description:Start with 9 lives + code:AEKEPTZE + cheat + description:Infinite health + code:049A:12 + cheat + description:Infinite lives (alt) + code:009F:99 + cheat + description:Have max POW + code:0054:0F + cheat + description:Have max energy + code:00A0:12 + cheat + description:Have Dual Power-Blades + code:0099:01 + cheat + description:Have Red Power-Blades + code:00A2:01 + cheat + description:View ending + code:0018:07 + +cartridge sha256:ae360d56679f179109ca7d07ad8b4da644ad53a39ffe1d47c8db00648af4bdb0 + name:Power Punch II (USA) + cheat + description:Infinite health + code:SZEYXGSA + cheat + description:Infinite health (alt) + code:00CE:FF + cheat + description:Instant win + code:00CD:00 + cheat + description:Max Punch + code:00C3:FF + cheat + description:max Stamina + code:00C4:FF + +cartridge sha256:76cdd991b85e4a15c62275fe6b3ccd5132ee2d17e70fe4d2173b8ce5d1193ec0 + name:Predator (USA) + cheat + description:Invincibility (normal mode) + code:VASAOASA+OGKKNGVK + cheat + description:Infinite health (big mode) + code:VVVAXUVK + cheat + description:Infinite health in jungle mode + code:AVUGVGSA + cheat + description:Infinite lives in jungle mode + code:SZNGGXVK + cheat + description:Infinite lives in big mode + code:SXXGZOVK + cheat + description:Start with double lives + code:AAVKGPGE + cheat + description:Mega-jumps in jungle mode + code:AEOETOPE + cheat + description:Don't die if you fall down holes + code:NTEENEGE+ATOAEEOZ + cheat + description:Start each life with Laser Rifle + code:LASEOELA+XLSEUEVX + cheat + description:Invincibility + code:0010:02 + cheat + description:Infinite lives + code:0504:09 + +cartridge sha256:7b0899bfde9661d1af5c2d88c46a8a70f1623729bf52db654fb40cda4554820b + name:Prince of Persia (USA) + cheat + description:Infinite health + code:SLXAINSO + cheat + description:Infinite time + code:SZKLIXSE + cheat + description:Infinite health (except for deep sword hit or a long fall) (alt) + code:06CF:03 + cheat + description:Infinite time (alt) + code:04EF:80 + +cartridge sha256:99f3ca1657ad48f9a4f128dce3e0e4efd2c4fee413a120a462055801c9581ebd + name:Princess Tomato in the Salad Kingdom (USA) + cheat + description:Infinite gold coins + code:03CB:09 + +cartridge sha256:3910ae7495a71e6a55f70ed31eb345d28d6e9d524fe88679719d831f8f2553ce + name:Pro Sport Hockey (USA) + cheat + description:P1 goals worth 2 + code:ZESUZYPA + cheat + description:P1 goals worth 3 + code:LESUZYPA + cheat + description:P1 goals worth 4 + code:GESUZYPA + cheat + description:P1 goals worth 5 + code:IESUZYPA + cheat + description:P1 goals worth 6 + code:TESUZYPA + cheat + description:P1 goals worth 7 + code:YESUZYPA + cheat + description:P1 goals worth 8 + code:AESUZYPE + cheat + description:P2 goals worth 2 + code:ZENLZYPA + cheat + description:P2 goals worth 3 + code:LENLZYPA + cheat + description:P2 goals worth 4 + code:GENLZYPA + cheat + description:P2 goals worth 5 + code:IENLZYPA + cheat + description:P2 goals worth 6 + code:TENLZYPA + cheat + description:P2 goals worth 7 + code:YENLZYPA + cheat + description:P2 goals worth 8 + code:AENLZYPE + cheat + description:P1 starts with 1 point + code:VVNPTOSE + cheat + description:P2 starts with 1 point + code:VVNOPOSE + cheat + description:P1 starts with 2 points + code:ZENPIPAA+VVNOZPNT + cheat + description:P1 starts with 4 points + code:GENPIPAA+VVNOZPNT + cheat + description:P1 starts with 6 points + code:TENPIPAA+VVNOZPNT + cheat + description:P1 starts with 8 points + code:AENPIPAE+VVNOZPNT + cheat + description:P1 starts with 10 points + code:ZENPIPAE+VVNOZPNT + cheat + description:P2 starts with 2 points + code:ZENPIPAA+NVNPYPVT + cheat + description:P2 starts with 4 points + code:GENPIPAA+NVNPYPVT + cheat + description:P2 starts with 6 points + code:TENPIPAA+NVNPYPVT + cheat + description:P2 starts with 8 points + code:AENPIPAE+NVNPYPVT + cheat + description:P2 starts with 10 points + code:ZENPIPAE+NVNPYPVT + +cartridge sha256:e144020f37416f80f1a0da47aa9b3fbda338c61fcd175e8b2dc98df181e24b85 + name:Pro Wrestling (USA) (Rev A) + cheat + description:Infinite health and time + code:NTSTIVLE+OZSTGTVS+SASTTTEY+YTSTYVZA + cheat + description:Only have 5 seconds to get back into ring + code:IEETTZGP + cheat + description:Only have 10 seconds to get back into ring + code:ZEETTZGO + cheat + description:Have 30 seconds to get back into ring + code:TOETTZGO + cheat + description:Rounds are only 1 minute + code:PEXIKYIA + cheat + description:Rounds are only 3 minutes + code:LEXIKYIA + cheat + description:Rounds are 8 minutes + code:AEXIKYIE + cheat + description:Rounds are 10 minutes + code:ZEXIKYIE + cheat + description:2-second pin count + code:ZAVVTGLA + cheat + description:5-second pin count + code:IAVVTGLA + cheat + description:7-second pin count + code:YAVVTGLA + cheat + description:Infinite time (minutes) + code:0087:09 + cheat + description:Infinite time (seconds) + code:0086:3B + cheat + description:Pin once to win match + code:0077:00 + +cartridge sha256:96dafa1208bda2eaa601d6855d86cf670556018c2859805cae51a88f83e66e9e + name:Pro Wrestling (USA) + cheat + description:Infinite health and time + code:NTSTIVLE+OZSTGTVS+SASTTTEY+YTSTYVZA + cheat + description:Only have 5 seconds to get back into ring + code:IEETTZGP + cheat + description:Only have 10 seconds to get back into ring + code:ZEETTZGO + cheat + description:Have 30 seconds to get back into ring + code:TOETTZGO + cheat + description:Rounds are only 1 minute + code:PEXIKYIA + cheat + description:Rounds are only 3 minutes + code:LEXIKYIA + cheat + description:Rounds are 8 minutes + code:AEXIKYIE + cheat + description:Rounds are 10 minutes + code:ZEXIKYIE + cheat + description:2-second pin count + code:ZAVVTGLA + cheat + description:5-second pin count + code:IAVVTGLA + cheat + description:7-second pin count + code:YAVVTGLA + cheat + description:Infinite time (minutes) + code:0087:09 + cheat + description:Infinite time (seconds) + code:0086:3B + cheat + description:Pin once to win match + code:0077:00 + +cartridge sha256:635271fe654636ec37c882f76c5f8cd39b7b3a476c9aa75cefb548d82de8f896 + name:Punch-Out!! (USA) + cheat + description:Infinite health + code:0391:60 + cheat + description:Infinite hearts + code:0326:42 + cheat + description:Infinite Stars + code:0342:04 + cheat + description:One-hit knockdowns + code:0398:01 + +cartridge sha256:ea81de1a6d901d8d1ad229a6d8d88edcc8e1aeeae6146aa4cd01eb0310eb44d5 + name:Punisher, The (USA) + cheat + description:Invincibility (blinking) + code:ESKTGGEY+EVKTTKXK + cheat + description:Infinite health + code:SZNZKOSE+SZUZPVSE+VZKZNOVE + cheat + description:Infinite Grenades + code:XTSVSNXK + cheat + description:Infinite bullets and Rockets + code:AESYAPPA + cheat + description:Never lose a life against normal enemy + code:XVOVGXXK + cheat + description:Never lose a life against end of level enemy + code:XVOEXOXK + cheat + description:Hit anywhere + code:AANZGXAZ+AAOXYXIA+AAXXAKPA+AAXXZPZL + cheat + description:Faster Punisher + code:GEUUYIZA + cheat + description:Stage scrolls 2x as fast + code:PANVGGAA + cheat + description:Stage scrolls 3x as fast + code:ZANVGGAA + cheat + description:Stage scrolls 4x as fast + code:LANVGGAA + cheat + description:150 Machine Gun bullets on pick-up + code:PEUYNLAA + cheat + description:150 Assault Rifle bullets on pick-up + code:PEUNXLAA + cheat + description:Less energy on pick-up + code:AAEUUPAO + cheat + description:More energy on pick-up + code:APEUUPAO + cheat + description:Start with 1 life + code:PEOTYTIA + cheat + description:Start with 10 lives + code:ZEOTYTIE + +cartridge sha256:691ef0807cacd7032c52ff65ab1718c28be45c7220afcc13f20c645dfb40d4ed + name:Puss n Boots - Pero's Great Adventure (USA) + cheat + description:Infinite health + code:SZNGOISA + cheat + description:Infinite lives + code:SZOKZZVG + cheat + description:Auto-fire and auto-jump + code:AAOVNENY + cheat + description:Mega-jump + code:AAXGNUPA + cheat + description:Start with less health + code:GOSTNUAU + cheat + description:Start with 1 life + code:PEOGZALA + cheat + description:Start with 6 lives + code:TEOGZALA + cheat + description:Start with 9 lives + code:PEOGZALE + cheat + description:Start on stage 1 + code:GAEGAIAA + cheat + description:Start on stage 2 + code:PAEGAIAE + cheat + description:Start on stage 3 + code:TAEGAIAE + cheat + description:Infinite health (alt) + code:0092:38 + cheat + description:Infinite lives (alt) + code:000A:09 + +cartridge sha256:0cf2fc17a59a0932ce43e6b2e9ea4e2570f03139784b5c9df429a499e734b92e + name:Puzznic (USA) + cheat + description:Slower timer + code:ITKIPXGL + cheat + description:Faster timer + code:TPKIPXGU + cheat + description:Start on level 2-1 + code:ZEUAIPAE + cheat + description:Start on level 3-1 + code:GOUAIPAA + cheat + description:Start on level 4-1 + code:TOUAIPAE + cheat + description:Start on level 5-1 + code:AXUAIPAE + cheat + description:Start on level 6-1 + code:ZUUAIPAA + cheat + description:Start on level 7-1 + code:GUUAIPAE + cheat + description:Start on level 8-1 + code:TKUAIPAA + cheat + description:Start on level 9-1 + code:ASUAIPAA + +cartridge sha256:5fa346174b6b5a9dc2b5fe113ef8d8ac013a32b26dde6d5dfc9ed631d5e9af25 + name:Q-bert (USA) + cheat + description:Infinite lives + code:SXSZGPVG + cheat + description:Start with 1 life + code:PEUOOGIA+PAXZLLIA + cheat + description:Start with 10 lives + code:ZAXZLLIE+ZEUOOGIE + cheat + description:Start on level 3 + code:AESPVGAE + cheat + description:Start on level 6 + code:GOSPVGAA + cheat + description:Start on level 9 + code:AXSPVGAA + cheat + description:Infinite lives - P1 + code:004C:63 + cheat + description:Start on level 1 round 2 + code:0049:01 + cheat + description:Start on level 1 round 3 + code:0049:02 + cheat + description:Start on level 1 round 4 + code:0049:03 + cheat + description:Start on level 2 round 1 + code:0049:04 + cheat + description:Start on level 2 round 2 + code:0049:05 + cheat + description:Start on level 2 round 3 + code:0049:06 + cheat + description:Start on level 2 round 4 + code:0049:07 + cheat + description:Start on level 3 round 1 + code:0049:08 + cheat + description:Start on level 3 round 2 + code:0049:09 + cheat + description:Start on level 3 round 3 + code:0049:0A + cheat + description:Start on level 3 round 4 + code:0049:0B + cheat + description:Start on level 4 round 1 + code:0049:0C + cheat + description:Start on level 4 round 2 + code:0049:0D + cheat + description:Start on level 4 round 3 + code:0049:0E + cheat + description:Start on level 4 round 4 + code:0049:0F + cheat + description:Start on level 5 round 1 + code:0049:10 + cheat + description:Start on level 5 round 2 + code:0049:11 + cheat + description:Start on level 5 round 3 + code:0049:12 + cheat + description:Start on level 5 round 4 + code:0049:13 + cheat + description:Start on level 6 round 1 + code:0049:14 + cheat + description:Start on level 6 round 2 + code:0049:15 + cheat + description:Start on level 6 round 3 + code:0049:16 + cheat + description:Start on level 6 round 4 + code:0049:17 + cheat + description:Start on level 7 round 1 + code:0049:18 + cheat + description:Start on level 7 round 2 + code:0049:19 + cheat + description:Start on level 7 round 3 + code:0049:1A + cheat + description:Start on level 7 round 4 + code:0049:1B + cheat + description:Start on level 8 round 1 + code:0049:1C + cheat + description:Start on level 8 round 2 + code:0049:1D + cheat + description:Start on level 8 round 3 + code:0049:1E + cheat + description:Start on level 8 round 4 + code:0049:1F + cheat + description:Start on level 9 round 1 + code:0049:20 + cheat + description:Start on level 9 round 2 + code:0049:21 + cheat + description:Start on level 9 round 3 + code:0049:22 + cheat + description:Start on level 9 round 4 + code:0049:23 + +cartridge sha256:882a02c538cb097531da74d0ad685f6896dcfb7fa9b1a0cd540b4274968a7c13 + name:Q Boy (Asia) (Unl) + cheat + description:Infinite lives + code:SZSAKNVK + cheat + description:Infinite life + code:SXNZXOVK + cheat + description:Invincibility after first hit + code:AVXPYIVG + cheat + description:Infinite Breath Power + code:SXEXVXVK+SXOZOXVK + cheat + description:Infinite Lift Power + code:SZXZXUVK+SZXZSUVK + +cartridge sha256:745050dec23a692e1e759eb3e291f58ad7739fadb3a1308ec8d60085fefaec69 + name:Qix (USA) + cheat + description:1 life - P1 + code:PEEAPZGA + cheat + description:1 life - P2 + code:PEEEAZGA + cheat + description:Start on Level 5 - 1P game + code:IANAZZPA + cheat + description:Start on Level 10 - 1P game + code:ZANAZZPE + cheat + description:Start on Level 20 - 1P game + code:GPNAZZPA + cheat + description:Start on Level 5 - 2P game + code:IEEEGZPA + cheat + description:Start on Level 10 - 2P game + code:ZEEEGZPE + cheat + description:Start on Level 20 - 2P game + code:GOEEGZPA + +cartridge sha256:5dcea6d649f5ab79cf43dde76b92fb53b056fe92c6b49fd41f5158d9af0e9c32 + name:Quattro Adventure (USA) (Unl) + cheat + description:Boomerang Kid - Infinite lives + code:SZOGXVVK + cheat + description:Boomerang Kid - Start with 6 lives + code:TAOGPTLA + cheat + description:Linus Spacehead - Increase oxygen + code:AZKKPNAP + cheat + description:Linus Spacehead - Never lose oxygen + code:AEULZIPA + cheat + description:Linus Spacehead - Never lose life in the water + code:SXEGLYVG + cheat + description:Linus Spacehead - Never lose life in the land + code:SZXIILVG + cheat + description:Linus Spacehead - Start with 9 lives + code:PEKGGLLE + cheat + description:Super Robin Hood - Invincibility + code:AVONISPG + cheat + description:Super Robin Hood - Infinite lives + code:SXNKZIVG + cheat + description:Super Robin Hood - 9 energy hearts, you may lose some hearts when you pick up new ones + code:PAEGLTLE + cheat + description:Super Robin Hood - Start with 1 life + code:PAVGILLA + cheat + description:Super Robin Hood - Start with 6 lives + code:TAVGILLA + cheat + description:Super Robin Hood - Start with 9 lives + code:PAVGILLE + cheat + description:Treasure Island Dizzy - Invincible Dizzy Starts you in the Island In The Sky, walk left to arrive at the original starting point - + code:PEXSZYAA + cheat + description:Treasure Island Dizzy - Walk backwards + code:OZNTKASX + cheat + description:Treasure Island Dizzy - Start with snorkel + code:PEUSYYAA + cheat + description:Treasure Island Dizzy - Start with axe + code:PEUSYYAA+PEKNIZZP + cheat + description:Treasure Island Dizzy - Start with dynamite + code:PEUSYYAA+ZEKNIZZP + cheat + description:Treasure Island Dizzy - Start with heavy weight + code:PEUSYYAA+IEKNIZZP + +cartridge sha256:a537916d210a97e41e669c77f3ebcccb681dc44db4d8b758c2109baf8590d918 + name:Quattro Arcade (USA) (Unl) + cheat + description:Go! Dizzy Go! - Always kill monsters + code:XVTISU+XVTIVU + cheat + description:Go! Dizzy Go! - Walk through walls + code:XVTILU + cheat + description:Go! Dizzy Go! - Start with 1 life + code:PAVGZILA + cheat + description:Go! Dizzy Go! - Start with 6 lives + code:TAVGZILA + cheat + description:Go! Dizzy Go! - Start with 9 lives + code:PAVGZILE + cheat + description:Go! Dizzy Go! - Start on world 1, stage 3 + code:ZEEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 1, stage 5 + code:GEEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 2, stage 2 + code:TEEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 2, stage 4 + code:AEEKGIPE + cheat + description:Go! Dizzy Go! - Start on world 4, stage 2 + code:AOEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 4, stage 4 + code:ZOEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 5, stage 1 + code:GOEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 5, stage 3 + code:TOEKGIPA + cheat + description:Go! Dizzy Go! - Start on world 5, stage 5 + code:AOEKGIPE + cheat + description:Sunt Buggies - Infinite lives + code:SXOXZEVK + cheat + description:Sunt Buggies - Start with 1 life + code:PAKVXGLA + cheat + description:Sunt Buggies - Start with 6 lives + code:TAKVXGLA + cheat + description:Sunt Buggies - Start with 9 lives + code:PAKVXGLE + cheat + description:F-16 Renegade - Start with 2 lives - 1P game + code:PEUGEALA + cheat + description:F-16 Renegade - Start with 7 lives - 1P game + code:TEUGEALA + cheat + description:F-16 Renegade - Start with 10 lives - 1P game + code:PEUGEALE + cheat + description:F-16 Renegade - Start on level 3 + code:LEUGSAPA+PEKGXAAA + cheat + description:F-16 Renegade - Start on level 5 + code:IEUGSAPA+ZEKGXAAA + cheat + description:F-16 Renegade - Start on level 7 + code:YEUGSAPA+LEKGXAAA + cheat + description:F-16 Renegade - Start on level 9 + code:PEUGSAPE+GEKGXAAA + cheat + description:C.J.'s Elephant Antics - Infinite lives + code:SUKTZUVS + cheat + description:C.J.'s Elephant Antics - Start in Switzerland + code:PAEYOAAA + cheat + description:C.J.'s Elephant Antics - Start in Egypt + code:ZAEYOAAA + cheat + description:C.J.'s Elephant Antics - Start in Africa + code:LAEYOAAA + cheat + description:C.J.'s Elephant Antics - Always run fast after losing all lives + code:PAONILAA + cheat + description:C.J.'s Elephant Antics - Super C.J. after losing all lives + code:YAONILAE + cheat + description:C.J.'s Elephant Antics - Start with 1 life + code:PASTSVPA + cheat + description:C.J.'s Elephant Antics - Start with 5 lives + code:IASTSVPA + cheat + description:C.J.'s Elephant Antics - Start with 15 lives + code:YASTSVPE + cheat + description:C.J.'s Elephant Antics - Start with 20 lives + code:GPSTSVPA + +cartridge sha256:67123fe28cf5fbadeafc77400a0812f0135ab36706ec7d1267f84931d044e71d + name:Quest of Ki, The (Japan) + cheat + description:Exit always open + code:0053:01 + +cartridge sha256:d4f1650059a011455577561ea607993a5046d452ba987b1c7381cad56550be0a + name:R.B.I. Baseball (USA) + cheat + description:Perfectly straight pitches - both players + code:EESLUZTL+OXSLXZPN + cheat + description:Super slow pitches - both players + code:AEXUKZTL+OXXUUZOU + cheat + description:Slow pitches - both players + code:LEXUKZTL+OXXUUZOU + cheat + description:Fast pitches - both players + code:OXXUUZOU+YEXUKZTL + cheat + description:Super fast pitches - both players + code:OXXUUZOU+YEXUKZTU + cheat + description:All missed pitches are strikes - both players + code:AOVLSLEI + +cartridge sha256:3f9e3d3b48a897d94003df004ab4b332d749f85ea5d0e1a1b29b6d4f5634049a + name:R.C. Pro-Am (USA) (Rev A) + cheat + description:Infinite continues + code:AAEIPPPA + cheat + description:Max turbo on first pick-up + code:GEUGAPPA + cheat + description:Max tires on first pick-up + code:GEKKGPPA + cheat + description:Max speed on first pick-up + code:GAVGIPPA + cheat + description:Double turbo on first pick-up + code:ZEUGAPPA + cheat + description:Double tires on first pick-up + code:ZEKKGPPA + cheat + description:Double speed on first pick-up + code:ZAVGIPPA + cheat + description:Computer cars go crazy + code:SXVLGZAK + cheat + description:Always win as 1st place + code:005C:00 + cheat + description:Auto race at 128 MPH (disable if you get stuck) + code:05DC:80 + cheat + description:Max Super Sticky Tires + code:0453:04 + cheat + description:Max Turbo Acceleration + code:0454:04 + cheat + description:Max higher top speed + code:0455:04 + cheat + description:Infinite ammo for weapons + code:0459:63 + cheat + description:Have Bombs + code:045A:01 + cheat + description:Have Missiles + code:045A:02 + cheat + description:Have pick-up truck as vehicle + code:03F9:00 + cheat + description:Have off-road vehicle as vehicle + code:03F9:01 + cheat + description:Have race car as vehicle + code:03F9:02 + cheat + description:NINTENDO already spelled out (enable then disable) + code:03F7:08 + cheat + description:Computer cars go crazy (alt) + code:B2E4:AD + +cartridge sha256:aec6beb5b7e4d291a2bef75cb6dc43dc4db34f0313d26a8582ddf61b5b6a67c5 + name:R.C. Pro-Am (USA) + cheat + description:Infinite continues + code:AASIUAPA + cheat + description:Max turbo on first pick-up + code:GAOGOAPA + cheat + description:Max tires on first pick-up + code:GAXKSAPA + cheat + description:Max speed on first pick-up + code:GEKGTYPA + cheat + description:Double turbo on first pick-up + code:ZAOGOAPA + cheat + description:Double tires on first pick-up + code:ZAXKSAPA + cheat + description:Double speed on first pick-up + code:ZEKGTYPA + cheat + description:Computer cars go crazy + code:SZKLOPAK + cheat + description:Always win as 1st place + code:005C:00 + cheat + description:Auto race at 128 MPH (disable if you get stuck) + code:05DC:80 + cheat + description:Max Super Sticky Tires + code:0453:04 + cheat + description:Max Turbo Acceleration + code:0454:04 + cheat + description:Max higher top speed + code:0455:04 + cheat + description:Infinite ammo for weapons + code:0459:63 + cheat + description:Have Bombs + code:045A:01 + cheat + description:Have Missiles + code:045A:02 + cheat + description:Have pick-up truck as vehicle + code:03F9:00 + cheat + description:Have off-road vehicle as vehicle + code:03F9:01 + cheat + description:Have race car as vehicle + code:03F9:02 + cheat + description:NINTENDO already spelled out (enable then disable) + code:03F7:08 + cheat + description:Computer cars go crazy (alt) + code:B2E4:AD + +cartridge sha256:730399227c1566636f2e3475c398924165b21d88fc3321f60b29f4e6321a3c9c + name:R.C. Pro-Am II (USA) + cheat + description:Infinite credits + code:SUEEGXVS + cheat + description:Infinite Lazers on purchase + code:SXKVLVVS + cheat + description:Infinite Bombs on purchase + code:SXSTZKVS + cheat + description:Infinite Freezes on purchase + code:SXOVGVVS + cheat + description:Infinite Buckshot on purchase + code:SZXVGSVS + cheat + description:Infinite Missiles on purchase + code:SZSTTSVS + cheat + description:Items in the Model Shop are free if you have enough money + code:ATUXYGSZ + cheat + description:Buckshot costs 10 instead of 2,000 + code:PEETEOEG + cheat + description:Mega Pulse costs 2,080 instead of 20,000 + code:AEEVUPYA + cheat + description:Scoopers costs 2,200 instead of 15,000 + code:AANTSPIA + cheat + description:Dynafit tires costs 2,320 instead of 10,000 + code:AANTUPLA + cheat + description:Mega Motor costs 1,360 instead of 50,000 + code:AAVVUPLP + cheat + description:Hyper Motor costs 1,840 instead of 30,000 + code:AAVVOOLA + cheat + description:Freeze costs 2,200 instead of 15,000 + code:AEEVOPIA + cheat + description:Lazer costs 1,200 instead of 14,000 + code:AEETNPIA + cheat + description:Bombs costs 1,760 instead of 12,000 + code:AEETSPGA + cheat + description:Nobbies costs 1,880 instead of 7,000 + code:AANTOPZA + cheat + description:Missile costs 2,320 instead of 10,000 + code:AEETUPLA + cheat + description:Nitro costs 10 instead of 1000 + code:PANVKPGT + cheat + description:Oil slicks costs 10 instead of 500 + code:PANVXPZL + cheat + description:Skinny tires costs 10 instead of 2,000 + code:PAVVVOEG + cheat + description:Gold Motor costs 10 instead of 16,000 + code:AAVTNPTA+PAVTVPAG + cheat + description:Start with 1 credit instead of 3 + code:AESOLAZA + cheat + description:Start with 5 credits + code:GESOLAZA + cheat + description:Start with 7 credits + code:TESOLAZA + cheat + description:Start with 9 credits + code:AESOLAZE + cheat + description:Start on Track 02 + code:PEOGNTAA + cheat + description:Start on Track 03 + code:ZEOGNTAA + cheat + description:Start on Track 04 + code:LEOGNTAA + cheat + description:Start on Track 05 + code:GEOGNTAA + cheat + description:Start on Track 06 + code:IEOGNTAA + cheat + description:Start on Track 07 + code:TEOGNTAA + cheat + description:Start on Track 08 + code:YEOGNTAA + cheat + description:Start on Track 09 + code:PEOGNTAE + cheat + description:Start on Track 10 + code:ZEOGNTAE + cheat + description:Start on Track 11 + code:LEOGNTAE + cheat + description:Start on Track 12 + code:GEOGNTAE + cheat + description:Start on Track 13 + code:IEOGNTAE + cheat + description:Start on Track 14 + code:TEOGNTAE + cheat + description:Start on Track 15 + code:YEOGNTAE + cheat + description:Start on Track 16 + code:AOOGNTAA + cheat + description:Start on Track 17 + code:ZOOGNTAA + cheat + description:Start on Track 18 + code:LOOGNTAA + cheat + description:Start on Track 19 + code:GOOGNTAA + cheat + description:Start on Track 20 + code:IOOGNTAA + cheat + description:Start on Track 21 + code:TOOGNTAA + cheat + description:Start on Track 22 + code:YOOGNTAA + cheat + description:Start on Track 23 + code:AOOGNTAE + cheat + description:Start on Track 24 + code:POOGNTAE + cheat + description:Start on Track 25 + code:LOOGNTAE + cheat + description:Start on Track 26 + code:GOOGNTAE + cheat + description:Start on Track 27 + code:IOOGNTAE + cheat + description:Start on Track 28 + code:TOOGNTAE + cheat + description:Start on Track 29 + code:YOOGNTAE + cheat + description:Start on first Tug-O-Truck Challenge + code:AEOGNTAE + cheat + description:Start on Drag Race + code:POOGNTAA + cheat + description:Start on second Tug-O-Truck Challenge + code:ZOOGNTAE + cheat + description:Infinite continues + code:0771:09 + cheat + description:Infinite time at continue screen + code:0431:63 + +cartridge sha256:5cb8d03a90732d01737a401e8dc87a3d594ab2f901970f309fe551c0013ac5da + name:Race America (USA) + cheat + description:Can't down shift + code:SGSUGLVI + cheat + description:Cars only have 4 gears + code:IAVUILYA+IAKXAIYA + cheat + description:Go super fast in 6th gear + code:OZNOAAEN+NYNOPAIE+SAXPGZVT + +cartridge sha256:2e14f4481b5b762ba1ff0e7a25b07f316f7bdef0574a1704856f92823874f4e6 + name:Rad Racer (USA) + cheat + description:Infinite time + code:NYZINV + cheat + description:Never crash from things outside of the road + code:AAKSYIPA + cheat + description:Less time to finish each stage + code:GZXIUVIZ + cheat + description:More time to finish each stage + code:GLXIUVIX + cheat + description:Turbo acceleration + code:ALXGAIAA + cheat + description:Super Turbo acceleration + code:YYUKGIAU + cheat + description:Ultra Turbo acceleration + code:PEEGPIAA + cheat + description:Start on stage 2 + code:PAXKPAAA+GXKGKTSA + cheat + description:Start on stage 3 + code:ZAXKPAAA+GXKGKTSA + cheat + description:Start on stage 4 + code:LAXKPAAA+GXKGKTSA + cheat + description:Start on stage 5 + code:GAXKPAAA+GXKGKTSA + cheat + description:Start on stage 6 + code:IAXKPAAA+GXKGKTSA + cheat + description:Start on stage 7 + code:TAXKPAAA+GXKGKTSA + cheat + description:Start on stage 8 + code:YAXKPAAA+GXKGKTSA + cheat + description:Start on stage 2 (alt) + code:00E5:01 + cheat + description:Start on stage 3 (alt) + code:00E5:02 + cheat + description:Start on stage 4 (alt) + code:00E5:03 + cheat + description:Start on stage 5 (alt) + code:00E5:04 + cheat + description:Start on stage 6 (alt) + code:00E5:05 + cheat + description:Start on stage 7 (alt) + code:00E5:06 + cheat + description:Start on stage 8 (alt) + code:00E5:07 + +cartridge sha256:bcc8a24ab99f85933ff2cd0787daab6093710ef04f95b4c7bec842961ee0e3ad + name:Rad Racer II (USA) + cheat + description:Instant Boost + code:005F:FF + cheat + description:Don't wipeout when you hit something + code:005B:00 + +cartridge sha256:879ada5f1aa0282d81f9f13e91de53e181ed1030242029fcce002dfb8847c0c9 + name:Radia Senki - Reimei Hen (Japan) + cheat + description:No random battles + code:SXUYSZSA + +cartridge sha256:5d9f7deb09c9de8725c293366c943e6fef0a505a72bb1bc92be7a7a055cde464 + name:Raf World (Japan) + cheat + description:Invincibility + code:PAEVXXPX+PAOVEXPX + cheat + description:Infinite energy + code:SZUVUZSA + cheat + description:Infinite weapons + code:SZUAUTSA + cheat + description:Infinite lives + code:SKNGYLVG + cheat + description:Double-jump + code:AVKEIOOZ + +cartridge sha256:d79be89ff83550ba185d19fb586d2b5f988ad6743125b5233ab3bfe2cb814c94 + name:Raid 2020 (USA) (Unl) + cheat + description:Infinite health + code:SXSSESVK+SZKSVSVK + cheat + description:Infinite lives + code:SXVSIVVK + +cartridge sha256:b7b5fdf2b31c4b8c5340f93f166fb56aecf598f7c43a24b4334502bb81065143 + name:Raid on Bungeling Bay (USA) + cheat + description:Take no damage from anything + code:SXVVPIAX + cheat + description:Infinite Bombs + code:SXSIASVK + cheat + description:Can only carry 5 Bombs + code:AZOIIEGX + cheat + description:Start with 9 lives + code:PENGZYIE + cheat + description:Start with 1 life + code:PENGZYIA + cheat + description:Start on round 3 + code:LEVKTYPA + cheat + description:Start on round 6 + code:TEVKTYPA + cheat + description:Start on round 9 + code:PEVKTYPE + +cartridge sha256:9866b51b16b503aa515967929060eb100ae4cbd851229a3125ecf3ee7c88346e + name:Rally Bike (USA) + cheat + description:Infinite gas + code:SIUKLUVV + cheat + description:Infinite lives - 1P game + code:SZEITKVV + cheat + description:Infinite lives - 2P game, both players + code:SZOSIKVN + cheat + description:Start with 1 life - 1P game + code:PAUIKTIA + cheat + description:Start with 10 lives - 1P game + code:ZAUIKTIE + cheat + description:Start with 1 life - 2P game, both players + code:PAUIKITA+ZAXSTGTA + cheat + description:Start with 10 lives - 2P game, both players + code:ZAUIKTIE+LAXSTGIE + +cartridge sha256:2596cf1e1a9b09dac24aeffea708807173ec81fa7093b2a729f1539aec3b5764 + name:Rambo (USA) (Rev A) + cheat + description:Invincibility + code:ATOSXISL + cheat + description:Infinite weapons + code:SXOVXKVS + cheat + description:Gain double amount on pick-up + code:GOXTZXZA + cheat + description:Gain maximum amount on pick-up + code:GNXTZXZA + cheat + description:Hit anywhere + code:AEVSNOZL + cheat + description:Start with 2 Medicine Bottles + code:ZEEEITIA + cheat + description:Start with 9 Medicine Bottles + code:ZVEEITIA + cheat + description:Start with Hand Grenades + code:IPNEITPP+IOEALTPP + cheat + description:Infinite health + code:010C:64 + cheat + description:Max EXP + code:010F:23 + cheat + description:Infinite Throwing Knives + code:011D:99 + cheat + description:Infinite Missiles type 1 + code:011E:99 + cheat + description:Infinite Missiles type 2 + code:011F:99 + cheat + description:Infinite Machine Gun + code:0120:99 + cheat + description:Infinite Grenades + code:0121:99 + cheat + description:Infinite Red Potions + code:0122:99 + +cartridge sha256:94e0d73bfaa7dca6d117d8d6f92637ace17816bb37807152baa8978396fe8d46 + name:Rambo (USA) + cheat + description:Invincibility + code:ATOSXISL + cheat + description:Infinite weapons + code:SXOVXKVS + cheat + description:Gain double amount on pick-up + code:GOXTZXZA + cheat + description:Gain maximum amount on pick-up + code:GNXTZXZA + cheat + description:Hit anywhere + code:AEVSNOZL + cheat + description:Start with 2 Medicine Bottles + code:ZEEEITIA + cheat + description:Start with 9 Medicine Bottles + code:ZVEEITIA + cheat + description:Start with hand grenades + code:IPNEITPP+IOEALTPP + cheat + description:Infinite health + code:010C:64 + cheat + description:Max EXP + code:010F:23 + cheat + description:Infinite Throwing Knives + code:011D:99 + cheat + description:Infinite Missiles type 1 + code:011E:99 + cheat + description:Infinite Missiles type 2 + code:011F:99 + cheat + description:Infinite Machine Gun + code:0120:99 + cheat + description:Infinite Grenades + code:0121:99 + cheat + description:Infinite Red Potions + code:0122:99 + +cartridge sha256:bbe150f50bd11f5aa4e3edab47541261c58ab9899b6d9329450b3c77df172823 + name:Rampage (USA) + cheat + description:No harm from attacks or bad food + code:GXXLALOP + cheat + description:No harm from falling + code:AEXLPGAP + cheat + description:No harm from water + code:AAOUOPPA+AASLSPPA + cheat + description:Buildings collapse automatically + code:ASUTPIEL + cheat + description:Buildings collapse faster + code:ASSZGTEY+IOOZUXIA + cheat + description:One hit to destroy buildings + code:EEKXYPIA + cheat + description:More health - P1 + code:NYSGLUYN + cheat + description:More health - P2 + code:NYVKTUYN + cheat + description:Less health - P1 + code:YLSGLUYN + cheat + description:Less health - P2 + code:YLVKTUYN + cheat + description:More health after continue - both players + code:NNNGKNYN + cheat + description:Less health after continue - both players + code:YUNGKNYN + cheat + description:More damage done from falling + code:AXXLPGAP + cheat + description:Double health from food + code:GEULLLIA + cheat + description:Half health from food + code:AEULLLIA+ZKULTUZE + +cartridge sha256:501e921616931e4796c44b1e80c7112c881eb1e9a3190d0e6a3b4b199ee368e3 + name:Ren & Stimpy Show, The - Buckeroo$! (USA) + cheat + description:Infinite health + code:NYOYXLYE + cheat + description:Infinite lives + code:NYUVOZTE + cheat + description:Infinite collectibles + code:OUEAXXOO + cheat + description:Shorter invincibility after getting hit + code:YPEYOUGU + cheat + description:Longer invincibility after getting hit + code:ITEYOUGL + cheat + description:2 custard pies on pick-up + code:ZAXNPZIA + cheat + description:9 custard pies on pick-up + code:PAXNPZIE + cheat + description:Start with $11 instead of 0 + code:VNXELSSO + cheat + description:Start with 2 lives + code:PEUAPZLA + cheat + description:Start with 6 lives + code:IEUAPZLA + cheat + description:Start with 8 lives + code:YEUAPZLA + cheat + description:Start with 10 lives + code:PEUAPZLE + cheat + description:Start on Rescue the Maiden level + code:OZEEPYES+PAEEZYZZ + cheat + description:Start on Out West level + code:OZEEPYES+PAEEZYZZ+SAEELNVV + cheat + description:Start on Robin Hoek level + code:OZEEPYES+ZAEEZYZZ+SAEELNVV + +cartridge sha256:b4856061c9310015101c461aef744e9dcf3b158bd13d5d9cb4a76d3ca18a6864 + name:Renegade (USA) + cheat + description:Infinite lives + code:SXUIOTVG + cheat + description:Timer runs faster + code:TOSVOXTU + cheat + description:Timer runs slower + code:EXSVOXTL + cheat + description:Start with a super energy boost + code:AIUOZUAZ + cheat + description:Start with 1 life - both players + code:AEOSLYZA + cheat + description:Start with 6 lives - both players + code:IEOSLYZA + cheat + description:Start with 9 lives - both players + code:AEOSLYZE + cheat + description:Start on mission 2 + code:PEXSYYAA + cheat + description:Start on mission 3 + code:ZEXSYYAA + cheat + description:Start on mission 4 + code:LEXSYYAA + cheat + description:Infinite time + code:0472:59 + cheat + description:Enemies have no health + code:007E:00+007F:00+0080:00 + +cartridge sha256:f17df83a3e714c9f839dcd428d31a0b8b3cdb5fe1a78f24f43f158cb379720c1 + name:Ring King (USA) + cheat + description:Infinite power points - 1P game + code:GZEIPVVK + cheat + description:Don't lose stamina from fighting + code:GXKZXYOP + cheat + description:Rounds are 30 seconds + code:LEOSLYTA + cheat + description:Rounds are 90 seconds + code:PEOSLYTE + cheat + description:Players can't hurt each other + code:GXOZOIOP + cheat + description:No health - P2 / CPU + code:0319:00 + cheat + description:Infinite power (ten's digit) - P1 + code:038D:09 + cheat + description:Infinite power (one's digit) - P1 + code:038E:09 + cheat + description:Infinite time (ten's digit) + code:06E4:09 + cheat + description:Infinite time (one's digit) + code:06E5:09 + cheat + description:Max punch (ten's digit) - P1 + code:038F:09 + cheat + description:Max punch (one's digit) - P1 + code:0390:09 + cheat + description:Max speed (ten's digit) - P1 + code:0391:09 + cheat + description:Max speed (one's digit) - P1 + code:0392:09 + cheat + description:Max stamina (ten's digit) - P1 + code:0393:09 + cheat + description:Max stamina (one's digit) - P1 + code:0394:09 + cheat + description:No hits (hundred's digit) - P1 + code:06EC:00 + cheat + description:No hits (ten's digit) - P1 + code:06ED:00 + cheat + description:No hits (one's digit) - P1 + code:06EE:00 + +cartridge sha256:54cdc8b6fab804339c44601663585c8e7a8b01ef35b49754eb13a767b57c7d07 + name:River City Ransom (USA) + cheat + description:Infinite lives + code:SUNEUKSO + cheat + description:Start with max stats + code:LVSNAVYA + cheat + description:Infinite money + code:SUKOOXSO+SUSPEXSO+SUSPNXSO + cheat + description:Coins worth max amount of money + code:LZXTXGLP + cheat + description:Infinite Stamina + code:OOELVUOU+OXVUVUOV + cheat + description:Infinite Will Power + code:SLOXNNSO + cheat + description:Max Punch + code:YYVOIUYU + cheat + description:Max Kick + code:YYVOTUYU + cheat + description:Max Weapon + code:YYVOYUYU + cheat + description:Max Throw + code:YYNPAUYU + cheat + description:Max Agility + code:YYNPPUYU + cheat + description:Max Defense + code:YYNPZUYU + cheat + description:Max Strength + code:YYNPLUYU + cheat + description:Max Will Power + code:YYNPGUYU + cheat + description:Max Stamina + code:NYNPTUYN + cheat + description:View the credits + code:ENVYZZEI + cheat + description:Start with double every attribute + code:TOSNAVYE + cheat + description:Start with 127 of all stats + code:YNSNAVYE + cheat + description:Start with 99 Stamina + code:LVNYIVYL + cheat + description:Start with double money - P1 + code:AGENAYAZ + cheat + description:Start with double money - P2 + code:AGOYYYAZ + cheat + description:Start with $100 extra - P1 + code:PAENIYAA + cheat + description:Start with $100 extra - P2 + code:PAONGYAA + +cartridge sha256:46361c5b4007e6ef855430934b5a205aa19c885857a7eb31072646753d06e321 + name:RoadBlasters (USA) + cheat + description:Infinite credits + code:SZEIGEVK + cheat + description:Double credits + code:GAVLUTZA + cheat + description:Extend lifetime of UZ Cannon + code:PEEAEIIE + cheat + description:Extend lifetime of Nitro Injector + code:NNSEOIEE + cheat + description:Reduce lifetime of Nitro Injector + code:AKSEOIEA + cheat + description:Infinite Cruise missiles + code:SXVEKSVK+ETOENSTP + cheat + description:Infinite UZ Cannon + code:ATNEEISZ+LZOENSTO + cheat + description:Infinite Nitro Injectors + code:AVSEKSVG+SAOENSTO+GXKEOIEY + cheat + description:Infinite Electro Shield + code:SZSEKVVK+PIOENSTP+VAXAESSE + cheat + description:Infinite Fuel + code:0085:CF + cheat + description:Infinite Reserve Fuel + code:0086:6D + cheat + description:Max speed + code:009A:FF + +cartridge sha256:46a38baf9067869e8ecdf227c3cd33f14df20998d0d27e645e47f6c57fd9703d + name:Road Runner (USA) (Unl) + cheat + description:Infinite lives + code:SZOVUUVK + cheat + description:Never lose seed + code:XVUGAOEK+XVXTSUEK + cheat + description:Start with 1 life + code:AAEVTGIA + cheat + description:Start with 12 lives + code:LAEVTGIE + cheat + description:Start with 18 lives + code:PPEVTGIA + cheat + description:Start on level 5 + code:IAOTLGPA + cheat + description:Start on level 10 + code:ZAOTLGPE + cheat + description:Start on level 15 + code:YAOTLGPE + cheat + description:Start on level 20 + code:GPOTLGPA + cheat + description:Start on level 25 + code:PPOTLGPE + cheat + description:Start on level 30 + code:TPOTLGPE + +cartridge sha256:687e4129be3b8e224a9748cba9687b8c10e5feb234a727bdf2dcb8d3c8c47097 + name:Robin Hood - Prince of Thieves (USA) (Rev A) + cheat + description:Infinite HP for Robin in main combat + code:VAXEOLSA + cheat + description:Infinite HP for Robin in dueling combat + code:EYXAOPAL + cheat + description:Infinite Arrows + code:AASPIZPA + cheat + description:Bandages give more HP back + code:GOXLLNAA + cheat + description:Food gives more HP back - Except the Leg of meat + code:AOULIUAE + cheat + description:Infinite Arrows (alt) + code:0179:FF + cheat + description:Max Exp points + code:0604:FF + cheat + description:Max Level + code:0176:FF + cheat + description:Max Attack + code:0170:FF+0171:FF + cheat + description:Max Agility + code:016E:FF+016F:FF + cheat + description:Max Defense + code:0172:FF + cheat + description:Max Gold + code:0177:FF + cheat + description:Load zero + code:016C:00 + +cartridge sha256:bb0ed60fd8e83b56f23de16018696817cf8030b4898db6abe9dfc343e646e753 + name:Robin Hood - Prince of Thieves (USA) + cheat + description:Infinite HP for Robin in main combat + code:VAXEOLSA + cheat + description:Infinite HP for Robin in dueling combat + code:EYXAOPAL + cheat + description:Infinite Arrows + code:AASPIZPA + cheat + description:Bandages give more HP back + code:GOXLLNAA + cheat + description:Food gives more HP back - Except the Leg of meat + code:AOULIUAE + cheat + description:Infinite Arrows (alt) + code:0179:FF + cheat + description:Max Exp points + code:0604:FF + cheat + description:Max Level + code:0176:FF + cheat + description:Max Attack + code:0170:FF+0171:FF + cheat + description:Max Agility + code:016E:FF+016F:FF + cheat + description:Max Defense + code:0172:FF + cheat + description:Max Gold + code:0177:FF + cheat + description:Load zero + code:016C:00 + +cartridge sha256:5431ed49f22ee8188871be088da433c26b1ddeac972ef4b8f89df4eacd5e42c2 + name:Robo Warrior (USA) + cheat + description:No damage from bomb blast + code:GZUNYXTK + cheat + description:No damage from monsters and no power drain + code:GZNNIXTK + cheat + description:Infinite Barrier after pick-up + code:XTXGKPVV + cheat + description:Infinite Mega Bombs after pick-up + code:SUXSNIVI + cheat + description:Infinite Super Bombs + code:SZKTYPVG + cheat + description:Walk through walls + code:EONGELAP + cheat + description:5 Super Bombs on pick-up + code:IAVTPSZA + cheat + description:20 Super Bombs on pick-up + code:GPVTPSZA + cheat + description:Set firing range to 5 + code:IANGAPPA + cheat + description:Set firing range to 10 + code:ZANGAPPE + cheat + description:Start with 5 of everything + code:IEVKLPAA + cheat + description:Start with 10 of everything + code:ZEVKLPAE + cheat + description:Start with defense level at 5 + code:IEVGIPPA + cheat + description:Start with defense level at 8 + code:AEVGIPPE + +cartridge sha256:100c394264b40c17f635a6356c884135558bf2aee1a7f60c9ce43441e48a06cb + name:Robocco Wars (Japan) + cheat + description:Start on level 5 + code:GLUZOAAE + +cartridge sha256:d04b445ac57cccb3a31a3bf83d002dc9a9765f15313e96f67be077b6114d2411 + name:RoboCop (USA) + cheat + description:Invincibility + code:LLNTTZIU+SLXUYTAX + cheat + description:Infinite time + code:SXKXYIVT + cheat + description:Infinite ammunition + code:SGOTKLIA + cheat + description:No damage from touching enemies + code:SZKVOTSA + cheat + description:No damage from enemy bullets + code:SZVVVYSA + cheat + description:Bosses die automatically + code:AEOXIXLL + cheat + description:Can't harm civilian at the end of level 1 + code:SOKZLNSU + cheat + description:Triple normal power on power food pick-up + code:PAOYNILE + cheat + description:Triple normal time on battery pick-up + code:PAXNEILE + cheat + description:Max time on battery pick-up + code:TPXNEILA + cheat + description:Full power on power food pick-up + code:TPOYNILA + cheat + description:Use with COP Code 2 to start with machine gun and Cobra gun + code:YAXSAPPE + cheat + description:Press Start to finish the level (may cause graphical glitches in later levels) + code:YAXIGXTE + cheat + description:Start on level 2 + code:PAESZPAA+SAESLPSP+TTESGPSA + cheat + description:Start on level 3 + code:ZAESZPAA+SAESLPSP+TTESGPSA + cheat + description:Start on level 4 + code:LAESZPAA+SAESLPSP+TTESGPSA + cheat + description:Start on level 5 + code:GAESZPAA+SAESLPSP+TTESGPSA + cheat + description:Start on level 6 + code:IAESZPAA+SAESLPSP+TTESGPSA + cheat + description:Infinite health + code:006E:00 + cheat + description:Infinite time (alt) + code:0082:00 + +cartridge sha256:8ed3cb0046caecbefdc6c6b3ad8dae013442136f6a65c1a21b54586b0275e615 + name:RoboCop 2 (USA) (Rev A) + cheat + description:Invincibility + code:ENVEUYEI + cheat + description:Infinite health + code:AVKTPNOP + cheat + description:Infinite lives + code:SINKIPVI + cheat + description:Infinite time + code:SGETGYVG+SKNVGTVG + cheat + description:No enemies + code:EINAXLEY + cheat + description:Each N (Nuke) is worth 10 + code:AAEVKALA + cheat + description:Infinite health (alt) + code:0054:09+0055:09 + cheat + description:Infinite lives (alt) + code:0058:04 + cheat + description:Infinite time (alt) + code:0091:FF + cheat + description:Infinite N + code:0052:09+0053:09 + +cartridge sha256:b65361b45eef137a57152dd8f64531c26e34d728e72800d1bdf8e4be9bff49e7 + name:RoboCop 2 (USA) + cheat + description:Invincibility + code:ENVEUYEI + cheat + description:Infinite lives + code:SINKIPVI + cheat + description:No enemies + code:EINAXLEY + cheat + description:Infinite health + code:0054:09+0055:09 + cheat + description:Infinite lives (alt) + code:0058:04 + cheat + description:Infinite time + code:0091:FF + cheat + description:Infinite N + code:0052:09+0053:09 + +cartridge sha256:a0f18e729a7ee6be9035e9691f4bac32c1b202afcb44100479a431055b15eee6 + name:RoboCop 3 (USA) + cheat + description:Infinite efficiency + code:OXONLPSV+POONGPXV + cheat + description:Infinite efficiency (alt) + code:OUXYPOSO + cheat + description:One hit kills + code:GNUNAEKN + cheat + description:Hit anywhere + code:AEENAEUT + cheat + description:Lots of repair icons + code:VVKGLATE + cheat + description:Start with 2x health + code:ZLVGIXPP + cheat + description:Start with 1/2 health + code:GAVGIXPO + cheat + description:Infinite P + code:06A4:09 + cheat + description:Have main weapon - regular + code:001C:00 + cheat + description:Have main weapon - Rapid + code:001C:01 + cheat + description:have main weapon - 3-Way + code:001C:02 + cheat + description:have secondary weapon - Missiles + code:001D:00 + cheat + description:Have secondary weapon - Homing Missiles + code:001D:01 + cheat + description:Have secondary weapon - Bang + code:001D:02 + +cartridge sha256:92b1bde12ac860a385416b92529c15d149db54e53a56bd2a82ab97f517e67f86 + name:RoboCop versus The Terminator (USA) (Proto) + cheat + description:Infinite lives + code:SZKIZKSE + cheat + description:Infinite health + code:SZEVGOSE + cheat + description:Infinite health (alt) + code:04EE:0A + +cartridge sha256:d0e5899cf6b756d697be9ad6700d1f612b1604496374da9606478d5cdbceebf1 + name:Robodemons (USA) (Unl) + cheat + description:Infinite health + code:051B:14 + +cartridge sha256:e1a3d949b9bf258b4d2c92104cedd7957a311f142dc2cb32eb92ce559837377f + name:Rocketeer, The (USA) + cheat + description:Infinite health + code:GZSSINSV + cheat + description:Have all weapons with infinite ammo + code:AAVLKIIA + cheat + description:1/2 normal bullets on pick-up + code:IAOZZXZA + cheat + description:2x normal bullets on pick-up + code:GPOZZXZA + cheat + description:3x normal bullets on pick-up + code:TPOZZXZE + cheat + description:1/2 silver bullets on pick-up + code:ZAEZGZGO + cheat + description:2x silver bullets on pick-up + code:AZEZGZGO + cheat + description:3x silver bullets on pick-up + code:GLEZGZGO + cheat + description:Start with 1/2 health + code:GESLNKAA + cheat + description:Start with 2x health + code:AOSLNKAA + cheat + description:Start with 3x health + code:AOSLNKAE + cheat + description:Infinite health (alt) + code:05C5:0A + cheat + description:Infinite Rocket power + code:05B0:27 + cheat + description:Have all weapons with infinite ammo (alt) + code:05BF:63 + +cartridge sha256:a0d60fe16b09d2018e32c277f8a297adc71acdd9e851591625b2d460e96266c8 + name:Rocket Ranger (USA) + cheat + description:Double amount of Lunarium in storage + code:ZEOGSYPA + cheat + description:Triple amount of Lunarium in storage + code:LEOGSYPA + cheat + description:Lunarium level in backpack at 99 + code:LVOKXNGL + cheat + description:Never lose Lunarium in backpack + code:SZSGPUSE + cheat + description:Half amount of Lunarium in storage + code:AEOGSYPA+ZUOKNYAA + +cartridge sha256:683c49e4ea3f4b179065deccecd3e4a86a4e355e13924872571e7b7c79205d0c + name:Rockin' Kats (USA) + cheat + description:Invincibility + code:EIXVATEY + cheat + description:Infinite health + code:SXKVZVSE + cheat + description:Infinite lives + code:SKOKOSVK + cheat + description:Can select any item (you will not be able to see it) + code:AEOEYZOI + cheat + description:Can always select channel 5 + code:AEXEELAP + cheat + description:Can always buy items + code:OXEEOYSX + cheat + description:Infinite health (alt) + code:0423:0A + cheat + description:Infinite lives (alt) + code:041F:09 + cheat + description:Have all items + code:0105:0F + cheat + description:Infinite high cash + code:0104:0E + cheat + description:Channels 1-4 completed + code:0102:FF + +cartridge sha256:2bd31df34f925d030ceceb944c1ac973ccf892358de75c35fd77d61372d23a3b + name:Rock 'n' Ball (USA) + cheat + description:Infinite balls + code:SLNXYEVS + +cartridge sha256:9fdbaa2877363948b466a6e3e11a1bce02d2a6490cb90808be4d788fe4630eba + name:Rod Land (Europe) + cheat + description:Infinite lives + code:SLOPOOTS + cheat + description:Infinite time in extra game + code:SXOTAGVG + cheat + description:Start with invincibility + code:ESVSELEY + cheat + description:Start on scene 31 + code:TOSKYIAE + +cartridge sha256:1a35607e218d68106367e7b87735aa9f10bf330c3a71f607a21de2d7fc763ef8 + name:Roger Clemens' MVP Baseball (USA) + cheat + description:Infinite balls (balls are not called) + code:OONIALAA + cheat + description:Infinite balls and strikes + code:SLNALPVY + cheat + description:Strikes are not called when batter doesn't swing + code:OOVSLLPA + cheat + description:Strikes are not called when batter swings + code:GANAAPZA + cheat + description:2 strikes and you're out + code:ZANEAPLA+ZEOUYPLA+ZEVKGPLA + cheat + description:1 strike and you're out + code:PANEAPLA+PEOUYPLA+PEVKGPLA + cheat + description:1 ball for a walk + code:PENKLPGA + cheat + description:2 balls for a walk + code:ZENKLPGA + cheat + description:3 balls for walk + code:LENKLPGA + +cartridge sha256:942c802c34627c969c49dae94fb8b48c7b1e873a65803caad559324e2a54b4c8 + name:Rollerblade Racer (USA) + cheat + description:Infinite lives + code:OXVSAYVK + cheat + description:1 fall and you're dead + code:PEVIPYGA + cheat + description:6 falls and you're dead + code:TEVIPYGA + cheat + description:8 falls and you're dead + code:AEVIPYGE + cheat + description:Start on the City Street + code:ZAUKNZAA + cheat + description:Start with 1 life + code:PAUKUZLA + cheat + description:Start with 6 lives + code:TAUKUZLA + cheat + description:Start with 9 lives + code:PAUKUZLE + cheat + description:Start on Hit the Beach + code:GAUKNZAA + cheat + description:Start on Panic Park + code:TAUKNZAA + +cartridge sha256:7ddc56bf2b8d8f3f980837bbc48284fd7241e111a9f51599c6e358518d3469dc + name:Rollergames (USA) + cheat + description:Infinite lives + code:SXENAYVG + cheat + description:Infinite special moves + code:GXVPAZVG + cheat + description:9 special moves + code:PASAZALE + cheat + description:6 special moves + code:TASAZALA + cheat + description:Mega-jump + code:PAKAAGAE + cheat + description:Infinite time + code:GZOENISA + cheat + description:Faster timer + code:YPOAUSYU + cheat + description:Slower timer + code:YYOAUSYU + cheat + description:Start with less energy + code:TASATEGA + cheat + description:Start with more energy + code:APSATEGE + cheat + description:Infinite health + code:04CE:0C + cheat + description:Infinite lives (alt) + code:0082:10 + cheat + description:Infinite time (alt) + code:0032:03 + +cartridge sha256:e91bb35c7a95388c06f978c6cee73b1169fa7ec66b1808de5f504dcfefafbaab + name:Rolling Thunder (USA) (Unl) + cheat + description:Infinite health + code:SZSZGVSE + cheat + description:Infinite lives + code:SZNTULVG+SZSTULVG + cheat + description:Infinite time + code:SZEVYZVG + cheat + description:Hit anywhere + code:AKSZANEL+ATUILYEI+OXSZPNEX + cheat + description:200 Machine Gun bullets on pick-up + code:EKSTEAGV + cheat + description:300 Machine Gun bullets and 300 bullets on pick-up + code:SUOZPXVS + cheat + description:Gain fewer bullets on pick-up + code:GOKVNAZL + cheat + description:Self-replenishing bullets + code:ZLVITYPA + cheat + description:Start with 200 bullets + code:EKXVZAZU + cheat + description:Start with 200 bullets on each new life + code:EGKVKLZU + cheat + description:Start with loads of ammunition + code:LEXTZAAA+LAKTKLAA + cheat + description:Start with 1 life + code:PEOVLALA + cheat + description:Start with 6 lives + code:TEOVLALA + cheat + description:Start with 9 lives + code:PEOVLALE + cheat + description:Start with 1 life after continue + code:PASPYZLA + cheat + description:Start with 6 lives after continue + code:TASPYZLA + cheat + description:Start with 9 lives after continue + code:PASPYZLE + cheat + description:Start with increased life meter + code:AEEVSAZE + cheat + description:Start on story 1 area 02 + code:PAVEUYAA+ALVESYOL + cheat + description:Start on story 1 area 03 + code:ZAVEUYAA+ALVESYOL + cheat + description:Start on story 1 area 04 + code:LAVEUYAA+ALVESYOL + cheat + description:Start on story 1 area 05 + code:GAVEUYAA+ALVESYOL + cheat + description:Start on story 2 area 06 + code:IAVEUYAA+ALVESYOL + cheat + description:Start on story 2 area 07 + code:TAVEUYAA+ALVESYOL + cheat + description:Start on story 2 area 08 + code:YAVEUYAA+ALVESYOL + cheat + description:Start on story 2 area 09 + code:AAVEUYAE+ALVESYOL + cheat + description:Start on story 2 area 10 + code:PAVEUYAE+ALVESYOL + cheat + description:Start on story 3 area 01 + code:PEKEXIAA + cheat + description:Infinite health (not versus bullets) + code:0089:02 + cheat + description:Infinite bullets + code:00A0:32 + cheat + description:Infinite time (alt) + code:059B:09+059C:09+059D:09 + cheat + description:Infinite lives (alt) + code:05BC:09 + +cartridge sha256:644291444ae16a02a128c613fa4e10559a45e4740e3614fb57b73b8c736bdbef + name:Roundball - 2-on-2 Challenge (USA) + cheat + description:Start with 1 ball - all players + code:PANGIPLA + cheat + description:Infinite balls - all players + code:SZKGPXVS + +cartridge sha256:fade44d9c76173afe098fbe02d859735e06b2c509fd80da08b1cc85bfc01a556 + name:Rush'n Attack (USA) + cheat + description:Invincibility (star effect) + code:KAXAGYIA+KAXEYYIA + cheat + description:Invincibility (except vs bullets) + code:AIUAPPEI + cheat + description:Infinite POW + code:AENASIPA + cheat + description:Always have 255 POW + code:SAVSNNSX + cheat + description:Hit anywhere + code:ASKELZEL+GGXAAIEU+LUKEGXLV+SAXAZSOL+YLXAPSGI + cheat + description:Infinite lives - P1 + code:GZOEAYVG + cheat + description:Infinite lives - P2 + code:GZOEIYVG + cheat + description:Multi-jump + code:NXSAGNUE+OAUXENNN+OYUXXNNY+PZUZXNNN+SZUZENNY+UAUXUNNN+AAUZUNNN+ATUXKNNY+AUSALYOY+AZUXONNY+AZUZVNNY+EYUZKNNY+EYUZNNNN+GAUZONNY+LAUZSNNY + cheat + description:Start with 1 life - P1 + code:PAVSTPIA + cheat + description:Start with 1 life - P2 + code:PANITPIA + cheat + description:Start with 10 lives - P1 + code:ZAVSTPIE + cheat + description:Start with 10 lives - P2 + code:ZANITPIE + cheat + description:Start on stage 2 (disable when stage begins) + code:0020:01 + cheat + description:Start on stage 3 (disable when stage begins) + code:0020:02 + cheat + description:Start on stage 4 (disable when stage begins) + code:0020:03 + cheat + description:Start on stage 5 (disable when stage begins) + code:0020:04 + cheat + description:Start on stage 6 (disable when stage begins) + code:0020:05 + +cartridge sha256:9bef1813dbcfa003b3b1978a66a8da3ff59c93dd74f1332801515aa4b633c51e + name:Rygar (USA) (Rev A) + cheat + description:Invincibility + code:ATEZOTKA + cheat + description:Infinite health + code:SXUZXTSA + cheat + description:Infinite Mind points + code:AAZEZZ + cheat + description:Have first three items after pressing B once + code:IEKZPLIZ + cheat + description:Hit anywhere + code:ALOXKIEL+ALUZUIEL+ALXZXIEL+EYUXOIEL + cheat + description:One hit kills + code:POXXVYSA + cheat + description:Pits aren't fatal (side view) + code:AAOZLEAA + cheat + description:Walk on water (side view) + code:ASSOSGEI + cheat + description:Enemies always drop a health potion + code:EPSLYIEL+LANUYIYA+OZNUTSPX + cheat + description:Enemies always drop a Mind unit + code:EPSLYIEL+GANUYIYA+OZNUTSPX + cheat + description:Don't be pushed after being hit + code:AVOXVTIA + cheat + description:Jump higher + code:LAVOLTGA + cheat + description:Multi-jump + code:ZZKXKIAX+APKXSIEY+ATOZTEOZ+AZKXXIGE+GASZOIIA+IZKXUSPZ+SAKXNSSX+SZKXOIXP+XGSZEIZL+XTKXESSX + cheat + description:Grappling Hook continues until it finds something + code:SZUPOOVK+SZXXGZSA + cheat + description:Start with 12 units of health + code:AOUGPATE+AOUGZATE + cheat + description:Infinite Attack & Assail + code:00CD:FF + cheat + description:Have all equipment + code:00C0:FF+00C1:FF + cheat + description:Always have Power Up + code:00C0:10 + cheat + description:Lots of Tone + code:00C7:FF + cheat + description:Lots of Last + code:00C8:FF + +cartridge sha256:e3a7e0b559b18e8e2fd6f2bf0fdadbf9094be63a01bac50e5505413e1d7697a4 + name:Rygar (USA) + cheat + description:Invincibility + code:ATEZOTKA + cheat + description:Infinite health + code:SXUZXTSA + cheat + description:Infinite Mind points + code:AAZEZZ + cheat + description:Have first three items after pressing B once + code:IEKZPLIZ + cheat + description:Hit anywhere + code:ALOXKIEL+ALUZUIEL+ALXZXIEL+EYUXOIEL + cheat + description:One hit kills + code:POXXVYSA + cheat + description:Pits aren't fatal (side view) + code:AAOZLEAA + cheat + description:Walk on water (side view) + code:ASSOSGEI + cheat + description:Enemies always drop a health potion + code:EPSLYIEL+LANUYIYA+OZNUTSPX + cheat + description:Enemies always drop a Mind unit + code:EPSLYIEL+GANUYIYA+OZNUTSPX + cheat + description:Don't be pushed after being hit + code:AVOXVTIA + cheat + description:Jump higher + code:LAVOLTGA + cheat + description:Multi-jump + code:ZZKXKIAX+APKXSIEY+ATOZTEOZ+AZKXXIGE+GASZOIIA+IZKXUSPZ+SAKXNSSX+SZKXOIXP+XGSZEIZL+XTKXESSX + cheat + description:Grappling Hook continues until it finds something + code:SZUPOOVK+SZXXGZSA + cheat + description:Start with 12 units of health + code:AOUGPATE+AOUGZATE + cheat + description:Infinite Attack & Assail + code:00CD:FF + cheat + description:Have all equipment + code:00C0:FF+00C1:FF + cheat + description:Always have Power Up + code:00C0:10 + cheat + description:Lots of Tone + code:00C7:FF + cheat + description:Lots of Last + code:00C8:FF + +cartridge sha256:9579a2b5a4083420d9bc3788cae39b068c0752ac68e7b7dc1be1d748cb2b7133 + name:S.C.A.T. - Special Cybernetic Attack Team (USA) + cheat + description:Infinite health + code:AANSUGPA + cheat + description:More energy on pick-up + code:ZANVNGLE + cheat + description:Don't lose speed-ups when hit + code:AEESVKAA + cheat + description:Longer immunity + code:NNEIKGAK + cheat + description:Shorter immunity + code:APKSEGAG + cheat + description:Faster maximum speed-up + code:PAEIKTTE+NYEISVXY + cheat + description:Faster normal speed-up + code:TENIKIGA+XNNISSKN + cheat + description:Start with more health + code:ZUXGKTTA + cheat + description:Infinite health - P1 + code:001C:09 + +cartridge sha256:4d6e58f232dc1a592583889f858eac230b8e8921e715276e580073ab2dd18546 + name:Saint Seiya - Ougon Densetsu (Japan) + cheat + description:Fly + code:008B:C8 + cheat + description:Infinite health (damage) + code:0689:40+068A:40 + cheat + description:Infinite Cosmos + code:0685:40+0686:40 + +cartridge sha256:3ad57c83631233530bb421b14236fdba70d18f70ce46a8410ec7c2f156b559ab + name:Saint Seiya - Ougon Densetsu Kanketsu Hen (Japan) + cheat + description:Start with infinite health (life) + code:0063:40+0040:40 + cheat + description:Start with infinite Cosmos + code:0059:40+005A:40 + cheat + description:Infinite Seven Sense + code:05AA:40+05AB:40 + +cartridge sha256:9e8eb95ec2917597650131db254067ff59bc3669417563165518927357812c73 + name:Salamander (Japan) + cheat + description:Invincibility + code:0074:20 + cheat + description:Infinite lives + code:0034:09 + cheat + description:Option always on Speed + code:0068:01 + cheat + description:Option always on Missile + code:0068:02 + cheat + description:Option always on Ripple + code:0068:03 + cheat + description:Option always on Laser + code:0068:04 + cheat + description:Option always on Option + code:0068:05 + cheat + description:Option always on Force + code:0068:06 + cheat + description:Start with and keep Missiles + code:0076:02 + +cartridge sha256:7ee2b81ef8ab8e9c009ecd42ed5fa5a34e3e48896c3567fac1ca7520c1de870e + name:Secret Scout in the Temple of Demise (USA) (Unl) + cheat + description:Infinite lives + code:OUXTYKOO + cheat + description:View the ending + code:ASVIYIAE + +cartridge sha256:c33611fb6b3ced6cf0ab4cd8e6795be44dc164efd453a69bad404c95837ec420 + name:Secret Ties (USA) (Proto) + cheat + description:Invincibility + code:SKNKUEKK + cheat + description:Infinite health + code:SZVGEPSA + cheat + description:Infinite lives + code:SKVNKZVG + cheat + description:Infinite Gun + code:SZVGLYVG + cheat + description:Infinite Shield + code:SZOKSPVG + cheat + description:Super-jump + code:YONGAIIE+AXVGYGTA + cheat + description:Allways able to use Gun + code:AIXTXYEI + cheat + description:Allways able to use Shield + code:AIOVKYEI + cheat + description:Start with 99 lives + code:GVVTAPLA + cheat + description:Start with double health + code:ZENVPPIE + cheat + description:Invincibility (alt) + code:03CC:00 + cheat + description:Infinite health (alt) + code:0009:07 + cheat + description:Infinite Gun (alt) + code:000A:63 + cheat + description:Infinite Shield (alt) + code:000B:63 + +cartridge sha256:a98e48a26c104375ae45e5c1bc4eb7b2a446e0e9ffa7ed3923c3cf5eec9a549a + name:Section-Z (USA) + cheat + description:Infinite lives + code:SXOPUIVG + cheat + description:Energy tube gives full energy boost + code:ZAUNUZAE + cheat + description:Autofiring capability + code:NNNOUTSY + cheat + description:Autofire without having to hold the button down + code:NNNOUTSN + cheat + description:Press Start to complete current mission (do not use past sector 40) + code:AEOIILYA+OXOIPUPK+PUOIGUSN+ZEOIZLPA + cheat + description:Start a new game to view the ending + code:LAEAZYPA + cheat + description:Start with 1 life + code:PEXSIZLA + cheat + description:Start with 6 lives + code:TEXSIZLA + cheat + description:Start with 9 lives + code:PEXSIZLE + cheat + description:Infinite energy + code:005B:09+005A:09 + +cartridge sha256:afc7ce7262cc03039481b9338a94db35a1f4e9e54ee3dd34f979a7921d4a5e29 + name:Seicross (USA) + cheat + description:Infinite lives + code:SUTEEX + cheat + description:Slow motion + code:PEGEUG + cheat + description:Start with 1 life + code:PELAGA + cheat + description:Start with 6 lives + code:TELAGA + cheat + description:Start with 9 lives + code:PELAGE + cheat + description:Infinite health - P1 + code:0078:BD + cheat + description:Infinite lives - P1 + code:0615:99 + +cartridge sha256:2395a8a102bfc403bb2c474f77035483792ec15bce37695c9f2d96d62bc8fe10 + name:Shadow of the Ninja (USA) + cheat + description:Infinite continues + code:SZSNIIVG + cheat + description:9 continues + code:PEEVZAIE + cheat + description:1 continue + code:PEEVZAIA + cheat + description:Don't lose energy from enemy attacks + code:GZVXSKSO + cheat + description:Don't lose energy from falling + code:AAVPGIGA + cheat + description:Maximum energy gained from potion + code:APOEOGGA + cheat + description:Less energy gained from potion + code:PAOEOGGA + cheat + description:40 Throwing Stars on pick-up + code:AZUAOGGO + cheat + description:20 Bombs on pick-up + code:GPKAVGIA + +cartridge sha256:fbc69cdaf7c1419906d8cf2a74ab70d11520b2f3877387b8fd70460b6e6dd542 + name:Shadowgate (USA) + cheat + description:Infinite torches + code:XVESZNVK + +cartridge sha256:c3f361c4a1441101d6a3eb42f5776073c712198e7ed45d6ab5350816ea15aee4 + name:Shatterhand (USA) + cheat + description:Hit anywhere + code:AIOEPIEL+GXNALGEL+GXNEYGEP+GXSELGEP + cheat + description:Power-ups don't use up gold + code:AAKKSPPA + cheat + description:Big coins worth double + code:AXXAZZGO + cheat + description:Big coins worth half + code:ZEXAZZGO + cheat + description:Small coins worth triple + code:YEEAYZIE + cheat + description:Start with less health + code:GENNZSAA + cheat + description:Start with 1 life + code:AEVNAIZA + cheat + description:Start with 6 lives + code:IEVNAIZA + cheat + description:Start with 9 lives + code:AEVNAIZE + cheat + description:Invincibility - Robot Suit + code:05C2:7E + cheat + description:Powered up - Red Vest + code:05C8:03 + +cartridge sha256:2b85e6411f42597ceab01f5eb3ba9fd362b07340c0665fd533a3c3d5f2b1e972 + name:Shinobi (USA) (Unl) + cheat + description:Infinite life + code:SZNIPNVK + cheat + description:Infinite lives + code:SZEOLXVK + cheat + description:Turbo running + code:IEKONILA + cheat + description:Start with double life + code:GAXOTATE+GENPGPTE + cheat + description:Start with 1 life + code:AANOLAZA + cheat + description:Start with 6 lives + code:IANOLAZA + cheat + description:Start with 9 lives + code:AANOLAZE + +cartridge sha256:0df6a7a16af6cffc9a54a3de1ab14225f2ce5d5a269a691f16a22d3fd42b942b + name:Shinsenden (Japan) + cheat + description:No random battles + code:ATXUPAAL + +cartridge sha256:6c705f7980a08b7a7a5d74ddfd175155492168248f65c7d9e3cef1a6b14a2886 + name:Shooting Range (USA) + cheat + description:Double bonus time for hourglasses + code:GTEPOAZL + cheat + description:Half bonus time for hourglasses + code:PPEPOAZU + cheat + description:More time for level 1 + code:GEKAILLA+GAEETTLA + cheat + description:Less time for level 1 + code:ZEKAILLA+ZAEETTLA + cheat + description:More time for level 2 + code:GAOAATZA+AAOAPTZL + cheat + description:Less time for level 2 + code:PAOAATZA+ZLOAPTZL + cheat + description:More time for level 3 + code:GAOAZTZA+ZLOALTAA + cheat + description:Less time for level 3 + code:PAOAZTZA+AAOALTAA + cheat + description:Double usual shots per round + code:ASUAIVAZ+ASXOVXAZ+SXVONOOU + cheat + description:Triple usual shots per round + code:ASUAIVAZ+ANXOVXAX+SXVONOOU + cheat + description:Quadruple usual shots per round + code:ASUAIVAZ+EXXOVXAZ+SXVONOOU + +cartridge sha256:37a5cfb1aacd9bb42746f20923441b5f613971d4dc99de68c216b10a8d7bcbfc + name:Silent Service (USA) + cheat + description:Infinite deck gun shells + code:SZXVOPVG + cheat + description:Infinite bow torpedoes + code:SZSVUPVG + cheat + description:Infinite aft torpedoes + code:SXETUPVG + cheat + description:Start with 50 deck gun shells + code:ZLEPOIAI + cheat + description:Start with 99 deck gun shells + code:LTEPOIAI + +cartridge sha256:28f0444e178830edf654eb72e54c7920296156524295b5a4f4418fc4d33f42fd + name:Silk Worm (USA) + cheat + description:Infinite lives using helicopter + code:SXSVIZVG + cheat + description:Infinite lives using jeep + code:SZVVGTVG + cheat + description:Keep firepower and speed-ups for helicopter + code:SZETZLSA + cheat + description:Keep firepower and speed-ups for jeep + code:SXOTPTSA + cheat + description:Restrict movement area for helicopter + code:EEOVYUEI + cheat + description:Restrict movement area for jeep + code:EEOVGYEV + cheat + description:1 life using helicopter after continue + code:PEEGSPLA + cheat + description:6 lives using helicopter after continue + code:TEEGSPLA + cheat + description:9 lives using helicopter after continue + code:PEEGSPLE + cheat + description:1 life using jeep after continue + code:PEOKNPLA + cheat + description:6 lives using jeep after continue + code:TEOKNPLA + cheat + description:9 lives using jeep after continue + code:PEOKNPLE + cheat + description:Start with 1 life + code:PAXGXALA + cheat + description:Start with 6 lives + code:TAXGXALA + cheat + description:Start with 9 lives + code:PAXGXALE + cheat + description:Start at stage 2 + code:PAXKEAAA + cheat + description:Start at stage 3 + code:ZAXKEAAA + cheat + description:Start at stage 4 + code:LAXKEAAA + cheat + description:Start at stage 5 + code:GAXKEAAA + cheat + description:Start at stage 6 + code:IAXKEAAA + cheat + description:Start at stage 7 + code:TAXKEAAA + +cartridge sha256:718dce0398dba4f8968969fe3e078f55ea0a5b3cff91895fd9ac0225fe4c437e + name:Silver Surfer (USA) + cheat + description:Infinite lives - both players + code:SXEKSNVK + cheat + description:Infinite Smart Bombs - both players + code:NYVTLVGO + cheat + description:Keep cosmic weapons after losing a life + code:GXEITSSE + cheat + description:Keep Orbs after losing a life + code:GXEILSSE+GXKIOUSE + cheat + description:Have 5 Smart Bombs on a new life + code:IEESIIPA + cheat + description:Start with 1 life - P1 + code:PAOILIIA + cheat + description:Start with 1 life - P2 + code:PAKSGIIA + cheat + description:Start with 5 Smart Bombs - P1 + code:IAXSGIPA + cheat + description:Start with 5 Smart Bombs - P2 + code:IAVIIIPA + cheat + description:Infinite lives + code:05E6:09 + +cartridge sha256:ce1fd1fcf89d2d6334cc3d96101c7b995ff4959257ed04df92f0afad711d08da + name:Simpsons, The - Bartman Meets Radioactive Man (USA) + cheat + description:Invincibility + code:SXXNPLAX + cheat + description:Infinite health + code:AAUY-PYGA + cheat + description:Infinite health (alt) + code:SZUYZNSE + cheat + description:Infinite Eyes on pick-up + code:SKNNVEVK + cheat + description:Infinite Eyes on pick-up (alt) + code:SXNNVEVK + cheat + description:Infinite Cold on pick-up + code:AAKYKPPA + cheat + description:Infinite lives + code:OLVYAZOP + cheat + description:Infinite credits + code:SZENNEVK + cheat + description:Eyes worth more on pick-up + code:ASVTOZAZ + cheat + description:Cold worth more on pick-up + code:AXUVSZIA + cheat + description:Start with 2 lives and 2 credits + code:PAVAYYLA + cheat + description:Start with 6 lives and 6 credits + code:IAVAYYLA + cheat + description:Start with 8 lives and 8 credits + code:YAVAYYLA + cheat + description:Start with 10 lives and 10 credits + code:PAVAYYLE + cheat + description:Start in chapter 1 level 2 + code:ZAUZAYAA + cheat + description:Start in chapter 1 level 3 + code:IAUZAYAA + cheat + description:Infinite health (alt 2) + code:0787:20 + cheat + description:Infinite Eyes on pick-up (alt 2) + code:0788:99 + cheat + description:Infinite Cold on pick-up (alt) + code:789:99 + +cartridge sha256:7e8a3accbd57c9fea4f86fb9f99d9adc579bacec52fc68d547125067f8e50816 + name:Simpsons, The - Bart vs. the Space Mutants (USA) (Rev A) + cheat + description:Infinite time + code:XVOYLXXK + cheat + description:Slow down time + code:AYNNIXGU + cheat + description:Speed up time + code:AZNNIXGL + cheat + description:Gain 2 coins for every 1 collected + code:PAENGYAA + cheat + description:Only 10 coins needed to get an extra life + code:PAOYZNTE + cheat + description:Buy items for free + code:GXOXIXVK+GXXLIEVK + cheat + description:Super-jump + code:IPUYVUGA + cheat + description:Invincibility (blinking) + code:04BD:FF + cheat + description:Infinite health + code:04B2:01 + cheat + description:Infinite time (alt) + code:066C:09 + +cartridge sha256:346fd8061a0b09c057855536012b146256bfbe386e304ef950ad93603048933c + name:Simpsons, The - Bart vs. the Space Mutants (USA) + cheat + description:Invincibility + code:ESOINPEY + cheat + description:Infinite health + code:SZOTESVK + cheat + description:Infinite time + code:XVONYXXK + cheat + description:Slow down time + code:ANENPXGU + cheat + description:Speed up time + code:AXENPXGL + cheat + description:Gain 2 coins for every 1 collected + code:PAONAYAA + cheat + description:Only 10 coins needed to get an extra life + code:PAONTNTE + cheat + description:Buy items for free + code:GXXZZOVK+GXXULEVK + cheat + description:Get all items by selecting them (be sure to get the Paint Can in level 1 and Gun in the Museum) + code:SPKTLESU + cheat + description:Super-jump + code:IPKYXUGA + cheat + description:Invincibility (blinking) + code:04BD:FF + cheat + description:Infinite health (alt) + code:04B2:01 + cheat + description:Infinite time (alt) + code:066C:09 + +cartridge sha256:678565338a9efa2d9d4bd399b314b62864d486a4e9f4c314bf11ae5a240cdab8 + name:Simpsons, The - Bart vs. the World (USA) + cheat + description:Invincibility + code:ZOXVGLIE + cheat + description:Infinite health + code:SZVVEKVK + cheat + description:Infinite lives + code:SZONIPST + cheat + description:Infinite Firecracker Balls + code:OLUNPPOP + cheat + description:Infinite tries for the card match game + code:SZNZPEVK + cheat + description:Bart flies + code:KLYUKA + cheat + description:Lose lives more easily + code:EISVNGEY + cheat + description:Start with 99 Firecracker Balls + code:PAEZPAAE + cheat + description:Start with 9 lives + code:PAXXVGLE + cheat + description:Infinite health (alt) + code:06BC:05 + cheat + description:Infinite lives (alt) + code:06C1:09 + cheat + description:Infinite Firecracker Balls (alt) + code:06BF:09 + +cartridge sha256:fe4043430276177b739137ee7ed8e6cb75e751732a3f796ce03708d3ef1755e8 + name:Skate or Die (USA) + cheat + description:Snowball Blast - More snowballs picked up + code:ZENXTTPA + cheat + description:Snowball Blast - Start with more time + code:OOEPVAAV + cheat + description:Snowball Blast - Start with less time + code:AKEPVAAT + cheat + description:Snowball Blast - More time gained + code:IOKXITAP + cheat + description:Snowball Blast - Less time gained + code:IEKXITAP + cheat + description:Snowball Blast - Start with more ammo + code:GAUPVAZA + cheat + description:Snowball Blast - Start with less ammo + code:PAUPVAZA + cheat + description:Acro Aerials - More jumps allowed + code:IAVVNILA+IESTEYLA + +cartridge sha256:3626bb5ce3035b39d70ed5f2941b69801c1a95629609f1ebd90a5a6a9e16794f + name:Skate or Die 2 - The Search for Double Trouble (USA) + cheat + description:Adventure Game - Infinite health + code:SXUXZPVG + cheat + description:Adventure Game - Infinite Paint Clips + code:SXVPTVVK + cheat + description:Adventure Game - Infinite Eggs + code:AANPZPPA+AAXOZLPA + cheat + description:Adventure Game - Infinite M-80's + code:AAVPTLPA+AEEOAPPA + cheat + description:Adventure Game - Skate at any speed + code:AEESAAPG+AAKATAPG + cheat + description:Stunt Ramp - Only 1 skateboard + code:PAUYLLLA + cheat + description:Stunt Ramp - 6 skateboards + code:TAUYLLLA + cheat + description:Stunt Ramp - 9 skateboards + code:PAUYLLLE + cheat + description:Stunt Ramp - More time + code:TAONILLA + cheat + description:Stunt Ramp - Less time + code:ZAONILLA + cheat + description:Stunt Ramp - Infinite time + code:SZUAKZVG + cheat + description:Stunt Ramp - Super speed + code:TEKOKZIA + cheat + description:Stunt Ramp - Infinite skateboards + code:SXKPVYVG+SXUZGAVG + +cartridge sha256:a29461c583ec03909c1dbc4e7d783de0aaf2f391ae8329b3d8bf06e06cfdd2fa + name:Ski or Die (USA) + cheat + description:Snowball Blast - More snowballs picked up + code:ZENXTTPA + cheat + description:Snowball Blast - Start with more time + code:OOEPVAAV + cheat + description:Snowball Blast - Start with less time + code:AKEPVAAT + cheat + description:Snowball Blast - More time gained + code:IOKXITAP + cheat + description:Snowball Blast - Less time gained + code:IEKXITAP + cheat + description:Snowball Blast - Start with more ammo + code:GAUPVAZA + cheat + description:Snowball Blast - Start with less ammo + code:PAUPVAZA + cheat + description:Acro Aerials - More jumps allowed + code:IESTEYLA+IAVVNILA + +cartridge sha256:06fddd300a6d1cbe1be92e851e3d5d2defcc7e682903b569bc9fe71a26addd74 + name:Skull & Crossbones (USA) (Unl) + cheat + description:Infinite continues + code:SZNOTNVK + cheat + description:Infinite weapons + code:SUOEIVVS + cheat + description:Infinite time + code:SZONGXVK + cheat + description:Faster timer + code:AZONAXGL + cheat + description:Slower timer + code:AYONAXGL + cheat + description:Half energy for Red Dog and One Eye + code:POVPLYZU+POEPZYZU + cheat + description:Double energy for Red Dog and One Eye + code:LVVPLYZL+POEPZYZU + cheat + description:Better super-jump + code:EUVEYNEK+EUVAGNEK + cheat + description:1 continue + code:PEXPTYIA + cheat + description:9 continues + code:PEXPTYIE + +cartridge sha256:51958d12a19e7c573fab26b85fe81d57330ff6668d630c6bc95c7c563c441e93 + name:Sky Kid (USA) + cheat + description:Infinite lives + code:SXEKGZVI + cheat + description:P1 has more lives than P2 + code:VANNVZSA + cheat + description:Shoot more bullets + code:AAOKIZPA + cheat + description:Start with 1 life - both players + code:PANYNZLA + cheat + description:Start with 6 lives - both players + code:TANYNZLA + cheat + description:Start with 9 lives - both players + code:PANYNZLE + cheat + description:Start on level 5 + code:IAVNNZPA+GAVNUZAA + cheat + description:Start on level 10 + code:ZAVNNZPE+PAVNUZAE + cheat + description:Start on level 15 + code:APVNNZPA+YAVNUZAE + cheat + description:Start on level 20 + code:GPVNNZPA+LPVNUZAA + cheat + description:Invincibility - P1 + code:00BB:00 + cheat + description:Invincibility - P2 + code:00CB:00 + +cartridge sha256:f845ee19cbe21f5b463073f3716659f9c82ef6342a20879165ed21f219f6653b + name:Sky Shark (USA) (Rev 0A) + cheat + description:Infinite lives + code:OZNEAAVS + cheat + description:Infinite Bombs + code:GXUEALVI + cheat + description:Infinite credits + code:GZNEIOVS + cheat + description:Autofire + code:AAEELOGI + cheat + description:Double Bombs + code:TAVPSTLA + cheat + description:Double credits + code:TAUAYALA + cheat + description:1 life after continue - both players + code:AANEZPGA + cheat + description:9 lives after continue - both players + code:AANEZPGE + cheat + description:Start with maximum firepower + code:EZXAPPKZ+TAXAZOIL + cheat + description:Start with 1 life - P1 + code:GZXATEOZ + cheat + description:Start with 1 life - P2 + code:AAUALAGA + cheat + description:Start with 9 lives - P1 + code:TAXEZAXZ+PZXELENY + cheat + description:Start with 9 lives - P2 + code:AAUALAGE + +cartridge sha256:f7f6d714c7758f679db8f0c7869ef19353fdcc49c267494bb41bfefda0f152d6 + name:Slalom (USA) + cheat + description:Ski super fast + code:PAOULZAA + cheat + description:No track obstacles + code:AAEPLIPA + cheat + description:Timer at 5 minutes for all tracks + code:XZXPATVZ+PAXPPVPN + +cartridge sha256:6dde1137253e7e41972dd04e09dc736efee82cc7f41f8deac8d0dcb111301616 + name:Smash T.V. (USA) + cheat + description:Infinite lives + code:UIVYGXVS + cheat + description:Touch and kill most enemies + code:EAOZPZEY + cheat + description:Infinite Grenades + code:OXXUUYVS + cheat + description:Get a lot more Grenades + code:OPNXVTTE + +cartridge sha256:8df9c1a7a3806873db908604bb99749673241ccd58e1b32a6d7bf2fafc97d9d4 + name:Smurfs, The (Europe) (En,Fr,De,Es) + cheat + description:Invincibility + code:EIEAELEY+ESNXPLEY + cheat + description:Infinite health + code:SXKPLVVK + cheat + description:Infinite lives + code:SXOLXUSE + cheat + description:Infinite time + code:SUKPSOSO + +cartridge sha256:c85ed147e6da0da5ef02c930cc52621ae38d66971a332d168bf31126a3a740ce + name:Snake's Revenge (USA) + cheat + description:Invincibility + code:SZEVEPSA + cheat + description:Infinite health + code:SXKVKASA + cheat + description:Infinite ammo for all weapons + code:XTNTZVEE + cheat + description:Infinite Beretta ammo + code:SZEEOUSE + cheat + description:Infinite Shotgun ammo + code:SXOASKSE + cheat + description:Infinite Grenades + code:SZKAKKSE + cheat + description:Infinite Missiles + code:SXVEOKSE + cheat + description:Reduce your injuries by up to 50% + code:AEUVOAYA + cheat + description:Play with less health + code:XVUYTUZE+XTKZXKZE + cheat + description:Infinite time for Metal Gear battle + code:SXSZTEVK + cheat + description:One hit defeats Metal Gear + code:ESXALLEY + cheat + description:Start a new game to view the ending + code:PPUGASTA + cheat + description:Start with half bullets for Beretta M92 + code:AXXVGYAG + cheat + description:Start with double bullets for Beretta M92 + code:EEXVGYAG + cheat + description:Start with Machine Gun instead of Beretta + code:ZEOVAYPA+XKXVTYEG + cheat + description:Start with Shotgun instead of Beretta + code:GEOVAYPA+KKXVTYEG + cheat + description:Start with Grenades instead of Beretta + code:AXOVAYPA+VKXVTYEG + cheat + description:Start with Missiles instead of Beretta + code:EEOVAYPA+EKXVTYEK + +cartridge sha256:98691aea357072f901095e47db056a01887083fd81710d425b9171db1cd1ad1b + name:Snake Rattle n Roll (USA) + cheat + description:Infinite lives - both players + code:SLOUSVVS + cheat + description:Infinite time + code:SXEYOZVG + cheat + description:Faster timer + code:AGNNVXTT + cheat + description:Slower timer + code:EPNNVXTT + cheat + description:Super-jump + code:ZAXOSGPA + cheat + description:Mega-jump + code:LAXOSGPA + cheat + description:1 life - both players + code:AEXAYZZA + cheat + description:6 lives - both players + code:IEXAYZZA + cheat + description:9 lives - both players + code:AEXAYZZE + cheat + description:1 life - both players, after continue + code:AEUAETZA + cheat + description:6 lives - both players, after continue + code:IEUAETZA + cheat + description:9 lives - both players, after continue + code:AEUAETZE + cheat + description:Start on level 2 + code:PEUEGXNY + cheat + description:Start on level 3 + code:ZEUEGXNY + cheat + description:Start on level 4 + code:LEUEGXNY + cheat + description:Start on level 5 + code:GEUEGXNY + cheat + description:Start on level 6 + code:IEUEGXNY + cheat + description:Start on level 7 + code:TEUEGXNY + cheat + description:Invincibility (blinking) + code:040D:11 + cheat + description:Infinite health + code:059F:1C + cheat + description:Infinite lives + code:03DF:03 + cheat + description:Infinite time (alt) + code:00CF:09 + cheat + description:Easy win + code:0062:09 + cheat + description:Max tongue height + code:0499:07 + +cartridge sha256:fbd7caadaf77c2b191e74328b9b836155f8498500f7e5af44edfc0ec53b15fee + name:Snow Brothers (USA) + cheat + description:Invincibility + code:SUUAVVVS + cheat + description:Infinite number of chances + code:SXNEUYVI + cheat + description:Always get 10 chances after a continue (count restarts at 9) + code:PAOAYLZE + cheat + description:Always get 1 chance after a continue (count restarts at 0) + code:AAOAYLZA + cheat + description:Don't lose super ability after you lose a chance + code:OUOOGEOO + cheat + description:Start with 10 chances instead of 3 (count starts at 9 instead of 2) + code:PAXXPLZE + cheat + description:Start with 1 chance (count starts at 0) + code:AAXXPLZA + cheat + description:Start with Speed Skates, Power Shots and super snow-throwing + code:YAEEYAAE + cheat + description:Start with Speed Skates (don't use with other "start with" codes) + code:PAEEYAAA + cheat + description:Start with Power Shots (don't use with other "start with" codes) + code:ZAEEYAAA + cheat + description:Start with super snow-throwing ability (don't use with other "start with" codes) + code:GAEEYAAA + cheat + description:Start on 5th floor + code:GEVZTZAA + cheat + description:Start on 10th floor + code:PEVZTZAE + cheat + description:Start on 20th floor + code:LOVZTZAA + cheat + description:Start on 30th floor + code:IOVZTZAE + cheat + description:Start on 40th floor + code:YXVZTZAA + cheat + description:Start on 50th floor + code:PUVZTZAA + +cartridge sha256:6a0c8be0f6445d9d777080955c7aa8fbff7497633b878a36c8139ec13dabfb8b + name:Soccer (World) + cheat + description:Each half lasts only 10 minutes + code:APOOKZIP + cheat + description:Each half lasts for 50 minutes + code:AIOOKZIP + cheat + description:Start 1 goal up + code:PASLVTAA+KASUOTSA+KASUUVSE + cheat + description:Start 3 goals up + code:LASLVTAA+KASUOTSA+KASUUVSE + +cartridge sha256:45a0fd35f3141c140fb8d1f652876011f28d772b987da123c597aa8c924437b2 + name:Solar Jetman - Hunt for the Golden Warpship (USA) + cheat + description:No damage taken from walls + code:AEXZGVSY+AEXXAVNY + cheat + description:Minimum damage taken from walls + code:AEXXAVNY + cheat + description:Infinite lives + code:SZXONIVG + cheat + description:Weapons use up no energy + code:SVEKOVON + cheat + description:Items for free + code:AEUIOXYA+GXKSOZSA + cheat + description:Reversed gravity for planet 1 + code:UNSPLSLE + cheat + description:Reversed gravity for planet 2 + code:VTSOZVTO + cheat + description:Reversed gravity for planet 3 + code:KVOPATGP + cheat + description:Reversed gravity for planet 4 + code:XNVOTSZE + cheat + description:Reversed gravity for planet 5 + code:ETXPGTAZ + cheat + description:Reversed gravity for planet 6 + code:OTUOYVPX + cheat + description:Reversed gravity for planet 7 + code:UTEOPTLZ + cheat + description:Normal gravity for planet 8 + code:AOXOLVEV + cheat + description:Start with 1 ship and 1 life + code:PAKSZLGA + cheat + description:Start with 8 ships and 8 lives + code:AAKSZLGE + cheat + description:Start with more money + code:AASSZLPE + cheat + description:Start on level 3 + code:ZASSTLAA + cheat + description:Start on level 6 + code:IASSTLAA + cheat + description:Start on level 9 + code:AASSTLAE + cheat + description:Start on level 11 + code:ZASSTLAE + +cartridge sha256:842478f0d9f01c6c547672a7e4dc4a33ed2c900f92e4b318f4d5941ba548b355 + name:Solomon's Key (USA) + cheat + description:Invincibility + code:SZVAIAAX + cheat + description:Infinite life + code:OUXZYPOP + cheat + description:Infinite lives + code:XTKKKEXK + cheat + description:Indestructible fireball + code:GZOXLAAX + cheat + description:Continuous fairies + code:AAXZIALZ + cheat + description:Start with 40,000 life points + code:KAXOOEVE + cheat + description:Start on last level reached + code:GZUPTOSE + cheat + description:Start on next level + code:VTUPTOSE + cheat + description:Start on level 10 + code:SZUOPOSE+UPUOLPGA+PAUPIPAE + cheat + description:Start on level 20 + code:SZUOPOSE+UPUOLPGA+LPUPIPAA + cheat + description:Start on level 30 + code:SZUOPOSE+UPUOLPGA+IPUPIPAE + cheat + description:Start on level 40 + code:SZUOPOSE+UPUOLPGA+YZUPIPAA + cheat + description:Invincibility (alt) + code:0028:80 + cheat + description:Infinite life (alt) + code:0438:09 + cheat + description:Infinite fireballs + code:042F:80 + +cartridge sha256:e437dbafa7e20dd72412c869b9433901c3e9302cfa16b6e8379ecc56ae8dcc22 + name:Solstice - The Quest for the Staff of Demnos (USA) + cheat + description:Infinite lives + code:SZSESXVK + cheat + description:Infinite Potions + code:SUSPIXVS + cheat + description:Multi-jump + code:SXUXYGAX + cheat + description:1 life after continue + code:PAXELPLA + cheat + description:8 lives after continue + code:AAXELPLE + cheat + description:Start with full flasks of Potions + code:GAOEUIZA + cheat + description:Start with no Potions + code:AAOEUIZA + cheat + description:Start with 1 life + code:PAKAVIGA + cheat + description:Start with 8 lives + code:AAKAVIGE + cheat + description:Infinite lives (alt) + code:0789:09 + cheat + description:Infinite Green Potion + code:0784:04 + cheat + description:Infinite Yellow Potion + code:0785:04 + cheat + description:Infinite Light Purple Potion + code:0786:04 + cheat + description:Infinite Dark Purple Potion + code:0787:04 + +cartridge sha256:cce92c9404d5dd48680b0b505acbbbce279a4f09606167f0aacfb6da991aac4c + name:Space Hunter (Japan) + cheat + description:Infinite energy + code:SZOLGNVK+SXOLYVSO + +cartridge sha256:dbd587ef5a12e03a336cda61cd120b4e8c585f45d82821e144ee8afdea9ee84e + name:Spartan X 2 (Japan) + cheat + description:Infinite health + code:SXEIXKVK+SZUSVKSE + +cartridge sha256:6f58c6fb427cf18b4c28f07909db642abac09fac2d7ae7dc9c99f1cd79263d95 + name:Spelunker (USA) + cheat + description:Invincibility + code:ATKPAIAZ+TUEEYKNN+GXOAPKIX + cheat + description:Infinite lives + code:IXOOPSVK + cheat + description:Invisibility + code:AEXAYTAP + cheat + description:Jump higher + code:SNEAKEVN+EANEEAAA + cheat + description:Start with 1 life + code:AANATPZA + cheat + description:Start with 6 lives + code:IANATPZA + cheat + description:Start with 9 lives + code:AANATPZE + cheat + description:Infinite lives (alt) + code:0234:63 + cheat + description:Have a high score + code:022F:FF + cheat + description:Infinite Bombs + code:0237:09 + cheat + description:Infinite Flares + code:0238:09 + +cartridge sha256:1104d574711a103745aed2407997275e1ac43fd4d5c7ff96bde0af5bfa014c2d + name:Spider-Man - Return of the Sinister Six (USA) + cheat + description:Invincibility + code:SXNUIZAX + cheat + description:Infinite health + code:SXOKVVSE + +cartridge sha256:3c74b191d7d4cb6c34e6b2d5f76d9c86be63f8ebb61581c49810f0dd58c538c1 + name:Spiritual Warfare (USA) (v6.1) (Unl) + cheat + description:Infinite energy + code:SXVGLGSA + cheat + description:Infinite Vial Of God's Wrath + code:SXKGXIVG + cheat + description:Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds + code:NYEUYIAE + cheat + description:Start with max energy + code:APKLZITE + +cartridge sha256:5a82a1b0386407f1036c3d0ae750741c0835336f062d77480e1dd5b4da507386 + name:Spiritual Warfare (USA) (v6.0) (Unl) + cheat + description:Infinite energy + code:SXUKLGSA + cheat + description:Infinite Vial Of God's Wrath + code:NNSUYGAE + cheat + description:Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds + code:NNSUYGAE + cheat + description:Start with max energy + code:APOLZITE + +cartridge sha256:14a86d409cc9e6ae2428f301e4aaa77290fe38ec3e660d971af9abda772747e2 + name:Spiritual Warfare (USA) (v5.1) (Unl) + cheat + description:Infinite energy + code:SXNKPGSA + cheat + description:Infinite Vial Of God's Wrath + code:SXSKEIVG + cheat + description:Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds + code:NYXLIIAE + cheat + description:Start with max energy + code:APSUAITE + +cartridge sha256:387d82471ca5f54e70b3c4d445ae5c692640d99c47b30a6bf67f5a17b6236c85 + name:Splatter House - Wanpaku Graffiti (Japan) + cheat + description:Hit anywhere + code:AAKXGPLA+AAUXPOLP+GZUZGPEL + cheat + description:Moon-jump + code:AXXKLGAX+EEXGILIA+PXXGGUOK+YVXGLUNA + cheat + description:Start a new game to view ending + code:IEVXVTZA + +cartridge sha256:17da401495807145c9d4db275d429b7fe94be45dde00edc40aca885911cfd138 + name:Spy Hunter (USA) + cheat + description:Infinite health + code:SXVPEZSA + cheat + description:Infinite lives + code:SXKAYOVK + cheat + description:Infinite lives (alt) + code:SZEUSGVG + cheat + description:Infinite missiles + code:SZKUANVK + cheat + description:Infinite smoke + code:VXELTVSE + cheat + description:Hit anywhere + code:AENOKIIP+AENOESTA+AESXEUYA+AEVOSIGZ+SXNONISA + cheat + description:Enemies die automatically + code:AAUEASTA+AESXEUYA+XVSZXLAV + cheat + description:No enemies + code:SXSOOZSA+SZUOVLSA + cheat + description:Double missiles on pick-up + code:TEEXLILA + cheat + description:Slow down timer + code:YAEZNIYE + cheat + description:Keep special weapons + code:GXSAKUSE+GXSANUSE + cheat + description:Start with 2 extra lives + code:ZEEXKIAA + cheat + description:Start with 6 extra lives + code:TEEXKIAA + +cartridge sha256:91c61066a9b6b5ed169449b175190d75d38834e07da263f637af05801bc2f5ae + name:Spy vs Spy (USA) + cheat + description:Stop black spy's clock + code:SZVAYUVK + cheat + description:Stop white spy's clock + code:SXUELUVK + cheat + description:Black spy has 100 seconds in a minute + code:PUEAPLIU + cheat + description:White spy has 100 seconds in a minute + code:PUSAILIU + cheat + description:Black spy has deadly punches + code:ONVZYNUT + cheat + description:White spy has deadly punches + code:IEVZLYIE + +cartridge sha256:687963e7fd12834543da99c60a533fcdfedacd27f8a67c0c9c4007c1263a79b3 + name:Sqoon (USA) + cheat + description:Infinite lives + code:AEEAAIPA + cheat + description:Never lose your special weapon + code:SZEEOSVK + cheat + description:Never lose humans on dying + code:GXEAKKSE+GXSUZXSE + cheat + description:Gain main weapon on rescuing 9 humans + code:ZEOOEYPA + cheat + description:Start with 1 life + code:AEUESLZA + cheat + description:Start with 6 lives + code:IEUESLZA + cheat + description:Start with 9 lives + code:AEUESLZE + cheat + description:Start at phase 3 + code:LASEXLPA + cheat + description:Start at phase 5 + code:IASEXLPA + cheat + description:Start at phase 8 + code:AASEXLPE + +cartridge sha256:b2e222df4d50fb75b108eac25e2beb671e37881bb357aa89bde7ef73d8d670f2 + name:Squashed (USA) (Proto) + cheat + description:Invincibility + code:SXOOZTAX + cheat + description:Infinite lives + code:SINPTKVS + cheat + description:Infinite time + code:SGVTIVVK + +cartridge sha256:d9a666f7b122bff2db329d346e20d9708ad58471ea80fbd032aa4600e86ad8f1 + name:Stanley - The Search for Dr. Livingston (USA) + cheat + description:Infinite health + code:SZEGYUSE + cheat + description:Infinite time on continue screen + code:XTSXXYVK + cheat + description:Start a new game with complete map + code:NNXGVZAE + cheat + description:Infinite health (alt) + code:057E:26 + cheat + description:Have all weapons + code:049E:5F+049D:5F+049C:5F+049B:5F+049A:5F+0499:5F+0498:01+0497:5F+0496:5F + +cartridge sha256:581851e22e8d499ada19e621c93571fba279fe9c8446ed2ee566b16128f13874 + name:Star Force (USA) + cheat + description:Infinite lives + code:SZKEVTVG + cheat + description:Turbo speed + code:VYVEGONN + cheat + description:Start with 1 life + code:AEUAUIZA + cheat + description:Start with 6 lives + code:IEUAUIZA + cheat + description:Start with 9 lives + code:AEUAUIZE + +cartridge sha256:7b7ccdcda705c2c3215c646b479c5d5868b72f3cd3eff97291d608756e5f3230 + name:Starship Hector (USA) + cheat + description:Take minimum damage + code:OVUYEGSV+PEUYOGTA + cheat + description:Infinite lives + code:SZKIOGVG + cheat + description:Extra health from capsules + code:GEVVGIPA + cheat + description:Start with 1 life + code:AANSOGZA + cheat + description:Start with 6 lives + code:IANSOGZA + cheat + description:Start with 9 lives + code:AANSOGZE + cheat + description:Start at stage 2 + code:PENYGIAA + cheat + description:Start at stage 3 + code:ZENYGIAA + cheat + description:Start at stage 4 + code:LENYGIAA + cheat + description:Start at stage 5 + code:GENYGIAA + cheat + description:Infinite health + code:00B0:10 + cheat + description:Play as Bomberking + code:005F:01 + +cartridge sha256:025abe5ae4e1610fac2507296184f64173fd960adfc79d456001adec29c546a5 + name:Star Soldier (USA) + cheat + description:Infinite lives + code:SZOEAPVG + cheat + description:Infinite shield power + code:GXVPXTVG + cheat + description:Double shield power + code:ZAOOOYIE+ZENOGLIE + cheat + description:Start with laser + code:PEOAPPAA + +cartridge sha256:a3d132f118c0d95590579c6d6b89b6bbe448a93aab93b3a29490f985b821a42c + name:Star Trek - 25th Anniversary (USA) + cheat + description:Kirk has more energy + code:LEOOVGYE + cheat + description:Kirk has less energy + code:GEOOVGYA + cheat + description:McCoy has more energy + code:LAUXYAYE + cheat + description:McCoy has less energy + code:GAUXYAYA + cheat + description:Spock has more energy + code:LAUZTAYE + cheat + description:Spock has less energy + code:GAUZTAYA + cheat + description:Security has more energy + code:LAVZLAYE + cheat + description:Geologist has more energy + code:LAKXAAYE + cheat + description:Geologist has less energy + code:GAKXAAYA + cheat + description:Biologist has more energy + code:LASXZAYE + cheat + description:Biologist has less energy + code:GASXZAYA + cheat + description:Historian has more energy + code:LASZPAYE + cheat + description:Historian has less energy + code:GASZPAYA + cheat + description:McCoy gives full energy to injured party + code:YEKUYPGA + +cartridge sha256:8271542561a71830886e88ac74e6eda309440920b3607e950d5f2cd1a7edd5ca + name:Star Trek - The Next Generation (USA) + cheat + description:All systems are immune to damage - shields down + code:OUXTPYOP + cheat + description:Shields are immune to damage - shields up + code:SXUVTNSE + cheat + description:Quicker damage repair + code:AGKVTTEP + cheat + description:Very quick damage repair + code:APKVTTEP + cheat + description:Slower damage repair + code:EGKVTTEP + cheat + description:Enemy does less damage + code:ZKNVLEZE + cheat + description:Stop game time ticking over + code:ATETISVT + cheat + description:Photon Torpedoes always work + code:AAUZPAGY + cheat + description:Phasers always work + code:AAEXTPNY + cheat + description:Phasers fire for longer + code:AAOXPOKT + cheat + description:Damage is repaired immediately + code:AAVTZVIL + cheat + description:Transporter power does not decrease most of the time + code:SXVUSTVG + cheat + description:Less transporter power required most of the time + code:IANUXTAZ + cheat + description:Stardate does not advance + code:GVNZOZIT + +cartridge sha256:2e366cb5ebcce2cd7be431b84bbbb401104e2717322b15e5368707b4eddeb11a + name:Star Trek V - The Final Frontier (Unknown) (Proto) + cheat + description:Invincibility (blinking) + code:EINONZEY + cheat + description:Infinite health + code:SZEPYSSE+SZNAXOSE + cheat + description:Infinite Phasers + code:SXOPVSSE + cheat + description:Infinite Bombs + code:SXNXLXVK + +cartridge sha256:69de2c7552fa81ca5921da0e457abf1be35f18ffbad159788a76141be59c9f6b + name:StarTropics (USA) + cheat + description:Infinite health + code:VZVZLOSV + cheat + description:Infinite lives + code:SXETAKVK + cheat + description:Infinite weapons + code:SUXXPSVS + cheat + description:Hit anywhere + code:ASNUGXPZ+ASNUIZYE+GKXLAUOK+NVXLPLZE+UUXLZLEP + cheat + description:Enemies can't move + code:NOPSTU + cheat + description:1 star needed to restore health + code:PEXXYTIA+PEUZLTIA + cheat + description:9 stars needed to restore health + code:PEXXYTIE+PEUZLTIE + cheat + description:1 life with a new character + code:PASTYZLA + cheat + description:6 lives with a new character + code:TASTYZLA + cheat + description:1 life after continue + code:PAUTGILA + cheat + description:6 lives after continue + code:TAUTGILA + cheat + description:Gain 50 fire weapons on pick-up + code:ZUVLZEPP + cheat + description:Gain 50 bat weapons on pick-up + code:ZUSUYETP + cheat + description:Only 3 hearts needed to use shooting-star + code:IEUZZNGA + cheat + description:Only 8 hearts needed to use super-nova + code:AEOZPYTO + cheat + description:Invincibility after one hit + code:077B:2E + cheat + description:Infinite health (alt) + code:0112:17 + cheat + description:Infinite Blue Stars + code:011C:09 + cheat + description:Permanent Anklet (can jump 2 spaces) + code:005B:02+0180:01 + +cartridge sha256:c4c139d2c349a513d4ccc724daee3fd37099c3c0d2742fad777a0edbe3d042ce + name:Star Voyager (USA) + cheat + description:Infinite life support pods + code:GZSZSTVG + cheat + description:Start with double life support pods + code:GPKIASZA + cheat + description:Start with triple life support pods + code:TPKIASZE + cheat + description:Barrier won't take damage + code:AASLSLLA + cheat + description:Radar won't take damage + code:AOKLVLEI + cheat + description:Cannon won't take damage + code:ENXLXLEI + cheat + description:Engine won't take damage + code:AAXUXLLA + +cartridge sha256:b9116f11828e39d3e201c878a874f0d88fa0eae9dece0469bf94a7e9c8616775 + name:Star Wars (USA) + cheat + description:Infinite lives + code:SZEAYXVK + cheat + description:Immune to spikes, you can get stuck on them + code:GZSYLSSO + cheat + description:Immune to most bullets + code:SLVUYNSO + cheat + description:Immune to most collisions + code:GXNUZIST+SLKLYVSO + cheat + description:Full energy on big energy pick-ups + code:AAKLNGZA + cheat + description:Less energy on big energy pick-ups + code:AAKLUGAX + cheat + description:More energy on big energy pick-ups + code:AGKLUGAZ + cheat + description:Always running + code:ZEOKOIPA+ZEKKXIPA + cheat + description:Start with 1 life + code:AAXAGAZA + cheat + description:Start with 6 lives + code:IAXAGAZA + cheat + description:Start with 9 lives + code:AAXAGAZE + +cartridge sha256:01b1bc93f72286a10ac62869ebe1bf2493ca24b3386e01447b0ccac50acdee94 + name:Star Wars - The Empire Strikes Back (USA) + cheat + description:Don't take damage from most enemies + code:GZVZTNOO + cheat + description:9 harpoons - scene 2 + code:PESZYPIE + cheat + description:1 harpoons - scene 2 + code:PESZYPIA + cheat + description:Infinite harpoons - scene 2 + code:GZVZVKVK + cheat + description:Infinite energy for ship - scene 2 + code:GXSLIISA + cheat + description:Always have Lightsaber + code:AEXOETYL + cheat + description:Start with 14 continues + code:TENLGIYE + cheat + description:Start on scene 2 + code:PAEGXLAA + cheat + description:Start on scene 3 + code:ZAEGXLAA + cheat + description:Start on scene 4 + code:LAEGXLAA + cheat + description:Start on scene 5 + code:GAEGXLAA + cheat + description:Start on scene 6 + code:IAEGXLAA + cheat + description:Start on scene 7 + code:TAEGXLAA + +cartridge sha256:8093144834f1153e95076a76dbc720cec37a31412b422c8adf9f5bcea1b642e8 + name:Stealth ATF (USA) + cheat + description:Infinite missiles + code:SZVZSSVK + cheat + description:Start with double missiles + code:AOUXXEAA + cheat + description:No damage taken from enemy's bullets + code:SZVPXNVV + cheat + description:Start with less fuel + code:AVUXNAVP + cheat + description:More enemy planes on the screen + code:AEKZZLZE + +cartridge sha256:5ca7cb3c4168bb021a67b50fa071afe7679f4e79c5c46e229fbe7b88004bf51a + name:Stinger (USA) + cheat + description:Keep weapons after death + code:GZNGNLSP + cheat + description:Infinite lives + code:OZVKKLVS + cheat + description:Skip intro + code:IESKLLAA + cheat + description:Start with 1 life + code:PAXKPGLA + cheat + description:Start with 6 lives + code:TAXKPGLA + cheat + description:Start with 9 lives + code:PAXKPGLE + cheat + description:Start with Dual Cannons + code:YGNGAKTL+PAVKTGAP + cheat + description:Start with Laser + code:YGNGAKTL+ZAVKTGAP + cheat + description:Start with Shoot Right + code:YGNGAKTL+GAVKTGAP + cheat + description:Start with Shoot Left + code:YGNGAKTL+AAVKTGAO + cheat + description:Start with Five Direction Firing + code:YGNGAKTL+APVKTGAP + cheat + description:Start with Three Direction Firing + code:YGNGAKTL+AZVKTGAP + cheat + description:Start with Force field + code:YGNGAKTL+AGVKTGAP + cheat + description:Start at stage 2 (wait for demo game then press start) + code:GZOGIGSA+PAEGPLPA + cheat + description:Start at stage 3 + code:GZOGIGSA+ZAEGPLPA + cheat + description:Start at stage 4 + code:GZOGIGSA+LAEGPLPA + cheat + description:Start at stage 5 + code:GZOGIGSA+GAEGPLPA + cheat + description:Start at stage 6 + code:GZOGIGSA+IAEGPLPA + cheat + description:Invincibility + code:0056:50 + cheat + description:Infinite lives (alt) + code:0038:09 + +cartridge sha256:d8a12772ddcb35d66a6518096c8415961cb43ceb9ffb96e5c7f83fe3a8e7f2c1 + name:Street Cop (USA) + cheat + description:Infinite health + code:GXESTZST + cheat + description:Take minimum damage + code:OVESTZSV+PEESYZAP + cheat + description:Infinite time + code:SZSNTAVG + cheat + description:Have less time + code:TAOVTXPA + cheat + description:Have more time + code:ZPOVTXPA + cheat + description:Start with less health + code:AONGNAAU + cheat + description:Start with more health + code:AVNGNAAL + cheat + description:Start at level 2 + code:PAXTPPAA + cheat + description:Start at level 3 + code:ZAXTPPAA + cheat + description:Start at level 4 + code:LAXTPPAA + +cartridge sha256:885cfd4396e0ade5f3abbbdb5055bc48ef166f86207db631bac83c51c0844f08 + name:Street Fighter 2010 - The Final Fight (USA) + cheat + description:Invincibility + code:EYSSLGEI + cheat + description:Infinite health + code:AEUIPGZA + cheat + description:Infinite lives + code:SZUATPVG + cheat + description:Infinite time + code:SLUKAZSP + cheat + description:Take less damage + code:PEUIPGZA + cheat + description:Take more damage + code:LEUIPGZA + cheat + description:Keep power-ups after losing a life + code:GZOAZPSA + cheat + description:Keep power-ups when hit + code:AEKIYGZA + cheat + description:Faster Ken + code:ZESESPPA + cheat + description:Portal always stays open + code:SXVTVUVK + cheat + description:Start with 1 life + code:AAEETAGA + cheat + description:Start with 9 lives + code:PAEETAGE + +cartridge sha256:07401bfb725c61711ce0a1d5eade14e09cd0f1b90991691339077a0b7dea5e58 + name:Street Heroes (Asia) (Unl) + cheat + description:Infinite health + code:00D6:59 + cheat + description:One hit kills + code:00D7:00 + cheat + description:Only one win needed to advance + code:0059:02 + +cartridge sha256:d4fc5610f1355c545d1ecf21502c31a9d21a31e0d4f0043c7c8d8f199bea2a73 + name:Strider (USA) + cheat + description:Infinite health + code:OXNAUKPX+PVNAVGIU + cheat + description:Hit anywhere + code:AANVSZTZ+AEEVXXPP + cheat + description:More energy from small capsules (10) + code:ZAUXEYPE + cheat + description:More energy from big capsules (20) + code:GPUXXNZA + cheat + description:Health from small capsules (10) + code:ZAUXKYPE + cheat + description:Health from big capsules (20) + code:GPUXVNZA + cheat + description:Double health and energy from all capsules + code:ZAEXVNAO + cheat + description:Have all Keys and start on Red Dragon level + code:048C:FF + cheat + description:Have all Data Files + code:048E:FF + cheat + description:Max stats, all tricks, Slide In, Plasma Arrow + code:048B:09+048D:01 + cheat + description:Infinite power + code:056B:63 + cheat + description:High-jump + code:0538:0A + cheat + description:Plasma Sword is instantly charged + code:055D:89 + +cartridge sha256:9aa6ced81adbfb09730591efa9aea369ec7bf57d8a1504dfd5f77ff5696b0427 + name:Strike Wolf (MGC-014) + cheat + description:Infinite energy + code:SZKUNISA + cheat + description:Infinite ammo + code:SZSONEVK + cheat + description:Infinite Bombs + code:SXXPLNVK + +cartridge sha256:f3a140c16012c4e4fb0deda64cbee7d9ebe78d2fb717b80b12a9f938d57b78bb + name:Stunt Kids (USA) (Unl) + cheat + description:Infinite time - P1 + code:SLNOYXVS + cheat + description:Infinite time - P2 + code:SLXOYUVS + cheat + description:Infinite lives + code:SZSZSKVK + cheat + description:Always have 9 coins after a race + code:VANILVKE + cheat + description:Coins worth nothing on pick-up + code:SZKOEOVV + cheat + description:Start with 1 life instead of 3 + code:AESGNZZA + cheat + description:Start with 6 lives + code:IESGNZZA + cheat + description:Start with 9 lives + code:PESGNZZE + cheat + description:Start with 0 turbos instead of 3 + code:AEESPALA + cheat + description:Start with 6 turbos + code:TEESPALA + cheat + description:Start with 9 turbos + code:PEESPALE + +cartridge sha256:4d16627301ff5def67247039b3a4b1cce4d20fbb867f4c5b7bcab43a8575f59f + name:Sunday Funday - The Ride (USA) (Unl) + cheat + description:Enable level skip (press B then Select) + code:ESNNUZEY + +cartridge sha256:3edd803db1cc88155720625ed8f3e362a5e3c660e7faf3285bbe3a2c6571511c + name:Super C (USA) + cheat + description:Invincibility - both players + code:LLLXZO + cheat + description:Infinite continues + code:SZOVXZVG + cheat + description:Activates 10 lives code + code:AEXVAIZA + cheat + description:10 lives code give you 30 + code:IOXVZSPE + cheat + description:Extra life for each enemy killed + code:AENTTTZA + cheat + description:Hit anywhere + code:POXXIOIA + cheat + description:One hit kills + code:AAAZPZ + cheat + description:Multi-jump - both players + code:GXVAATEI+ZUVEPVIV + cheat + description:Run faster to the right + code:EYYAEA + cheat + description:Stage select after title screen + code:ENXVYGEI + cheat + description:Press Start to complete current level + code:AUOVNXPU+GEOVSZPA + cheat + description:Start a new game to view the ending + code:AEKTLGAE + cheat + description:Start with Spray Gun + code:EUUTGIYS+YSXTPSEL+ZEUTZIAA + cheat + description:Start with Fireball Gun + code:EUUTGIYS+YSXTPSEL+GEUTZIAA + cheat + description:Start with 1 life - both players + code:AEXTLIZA + cheat + description:Start with 6 lives - both players + code:IEXTLIZA + cheat + description:Start with 9 lives - both players + code:AEXTLIZE + cheat + description:Start with 255 lives - both players + code:NNXTLIZE + cheat + description:Start with 9 continues + code:TEEVIIZA + cheat + description:Start at area 2 + code:PEETLIAA + cheat + description:Start at area 3 + code:ZEETLIAA + cheat + description:Start at area 4 + code:LEETLIAA + cheat + description:Start at area 5 + code:GEETLIAA + cheat + description:Start at area 6 + code:IEETLIAA + cheat + description:Start at area 7 + code:TEETLIAA + cheat + description:Invincibility (blinking) + code:00D4:55 + cheat + description:Infinite lives + code:0053:03 + cheat + description:Have the Machine Gun + code:00B8:81 + cheat + description:Have the Spread Gun + code:00B8:82 + cheat + description:Have the Laser Gun + code:00B8:83 + cheat + description:Have the Fireball Gun + code:00B8:84 + cheat + description:Have the Single Shot MG + code:00B8:85 + cheat + description:Have the Super Fireball Gun + code:00B8:86 + +cartridge sha256:fcb6a0ef3a20c19b356005fbb21dc8009563b1cb5a9aaebc8e9386b4a8c5912e + name:Super Mario Bros. (World) + cheat + description:Invincibility + code:SEVVOVSX+ESVVKTEY + cheat + description:Invincibility (Starman effect) + code:SSASSA + cheat + description:Infinite time + code:VZTLTN + cheat + description:Infinite time (alt) + code:SZTLTN + cheat + description:Infinite lives - both players + code:SXIOPO + cheat + description:Infinite lives + code:SKSOPOVK + cheat + description:Always Big Mario + code:OZTLLX+AATLGZ+SZLIVO + cheat + description:Always Fiery Mario + code:ZZZLTT + cheat + description:Always get 3 fireworks at end of stage + code:GPAIIU + cheat + description:Always get 6 fireworks at end of stage + code:VENITZYA + cheat + description:After falling down a hole, you drop from above + code:OXNLUYSO + cheat + description:Fireballs hit anywhere + code:GZXIPYEP + cheat + description:Gain a 1-up when an enemy is killed or power-up is gained + code:AEVAIGYA + cheat + description:Goombas don't walk off ledges + code:LETTTE + cheat + description:Mega-jump from a standing start only + code:APZLGG + cheat + description:Mega-jump from running only + code:APZLTG + cheat + description:Mega-jump from turbo running only + code:GAZUAG + cheat + description:Moon Gravity from a standing start + code:YAZULG + cheat + description:Moon Gravity from a running start + code:YAZUIG + cheat + description:Moon Gravity from turbo running only + code:YAZUYG + cheat + description:Multi-jump + code:AOAUIG + cheat + description:Super-jump from a standing start only + code:APZLGK + cheat + description:Super-jump from running only + code:TPZLTG + cheat + description:Super-jump from turbo running only + code:GPZUAG + cheat + description:Turn all enemies into Toad + code:NULTKA + cheat + description:Can control Mario in demo and title screen + code:PEUEGZAA+ANUETXKY+YEUEYZTA + cheat + description:Can control Mario in entrances that lead to underground + code:SNAULA + cheat + description:Can move left or right while crouched + code:APXLLPEY + cheat + description:Can walk through pipes and blocks + code:GIIIVY + cheat + description:Small Mario can break bricks + code:AAOUEIPA+AENLNGZA+EZOLNIEI + cheat + description:Fireballs can kill Bowser's Fire + code:AEOIGNTZ + cheat + description:Fireballs can kill Bullet Bill + code:AEESGYTL + cheat + description:Fireballs can kill Buzzy Beetle + code:AASIYNLT + cheat + description:Fireballs can kill Podoboo + code:AAXVZAGA+AEOIAYZL + cheat + description:Enable level select + code:AAYAAZ + cheat + description:Press Start to finish current world + code:ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA + cheat + description:Start with 1 life - both players + code:AATOZA + cheat + description:Start with 6 lives - both players + code:IATOZA + cheat + description:Start with 9 lives - both players + code:AATOZE + cheat + description:Start P1 with 8 lives and P2 with 3 lives + code:VATOLE + cheat + description:Start on World 2 + code:YSAOPE+YEAOZA+PEAPYA + cheat + description:Start on World 3 + code:YSAOPE+YEAOZA+ZEAPYA + cheat + description:Start on World 4 + code:YSAOPE+YEAOZA+LEAPYA + cheat + description:Start on World 5 + code:YSAOPE+YEAOZA+GEAPYA + cheat + description:Start on World 6 + code:YSAOPE+YEAOZA+IEAPYA + cheat + description:Start on World 7 + code:YSAOPE+YEAOZA+TEAPYA + cheat + description:Start on World 8 + code:YSAOPE+YEAOZA+YEAPYA + cheat + description:Invincibility (blinking) + code:079E:06 + cheat + description:Invincibility (Starman effect) (alt) + code:079F:18 + cheat + description:Infinite lives (alt) + code:075A:09 + cheat + description:Infinite time (alt 2) + code:0787:0C + cheat + description:Always Big Mario (alt) + code:0754:00+0756:01 + cheat + description:Always Fiery Mario (alt) + code:0754:00+0756:02 + +cartridge sha256:5dde385041aa7364c78205f2ba49615f416c701b6025e38aa1d7b9c4f99a62db + name:Super Mario Bros. + Duck Hunt (USA) + cheat + description:DH - Infinite ammo + code:SZNIPPVG + cheat + description:DH - Infinite ammo (alt) + code:00BA:03 + cheat + description:DH - Hit anywhere + code:AAXSGZSY + cheat + description:DH - Always get the perfect bonus + code:AASIAUZA+ALSIPLEI + cheat + description:DH - Ducks never fly away - Game A + code:IAVKKZVG + cheat + description:DH - Enable game "D" (press Select three times) + code:GEOKTPLA + cheat + description:SMB - Invincibility + code:SEVVOVSX+ESVVKTEY + cheat + description:SMB - Invincibility (Starman effect) + code:SSASSA + cheat + description:SMB - Infinite time + code:VZTLTN + cheat + description:SMB - Infinite time (alt) + code:SZTLTN + cheat + description:SMB - Infinite lives - both players + code:SXIOPO + cheat + description:SMB - Infinite lives + code:SKSOPOVK + cheat + description:SMB - Always Big Mario + code:OZTLLX+AATLGZ+SZLIVO + cheat + description:SMB - Always Fiery Mario + code:ZZZLTT + cheat + description:SMB - Always get 3 fireworks at end of stage + code:GPAIIU + cheat + description:SMB - Always get 6 fireworks at end of stage + code:VENITZYA + cheat + description:SMB - After falling down a hole, you drop from above + code:OXNLUYSO + cheat + description:SMB - Fireballs hit anywhere + code:GZXIPYEP + cheat + description:SMB - Gain a 1-up when an enemy is killed or power-up is gained + code:AEVAIGYA + cheat + description:SMB - Goombas don't walk off ledges + code:LETTTE + cheat + description:SMB - Mega-jump from a standing start only + code:APZLGG + cheat + description:SMB - Mega-jump from running only + code:APZLTG + cheat + description:SMB - Mega-jump from turbo running only + code:GAZUAG + cheat + description:SMB - Moon Gravity from a standing start + code:YAZULG + cheat + description:SMB - Moon Gravity from a running start + code:YAZUIG + cheat + description:SMB - Moon Gravity from turbo running only + code:YAZUYG + cheat + description:SMB - Multi-jump + code:AOAUIG + cheat + description:SMB - Super-jump from a standing start only + code:APZLGK + cheat + description:SMB - Super-jump from running only + code:TPZLTG + cheat + description:SMB - Super-jump from turbo running only + code:GPZUAG + cheat + description:SMB - Turn all enemies into Toad + code:NULTKA + cheat + description:SMB - Can control Mario in demo and title screen + code:PEUEGZAA+ANUETXKY+YEUEYZTA + cheat + description:SMB - Can control Mario in entrances that lead to underground + code:SNAULA + cheat + description:SMB - Can move left or right while crouched + code:APXLLPEY + cheat + description:SMB - Can walk through pipes and blocks + code:GIIIVY + cheat + description:SMB - Small Mario can break bricks + code:AAOUEIPA+AENLNGZA+EZOLNIEI + cheat + description:SMB - Fireballs can kill Bowser's Fire + code:AEOIGNTZ + cheat + description:SMB - Fireballs can kill Bullet Bill + code:AEESGYTL + cheat + description:SMB - Fireballs can kill Buzzy Beetle + code:AASIYNLT + cheat + description:SMB - Fireballs can kill Podoboo + code:AAXVZAGA+AEOIAYZL + cheat + description:SMB - Enable level select + code:AAYAAZ + cheat + description:SMB - Press Start to finish current world + code:ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA + cheat + description:SMB - Start with 1 life - both players + code:AATOZA + cheat + description:SMB - Start with 6 lives - both players + code:IATOZA + cheat + description:SMB - Start with 9 lives - both players + code:AATOZE + cheat + description:SMB - Start P1 with 8 lives and P2 with 3 lives + code:VATOLE + cheat + description:SMB - Start on World 2 + code:YSAOPE+YEAOZA+PEAPYA + cheat + description:SMB - Start on World 3 + code:YSAOPE+YEAOZA+ZEAPYA + cheat + description:SMB - Start on World 4 + code:YSAOPE+YEAOZA+LEAPYA + cheat + description:SMB - Start on World 5 + code:YSAOPE+YEAOZA+GEAPYA + cheat + description:SMB - Start on World 6 + code:YSAOPE+YEAOZA+IEAPYA + cheat + description:SMB - Start on World 7 + code:YSAOPE+YEAOZA+TEAPYA + cheat + description:SMB - Start on World 8 + code:YSAOPE+YEAOZA+YEAPYA + cheat + description:SMB - Invincibility (blinking) + code:079E:06 + cheat + description:SMB - Invincibility (Starman effect) (alt) + code:079F:18 + cheat + description:SMB - Infinite lives (alt) + code:075A:09 + cheat + description:SMB - Infinite time (alt 2) + code:0787:0C + cheat + description:SMB - Always Big Mario (alt) + code:0754:00+0756:01 + cheat + description:SMB - Always Fiery Mario (alt) + code:0754:00+0756:02 + +cartridge sha256:26977a6c51a6f1e1af895b8863e8e7d57c5321621f29cf58ebfbf85163a999dd + name:Super Mario Bros. + Duck Hunt + World Class Track Meet (USA) (Rev A) + cheat + description:DH - Infinite ammo + code:SZNIPPVG + cheat + description:DH - Infinite ammo (alt) + code:00BA:03 + cheat + description:DH - Hit anywhere + code:AAXSGZSY + cheat + description:DH - Always get the perfect bonus + code:AASIAUZA+ALSIPLEI + cheat + description:DH - Ducks never fly away - Game A + code:IAVKKZVG + cheat + description:DH - Enable game "D" (press Select three times) + code:GEOKTPLA + cheat + description:SMB - Invincibility + code:SEVVOVSX+ESVVKTEY + cheat + description:SMB - Invincibility (Starman effect) + code:SSASSA + cheat + description:SMB - Infinite time + code:VZTLTN + cheat + description:SMB - Infinite time (alt) + code:SZTLTN + cheat + description:SMB - Infinite lives - both players + code:SXIOPO + cheat + description:SMB - Infinite lives + code:SKSOPOVK + cheat + description:SMB - Always Big Mario + code:OZTLLX+AATLGZ+SZLIVO + cheat + description:SMB - Always Fiery Mario + code:ZZZLTT + cheat + description:SMB - Always get 3 fireworks at end of stage + code:GPAIIU + cheat + description:SMB - Always get 6 fireworks at end of stage + code:VENITZYA + cheat + description:SMB - After falling down a hole, you drop from above + code:OXNLUYSO + cheat + description:SMB - Fireballs hit anywhere + code:GZXIPYEP + cheat + description:SMB - Gain a 1-up when an enemy is killed or power-up is gained + code:AEVAIGYA + cheat + description:SMB - Goombas don't walk off ledges + code:LETTTE + cheat + description:SMB - Mega-jump from a standing start only + code:APZLGG + cheat + description:SMB - Mega-jump from running only + code:APZLTG + cheat + description:SMB - Mega-jump from turbo running only + code:GAZUAG + cheat + description:SMB - Moon Gravity from a standing start + code:YAZULG + cheat + description:SMB - Moon Gravity from a running start + code:YAZUIG + cheat + description:SMB - Moon Gravity from turbo running only + code:YAZUYG + cheat + description:SMB - Multi-jump + code:AOAUIG + cheat + description:SMB - Super-jump from a standing start only + code:APZLGK + cheat + description:SMB - Super-jump from running only + code:TPZLTG + cheat + description:SMB - Super-jump from turbo running only + code:GPZUAG + cheat + description:SMB - Turn all enemies into Toad + code:NULTKA + cheat + description:SMB - Can control Mario in demo and title screen + code:PEUEGZAA+ANUETXKY+YEUEYZTA + cheat + description:SMB - Can control Mario in entrances that lead to underground + code:SNAULA + cheat + description:SMB - Can move left or right while crouched + code:APXLLPEY + cheat + description:SMB - Can walk through pipes and blocks + code:GIIIVY + cheat + description:SMB - Small Mario can break bricks + code:AAOUEIPA+AENLNGZA+EZOLNIEI + cheat + description:SMB - Fireballs can kill Bowser's Fire + code:AEOIGNTZ + cheat + description:SMB - Fireballs can kill Bullet Bill + code:AEESGYTL + cheat + description:SMB - Fireballs can kill Buzzy Beetle + code:AASIYNLT + cheat + description:SMB - Fireballs can kill Podoboo + code:AAXVZAGA+AEOIAYZL + cheat + description:SMB - Enable level select + code:AAYAAZ + cheat + description:SMB - Press Start to finish current world + code:ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA + cheat + description:SMB - Start with 1 life - both players + code:AATOZA + cheat + description:SMB - Start with 6 lives - both players + code:IATOZA + cheat + description:SMB - Start with 9 lives - both players + code:AATOZE + cheat + description:SMB - Start P1 with 8 lives and P2 with 3 lives + code:VATOLE + cheat + description:SMB - Start on World 2 + code:YSAOPE+YEAOZA+PEAPYA + cheat + description:SMB - Start on World 3 + code:YSAOPE+YEAOZA+ZEAPYA + cheat + description:SMB - Start on World 4 + code:YSAOPE+YEAOZA+LEAPYA + cheat + description:SMB - Start on World 5 + code:YSAOPE+YEAOZA+GEAPYA + cheat + description:SMB - Start on World 6 + code:YSAOPE+YEAOZA+IEAPYA + cheat + description:SMB - Start on World 7 + code:YSAOPE+YEAOZA+TEAPYA + cheat + description:SMB - Start on World 8 + code:YSAOPE+YEAOZA+YEAPYA + cheat + description:SMB - Invincibility (blinking) + code:079E:06 + cheat + description:SMB - Invincibility (Starman effect) (alt) + code:079F:18 + cheat + description:SMB - Infinite lives (alt) + code:075A:09 + cheat + description:SMB - Infinite time (alt 2) + code:0787:0C + cheat + description:SMB - Always Big Mario (alt) + code:0754:00+0756:01 + cheat + description:SMB - Always Fiery Mario (alt) + code:0754:00+0756:02 + +cartridge sha256:968cf4ae63fddf6a0d379bb12add5563f468e57ddddb69e00e1379a839234f95 + name:Super Mario Bros. + Duck Hunt + World Class Track Meet (USA) + cheat + description:DH - Infinite ammo + code:SZNIPPVG + cheat + description:DH - Infinite ammo (alt) + code:00BA:03 + cheat + description:DH - Hit anywhere + code:AAXSGZSY + cheat + description:DH - Always get the perfect bonus + code:AASIAUZA+ALSIPLEI + cheat + description:DH - Ducks never fly away - Game A + code:IAVKKZVG + cheat + description:DH - Enable game "D" (press Select three times) + code:GEOKTPLA + cheat + description:SMB - Invincibility + code:SEVVOVSX+ESVVKTEY + cheat + description:SMB - Invincibility (Starman effect) + code:SSASSA + cheat + description:SMB - Infinite time + code:VZTLTN + cheat + description:SMB - Infinite time (alt) + code:SZTLTN + cheat + description:SMB - Infinite lives - both players + code:SXIOPO + cheat + description:SMB - Infinite lives + code:SKSOPOVK + cheat + description:SMB - Always Big Mario + code:OZTLLX+AATLGZ+SZLIVO + cheat + description:SMB - Always Fiery Mario + code:ZZZLTT + cheat + description:SMB - Always get 3 fireworks at end of stage + code:GPAIIU + cheat + description:SMB - Always get 6 fireworks at end of stage + code:VENITZYA + cheat + description:SMB - After falling down a hole, you drop from above + code:OXNLUYSO + cheat + description:SMB - Fireballs hit anywhere + code:GZXIPYEP + cheat + description:SMB - Gain a 1-up when an enemy is killed or power-up is gained + code:AEVAIGYA + cheat + description:SMB - Goombas don't walk off ledges + code:LETTTE + cheat + description:SMB - Mega-jump from a standing start only + code:APZLGG + cheat + description:SMB - Mega-jump from running only + code:APZLTG + cheat + description:SMB - Mega-jump from turbo running only + code:GAZUAG + cheat + description:SMB - Moon Gravity from a standing start + code:YAZULG + cheat + description:SMB - Moon Gravity from a running start + code:YAZUIG + cheat + description:SMB - Moon Gravity from turbo running only + code:YAZUYG + cheat + description:SMB - Multi-jump + code:AOAUIG + cheat + description:SMB - Super-jump from a standing start only + code:APZLGK + cheat + description:SMB - Super-jump from running only + code:TPZLTG + cheat + description:SMB - Super-jump from turbo running only + code:GPZUAG + cheat + description:SMB - Turn all enemies into Toad + code:NULTKA + cheat + description:SMB - Can control Mario in demo and title screen + code:PEUEGZAA+ANUETXKY+YEUEYZTA + cheat + description:SMB - Can control Mario in entrances that lead to underground + code:SNAULA + cheat + description:SMB - Can move left or right while crouched + code:APXLLPEY + cheat + description:SMB - Can walk through pipes and blocks + code:GIIIVY + cheat + description:SMB - Small Mario can break bricks + code:AAOUEIPA+AENLNGZA+EZOLNIEI + cheat + description:SMB - Fireballs can kill Bowser's Fire + code:AEOIGNTZ + cheat + description:SMB - Fireballs can kill Bullet Bill + code:AEESGYTL + cheat + description:SMB - Fireballs can kill Buzzy Beetle + code:AASIYNLT + cheat + description:SMB - Fireballs can kill Podoboo + code:AAXVZAGA+AEOIAYZL + cheat + description:SMB - Enable level select + code:AAYAAZ + cheat + description:SMB - Press Start to finish current world + code:ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA + cheat + description:SMB - Start with 1 life - both players + code:AATOZA + cheat + description:SMB - Start with 6 lives - both players + code:IATOZA + cheat + description:SMB - Start with 9 lives - both players + code:AATOZE + cheat + description:SMB - Start P1 with 8 lives and P2 with 3 lives + code:VATOLE + cheat + description:SMB - Start on World 2 + code:YSAOPE+YEAOZA+PEAPYA + cheat + description:SMB - Start on World 3 + code:YSAOPE+YEAOZA+ZEAPYA + cheat + description:SMB - Start on World 4 + code:YSAOPE+YEAOZA+LEAPYA + cheat + description:SMB - Start on World 5 + code:YSAOPE+YEAOZA+GEAPYA + cheat + description:SMB - Start on World 6 + code:YSAOPE+YEAOZA+IEAPYA + cheat + description:SMB - Start on World 7 + code:YSAOPE+YEAOZA+TEAPYA + cheat + description:SMB - Start on World 8 + code:YSAOPE+YEAOZA+YEAPYA + cheat + description:SMB - Invincibility (blinking) + code:079E:06 + cheat + description:SMB - Invincibility (Starman effect) (alt) + code:079F:18 + cheat + description:SMB - Infinite lives (alt) + code:075A:09 + cheat + description:SMB - Infinite time (alt 2) + code:0787:0C + cheat + description:SMB - Always Big Mario (alt) + code:0754:00+0756:01 + cheat + description:SMB - Always Fiery Mario (alt) + code:0754:00+0756:02 + +cartridge sha256:728d0ca6751b0c039fc3e34f2e7f27a870afcab30f5e270244ac40979c5f69ca + name:Super Mario Bros. 2 (USA) (Rev A) + cheat + description:Invincibility + code:OZXYGLES+SAXYTLSZ + cheat + description:Infinite health (except if you hit a spike) + code:GZELVXSE + cheat + description:Infinite health (alt) + code:SZELVXSE + cheat + description:Infinite lives + code:SZNESXVK + cheat + description:Hit anywhere + code:AEXLATGA+EVOUYVPZ+GKXLZVIG + cheat + description:All characters can float + code:ANNEEGEY + cheat + description:More sub-space time + code:YPZOTN + cheat + description:Quick pick-up + code:SXUASXOU + cheat + description:Twice as much time in sub-space + code:NNXPZIAV + cheat + description:Infinite magic carpet time + code:SLNZZLVI + cheat + description:Jump as high as a squat jump + code:AEUEKKGL + cheat + description:Princess has mega-float + code:PPXAOIAA + cheat + description:Princess has mega-float and lunar descent + code:PAXAOIAA + cheat + description:Super moon-jumps - Mario + code:PESEGLGA + cheat + description:Mega moon-jumps - Luigi + code:AAEEZGPA + cheat + description:Super moon-jumps - Toad + code:PENALLGA + cheat + description:Super moon-jumps - Princess + code:PAXAPGGA + cheat + description:Speed up enemies + code:AEXALGZA + cheat + description:Super speed enemies + code:AXNAZSAA+EVNALSEY + cheat + description:Walk backwards + code:GOEANKAO+USEEEKKA + cheat + description:Super turbo running + code:XVVANSZK+XVNEXSZV + cheat + description:Permanent turbo running + code:AEVAVIIA+AENEEITA + cheat + description:Fast run - Toad + code:AXNAIUAO+ESNEAUEV + cheat + description:Super fast run - Mario + code:AXSETUAO+ESVAPUEV + cheat + description:Super fast run - Luigi + code:AZEEGKAO+EIEEYKEV + cheat + description:Super fast run - Princess + code:AZXALKAO+EIXATKEV + cheat + description:Weak Birdo + code:AAVENYZA + cheat + description:Strong Birdo + code:IAVENYZE + cheat + description:Strong Wart + code:YESUAPTE + cheat + description:Birdo spits eggs instead of fireballs (in late levels of the game) + code:TPEPLAAX + cheat + description:Start on World 2 + code:PEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 3 + code:ZEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 4 + code:LEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 5 + code:GEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 6 + code:IEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 7 + code:TEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Invincibility (alt) + code:0085:FA + cheat + description:Infinite coins + code:062B:09 + cheat + description:Infinite sub-space time + code:04B7:FA + cheat + description:Infinite magic carpet time (alt) + code:00B9:FA + cheat + description:All characters can float (alt) + code:04C9:FA + cheat + description:Multi-jump + code:0099:00 + cheat + description:One hit kills on bosses + code:0468:00 + cheat + description:Only 1 Cherry needed for Starman + code:062A:04 + cheat + description:Only 1 big Radish needed for Stopwatch + code:062C:04 + cheat + description:Receive small heart for every enemy defeated + code:04AD:09 + cheat + description:Stopwatch always active + code:04FF:FA + cheat + description:Start on World 2 (alt) + code:0635:01 + cheat + description:Start on World 3 (alt) + code:0635:02 + cheat + description:Start on World 4 (alt) + code:0635:03 + cheat + description:Start on World 5 (alt) + code:0635:04 + cheat + description:Start on World 6 (alt) + code:0635:05 + cheat + description:Start on World 7 (alt) + code:0635:06 + +cartridge sha256:cba920f9394733c82253685d7783f26a3033ba58a94623e9abf7892329b969b9 + name:Super Mario Bros. 2 (USA) + cheat + description:Invincibility + code:OZXYGLES+SAXYTLSZ + cheat + description:Infinite health (except if you hit a spike) + code:GZELVXSE + cheat + description:Infinite health (alt) + code:SZELVXSE + cheat + description:Infinite lives + code:SZNESXVK + cheat + description:Hit anywhere + code:AEXLATGA+EVOUYVPZ+GKXLZVIG + cheat + description:Quick pick-up + code:SXUASXOU + cheat + description:Twice as much time in sub-space + code:NNXPZIAV + cheat + description:Jump as high as a squat jump + code:AEUEKKGL + cheat + description:Princess has mega-float + code:PPXAOIAA + cheat + description:Princess has mega-float and lunar descent + code:PAXAOIAA + cheat + description:Super moon-jumps - Mario + code:PESEGLGA + cheat + description:Mega moon-jumps - Luigi + code:AAEEZGPA + cheat + description:Super moon-jumps - Toad + code:PENALLGA + cheat + description:Super moon-jumps - Princess + code:PAXAPGGA + cheat + description:Speed up enemies + code:AEXALGZA + cheat + description:Super speed enemies + code:AXNAZSAA+EVNALSEY + cheat + description:Walk backwards + code:GOEANKAO+USEEEKKA + cheat + description:Super turbo running + code:XVVANSZK+XVNEXSZV + cheat + description:Permanent turbo running + code:AEVAVIIA+AENEEITA + cheat + description:Fast run - Toad + code:AXNAIUAO+ESNEAUEV + cheat + description:Super fast run - Mario + code:AXSETUAO+ESVAPUEV + cheat + description:Super fast run - Luigi + code:AZEEGKAO+EIEEYKEV + cheat + description:Super fast run - Princess + code:AZXALKAO+EIXATKEV + cheat + description:Hawkeye at end of level always open + code:GXUESIEY + cheat + description:Start on World 2 + code:PEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 3 + code:ZEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 4 + code:LEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 5 + code:GEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 6 + code:IEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Start on World 7 + code:TEEPUZAG+IUEPSZAA+TEEPVZPA + cheat + description:Invincibility (alt) + code:0085:FA + cheat + description:Infinite coins + code:062B:09 + cheat + description:Infinite sub-space time + code:04B7:FA + cheat + description:Infinite magic carpet time (alt) + code:00B9:FA + cheat + description:All characters can float (alt) + code:04C9:FA + cheat + description:Multi-jump + code:0099:00 + cheat + description:One hit kills on bosses + code:0468:00 + cheat + description:Only 1 Cherry needed for Starman + code:062A:04 + cheat + description:Only 1 big Radish needed for Stopwatch + code:062C:04 + cheat + description:Receive small heart for every enemy defeated + code:04AD:09 + cheat + description:Stopwatch always active + code:04FF:FA + cheat + description:Start on World 2 (alt) + code:0635:01 + cheat + description:Start on World 3 (alt) + code:0635:02 + cheat + description:Start on World 4 (alt) + code:0635:03 + cheat + description:Start on World 5 (alt) + code:0635:04 + cheat + description:Start on World 6 (alt) + code:0635:05 + cheat + description:Start on World 7 (alt) + code:0635:06 + +cartridge sha256:ff8afb9ae6b705b4e51dbcb193dcebadf4c049800a71003d3a45052648e52eda + name:Super Mario Brothers 2 (Japan) (FDS) + cheat + description:Start with 50 lives + code:PUTGGI + cheat + description:Start with 9 lives + code:AETGGS + cheat + description:Invincibility (Starman effect) + code:079F:09 + cheat + description:Infinite lives + code:701B:AD + +cartridge sha256:959fdd32c71735d6fb2bd16a646d39f4ee65623273dd035e6a968e991bd13ef8 + name:Super Mario Bros. 3 (USA) (Rev A) + cheat + description:Invincibility (Starman effect) + code:AEVGEVZZ + cheat + description:Invincibility after changing up from Super Mario (Raccoon, Frog, ect.) + code:SZKIKXSE + cheat + description:Invincibility as miniture stone Mario + code:EXKXGLIA + cheat + description:Never die from being hit while little (changes music) (PRG0 only) + code:GOZSXX + cheat + description:Invincibility as Super Mario + code:XUKXGLIE + cheat + description:Invincibility as Fire Mario + code:UXKXGLIA + cheat + description:Invincibility as Raccoon Mario + code:NXKXGLIE + cheat + description:Invincibility as Frog Mario + code:OUKXGLIE + cheat + description:Invincibility as Sledgehammer Mario + code:XNKXGLIE + cheat + description:Infinite lives - both players + code:SLXPLOVS + cheat + description:Infinite time + code:SXUZENVK + cheat + description:Infinite items - Mario + code:YPXXLVGE + cheat + description:Infinite tries at card match game + code:GZVSSEVK + cheat + description:Always win at line up the pictures game (prize is based on the top picture) + code:AESSYPAZ + cheat + description:Fireballs hit anywhere + code:AEXZAVUG+AEXXYVIG + cheat + description:Fireballs turn most solid objects into coins + code:AAKXTIYP+AAVZAIIA + cheat + description:Tail hits anywhere + code:GZSSOLEP + cheat + description:1-up for each coin + code:PEEULAGT+PEOLAAGT + cheat + description:1-up for each 10 coins + code:ZEEULAGV+ZEOLAAGV + cheat + description:Change to Super Mario if you fall off screen and die + code:AEOSSZPA+PAOZTGAA + cheat + description:Change to Fire Mario if you fall off screen and die + code:AEOSSZPA+ZAOZTGAA + cheat + description:Change to Raccoon Mario if you fall off screen and die + code:AEOSSZPA+LAOZTGAA + cheat + description:Change to Frog Mario if you fall off screen and die + code:AEOSSZPA+GAOZTGAA + cheat + description:Change to Tanooki Mario if you fall off screen and die + code:AEOSSZPA+IAOZTGAA + cheat + description:Change to Sledgehammer Mario if you fall off screen and die + code:AEOSSZPA+TAOZTGAA + cheat + description:Move anywhere on the map + code:OXKIPZOS+APKSALAZ + cheat + description:Multi-jump + code:SXEZSKOZ + cheat + description:Multi-jump (alt) + code:SXEZSKOX + cheat + description:Multi-jump (alt 2) + code:GZUXNGEI + cheat + description:Power-jumps + code:ELKZYVEK + cheat + description:Super power-jumps + code:EZKZYVEK + cheat + description:Mega power-jumps + code:EAKZYVEK + cheat + description:Super speed running + code:OXKZELSX + cheat + description:Turbo-charged running + code:XVUXNUEE + cheat + description:Raise P meter while standing still (hold B) + code:AANZKLLA + cheat + description:Restore powers after playing an action scene + code:SZUEXNSO + cheat + description:Card match game always appears after a level + code:GXOZXGEY + cheat + description:Small white ship level always appears after a level + code:GEKXSKYK+GXOZXGEY+OXKXKKSU+XVKXVKKX + cheat + description:White money ship always appears after a level + code:GXOZXGEY+LEKXSKYK+OXKXKKSU+XVKXVKKX + cheat + description:White toad house always appears after a level + code:GXOZXGEY+OXKXKKSU+XVKXVKKX+ZEKXSKYK + cheat + description:Press Start to complete current level (do not use on final ship/castle levels for each map) + code:AANAOTLA+GPNAETTY + cheat + description:1 life after continue - both players + code:AEKPTZGA + cheat + description:9 lives after continue - both players + code:AEKPTZGE + cheat + description:Start a new game as Fire Mario + code:ZEUXKGAA + cheat + description:Start a new game as Raccoon Mario + code:LEUXKGAA + cheat + description:Start a new game as Frog Mario + code:GEUXKGAA + cheat + description:Start a new game as Tanooki Mario + code:IEUXKGAA + cheat + description:Start a new game as Sledgehammer Mario + code:TEUXKGAA + cheat + description:Start a new game to see the ending + code:NKGZSO + cheat + description:Start on World 2 + code:PEUZUGAA + cheat + description:Start on World 3 + code:ZEUZUGAA + cheat + description:Start on World 4 + code:LEUZUGAA + cheat + description:Start on World 5 + code:GEUZUGAA + cheat + description:Start on World 6 + code:IEUZUGAA + cheat + description:Start on World 7 + code:TEUZUGAA + cheat + description:Start on World 8 + code:YEUZUGAA + cheat + description:Unused level - Plains 1 + code:GGNUGGXE+NZNUIKUL + cheat + description:Unused level - Plains 2 + code:KZNUGGXE+OZNUIKUL + cheat + description:Unused level - Dungeon + code:ZZXUAGPZ+GINUGGXA+NLNUIKUL + cheat + description:Unused level - Underground 2 + code:LZXUAGPZ+ZGNUGGXA+KLNUIKUL + cheat + description:Unused level - Sky 1 + code:GZXUAGPZ+SGNUGGXE+SZNUIKUU + cheat + description:Unused level - Sky 3 (level cannot be completed) + code:GZXUAGPZ+KGNUGGXA+ELNUIKUL + cheat + description:Unused level - Cloudy 1 + code:IZXUAGPX+OZNUGGXE+KZNUIKUU + cheat + description:Unused level - Pipe level + code:AZXUAGPX+APNUGGXE+NZNUIKUU + cheat + description:Unused level - Hilly level + code:LZXUAGPZ+SINUGGXE+ELNUIKUL + cheat + description:Unused level - Ice/Water + code:GZXUAGPX+XLNUGGXE+NLNUIKUL + cheat + description:Unused level - Cloudy (level cannot be completed) + code:IZXUAGPX+UZNUGGXE+SZNUIKUU + cheat + description:P meter always full + code:03DD:7F + cheat + description:Invincibility as Super Mario (alt) + code:00ED:01 + cheat + description:Invincibility as Fire Mario (alt) + code:00ED:02 + cheat + description:Invincibility as Raccoon Mario (alt) + code:00ED:03 + cheat + description:Invincibility as Frog Mario (alt) + code:00ED:04 + cheat + description:Invincibility as Tanooki + code:00ED:05 + cheat + description:Invincibility as Sledgehammer Mario (alt) + code:00ED:06 + +cartridge sha256:d77d17d34af24871d7ce1160ccd3330555835c8e940b7100e095ac38973d927a + name:Super Mario Bros. 3 (USA) + cheat + description:Invincibility (Starman effect) + code:AEVGEVZZ + cheat + description:Invincibility after changing up from Super Mario (Raccoon, Frog, ect.) + code:SZKIKXSE + cheat + description:Invincibility as miniture stone Mario + code:EXKXGLIA + cheat + description:Never die from being hit while little (changes music) (PRG0 only) + code:GOZSXX + cheat + description:Invincibility as Super Mario + code:XUKXGLIE + cheat + description:Invincibility as Fire Mario + code:UXKXGLIA + cheat + description:Invincibility as Raccoon Mario + code:NXKXGLIE + cheat + description:Invincibility as Frog Mario + code:OUKXGLIE + cheat + description:Invincibility as Sledgehammer Mario + code:XNKXGLIE + cheat + description:Infinite lives - both players + code:SLXPLOVS + cheat + description:Infinite time + code:SXUZENVK + cheat + description:Infinite items - Mario + code:YPXXLVGE + cheat + description:Infinite tries at card match game + code:GZVSSEVK + cheat + description:Always win at line up the pictures game (prize is based on the top picture) + code:AESSYPAZ + cheat + description:Fireballs hit anywhere + code:AEXZAVUG+AEXXYVIG + cheat + description:Fireballs turn most solid objects into coins + code:AAKXTIYP+AAVZAIIA + cheat + description:Tail hits anywhere + code:GZSSOLEP + cheat + description:1-up for each coin + code:PEEULAGT+PEOLAAGT + cheat + description:1-up for each 10 coins + code:ZEEULAGV+ZEOLAAGV + cheat + description:Change to Super Mario if you fall off screen and die + code:AEOSSZPA+PAOZTGAA + cheat + description:Change to Fire Mario if you fall off screen and die + code:AEOSSZPA+ZAOZTGAA + cheat + description:Change to Raccoon Mario if you fall off screen and die + code:AEOSSZPA+LAOZTGAA + cheat + description:Change to Frog Mario if you fall off screen and die + code:AEOSSZPA+GAOZTGAA + cheat + description:Change to Tanooki Mario if you fall off screen and die + code:AEOSSZPA+IAOZTGAA + cheat + description:Change to Sledgehammer Mario if you fall off screen and die + code:AEOSSZPA+TAOZTGAA + cheat + description:Move anywhere on the map + code:OXKIPZOS+APKSALAZ + cheat + description:Multi-jump + code:SXEZSKOZ + cheat + description:Multi-jump (alt) + code:SXEZSKOX + cheat + description:Multi-jump (alt 2) + code:GZUXNGEI + cheat + description:Power-jumps + code:ELKZYVEK + cheat + description:Super power-jumps + code:EZKZYVEK + cheat + description:Mega power-jumps + code:EAKZYVEK + cheat + description:Super speed running + code:OXKZELSX + cheat + description:Turbo-charged running + code:XVUXNUEE + cheat + description:Raise P meter while standing still (hold B) + code:AANZKLLA + cheat + description:Restore powers after playing an action scene + code:SZUEXNSO + cheat + description:Card match game always appears after a level + code:GXOZXGEY + cheat + description:Small white ship level always appears after a level + code:GEKXSKYK+GXOZXGEY+OXKXKKSU+XVKXVKKX + cheat + description:White money ship always appears after a level + code:GXOZXGEY+LEKXSKYK+OXKXKKSU+XVKXVKKX + cheat + description:White toad house always appears after a level + code:GXOZXGEY+OXKXKKSU+XVKXVKKX+ZEKXSKYK + cheat + description:Press Start to complete current level (do not use on final ship/castle levels for each map) + code:AANAOTLA+GPNAETTY + cheat + description:1 life after continue - both players + code:AEKPTZGA + cheat + description:9 lives after continue - both players + code:AEKPTZGE + cheat + description:Start a new game as Fire Mario + code:ZEUXKGAA + cheat + description:Start a new game as Raccoon Mario + code:LEUXKGAA + cheat + description:Start a new game as Frog Mario + code:GEUXKGAA + cheat + description:Start a new game as Tanooki Mario + code:IEUXKGAA + cheat + description:Start a new game as Sledgehammer Mario + code:TEUXKGAA + cheat + description:Start a new game to see the ending + code:NKGZSO + cheat + description:Start on World 2 + code:PEUZUGAA + cheat + description:Start on World 3 + code:ZEUZUGAA + cheat + description:Start on World 4 + code:LEUZUGAA + cheat + description:Start on World 5 + code:GEUZUGAA + cheat + description:Start on World 6 + code:IEUZUGAA + cheat + description:Start on World 7 + code:TEUZUGAA + cheat + description:Start on World 8 + code:YEUZUGAA + cheat + description:Unused level - Plains 1 + code:GGNUGGXE+NZNUIKUL + cheat + description:Unused level - Plains 2 + code:KZNUGGXE+OZNUIKUL + cheat + description:Unused level - Dungeon + code:ZZXUAGPZ+GINUGGXA+NLNUIKUL + cheat + description:Unused level - Underground 2 + code:LZXUAGPZ+ZGNUGGXA+KLNUIKUL + cheat + description:Unused level - Sky 1 + code:GZXUAGPZ+SGNUGGXE+SZNUIKUU + cheat + description:Unused level - Sky 3 (level cannot be completed) + code:GZXUAGPZ+KGNUGGXA+ELNUIKUL + cheat + description:Unused level - Cloudy 1 + code:IZXUAGPX+OZNUGGXE+KZNUIKUU + cheat + description:Unused level - Pipe level + code:AZXUAGPX+APNUGGXE+NZNUIKUU + cheat + description:Unused level - Hilly level + code:LZXUAGPZ+SINUGGXE+ELNUIKUL + cheat + description:Unused level - Ice/Water + code:GZXUAGPX+XLNUGGXE+NLNUIKUL + cheat + description:Unused level - Cloudy (level cannot be completed) + code:IZXUAGPX+UZNUGGXE+SZNUIKUU + cheat + description:P meter always full + code:03DD:7F + cheat + description:Invincibility as Super Mario (alt) + code:00ED:01 + cheat + description:Invincibility as Fire Mario (alt) + code:00ED:02 + cheat + description:Invincibility as Raccoon Mario (alt) + code:00ED:03 + cheat + description:Invincibility as Frog Mario (alt) + code:00ED:04 + cheat + description:Invincibility as Tanooki + code:00ED:05 + cheat + description:Invincibility as Sledgehammer Mario (alt) + code:00ED:06 + +cartridge sha256:fe019a7da7fb7ecd2e6478bde546e6c5d6bba185d53e5c8692522ed8fdd617a2 + name:Super Pitfall (USA) + cheat + description:Infinite bullets + code:AEOYILPA + cheat + description:Infinite lives - 1P game + code:SZKSASVK + cheat + description:Infinite lives - P1 + code:SXESTSVK + cheat + description:Infinite lives - P2 + code:SXXSZSVK + cheat + description:30 bullets gained on pick-up + code:LENLELZA + cheat + description:10 bullets gained on pick-up + code:PENLELZA + cheat + description:Start with 1 life - both players + code:PAVIPALA + cheat + description:Start with 6 lives - both players + code:TAVIPALA + cheat + description:Start with 9 lives - both players + code:PAVIPALE + cheat + description:Start with 30 bullets + code:LEXKNYZA + cheat + description:Start with 10 bullets + code:PEXKNYZA + cheat + description:Invincibility (blinking) - both players + code:00DC:FF + +cartridge sha256:7c14c7e39943e7247c92d907f3362eab09a7306fb606d4a899a918fc6afd356a + name:Super Shinobi, The (unl) + cheat + description:Infinite health + code:04F5:09 + cheat + description:Infinite magic + code:010D:09 + cheat + description:Infinite Shurikens + code:0109:09+010B:09 + cheat + description:Always have powered-up Shurikens + code:00AF:01 + +cartridge sha256:d1defc7a6c6f96f89386c79ac887aa41a72fefa93ba22a8a08159ac891f73613 + name:Super Sprint (USA) (Unl) + cheat + description:Infinite continues + code:SZETVUVK + cheat + description:6 continues + code:YASSPALA + cheat + description:No continues + code:PASSPALA + cheat + description:More obstacles on tracks + code:IEKKNTAA+GXSGUVSE + cheat + description:Even more obstacles on tracks + code:ZEKKNTAE+GXSGUVSE + cheat + description:Lots and lots of obstacles on tracks + code:YEKKNTAE+GXSGUVSE + +cartridge sha256:7806ee6afcdf88ef6364da23af8b28f359ef7d850fe55224e188b8a01d5ade67 + name:Super Spy Hunter (USA) + cheat + description:Infinite health + code:SXVPEZSA + cheat + description:Start with max health gauge + code:GEXUOIGE + cheat + description:Infinite lives + code:0074:05 + cheat + description:Infinite health (alt) + code:007B:40 + +cartridge sha256:9ffc36dfc772e1020a9648949aecebab687d6b386d6f02526916d1d49973a78a + name:Superman (USA) + cheat + description:Never die when out of super power + code:AAXSEIEA + cheat + description:Never lose super power + code:SXNSSKSE + cheat + description:Start with lots of super power + code:XVUVYZIA + cheat + description:Double max power of all items at start + code:AVEOUIAL + cheat + description:Double usual item power on item power crystal pick-up + code:AXUPYLAP + cheat + description:Full item power on item power crystal pick-up + code:EXUPYLAP + cheat + description:Start at mission 2 + code:EZVPKSOZ+PAVPSIAA+KANPXSSE + cheat + description:Start at mission 3 + code:EZVPKSOZ+ZAVPSIAA+KANPXSSE + cheat + description:Start at mission 4 + code:EZVPKSOZ+LAVPSIAA+KANPXSSE + cheat + description:Start at mission 5 + code:EZVPKSOZ+GAVPSIAA+KANPXSSE + +cartridge sha256:d138aba5eb5c8cf1218abc7b57ad10709041fd68b6a6c47dd30432f8b33470e9 + name:Swamp Thing (USA) + cheat + description:Invincibility + code:PEVOTKPX+ESVOZGEY + cheat + description:Infinite health + code:SZNVZVVK + cheat + description:Infinite lives + code:SZNTIKVK + +cartridge sha256:553d6db3959c8ae3e3cfa598a33c57756b06653ce434fddd0de92bafb460cb05 + name:Sword Master (USA) + cheat + description:Invincibility + code:ALKZVZAP + cheat + description:Infinite health + code:SXSKNXSE+SZSGNXSE + cheat + description:Infinite continues + code:SZNTVUSE + cheat + description:Gain a level for every EXP point gained + code:AAEGKGPZ + cheat + description:Invincibility (alt) + code:042E:8F + cheat + description:Infinite health (alt) + code:042EF:0F + +cartridge sha256:cdd148ebf43ed8918b4cd5d03e685fe0f38b434a59ffb38f0d9ceb2ee7ca9d89 + name:Swords and Serpents (USA) + cheat + description:All characters have Scale Armor + code:VANGKTVE + cheat + description:Warriors start with a Great Sword + code:UEEKSTOE + cheat + description:Warriors start with a Great Axe + code:KEEKSTOE + cheat + description:Magicians start with a Wizard's Wand + code:SEEGETSE + cheat + description:Magicians start with more spells + code:YPKGSTLE + cheat + description:Magicians have greater spells + code:LAKKXTAA + cheat + description:Spells use up no magic points + code:GZKYLGOY + cheat + description:Thieves start with a Long Sword + code:XEOGVTXE + cheat + description:Thieves start with an Axe + code:KEOGVTXA + cheat + description:Start with 30 health points each + code:TPXGNVZE+TPXKSVZE + cheat + description:Start with 50 health points each + code:ZLXGNVZA+ZLXKSVZA + +cartridge sha256:f3955370fe7ecc99afc27cdccf3482f75f06e0f431e42823c95982bb553ad6b9 + name:Town & Country Surf Designs - Wood & Water Rage (USA) + cheat + description:Infinite lives for skating + code:GXUZZZVG + cheat + description:Infinite lives for surfing + code:GXNKALVG + cheat + description:When surfing lose only 1 symbol + code:PEOGILZA + cheat + description:When skating lose only 1 symbol if you fall into the ocean or a crack + code:PAEZYALA + cheat + description:Infinite time + code:GXKLXAVG + cheat + description:Increase time + code:LESPGZPA + cheat + description:Infinite lives + code:0047:04 + cheat + description:Infinite time (alt) + code:0037:09 + +cartridge sha256:cfa1cc0f40cf139b1ba61794838d52c029b40ea12194b4248178d8ae59c69b7a + name:Town & Country Surf Designs - Thrilla's Surfari (USA) + cheat + description:Infinite lives + code:OZSIZYVK + cheat + description:Can't collect Coconuts + code:OXEVIIVV + cheat + description:Start with 5 Coconuts plus what you've collected in sub-game + code:IAUALPAA + cheat + description:Start with 10 Coconuts plus what you've collected in sub-game + code:ZAUALPAE + cheat + description:Start with 15 Coconuts plus what you've collected in sub-game + code:YAUALPAE + cheat + description:Start with less health + code:PAXEIPZA + cheat + description:Start with a little more health + code:LAXEIPZA + cheat + description:Start with 2x health + code:GAXEIPZA + cheat + description:Start with a lot more health + code:PAXEIPZE + cheat + description:Start with 1 life + code:PAXEPPLA + cheat + description:Start with 5 lives + code:IAXEPPLA + cheat + description:Start with 7 lives + code:YAXEPPLA + cheat + description:Start with 9 lives + code:PAXEPPLE + cheat + description:Start with mega lives + code:OPXEPPLE + cheat + description:Start on level 1-3 (can't advance to next level) + code:ZENUATIA+GENUZTKL + cheat + description:Start on level 1-4 (can't advance to next level) + code:LENUATIA+GENUZTKL + cheat + description:Watch the level 2 Cinema (can't advance to next level) + code:GENUATIA+GENUZTKL + cheat + description:Start on level 2-2 (can't advance to next level) + code:TENUATIA+GENUZTKL + cheat + description:Start on level 2-3 (can't advance to next level) + code:YENUATIA+GENUZTKL + cheat + description:Start on level 2-4 (can't advance to next level) + code:AENUATIE+GENUZTKL + cheat + description:Have all 8 health slots + code:0006:08 + +cartridge sha256:b002d1ebee16a5fd2bcae480df8ccc7b8dc7a6f96a80f5fac8b76e078e4f42f0 + name:Tag Team Wrestling (USA) + cheat + description:Infinite health (glitchy) + code:OOUSLZSO + cheat + description:Never give up + code:SUNKXTVI + cheat + description:Infinite health - P1 + code:0048:18 + cheat + description:Infinite health - P2 + code:0058:18 + cheat + description:Infinite health - tag team partner + code:005D:18 + +cartridge sha256:65d11519c8bc1435a994e4f71362dbc734ca808ac3048b66e87c5a80475e3f5e + name:Takahashi Meijin no Bouken-jima IV (Japan) + cheat + description:Invincibility + code:EIEXYZEY + cheat + description:Infinite health + code:SXKGYZSA + +cartridge sha256:6d10e95fcbf4cd1179293106d526373ea43a0c2b8531e694288b147310d617c6 + name:TaleSpin (USA) + cheat + description:Infinite health + code:AAXEGPTA + cheat + description:Infinite continues + code:SXNKXLVG + cheat + description:Infinite lives from getting trapped by obstacles + code:GZKGNKVK + cheat + description:Add $1,000,000 to end-of-level bonus + code:PYVGUAAY + cheat + description:1 life after continue + code:ANNGVLLY + cheat + description:7 lives after continue + code:TNNGVLLY + cheat + description:10 lives after continue + code:PNNGVLLN + cheat + description:1 continue + code:PYEGITLY + cheat + description:6 continues + code:TYEGITLY + cheat + description:9 continues + code:PYEGITLN + cheat + description:Start with 1 life + code:AYVKZYLY + cheat + description:Start with 7 lives + code:TYVKZYLY + cheat + description:Start with 10 lives + code:PYVKZYLN + cheat + description:Invincibility (blinking) + code:007C:5B + cheat + description:Infinite health (alt) + code:05B6:60 + cheat + description:Infinite lives (alt) + code:05DB:79 + +cartridge sha256:f6e88113b5f64cf7ffd915dd60b49e55d7015aaeb8b232c87e9855d4b9759cbd + name:Target Renegade (USA) + cheat + description:Don't take most damage + code:SXVZVTSA + cheat + description:Take half damage from bosses + code:TASPSPGP + cheat + description:Infinite time + code:SZEAOZVG + cheat + description:Set timer to 5:00 for all levels + code:SXEATXSU + cheat + description:Hearts replenish health to maximum + code:AEKESZZA + cheat + description:Set timer to 3:00 for all levels + code:SXEATXSU+NKEEAZEE + cheat + description:Start on level 2 + code:PAOOYZAA + cheat + description:Start on level 3 + code:ZAOOYZAA + cheat + description:Start on level 4 + code:LAOOYZAA + cheat + description:Start on level 5 + code:GAOOYZAA + cheat + description:Start on level 6 + code:IAOOYZAA + cheat + description:Start on level 7 + code:TAOOYZAA + cheat + description:Infinite health + code:00DA:40+00DB:40 + cheat + description:Infinite time (alt) + code:00EB:09 + +cartridge sha256:d088f4b91a03dd6a618245fffb492bcda127c7faa6d880596aa5e751fdac0181 + name:Tecmo Bowl (USA) (Rev A) + cheat + description:Instant touchdowns - P1 + code:AAVELPLA + cheat + description:Instant touchdowns - P2 + code:AAEEKILA + cheat + description:Always kick with max power - P1 + code:IVXOKLZA+OXXOUUPV + cheat + description:Only 2 downs allowed + code:ZAXAYIGA+ZAXOTPGA + cheat + description:6 downs allowed + code:TAXAYIGA+TAXOTPGA + cheat + description:Infinite time (minutes) + code:008B:09 + cheat + description:Infinite time (seconds) + code:008A:99 + cheat + description:CPU/P2 has 0 points + code:0048:00 + +cartridge sha256:d2b56b27912cfc03756c94df6667fdf923c8a3746fa37e4632eeb4134ef4c200 + name:Tecmo Bowl (USA) + cheat + description:Instant touchdowns - P1 + code:AAVELPLA + cheat + description:Instant touchdowns - P2 + code:AAEEKILA + cheat + description:Always kick with max power - P1 + code:IVXOKLZA+OXXOUUPV + cheat + description:Only 2 downs allowed + code:ZAXAYIGA+ZAXOTPGA + cheat + description:6 downs allowed + code:TAXAYIGA+TAXOTPGA + cheat + description:Infinite time (minutes) + code:008B:09 + cheat + description:Infinite time (seconds) + code:008A:99 + cheat + description:CPU/P2 has 0 points + code:0048:00 + +cartridge sha256:54d809b38573248ff73e104505a57f71f8b4356c8a7983a363c2ee242f878205 + name:Tecmo NBA Basketball (USA) + cheat + description:Infinite timeouts + code:SLVUPUVS + cheat + description:2-pt. shots worth 1, 3-pt. shots worth 2 + code:AEOLVPPA + cheat + description:2-pt. shots worth 3, 3-pt. shots worth 4 + code:ZEOLVPPA + cheat + description:2-pt. shots worth 4, 3-pt. shots worth 5 + code:LEOLVPPA + cheat + description:2-pt. shots worth 5, 3-pt. shots worth 6 + code:GEOLVPPA + cheat + description:2-pt. shots worth 6, 3-pt. shots worth 7 + code:IEOLVPPA + cheat + description:3-pt. shots worth 2 pts. + code:AVNUVOVT + cheat + description:5-second violations become 10-second violations + code:NYSENZYE + cheat + description:No 10-second violations + code:NYOPTNZE + cheat + description:Longer shot clock after getting ball on rebound + code:ASOLSEAO + cheat + description:Shorter shot clock after getting ball on rebound + code:AEOLSEAO + +cartridge sha256:cd5ad84e6bba35c19098c6f9783b568e4f1218582a12ec0513e5fafbdabb0303 + name:Tecmo Super Bowl (USA) + cheat + description:Infinite time (continuous play) + code:SXNXPZVG + cheat + description:Almost every player has their skill level at 100 + code:ZXTISS + cheat + description:10 minutes per quarter instead of 5 + code:APUXLZIA + cheat + description:20 minutes per quarter + code:AZUXLZIA + cheat + description:2 minutes per quarter + code:ZAUXLZIA + cheat + description:Touchdown scores 0 instead of 6 - P1 + code:AAOATTTA + cheat + description:Touchdown scores 0 - P2 or computer + code:AEOEVITA + cheat + description:Touchdown scores 3 - P1 + code:LAOATTTA + cheat + description:Touchdown scores 3 - P2 or computer + code:LEOEVITA + cheat + description:Touchdown scores 9 - P1 + code:PAOATTTE + cheat + description:Touchdown scores 9 - P2 or computer + code:PEOEVITE + cheat + description:Touchdown scores 12 - P1 + code:GAOATTTE + cheat + description:Touchdown scores 12 - P2 or computer + code:GEOEVITE + cheat + description:Extra-point kick scores 0 instead of 1 - P1 + code:AAEALYPA + cheat + description:Extra-point kick scores 0 - P2 or computer + code:AEEEUTPA + cheat + description:Extra-point kick scores 2 - P1 + code:ZAEALYPA + cheat + description:Extra-point kick scores 2 - P2 or computer + code:ZEEEUTPA + cheat + description:Extra-point kick scores 3 - P1 + code:LAEALYPA + cheat + description:Extra-point kick scores 3 - P2 or computer + code:LEEEUTPA + cheat + description:Extra-point kick scores 6 - P1 + code:TAEALYPA + cheat + description:Extra-point kick scores 6 - P2 or computer + code:TEEEUTPA + cheat + description:Field goal scores 0 instead of 3 - P1 + code:AEKAGGLA + cheat + description:Field goal scores 0 - P2 or computer + code:AAKEKGLA + cheat + description:Field goal scores 1 - P1 + code:PEKAGGLA + cheat + description:Field goal scores 1 - P2 or computer + code:PAKEKGLA + cheat + description:Field goal scores 6 - P1 + code:TEKAGGLA + cheat + description:Field goal scores 6 - P2 or computer + code:TAKEKGLA + cheat + description:Field goal scores 9 - P1 + code:PEKAGGLE + cheat + description:Field goal scores 9 - P2 or computer + code:PAKEKGLE + cheat + description:Safety scores 0 instead of 2 - P1 + code:AASASIZA + cheat + description:Safety scores 0 - P2 or computer + code:AEKEIIZA + cheat + description:Safety scores 1 - P1 + code:PASASIZA + cheat + description:Safety scores 1 - P2 or computer + code:PEKEIIZA + cheat + description:Safety scores 4 - P1 + code:GASASIZA + cheat + description:Safety scores 4 - P2 or computer + code:GEKEIIZA + cheat + description:Safety scores 6 - P1 + code:TASASIZA + cheat + description:Safety scores 6 - P2 or computer + code:TEKEIIZA + +cartridge sha256:b6adca3680ba28efd41b2216cfcb9af66ed175e4359f0fbd5eda90e6cb6380e8 + name:Tecmo World Cup Soccer (Europe) + cheat + description:Never lose guts + code:OXUEPTOO + cheat + description:Everyone has more guts + code:ASNIEIAZ+TENIOILA + +cartridge sha256:daf07341c80a866333d69c7560f8402123adbb345b15185480393f0db6822b16 + name:Tecmo World Wrestling (USA) + cheat + description:Infinite health - P1 + code:SXKIIYSA + cheat + description:Half training time allowed + code:IEUSTOZA + cheat + description:Double training time allowed + code:GOUSTOZA + cheat + description:Lose all energy after being on the receiving end of a move + code:OOPSYY + +cartridge sha256:892468d05a1097769d14e0ed4822267760d85dbfc79d83a0235878109f839dd1 + name:Teenage Mutant Ninja Turtles (USA) + cheat + description:Invincibility + code:SXOPPIAX + cheat + description:Infinite health + code:AOSOUAST + cheat + description:Infinite health (alt) + code:OUVPUEOO + cheat + description:Infinite health (alt 2) + code:GXSOUAST + cheat + description:10 weapons on pick-up + code:ZENOATGO + cheat + description:50 weapons on pick-up + code:ZUNOATGP + cheat + description:99 weapons on pick-up + code:LVNOATGP + cheat + description:20 missiles on pick-up + code:GPUOLNZA + cheat + description:99 missiles on pick-up + code:YTUOLNZA + cheat + description:Don't take damage from non-killing seaweed + code:SXVZGSOO + cheat + description:Full health boost from pizza slices + code:AEOOGTZA + cheat + description:Double rope on pick-up + code:TAKOPYLA + cheat + description:Never lose rope + code:SXVXTLVG + cheat + description:Reduce recovery time + code:SXOZTVSE + cheat + description:No sound + code:IIIPAP + cheat + description:Start a new game to view the ending + code:IAXGPTZA + cheat + description:Invincibility (alt) + code:0500:15 + cheat + description:Infinite health - Leonardo + code:0077:80 + cheat + description:Infinite health - Raphael + code:0078:80 + cheat + description:Infinite health - Michaelangelo + code:0079:80 + cheat + description:Infinite health - Donatello + code:007A:80 + cheat + description:Infinite Ropes + code:00A7:09 + cheat + description:Infinite Missiles + code:00BF:63 + cheat + description:Infinite time on water level + code:00BB:32 + cheat + description:Have Scrolls - Leonardo + code:0073:04 + cheat + description:Have Scrolls - Raphael + code:0074:04 + cheat + description:Have Scrolls - Michaelangelo + code:0075:04 + cheat + description:Have Scrolls - Donatello + code:0076:04 + cheat + description:99 weapons - Leonardo + code:00A8:63 + cheat + description:99 weapons - Raphael + code:00A9:63 + cheat + description:99 weapons - Michaelangelo + code:00AA:63 + cheat + description:99 weapons - Donatello + code:00AB:63 + cheat + description:Permanent rolling power-up (disable on water level) + code:0540:91 + +cartridge sha256:368d7ea3a066d4dc937473ca6cfc3e0d79d928b2308fff5ddd6ff199c7da153d + name:Teenage Mutant Ninja Turtles II - The Arcade Game (USA) + cheat + description:Invincibility (except grabs from behind) - both players + code:ESUEPZEY + cheat + description:Infinite health - both players + code:SUVASVSO+SLETOKSO + cheat + description:Infinite lives - both players + code:AAEAULPA + cheat + description:One hit kills - both players + code:AOXVXZEI + cheat + description:Stronger turtle weapon + code:PEXTKZZE + cheat + description:Stronger jump + attack + code:PEOVKZGE + cheat + description:Stronger jump + attack + code:ZEOVKZGA + cheat + description:Stronger kick + code:PEXTEZLE + cheat + description:Weaker kick + code:PEXTEZLA + cheat + description:In two-turtle mode, when one player is revived the other player's spare life won't get used + code:SXEAPZVG+SZUAYZVG + cheat + description:Enable stage select and 10 lives code + code:OEVKNZAA + cheat + description:Press Start to finish the level + code:GESSGLPA+GUSSTUIU + cheat + description:Start with 1 life + code:PEOIAPZA + cheat + description:Start with 6 lives + code:TEOIAPZA + cheat + description:Start with 9 lives + code:PEOIAPZE + cheat + description:Invincibility - P1 + code:0093:2B + cheat + description:Invincibility - P2 + code:0094:2B + cheat + description:Infinite health - P1 + code:0568:37 + cheat + description:Infinite health - P2 + code:056A:37 + cheat + description:Infinite lives - P1 + code:004D:09 + cheat + description:Infinite lives - P2 + code:004E:09 + cheat + description:Infinite continues + code:03D3:03 + cheat + description:One hit kills - both players (alt) + code:EAAA:10 + cheat + description:Enable stage select after choosing your turtle + code:0025:81 + +cartridge sha256:9f671090ffd2bb1dc95b9d413c3627f7aa0d576435eeb5b868fa7ca9c29c1190 + name:Teenage Mutant Ninja Turtles III - The Manhattan Project (USA) + cheat + description:Invincibility (except grabs from behind) + code:ENSKKIEI + cheat + description:Infinite health + code:SLXUTXVS+SLKXPKSO + cheat + description:Infinite lives + code:AENKLZPA + cheat + description:Infinite continues + code:SXNSKKVK + cheat + description:No health loss from using turbo attack + code:AAESYXAA + cheat + description:Hit anywhere - both players + code:AAEZVETP+AANXNZNI+AAOZEAGP+APXZXEUX+XTXZEEOS+XTXZOEAN + cheat + description:High-jump + code:ALUGVYAG + cheat + description:Super-jump + code:AZUGVYAK + cheat + description:Mega-jump + code:AZUGVYAG + cheat + description:1 continue + code:PAUZOGLA + cheat + description:9 continues + code:PAUZOGLE + cheat + description:Start with 1 life instead of 4 + code:AEOAALLA + cheat + description:Start with 6 lives + code:IEOAALLA + cheat + description:Start with 9 lives + code:AEOAALLE + cheat + description:Infinite health - P1 + code:04F1:7F + cheat + description:Infinite health - P2 + code:04F2:7F + cheat + description:Infinite lives - P1 + code:006A:05 + cheat + description:Infinite lives - P2 + code:006B:05 + cheat + description:Infinite continues + code:07B0:05 + cheat + description:Enemies automatically die + code:0626:00+0627:00+0628:00 + cheat + description:Start on scene 02 - Ocean + code:0058:01 + cheat + description:Start on scene 03 - Battleship + code:0058:02 + cheat + description:Start on scene 04 - Bridge + code:0058:03 + cheat + description:Start on scene 05 - N.Y. + code:0058:04 + cheat + description:Start on scene 06 - Platform + code:0058:05 + cheat + description:Start on scene 07 - Sewer + code:0058:06 + cheat + description:Start on scene 08 - Sewer 2 + code:0058:07 + cheat + description:Start on scene 09 - Technodrome + code:0058:08 + cheat + description:Start on scene 10 - Technodrome 2 + code:0058:09 + cheat + description:Start on scene 11 - Building + code:0058:0A + cheat + description:Start on scene 12 - Roof + code:0058:0B + cheat + description:Start on scene 13 - Spaceship + code:0058:0C + cheat + description:Start on scene 14 - Spaceship 2 + code:0058:0D + cheat + description:Start on scene 15 - Spaceship 3 + code:0058:0E + +cartridge sha256:10e2091a1c5e3ff3f636944fb274cd61db09dc25d0c14868710675cf1f86fd0b + name:Teenage Mutant Ninja Turtles - Tournament Fighters (USA) + cheat + description:Infinite health + code:OZVVVTEO+ELVVNVLP+SANTOVSU + cheat + description:Infinite time + code:GXKVKXVK + cheat + description:Select ultra strength (ignore strength meter and keep pushing to the right) - both players + code:NYUEESPYE + cheat + description:Select any character in story mode + code:YAVAZLGA + cheat + description:Infinite continues + code:OKKEZTVG + cheat + description:First hit wins round + code:PEXAGAEL + cheat + description:One round wins match + code:OZNEOXPV+ZANEXZPA + cheat + description:Start with 1/3 health - both players + code:AUXAGAEL + cheat + description:Start a new game to view the ending + code:LEXYLGZE + cheat + description:Infinite health - P1 + code:0590:B0 + cheat + description:No health - P2 / CPU + code:0591:00 + cheat + description:Infinite time (one's digit) + code:0673:09 + cheat + description:Infinite time (ten's digit) + code:0672:09 + cheat + description:Turn off CPU's jumping, blocking and fighting routine + code:06C3:00+06C7:00+06C9:00+06CB:00 + +cartridge sha256:dd89b8e08738243d20740194ef814b011df138d820844ee4e53d3a6e536b1c83 + name:Terminator, The (USA, Europe) + cheat + description:Infinite health + code:SXNLNESE + cheat + description:Infinite Grenades + code:SXVYIEVK + +cartridge sha256:6f66d14e5f17ca244444e74538afe31f8abda8376b5b0205afaeb86075407c45 + name:Terminator 2 - Judgment Day (USA) + cheat + description:Infinite health + code:GXVTXZAX + cheat + description:Take minimal damage + code:OXNVKXPK+VNNVSXNN + cheat + description:Infinite lives + code:SXOATOVK + cheat + description:Super-jump + code:XNVOSOKN + cheat + description:Slower running + code:PAOOVZZA+PAUOXZZA + cheat + description:Faster running + code:LAOOVZZA+LAUOXZZA + cheat + description:Faster and longer jumping + code:LESPKGZA+LEVPEGZA + cheat + description:Start with 1 life + code:PANXPLGA + cheat + description:Start with 9 lives + code:PANXPLGE + +cartridge sha256:667bcf3ca1ebcf6f71fccd412ced546f4aba3b8cd2fc30d173cf6d3b4c15846a + name:Terra Cresta (USA) + cheat + description:Invincibility + code:KTKSLGAZ + cheat + description:Infinite lives + code:SZKVPTVG + cheat + description:Infinite "ship formation" splits + code:SXSTULVG + cheat + description:9 "ship formation" splits + code:PEOTEALE+PEKGETLE + cheat + description:A secret mega-weapon + code:AEVKNYLA + cheat + description:Start with 1 life + code:AAKSPGZA + cheat + description:Start with 6 lives + code:IAKSPGZA + cheat + description:Start with 9 lives + code:AAKSPGZE + +cartridge sha256:2ae5fb18a1bf841077e3872ba05060f030ea0bfc573994b2f8fe2fb570dc7853 + name:Tetris (USA) + cheat + description:Disable Game Over (press start) + code:GAOPEILA+GGOPSZEN+XPOPNZSX+YGOPVZAL + cheat + description:999999 score with one piece dropped + code:AEEOUKAA + cheat + description:Puzzle area doesn't disappear on pause + code:TOUZYLTO + cheat + description:2P interactive game + code:ENEALYNN + cheat + description:Need only complete 10 lines in game B + code:APSEGYIZ + cheat + description:Faster forced fall rate + code:PASAUPPE + cheat + description:Must complete 50 lines in game B + code:AISEGYIZ + cheat + description:Must complete 80 lines in game B + code:EASEGYIZ + +cartridge sha256:9daa4bec3013ae7ef498318432f438d70374af294d1dce28edd3c466aaf6b740 + name:Tetris (USA) (Unl) + cheat + description:Always get straight pieces + code:OZKPEPEN+PAKPOOOY + cheat + description:Speed stays the same + code:OZXPKLGX+PZXPSUYZ + cheat + description:Press down to stop blocks from falling + code:GAAEPP + cheat + description:Press down to rotate block very fast + code:PPAEPO + +cartridge sha256:dd77dc88d380807990f55d0b1b55c151f78c480a0a0895e91d6edfb945ad71d7 + name:Tetris 2 (USA) + cheat + description:(1P game) Speed doesn't increase + code:AAUEUSSO + cheat + description:(1P game) Speed increases much faster + code:VNUEUSSO + cheat + description:(1P game) Start and stay at speed of 25 + code:TEXAKYPA + cheat + description:(1P game) Max speed is 2 + code:ZEKESSPP+PESAOSAP + cheat + description:(1P game) Max speed is 10 + code:ZEKESSPO+PESAOSAO + cheat + description:(1P game) Max speed is 15 + code:YEKESSPO+TESAOSAO + cheat + description:(1P game) Max speed is 20 + code:GOKESSPP+LOSAOSAP + cheat + description:(1P vs 2P or 1P vs Com) Every round starts with 4 fixed blocks + code:OZNETPOU+PANEYPAA + cheat + description:(1P vs 2P or 1P vs Com) Every round starts with 10 fixed blocks + code:OZNETPOU+YANEYPAA + cheat + description:(1P vs 2P or 1P vs Com) Every round starts with 15 fixed blocks + code:OZNETPOU+GANEYPAE + cheat + description:(1P vs 2P or 1P vs Com) Every round starts with 20 fixed blocks + code:OZNETPOU+PPNEYPAA + cheat + description:(All game types) Cannot pause game + code:AAVZVYEA + cheat + description:(All game types) Don't hide remaining pieces during pause + code:AVEXOYXZ + +cartridge sha256:18d41a2dc65d8afce295eaf29c391539a69d7cfe6dd32503713ae13d4495a545 + name:Thexder (Japan) + cheat + description:Infinite health + code:SXEPSISA + cheat + description:Infinite shield + code:SZEOKAVG + cheat + description:Start on last level + code:0074:63 + +cartridge sha256:e3be0290f198fceed633b037d9201aa4b95460617551b3a9fb5bb212b153a2d4 + name:Thunder & Lightning (USA) + cheat + description:Infinite lives - P1 + code:SINPPLVI + +cartridge sha256:c0c3d7c2682dd2e0dd2122682e2ae3a9ee7aa3d095bd22a36c759c29b5d05615 + name:Thunderbirds (USA) + cheat + description:Don't lose life points when colliding with enemy + code:SXNTOVVK + cheat + description:Don't lose life points when hit + code:SZUVUNVK + cheat + description:Don't lose energy points when colliding with enemy + code:SXNVVVVK + cheat + description:Don't lose energy points when hit + code:SZKVENVK + cheat + description:81 Days to defeat Hood + code:PSEKIVGL + cheat + description:30 Days to defeat Hood + code:TOEKIVGU + cheat + description:Limited forward movement + code:ATXEANAA+ATXEGNAA + cheat + description:Faster craft + code:GEXETTZA+GEXEZTZA + cheat + description:Full firepower on first pick-up + code:EZUAETEG+XTUAKVEK + +cartridge sha256:c56af43761cb601a068cdc88c2fc36f715921dbae9a8a9d8c10479146c47ccb9 + name:Thundercade (USA) + cheat + description:Infinite lives + code:GXVYPZVI + cheat + description:Infinite Missiles + code:AAUNLIPP + cheat + description:Infinite Bombs + code:GZXYZTVI + cheat + description:Autofire + code:ZANYGSZA + cheat + description:Start with double Bombs + code:TENNPZLA + cheat + description:Start with triple Bombs + code:PENNPZLE + cheat + description:Start with 1 life + code:PAOYIILA + cheat + description:Start with 6 lives + code:TAOYIILA + cheat + description:Start with 9 lives + code:PAOYIILE + +cartridge sha256:e115dbf3de0a4e674ff3f9081d7f97b89f636d81ce524119c0af4ef799490695 + name:Thunder Warrior (Asia) (Unl) + cheat + description:Invincibility + code:ESUUTLEY+ESKLLLEY + cheat + description:Infinite health + code:SXXPGUVK + cheat + description:Infinite magic + code:SXKAEOVK + cheat + description:Infinite lives + code:SZNEIEVK + cheat + description:Keep weapon after losing a life + code:AVSPOUSA + cheat + description:Start with 9 lives + code:PAUXAGLE + +cartridge sha256:403fe1c4454dc1e23fb272c88f70ba30dd5e860ab48ecff59420a09fc84e9a2d + name:Tiger-Heli (USA) + cheat + description:Invincibility + code:SZSYAEGK + cheat + description:Infinite lives - 1P game + code:SLXLGNVS + cheat + description:Infinite lives - both players + code:SUKLINVS+SUVULNVS + cheat + description:Autofire capability + code:TEKNAXIA + cheat + description:Burstfire capability + code:ZEKNAXIA + cheat + description:Turbo boost + code:GXVNZLZP + cheat + description:Extra life every 5 bonus blocks + code:LASNVVZA + cheat + description:Start with 2 lives - 1P game + code:AEUUYTZA + cheat + description:Start with 9 lives - 1P game + code:AEUUYTZE + cheat + description:Start with 6 lives - P1 in a 2P game + code:IASUYYZA + cheat + description:Start with 9 lives - P1 in a 2P game + code:AASUYYZE + cheat + description:Start with 6 lives - P2 + code:IANLZYZA + cheat + description:Start with 9 lives - P2 + code:AANLZYZE + cheat + description:Start with 2 little-helis after dying + code:XTVLUEZK + +cartridge sha256:13353e4e94633eba066e024ea7050b0801a8ccbe4c03bd97656852df4d2f3359 + name:Time Lord (USA) + cheat + description:Infinite health + code:SZVSLOSE + cheat + description:Infinite lives + code:SZUKSKVK + cheat + description:Hit anywhere + code:AEESPNAP+EPEYSLEL + cheat + description:Moonwalking (don't combine with super speed) + code:AAXKXTPA+PAUGVTAA + cheat + description:Super speed (don't combine with moonwalking) + code:PESKOTAA+PEOGSTAA + cheat + description:Start with 1 life + code:PEEKYPLA + cheat + description:Start with 6 lives + code:TEEKYPLA + cheat + description:Start with 9 lives + code:PEEKYPLE + +cartridge sha256:c47a01c9b32642ad3145316804e64b0475a20863e42e81d17c664d03dcdde3c5 + name:Tiny Toon Adventures (USA) + cheat + description:Invincibility + code:EYKEGPEI + cheat + description:Infinite health after collecting one heart + code:SZOOSVVK + cheat + description:Infinite health and one Carrot + code:SEOEYXKX + cheat + description:Infinite time + code:SIKINXVS + cheat + description:Infinite lives + code:SZNOUNVK + cheat + description:Slow down timer + code:YYXIXXLU + cheat + description:Speed up timer + code:YPXIXXLU + cheat + description:Multi-jump + code:AASPPVPZ + cheat + description:Pick-up more hearts + code:AEEPPYPA + cheat + description:Power decreases slower when using Dizzy Devil's spin attack + code:PEVOIPZA + cheat + description:Press Start to finish the level (don't use on 6-3) + code:GENIVPPE+GKNSEOIK + cheat + description:Start a new game to view the ending + code:AOOKSYAA + cheat + description:1 life after continue + code:AEXZNZZA + cheat + description:6 lives after continue + code:IEXZNZZA + cheat + description:9 lives after continue + code:AEXZNZZE + cheat + description:Start with 1 life + code:AAXKUYZA + cheat + description:Start with 6 lives + code:IAXKUYZA + cheat + description:Start with 9 lives + code:AAXKUYZE + cheat + description:Start on level 2 + code:VASGOYSA+XZXKNNOZ+IAUGEYPA + cheat + description:Start on level 3 + code:VASGOYSA+XZXKNNOZ+ZAUGEYPE + cheat + description:Start on level 4 + code:VASGOYSA+XZXKNNOZ+YAUGEYPE + cheat + description:Start on level 5 + code:VASGOYSA+XZXKNNOZ+GPUGEYPA + +cartridge sha256:d4a94fd07859485fc2aac73d627933b70e1977c93b744ec3d71b66d4365ab7f7 + name:Tiny Toon Adventures 2 - Trouble in Wackyland (USA) + cheat + description:Invincibility + code:SAOAZASZ+EIOAGAEY + cheat + description:Infinite time + code:SZUYAZAX + cheat + description:Protection against hits on log ride + code:SXUXVXVK + cheat + description:Protection against hits on train + code:SZSEASVK + cheat + description:Protection against hits on bumper cars + code:SZOOUXVK + cheat + description:Protection against hits on roller coaster + code:SXKAYUVK + cheat + description:Protection against hits in fun house + code:SZSALOVK + cheat + description:Log ride costs nothing instead of 3 tickets + code:AANPYPLA + cheat + description:Log ride costs 5 tickets + code:IANPYPLA + cheat + description:Train costs nothing instead of 2 tickets + code:AANPIPZA + cheat + description:Train costs 5 tickets + code:IANPIPZA + cheat + description:Roller coaster costs nothing instead of 4 tickets + code:AANPPPGA + cheat + description:Roller coaster costs 6 tickets + code:TANPPPGA + cheat + description:Bumper cars cost nothing instead of 1 ticket + code:AANPLPPA + cheat + description:Bumper cars cost 4 tickets + code:GANPLPPA + cheat + description:Fun house costs nothing instead of 50 normal tickets + code:AANOZPIA + cheat + description:Fun house costs 10 normal tickets + code:PANOZPIA + cheat + description:Fun house costs 90 normal tickets + code:PANOZPIE + cheat + description:Start a new game to view the ending + code:PAKYINAE + cheat + description:Start with 20 tickets instead of 10 + code:ZAEYPYPA + cheat + description:Start with 50 tickets instead of 10 + code:IAEYPYPA + cheat + description:Start with 90 tickets instead of 10 + code:PAEYPYPE + cheat + description:Start with 110 tickets instead of 10 + code:VVVNAVSE + +cartridge sha256:f80e57788e32f73852d7d2aa4831edfe4c4bd5b8a02a322995263a13597c2f0c + name:Titan Warriors (USA) (Proto) + cheat + description:Invincibility against enemies + code:SZSNSGSA + cheat + description:Infinite lives + code:SZSPLKVK + +cartridge sha256:44569cef71a0b859bd0390e0155b19077ddef4a684f6fba6569a5f918910d4a2 + name:To the Earth (USA) + cheat + description:Shots use up no energy + code:AAEUXTGA + cheat + description:Shots use up less energy + code:ZAEUXTGA + cheat + description:Shots use up more energy + code:AAEUXTGE + cheat + description:Enemy bombs do no damage + code:AEUVEYGP + cheat + description:Enemy bombs do half damage + code:AEUVEYGO + cheat + description:Enemy bombs do more damage + code:AXUVEYGO + cheat + description:Bonus energy for shooting enemy + code:GOEUEVZA + cheat + description:Less energy for shooting enemy + code:GEEUEVZA + cheat + description:No energy for shooting enemy + code:AEEUEVZA + +cartridge sha256:e580f51b06217b102e56ec98fff7c4ebad5b925fa3a28042d67433cffa8c5cdc + name:Toki (USA) + cheat + description:Infinite health + code:EESEYEVG + cheat + description:Infinite weapons + code:SZNOGUVV+SXEOLUVV+SXOOZUSE + cheat + description:Infinite time + code:AAKEVYPA + cheat + description:Infinite lives + code:SXNYZSVK + cheat + description:Hit anywhere - normal enemies + code:SXSETVSO+XVEAPTAV + cheat + description:When weapon runs out of ammo it's replaced with the double weapon + code:PEOPTLAA + cheat + description:When weapon runs out of ammo it's replaced with the wave weapon + code:ZEOPTLAA + cheat + description:When weapon runs out of ammo it's replaced with the 3-way weapon + code:LEOPTLAA + cheat + description:When weapon runs out of ammo it's replaced with the flame weapon + code:GEOPTLAA + cheat + description:When weapon runs out of ammo it's replaced with the fireball weapon + code:IEOPTLAA + cheat + description:Start with less time + code:PAEIKALA+PAKAGALA + cheat + description:Start with more time + code:IAEIKALA+IAKAGALA + cheat + description:Start with even more time + code:PAEIKALE+PAKAGALE + cheat + description:Start with one heart - first life only + code:PAENPIZA + cheat + description:Start with one heart - after first life + code:AENYTIZA + cheat + description:Start with 1 life + code:AEKYXYZA + cheat + description:Start with 2 lives + code:PEKYXYZA + cheat + description:Start with 5 lives + code:GEKYXYZA + cheat + description:Start with 9 lives + code:AEKYXYZE + cheat + description:Infinite health - P1 + code:011C:02 + cheat + description:Infinite time (hundred's digit) + code:0576:09 + cheat + description:Infinite time (ten's digit) + code:0577:09 + cheat + description:Infinite time (one's digit) + code:0578:09 + cheat + description:Infinite lives - P1 + code:0114:09 + cheat + description:Infinite Coins (ten's digit) + code:0118:09 + cheat + description:Infinite Coins (one's digit) + code:0119:09 + cheat + description:Start on stage 2 - Lake Neptune + code:0116:01 + cheat + description:Start on stage 3 - Cavern Of Fire + code:0116:02 + cheat + description:Start on stage 4 - Ice Palace + code:0116:03 + cheat + description:Start on stage 5 - Dark Jungle + code:0116:04 + cheat + description:Start on stage 6 - Golden Palace + code:0116:05 + +cartridge sha256:b49e3b3c2a307e9c24715ea5863d6c80b805f9566eb1f468a4c701cf54605a5a + name:Tom & Jerry - The Ultimate Game of Cat and Mouse! (USA) + cheat + description:Infinite health + code:AEXYPAPA + cheat + description:Infinite lives + code:SXSNYEVK + cheat + description:Minimum health (one touch kills) + code:LEXYPAPA + cheat + description:Start with 1 life + code:PASNVZLA + cheat + description:Start with 6 lives + code:TASNVZLA + cheat + description:Start with 9 lives + code:PASNVZLE + cheat + description:Start on world 2 + code:AEVYKPAE + cheat + description:Start on world 3 + code:AOVYKPAA + cheat + description:Start on world 4 + code:AOVYKPAE + cheat + description:Start on world 5 + code:AXVYKPAA + +cartridge sha256:fe052f7f6b4b41dcbc009860e0c997c31e2e236eb46d713137ee773cce96105e + name:Toobin' (USA) (Unl) + cheat + description:Infinite lives + code:SXUTGIVG + cheat + description:Infinite cans + code:SZEZZIVG + cheat + description:Turbo left and right movement + code:ALKXTAAZ+ALVXLAAZ + cheat + description:Start with 2 lives + code:PAOTZTLA + cheat + description:Start with 6 lives + code:TAOTZTLA + cheat + description:Start with 9 lives + code:PAOTZTLE + cheat + description:Start with 18 cans + code:ZPOTTTTA + cheat + description:Start with 12 cans + code:GAOTTTTE + cheat + description:Start with 1 can + code:PAOTTTTA + cheat + description:Start on level 2 + code:PAOZEAAA + cheat + description:Start on level 4 + code:LAOZEAAA + cheat + description:Start on level 6 + code:IAOZEAAA + cheat + description:Start on level 8 + code:YAOZEAAA + cheat + description:Invincibility (glitchy) + code:02D3:00 + cheat + description:Infinite patches + code:006E:09 + cheat + description:Infinite cans (alt) + code:004C:FF + cheat + description:Have all letters + code:006D:7F + cheat + description:Faster shots + code:003F:02 + cheat + description:Don't go into dying animation (use with invincibility) + code:004A:00+004B:00 + +cartridge sha256:e788ae1dff1b868795395e19357525b93ddd52ac86f6a505d14eac5fa323b023 + name:Top Gun (USA) (Rev A) + cheat + description:Immune to Bullets (not Missiles) + code:AEKSNLLA + cheat + description:Infinite fuel + code:GXUSNGVG + cheat + description:Infinite Missiles + code:GXKIKIVG + cheat + description:Take off with double Hound Missiles + code:ASEKTOAZ + cheat + description:Take off with double Wolf Missiles + code:AXEKYPGO + cheat + description:Take off with double Tiger Missiles + code:GOOGAOZA + cheat + description:Start with half fuel + code:IANKLOZA + cheat + description:Start on mission 2 + code:ZAEGLPPA + cheat + description:Start on mission 3 + code:LAEGLPPA + cheat + description:Start on mission 4 + code:GAEGLPPA + cheat + description:Infinite health + code:004E:0C + cheat + description:Infinite fuel (alt) + code:0036:0A + cheat + description:Infinite lives + code:0031:02 + cheat + description:Infinite Missiles + code:003C:3F + +cartridge sha256:aa43f3138d4f731e5e8df530dbf8fc1f6f45303b84589f7a0715e392887f3dff + name:Top Gun (USA) + cheat + description:Immune to Bullets (not Missiles) + code:AEKSNLLA + cheat + description:Infinite fuel + code:GXUSNGVG + cheat + description:Infinite Missiles + code:GXKIKIVG + cheat + description:Always land safely on Aircraft Carrier + code:AAXLIYGA+SZXLLTSA + cheat + description:Take off with double Hound Missiles + code:ASEKTOAZ + cheat + description:Take off with double Wolf Missiles + code:AXEKYPGO + cheat + description:Take off with double Tiger Missiles + code:GOOGAOZA + cheat + description:Start with half fuel + code:IANKLOZA + cheat + description:Start on mission 2 + code:ZAEGLPPA + cheat + description:Start on mission 3 + code:LAEGLPPA + cheat + description:Start on mission 4 + code:GAEGLPPA + cheat + description:Infinite health + code:004E:0C + cheat + description:Infinite fuel (alt) + code:0036:0A + cheat + description:Infinite lives + code:0031:02 + cheat + description:Infinite Missiles + code:003C:3F + +cartridge sha256:55375474cdebdb05eeec27494761b686a7df63b8f874516004f1739760665c87 + name:Top Gun - The Second Mission (USA) + cheat + description:Invincibility + code:ASEAVLEY + cheat + description:Infinite lives + code:SZVYLIVG + cheat + description:Infinite missiles - 1P game + code:AAKEUYPA + cheat + description:Infinite missiles - 2P game + code:AENAZIPA + cheat + description:60 Phoenix missiles - 1P game + code:KUVZTIKO + cheat + description:20 Phoenix missiles - 2P game + code:KOVXTISA + cheat + description:Start with 1 life + code:PASYALLA + cheat + description:Start with 6 lives + code:TASYALLA + cheat + description:Start with 9 lives + code:PASYALLE + +cartridge sha256:45067f85328eabb3b8cb2bceec72192bfa8d73494521660f171b9ed6d151fdea + name:Total Recall (USA) + cheat + description:Infinite health + code:AVNVOAKZ + cheat + description:Most enemies easier to kill + code:GXUIIXSO + cheat + description:Take less damage + code:PENVKEGE + cheat + description:Gain maximum health from canisters + code:XYUVNUXT + cheat + description:Start with less health + code:OZNKEPSX+ALNKOOLZ + cheat + description:Start with more health + code:OZNKEPSX+NYNKOOLX + cheat + description:Invincibility + code:007F:03 + cheat + description:Infinite health (alt) + code:02C0:FA + +cartridge sha256:0bd29c5b583570e195e05a4272e69b74257db1f4ff928d59c8eb1022bad871ce + name:Totally Rad (USA) + cheat + description:Infinite health + code:SVVNTKON + cheat + description:Infinite magic + code:GXXAPKSN + cheat + description:Immune to fire and water + code:SZVAYIVG + cheat + description:Infinite lives + code:SZSEYXVK + cheat + description:Super-jump + code:AOOAYGAO + cheat + description:Mega-jump + code:YOOAYGAO + cheat + description:Half a life or half magic give full health or magic + code:TEEONALA + cheat + description:Start with 1 life + code:AEUXSTZA + cheat + description:Start with 6 lives + code:IEUXSTZA + cheat + description:Start with 9 lives + code:AEUXSTZE + cheat + description:Infinite health (alt) + code:006E:0C + cheat + description:Infinite lives (alt) + code:05D4:63 + +cartridge sha256:5ec7c3e91bfd5800073286ee978b1d152c19f924837788eb72700c7c01261fa4 + name:Tower of Druaga, The (Japan) + cheat + description:Invincibility + code:OXNUATSX+OZELLGSX + cheat + description:Infinite lives + code:00CB:03 + cheat + description:Infinite time + code:00B7:69 + cheat + description:Doors are always open + code:0099:40 + cheat + description:Treasure instantly appears + code:00E5:01 + +cartridge sha256:c3fec0650f1709911432e8953a6075cb5883601a209323ba0744cb19d82b7f80 + name:Toxic Crusaders (USA) + cheat + description:Infinite lives + code:KXKLTIKA + cheat + description:Infinite health + code:SXXVYGSA + cheat + description:Never lose Mop + code:SXXTXNSE+PASLEAAA + cheat + description:Invincibility + code:020F:00 + cheat + description:Infinite health (alt) + code:00DE:08 + cheat + description:Infinite lives (alt) + code:00DD:09 + cheat + description:Never lose weapon + code:020B:01 + +cartridge sha256:a2812d80b3057aac9753f48247a7a46b29bea0b9aec04ca4c327180085c25b58 + name:Track & Field (USA) + cheat + description:Almost always qualify in Skeet Shooting and Archery + code:NTXKTNKT + cheat + description:You don't have to score any points to qualify for Skeet Shooting, Triple Jump and Archery + code:UKUKIGKG + +cartridge sha256:efb93dcae29f1ff85b58ccb9450c23d528073a019493d88a9abcabe4ca9aca4f + name:Transformers - Convoy no Nazo (Japan) + cheat + description:Invincibility + code:AIUKAZEY+AVXGPGSZ + cheat + description:Hit anywhere (enemies and platforms) + code:AEKGYZGZ+ASVKZZEP+SLEKLUSO + cheat + description:Moon jump + code:AAEOTOTZ+AAEPZOZL+AENOAAYZ + cheat + description:Solve level 9 maze using any path + code:AYNEAZEY + +cartridge sha256:58d2f6abe4445dadc332f37a34af54e78b6af47a8c0e6313ef898ef6db046f4f + name:Treasure Master (USA) + cheat + description:Invincibility + code:KVNPUXEL+LENPKZIA + cheat + description:Infinite health + code:SGKTSGVG + cheat + description:Infinite lives + code:SXEETAVG + cheat + description:Infinite oxygen + code:SKVXYOVK + cheat + description:Infinite health (alt) + code:00F6:07 + cheat + description:Infinite lives (alt) + code:00F5:07 + cheat + description:Infinite Oxygen (alt) + code:0435:FF + cheat + description:Infinite Fuse + code:04A2:80 + +cartridge sha256:6b2004f30e7de67dfb86db7446f2204695a3a9b9b367bacf401dbf14bb1a74f2 + name:Trog! (USA) + cheat + description:Infinite lives + code:XTXATOVS + +cartridge sha256:a5ae39359aa5b16961a98a7aaeeb278787382d5282ee80b5b3a2de954283ebb7 + name:Trojan (USA) + cheat + description:Infinite health - both players + code:SZVSZXVK + cheat + description:Infinite health - both players (alt) + code:NNUZGKYU+NYVNEKYU + cheat + description:Infinite time + code:GXEPGKVS + cheat + description:One hit kills + code:VTESLOSX + cheat + description:Hit anywhere + code:GZOXYYEL+AAKENATI+AANNIKLP+AAOZLYIZ+AAVAXALG+AEENPKYA+AENIEUAP+AEUNIUUI+AEUYPLNT+AEVIULIZ + cheat + description:Keep High-jump Boots on pick-up + code:SXKVKXVK + cheat + description:Always have High-jump Boots + code:AENIAUYP + cheat + description:Multi-jump - both players + code:AAUSAUGP+AESIZUEI+GXKIILEY + cheat + description:Start with a health boost + code:YASGUUAE + cheat + description:Start with a super health boost + code:TPSGUUAE + cheat + description:Start with half usual health + code:GASGUUAA + cheat + description:Start with 1 life - P1 + code:PENKXPLA + cheat + description:Start with 1 life - P2 + code:PAOKNZLA + cheat + description:Start with 6 lives - P1 + code:TENKXPLA + cheat + description:Start with 6 lives - P2 + code:TAOKNZLA + cheat + description:Start with 9 lives - P1 + code:PENKXPLE + cheat + description:Start with 9 lives - P2 + code:PAOKNZLE + cheat + description:Start with 187 lives - P1 + code:ENNKXPLA + cheat + description:Start with 196 lives - P2 + code:EYOKNZLA + cheat + description:Start with 100 seconds + code:PASKELZA + cheat + description:Start with 900 seconds + code:PASKELZE + cheat + description:Infinite health (alt) + code:0335:08 + +cartridge sha256:0b5d1465b23e31f24e1caecf1490f97a60deb97ba873a36fa948adb016e9c0d2 + name:Trolls on Treasure Island (USA) (Unl) + cheat + description:Infinite time + code:SIOGUTVE + cheat + description:Only one jewel needed to clear stage + code:EYNINYEI + +cartridge sha256:e2b26560d326cc626736efa2addf1c66f5af77913968fcf5cde738188c4a0132 + name:Twin Cobra (USA) + cheat + description:Infinite lives + code:SZVSGXVK + cheat + description:Infinite Bombs + code:SZNYXOVK + cheat + description:Infinite continues + code:AAKKYTPA + cheat + description:Autofire + code:AAOYVOLP + cheat + description:Keep weapon type after death + code:GZNITZSA + cheat + description:Keep super chargers after death + code:GZNSAZSA + cheat + description:9 Bombs after dying + code:ZANIAZLE + cheat + description:20 Bombs after dying + code:GPNIAZLA + cheat + description:Start with 1 life + code:AEUGZIZA + cheat + description:Start with 6 lives + code:IEUGZIZA + cheat + description:Start with 9 lives + code:AEUGZIZE + cheat + description:Start with 1 life after a continue + code:AANKLTZA + cheat + description:Start with 6 lives after a continue + code:IANKLTZA + cheat + description:Start with 9 lives after a continue + code:AANKLTZE + cheat + description:Start with 9 continues + code:PEOKIIIE + cheat + description:Start with 9 Bombs + code:ZAEGKILE + cheat + description:Start with 20 Bombs + code:GPEGKILA + +cartridge sha256:8eb6aa7818f1cac84af0f91350b167f2884dba45073c9f00510f47d0a38e4192 + name:Twin Eagle (USA) + cheat + description:Infinite lives - P1 + code:SXOSVPVG + cheat + description:Infinite Bombs on pick-up - P1 + code:SXNSXSVK + cheat + description:Infinite Bombs on pick-up - P2 + code:SZSIXNVK + cheat + description:Never lose weapons - P1 + code:EYKVVUSA+YAKVNLKZ + cheat + description:Never lose weapons - P2 + code:ENXVKUSA+YEXVSLSZ + cheat + description:1 life after a continue - P1 + code:PAEKXTLA + cheat + description:4 lives after a continue - P1 + code:GAEKXTLA + cheat + description:7 lives after a continue - P1 + code:YAEKXTLA + cheat + description:Start with 7 lives - both players + code:YEETIPLA + cheat + description:Start with 4 lives - both players + code:GEETIPLA + cheat + description:Start with 1 life - both players + code:PEETIPLA + +cartridge sha256:4b9c46714fa085d61ad1177b72bdaa9428d104a171eb6335a03bf06ad9782389 + name:TwinBee (Japan) + cheat + description:Invincibility + code:0093:10 + +cartridge sha256:ef818c90f326383d13087b6e0131bf36563d76c3c1a3c13821c79368e377cf8d + name:Ufouria - The Saga (Europe) + cheat + description:Invincibility + code:EIVETAEY+EIKELYEY + cheat + description:Start with all characters + code:PESVYNYP+YEVTPYAA + +cartridge sha256:af5ac55d6283b709bcd96889708a6e7ad3c77e3bdd377aae796fd87b4b90dc4b + name:Ultima - Exodus (USA) + cheat + description:Take no damage from most monsters + code:GZUKOGST + cheat + description:No limit on stat points + code:AEOAKVAA + cheat + description:Never lose tools + code:AAXIAPPA + cheat + description:Never lose magic + code:KPVSUZOP + cheat + description:Rapid magic recovery + code:AAUEPYPA+OLUAGYOI + cheat + description:Start with 5 of each item + code:IEOPTPPA + cheat + description:Start with 10 of each item + code:ZEOPTPPE + cheat + description:Start with 40 of each item + code:ENOPTPPA + cheat + description:Start with 35,328 gold + code:XEEOAPGV+PUEPTPAL + cheat + description:Start with 512 gold + code:ZEEOAPGT+PUEPTPAL + cheat + description:Start with 200 gold + code:EKEOAPGV + cheat + description:Start with 75 stat points + code:YKEAUVTZ+LKUAVYZU+LGSOPAZU + cheat + description:Start with 5F stat points + code:LSEAUVTX+YSUAVYZU+YISOPAZU + +cartridge sha256:bb625b8df6ddbeb991bb1cbf9b818a5352dcd4856d84640612b2df66148c442f + name:Ultima - Quest of the Avatar (USA) + cheat + description:Infinite MP + code:OLUZZEOO + cheat + description:Infinite Herbs + code:SUOVNKVS + cheat + description:Infinite Oil + code:SZNLKKVK + cheat + description:Infinite Torches + code:SUEUIXVS + cheat + description:Infinite Gems + code:SXVUGSVK + cheat + description:No random battles + code:SZSTXPSA + cheat + description:Heal costs nothing instead of 70 + code:AEKITITG + cheat + description:Cure poison costs nothing + code:AAVILSZA + cheat + description:Axe costs 1 instead of 225 + code:PAEENYOT + cheat + description:Staff costs 1 instead of 20 + code:PAEEUYGP + cheat + description:Sword costs 144 instead of 400 + code:AAOAXYPA + cheat + description:Bow costs 168 instead of 680 + code:AAEAKYZA + cheat + description:Leather costs 1 instead of 200 + code:PAXAONEG + cheat + description:Chain costs 88 instead of 600 + code:AAXAKYZA + cheat + description:Plate costs 196 instead of 2500 + code:AAXEXNPA + cheat + description:Start with perfect virtues (worthy of Avatarhood) + code:LTVPZIZL + cheat + description:Start with 8336 Gold Pieces + code:AZKPTIPA + cheat + description:Start with 4240 Gold Pieces + code:APKPTIPA + cheat + description:Start with 144 Gold Pieces (for experts) + code:AAKPTIPA + cheat + description:Start with 100 Ash instead of 8 + code:GTXPIVAA + cheat + description:Start with 100 Ginseng instead of 8 + code:GTXPTVAA + cheat + description:Start with 100 Garlic instead of 9 + code:GTXPYVPA + cheat + description:Start with 100 Silkweb instead of 7 + code:GTXOATYA + cheat + description:Start with 100 Moss instead of 8 + code:GTXOPVAA + cheat + description:Start with 100 Pearl instead of 4 + code:GTXOZTGA + cheat + description:Start with 100 Fungus instead of none + code:GTXOLTAA + cheat + description:Start with 100 Manroot instead of none + code:GTXOGTAA + cheat + description:Mage starts with 712 HP + code:ZEVPTIAA + cheat + description:Mage starts with 381 EXP + code:PAOPTTAA + cheat + description:Mage starts with Strength of 32 + code:AXNOIIAP + cheat + description:Fighter starts with Strength of 48 + code:AUNOYSLP + cheat + description:Fighter starts with 255 EXP + code:NYOOPVSK + cheat + description:Fighter starts with 812 HP + code:LEVOZIPA + cheat + description:Fighter starts with 75 MP + code:LKNPYIAE + +cartridge sha256:1e8966fd8c9baf57c514fbf4d67ddd8c1ffd184be164f99342ccdec62def8db2 + name:Ultima - Warriors of Destiny (USA) + cheat + description:Infinite consumable items such as food and torches - May not be able to discard some items + code:SUSTXSVS + cheat + description:A night at the Wayfarer Inn is free + code:AAEZIPZL + cheat + description:At Healer's Herbs - Sulfurous ash is free instead of 1 GP + code:AEUZPAPA + cheat + description:At Healer's Herbs - Ginseng is free instead of 2 GP + code:AEUZGAZA + cheat + description:At Healer's Herbs - Garlic is free instead of 2 GP + code:AEUZYAZA + cheat + description:At Healer's Herbs - An Tym Scroll is free instead of 100 GP + code:AEUXIAGT + cheat + description:At Healer's Herbs - Spellbook is free instead of 150 GP + code:AEKZAAVP + cheat + description:At Healer's Herbs - Spidersilk is free instead of 4 GP + code:AEUXZAGA + cheat + description:From Pendra - Spidersilk is free instead of 4 GP + code:AEEXZAGA + cheat + description:From Pendra - Black Pearl is free instead of 3 GP + code:AEEZYALA + cheat + description:From Pendra - Garlic is free instead of 2 GP + code:AEEZGAZA + cheat + description:From Pendra - Ginseng is free instead of 2 GP + code:AEEZPAZA + cheat + description:From Pendra - Sant Talisman is free instead of 75 GP + code:AEEXIELG + cheat + description:At Iolo's Bows - Bow is free instead of 75 GP + code:AAEXIELG + cheat + description:At Iolo's Bows - Wooden shield is free instead of 25 GP + code:AAEXZEPP + cheat + description:At Iolo's Bows - Dagger is free instead of 3 GP + code:AAEZGALA + cheat + description:At Iolo's Bows - Short sword is free instead of 40 GP + code:AAEZYEAZ + cheat + description:At Iolo's Bows - Crossbow is free instead of 150 GP + code:AAOZAAVP + cheat + description:At Iolo's Bows - Arrow is free instead of 1 GP + code:AAOZTAPA + cheat + description:At Iolo's Bows - Bolt is free instead of 2 GP + code:AAOXPAZA + cheat + description:At Iolo's Bows - Sell Dagger for 2,305 instead of 1 GP + code:PAOZAPAE + cheat + description:At Iolo's Bows - Sell Short sword for 2,848 instead of 20 GP + code:LAOZLPAG + cheat + description:At Iolo's Bows - Sell Wooden shield for 3,850 instead of 10 GP + code:YAOZTPAE + cheat + description:At Iolo's Bows - Magic bow is free instead of 800 GP + code:AAOZLAAZ+AAOZGALA + cheat + description:Start new game with 201 instead of 1,225 GP + code:AESXEZGA + cheat + description:Start new game with 4,297 instead of 1,225 GP + code:AOSXEZGA + cheat + description:Start new game with 32,713 instead of 1,225 GP + code:YNSXEZGE + cheat + description:Infinite Health - Avatar + code:6A06:0F + cheat + description:Infinite Health - Shamino + code:6A07:0F + cheat + description:Infinite Health - Iolo + code:6A08:0F + +cartridge sha256:f4de2a91acb2eb3024fb75231859a30c130c0169be0e6ad24330805c8f766e03 + name:Ultimate Stuntman, The (USA) (Unl) + cheat + description:Infinite time + code:SXNSYXVK + cheat + description:Infinite 'Crez' weapon until end of stage + code:SXXSNUVK + cheat + description:Minimum damage taken + code:OVUZKPSV+PEUZSONY + cheat + description:Don't lose a life on Ground Pursuit, Boat and Hang Glider stages + code:GXUAOKVK + cheat + description:9 seconds on clock pick-up + code:PEXXSATE + cheat + description:Full energy on pick-up + code:AEOZXPZA + cheat + description:Shield lasts longer on Human Fly stages + code:NYXXVVAN + cheat + description:Shield lasts a shorter time on Human Fly stages + code:AGXXVVAY + cheat + description:Don't lose a life against end-of-stage bosses and on street combat stages + code:SXNXKNVK + cheat + description:Don't lose a life on Human Fly stages + code:SXXUXSVK + cheat + description:Start with 1 life (first credit only) + code:AENVNGZA + cheat + description:Start with 6 lives (first credit only) + code:IENVNGZA + cheat + description:Start with 9 lives (first credit only) + code:AENVNGZE + +cartridge sha256:c7ad19e926809adc47c0b44c852e19be7a95e7235ee58cb753e68d7cdee9c89c + name:Uncanny X-Men, The (USA) + cheat + description:Infinite life + code:SXEEXIST + cheat + description:Half life - Wolverine + code:GVUZPOEG + cheat + description:Half life - Cyclops + code:GVUZYOEG + cheat + description:Half life - Nightcrawler + code:PKUXIPXA + cheat + description:Half life - Iceman + code:YSKZLOVU + cheat + description:Half life - Colossus + code:YNKXPONN + cheat + description:Half life - Storm + code:ASKXYPEZ + +cartridge sha256:018f8a4f35d15af7891070cbfe6232791d603e92cbd95a49527e80f3825e770d + name:Untouchables, The (USA) (Rev B) + cheat + description:Infinite energy + code:0092:40 + cheat + description:Infinite ammo + code:00C6:02+00C8:02 + cheat + description:Infinite time + code:009A:09 + +cartridge sha256:9048cc77abdfd688395b2f8d1889d3d295d378c649cccbdf79f364fc73217051 + name:Untouchables, The (USA) (Rev A) + cheat + description:Infinite energy on scenes 1 and 4 + code:SLOEAGVI + cheat + description:Infinite energy on scene 2 + code:SXKAATVG + cheat + description:Infinite time on scenes 1 and 4 + code:SXUAZGVG + cheat + description:More time on scene 1 + code:GEXELPZA + cheat + description:Less time on scene 1 + code:PEXELPZA + cheat + description:More time on scene 2 + code:TAXELAGA + cheat + description:Less time on scene 2 + code:ZAXELAGA + cheat + description:More time on scene 3 + code:TAXEYAGA + cheat + description:Less time on scene 3 + code:ZAXEYAGA + cheat + description:More time on scene 5 + code:TAXAPAIA + cheat + description:Less time on scene 5 + code:LAXAPAIA + cheat + description:More time on scene 7 + code:ZAOEAAPA + cheat + description:More ammo picked up on scene 2 + code:AZNETGAP + cheat + description:Less ammo picked up on scene 2 + code:IANETGAP + cheat + description:More ammo picked up on scene 7 + code:PAOEGATE + cheat + description:Start on scene 2 + code:AAXKTEGA + cheat + description:Start on scene 3 + code:ZAXKTEGA + cheat + description:Start on scene 4 + code:GAXKTEGA + cheat + description:Start on scene 5 + code:TAXKTEGA + cheat + description:Start on scene 7 + code:ZAXKTEGE + cheat + description:Infinite energy + code:0092:40 + cheat + description:Infinite ammo + code:00C6:02+00C8:02 + cheat + description:Infinite time + code:009A:09 + +cartridge sha256:43198592f96005c1492165d5af8d41859dc164a99e39e37eff264ae5e0c63b75 + name:Untouchables, The (USA) + cheat + description:Infinite energy on scenes 1 and 4 + code:SLOEAGVI + cheat + description:Infinite energy on scene 2 + code:SXKAATVG + cheat + description:Infinite time on scenes 1 and 4 + code:SXUAZGVG + cheat + description:More time on scene 1 + code:GEXELPZA + cheat + description:Less time on scene 1 + code:PEXELPZA + cheat + description:More time on scene 2 + code:TAXELAGA + cheat + description:Less time on scene 2 + code:ZAXELAGA + cheat + description:More time on scene 3 + code:TAXEYAGA + cheat + description:Less time on scene 3 + code:ZAXEYAGA + cheat + description:More time on scene 5 + code:TAXAPAIA + cheat + description:Less time on scene 5 + code:LAXAPAIA + cheat + description:More time on scene 7 + code:ZAOEAAPA + cheat + description:More ammo picked up on scene 2 + code:AZNETGAP + cheat + description:Less ammo picked up on scene 2 + code:IANETGAP + cheat + description:More ammo picked up on scene 7 + code:PAOEGATE + cheat + description:Start on scene 2 + code:AAXKTEGA + cheat + description:Start on scene 3 + code:ZAXKTEGA + cheat + description:Start on scene 4 + code:GAXKTEGA + cheat + description:Start on scene 5 + code:TAXKTEGA + cheat + description:Start on scene 7 + code:ZAXKTEGE + cheat + description:Infinite energy + code:0092:40 + cheat + description:Infinite ammo + code:00C6:02+00C8:02 + cheat + description:Infinite time + code:009A:09 + +cartridge sha256:7255ab27932f7c07fa61c230a51342b0441ea9b24ba094ae3129ec7453de2449 + name:Urban Champion (World) + cheat + description:Infinite time + code:GZOTZLVG + cheat + description:Powerful quick punches + code:AEEIZGGE + cheat + description:Super powerful quick punch + code:TOEIZGGA + cheat + description:Speed up the timer + code:LENVTZTA + cheat + description:Become a stronger fighter + code:AAXSLLPA + cheat + description:Become a weaker fighter + code:LAXSLLPA + cheat + description:Infinite stamina + code:00CA:99 + +cartridge sha256:433f6bcbd59a9d5916d2209ddeacd39d24810c1ed21a33366171b4991fc7e844 + name:Vice - Project Doom (USA) + cheat + description:Invincibility + code:AANSEIYP + cheat + description:Infinite lives + code:SZSKIOVK + cheat + description:Infinite time + code:SZNNNSVK + cheat + description:Infinite grenades + code:SZVYXKVK + cheat + description:Infinite bullets + code:SZKNXKVK + cheat + description:Infinite power + code:SXVYVKSE + cheat + description:Hit anywhere + code:AEEYXEET + cheat + description:Multi-jump + code:XVVKISZK + cheat + description:10 coins for an extra life + code:ZEOYNGGV + cheat + description:25 coins for an extra life + code:POOYNGGV + cheat + description:20 extra Grenades on pick-up + code:GOENELIA + cheat + description:25 extra Bullets on pick-up + code:POXYXUZE + cheat + description:Start timer for round 1 at 150 + code:VPOEPKXY + cheat + description:Start timer for round 2 at 150 + code:VPUAZKXY + cheat + description:Start with 99 grenades + code:LTNNXLIA + +cartridge sha256:8104dc7acdaea42b027b2cc7b05dc6a1ffdba6e74b35581c2bb0250df89a28fa + name:Vindicators (USA) (Unl) + cheat + description:Infinite lives + code:KLUAGTVI + cheat + description:Automatic fuel replenishment + code:VYUKEIVI + cheat + description:Never lose Stars + code:GZOEVXON + cheat + description:Quicker shot re-load + code:ZAUKYTZP + cheat + description:Turbo speed + code:LPKKLVGE + cheat + description:Start with increased shot range + code:AZKGYVAA + cheat + description:Start with 10 Stars + code:VVVAAPSA + cheat + description:Start with 80 Shots + code:AAUKYTZO+VIKGPTEI + cheat + description:Start with 80 Bombs + code:AAUKYTZO+KIKGPTEI + cheat + description:Start with 1 life + code:AAKKYTZA + cheat + description:Start with 6 lives + code:IAKKYTZA + cheat + description:Start with 9 lives + code:AAKKYTZE + +cartridge sha256:2e312fc327c1e569eccf14eee5a00c41f676c1492035d99af0873681da0f034d + name:Volleyball (USA, Europe) + cheat + description:Computer doesn't get points for scoring + code:YEYIAV + cheat + description:3 points - team 1 + code:0063:03 + +cartridge sha256:f38b9681b53008d32813880c2f28a8969a228a4b3b485ce09f7c0a4334f4abcc + name:VS. Castlevania (VS) + cheat + description:Invincibility (blinking) + code:ESOTOPEY + cheat + description:Infinite health + code:SXNVZYSA + cheat + description:Infinite lives + code:SXVKGZVG + +cartridge sha256:60098a93322a9e07a2b164a02e5517bc22664ca33f6323c2ae23a62941ad393b + name:VS. Super Mario Bros. (VS) + cheat + description:Invincibility + code:VONUPOOE+EISTOTEY + cheat + description:Infinite lives + code:SXAOUE + cheat + description:Go to minus world + code:LZPOAY+YIPOZN+YAPOLY + +cartridge sha256:8589b1dc55e04d23e56e864f1b001c6eecf18b7dcb7a0c4a9c4a40cbcc451601 + name:Wacky Races (USA) + cheat + description:Invincibility + code:EINSUPEY+ESUISPEY+ESEKSIEY + cheat + description:Infinite health + code:SKSGSVVK+SKUKUSVK + cheat + description:Infinite health (alt) + code:GXSGSVVK+GZNKVVVK+GXUKUSVK + cheat + description:Don't take most damage + code:GXSGSVVK + cheat + description:Infinite lives + code:SASSZEVK+SEKIYEVK + cheat + description:Infinite lives (alt) + code:APSIGESZ+AASIIEIS + cheat + description:Infinite Bones after obtaining one + code:SXOILNSE + cheat + description:Go straight to level boss + code:XNUVKIKG + cheat + description:Start at race 1, end of stage 1 + code:EKUVKIKK + cheat + description:Start at race 1, end of stage 2 + code:NKUVKIKK + cheat + description:Start at race 1, end of stage 3 + code:KSUVKIKG + cheat + description:Start at race 2, end of stage 1 + code:ESUVVIVS + cheat + description:Start at race 2, end of stage 2 + code:KSUVVIVS + cheat + description:Start at race 2, end of stage 3 + code:EVUVVIVI + cheat + description:Start at race 3, end of stage 1 + code:KVKTEIXT + cheat + description:Start at race 3, end of stage 2 + code:EVKTEIXV + cheat + description:Start at race 3, end of stage 3 + code:KVKTEIXV + cheat + description:Start at race 3, end of stage 4 + code:ENKTEIXT + cheat + description:Start with 1 life + code:AAKVEIZA + cheat + description:Start with 5 lives + code:GAKVEIZA + cheat + description:Start with 7 lives + code:TAKVEIZA + cheat + description:Start with 9 lives + code:AAKVEIZE + cheat + description:Start with 6 hearts + code:TASTOILA + cheat + description:Start with 8 hearts + code:AASTOILE + cheat + description:Invincibility (alt) + code:0453:01 + cheat + description:Invincibility (blinking) + code:0452:11 + cheat + description:Infinite health (alt 2) + code:0459:03 + cheat + description:Infinite time + code:00A4:59 + cheat + description:Infinite lives (alt 2) + code:045D:63 + cheat + description:Infinite Gems + code:042F:63 + +cartridge sha256:60667bc0ed1c0c6355f59b5716c678954c5f3915064bdbfbb8e0195f2643eda8 + name:Wall Street Kid (USA) + cheat + description:Infinite money + code:OUSNVLOP + cheat + description:Sart a new game with $16,777,215 + code:NYEELPYE+NYEEZPOX+NYEEPPAX + cheat + description:Infinite money (alt) + code:03E1:FF + +cartridge sha256:50b6f1f87fb14c8ff74a54e60b85139e11adcaecb62eb24174aeb58a20b7698f + name:Wally Bear and the No! Gang (USA) (Unl).nes + cheat + description:Invincibility + code:AOUXYYEI + cheat + description:Multi-jump + code:GZNXZISA + cheat + description:Collect items from anywhere + code:AANLINGI+AANULYTI + +cartridge sha256:c12771e8155b030eff0081bfabd98e57a162d6592899f29dd16f141f0e6e08a3 + name:Wario's Woods (USA) + cheat + description:Infinite time + code:XTNXLOVK + cheat + description:Clear round A data to complete round A and B + code:LTKPOLAA+PGKPVLZG + cheat + description:Each coin gives you a credit + code:PAVOEXTP + cheat + description:Always get blue monsters + code:OZSUNAOU+EYVLEAUL + cheat + description:Always get 1 line of monsters + code:VTSLEESE + cheat + description:Wario doesn't cause ceiling to fall, no enemies fall + code:OXNATNSE + cheat + description:One bomb in Birdo time only + code:XTKXGXVK + cheat + description:Invisible Toad + code:SXOIOASA + cheat + description:Invisible coins + code:ENXPSPEI + cheat + description:Coins worth 5 + code:XVXPSESE + cheat + description:Infinite coins fall + code:XVXOEEVK + cheat + description:Only 1 coin falls + code:VXSOTNVK + cheat + description:No Coins fall + code:EESOTNVG + cheat + description:Diamonds don't form in lesson mode + code:NYSZUSOO + +cartridge sha256:059409954035963f1f13029dfa25468100a8e6a90d9388c4a225f235ade97a45 + name:Wayne's World (USA) + cheat + description:Infinite lives + code:VXKESXVK + cheat + description:Infinite time + code:SXSALOVK + cheat + description:Infinite Worthiness + code:SZSEXUSE + cheat + description:More time in level 1 + code:NNSLYYKU + cheat + description:More time in Donut shop in level 1 + code:NNNLIYZU + cheat + description:Power-up restores all Worthiness + code:AANAKLZA + cheat + description:Power-up worth nothing + code:SZNANUSE + cheat + description:Getting all donuts is worth no extra lives + code:SZOOSUVV + cheat + description:Faster timer + code:YOKEZOLU + cheat + description:Slower timer + code:AVKEZOLL + cheat + description:5 special moves on pick-up + code:IAEZXAGP + cheat + description:40 special moves on pick-up + code:AZEZXAGO + cheat + description:Start with less Worthiness + code:EANEZAEL + cheat + description:Start with much less Worthiness + code:AGNEZAEL + cheat + description:Start with 2 lives + code:PANEYAGA + cheat + description:Start with 8 lives + code:YANEYAGA + cheat + description:Start with 10 lives + code:PANEYAGE + +cartridge sha256:a00db4c89bfd12704c53768b62b4f09d57d28891093447d81a0678b059629e59 + name:WCW World Championship Wrestling (USA) + cheat + description:Always win - P1 + code:EGOZINIP+PAOZTNPA+XTOZYYIE + +cartridge sha256:ab6f1bbcda6f0c0bbe1450b5f2ab2b21a5e01ec39143a455701862965cdbd7b4 + name:Werewolf - The Last Warrior (USA) + cheat + description:Infinite time + code:SZXTTLVG + cheat + description:Only 1 anger point needed to become Super-Werewolf + code:PAENGTIA + cheat + description:Blue "W" won't change you back to a man + code:SZXNPVVK + cheat + description:Gain maximum energy from small hearts + code:ESKNTIKI + cheat + description:Hit anywhere + code:AAVGVYGT+AAVKKNTI+AEXGXNAZ+AEXKEYZZ + cheat + description:Don't lose energy from blue "W" + code:AAUNGVZA+AAUNPVAA + cheat + description:Infinite health - P1 + code:00BC:14 + cheat + description:Infinite time (alt) + code:00BF:F4 + cheat + description:Always Werewolf + code:044E:01+042E:01 + cheat + description:Always Super Werewolf + code:044E:02 + cheat + description:Have Gun in Werewolf form + code:044F:01+044D:01 + +cartridge sha256:a66195e11e38bee9f602abd279b7c04367528380dfa5b915dce0fa6fd272c23c + name:Where's Waldo (USA) + cheat + description:Infinite time + code:AEETLZPA + cheat + description:Guesses cost nothing + code:VTSVYYTE + +cartridge sha256:700ebc3c2dd27420bbdcccb987ba60d3f0680469101353de15a1b2bd565ac701 + name:Who Framed Roger Rabbit (USA) + cheat + description:Invincibility + code:ATKTIPEI+ATVIKLEI+ATXGOPEI+AVOVAIEI + cheat + description:Infinite continues + code:SXKELNVK + cheat + description:Never lose a life except in Punch lines + code:SXVOYIVG + cheat + description:Never lose a life in Punch lines + code:SZSZXYVG + cheat + description:Harder to build strength + code:PAUKXTGA + cheat + description:Strength to full instantly + code:EPUKXTGA + cheat + description:Start with 1 life + code:PESSSYLA + cheat + description:Start with 6 lives + code:TESSSYLA + cheat + description:Start with 9 lives + code:PESSSYLE + +cartridge sha256:b9a4542417439619239cdb2cefd8c7eced2407ba2954f026c0ab1ea7d4def3d3 + name:Whomp 'Em (USA) + cheat + description:Invincibility + code:ATSELPEY + cheat + description:Infinite health + code:SZNATPSA + cheat + description:Don't lose a life from energy loss + code:SXEEZPVG + cheat + description:Creatures can't steal extra lives + code:SXXOUPVG + cheat + description:Keep buffalo headdress for present level + code:SZKEGPVG + cheat + description:Always have buffalo headdress + code:ZAKELOAA + cheat + description:Start with 1 life + code:AEKKGALA + cheat + description:Start with 5 lives + code:LAVKYAAA + cheat + description:Start with 10 lives + code:AAVKYAAE + +cartridge sha256:9d875583dbdf80a0631ce4ffb3099064454d80568b5e9fe748a5e850f8fa0161 + name:Widget (USA) + cheat + description:Invincibility + code:ENNVEZEI + cheat + description:Infinite health (except against spikes) + code:SXSLEKSE + cheat + description:Infinite health (only against spikes) + code:SXUVOEVK + cheat + description:Infinite time + code:SXUAVXVK+SXXANXVK + cheat + description:Infinite MP + code:SXXPPVSE + cheat + description:Infinite lives + code:SZUGSXVK + cheat + description:Invincibility (blinking) + code:00B9:01 + cheat + description:Infinite health + code:0581:06 + cheat + description:Infinite lives (alt) + code:04F5:02 + cheat + description:Infinite special + code:058B:06 + +cartridge sha256:adff304553b64384f86f6c2b63571f43972b9d087f92359a1b9b93b54d523542 + name:Wild Gunman (World) (Rev A) + cheat + description:Infinite lives in Gang Mode + code:GZOGVYVG + cheat + description:Infinite ammo in Gang Mode + code:GZNIPAVG + cheat + description:Shoot 5 enemies to finish level + code:IENSUOZA+IEUSSUZA + cheat + description:Start with double normal ammo + code:AXVIEOYA + cheat + description:Start with triple normal ammo + code:AUVIEOYA + cheat + description:Start with half normal ammo + code:AEVIEOYE + cheat + description:Start with 1 life + code:YEUISPLE+PENGVALA + cheat + description:Start with 10 lives + code:ZEUISPLE+ZENGVALE + cheat + description:Start with 15 lives + code:YEUISPLE+YENGVALE + +cartridge sha256:62aec65696ecf24a487b7cdd19bad5cbd19f4229a89a7888634d468c67da378a + name:Wild Gunman (Japan, USA) + cheat + description:Infinite lives in Gang Mode + code:EIAGNY + cheat + description:Infinite ammo in Gang Mode + code:EYTIZA + cheat + description:Shoot 5 enemies to finish level + code:IENSUOZA+IEUSSUZA + cheat + description:Start with double normal ammo + code:AXVIEOYA + cheat + description:Start with triple normal ammo + code:AUVIEOYA + cheat + description:Start with half normal ammo + code:AEVIEOYE + cheat + description:Start with 1 life + code:YEUISPLE+PENGVALA + cheat + description:Start with 10 lives + code:ZEUISPLE+ZENGVALE + cheat + description:Start with 15 lives + code:YEUISPLE+YENGVALE + +cartridge sha256:adb1a1a9e853c2390a702e40573d145d08ca6c649cc789e4c8b41fcb63503bb6 + name:Willow (USA) + cheat + description:Infinite magic + code:ZASEGOUI + cheat + description:Don't take any hits + code:TGNILGSA + cheat + description:Start with all items + code:XZKYILKP+AVUOXSOZ + cheat + description:Start at EXP Level 5 + code:GEKISVZA+PNKINTSL + cheat + description:Start at EXP Level 10 + code:PEKISVZE+PNKINTSL + cheat + description:Start at EXP Level 15 + code:TEKISVZE+PNKINTSL + +cartridge sha256:e9539f088b4463e36c2a0d324d6a184fc1ecc3aa26ca4c5675ad9dc948bba5e5 + name:Wing of Madoola, The (Japan) (Sample) + cheat + description:Invincibility + code:SXKGXTSA + cheat + description:Infinite hits and magic + code:SLUUVYSP + cheat + description:Hit anywhere + code:AAOGEVPA+AAOGSVZI+PZOGKTSN + cheat + description:One hit kills + code:APXKETSV+APXKOVEE + cheat + description:Start with 9999 hits + code:OOKZKPAE+OOKXEPAO + cheat + description:Start with 9999 max hits + code:OOKXKPAE+OOSZEPAO + cheat + description:Start with 9999 magic + code:OOSXEPAO+OOSZKPAE + +cartridge sha256:c3136379fc4e9401dec41be356fd6963e79dd46193c61cc03b59d9935835401f + name:Wizardry - Proving Grounds of the Mad Overlord (USA) + cheat + description:Annointed Mace costs nothing instead of 30 + code:AEVEIPAL + cheat + description:Long Sword costs nothing instead of 25 + code:AAVEIPIZ + cheat + description:Short Sword costs nothing instead of 15 + code:AEXEIPIP + cheat + description:Small Shield costs nothing instead of 20 + code:AEVEIZAZ + cheat + description:Staff costs nothing instead of 10 + code:AAVEIZAP + cheat + description:Dagger costs nothing instead of 15 + code:AEXEIZIA + cheat + description:Robes costs nothing instead of 15 + code:AAVEILIP + cheat + description:S of Pain costs nothing instead of 500 + code:AEVEGYIA + cheat + description:S of Fire costs nothing instead of 500 + code:AAXEKAIA + cheat + description:Body Armor costs nothing instead of 1500 + code:AEXEGYIP + cheat + description:Large Shield costs nothing instead of 40 + code:AAXEILAG + cheat + description:Leather Armor costs nothing instead of 50 + code:AEXEILAI + cheat + description:Chain Mail costs nothing instead of 90 + code:AEVEILEP + cheat + description:Breast Plate costs nothing instead of 200 + code:AAXEGGZA + cheat + description:Helm costs nothing instead of 100 + code:AEXEGGPA + cheat + description:S of Curing costs nothing instead of 500 + code:AEVEGGIA + cheat + description:Rod of Iron costs nothing instead of 3000 + code:AAXEGTAL + cheat + description:Padded Leather costs nothing instead of 1500 + code:AEXEGTIP + cheat + description:Shiny Chain costs nothing instead of 1500 + code:AEVEGTIP + cheat + description:Sturdy Plate costs nothing instead of 1500 + code:AAXEGYIP + cheat + description:Iron Shield costs nothing instead of 1500 + code:AAVEGYIP + cheat + description:Gloves of Copper costs nothing instead of 6000 + code:AEVEKGAT + cheat + description:S of Glass costs nothing instead of 1500 + code:AAVEKLIP + cheat + description:Studly Staff costs nothing instead of 2500 + code:AAXEKPIZ + cheat + description:S of Neutralizing costs nothing instead of 300 + code:AAXEGILA + cheat + description:Plate Mail costs nothing instead of 750 + code:AAVEIGAI+AAVEGGYA + cheat + description:Blade of Biting costs nothing instead of 15000 + code:AEXEGIAI+AEXELIPA + +cartridge sha256:d30e480e7a99b5c3d8fe8faecf0bc0a14a9b163025eca9bf787f600fa927bb89 + name:Wizards & Warriors (USA) (Rev A) + cheat + description:Invincibility + code:EINVTIEY + cheat + description:Invincibility (flashes) + code:AUATPI + cheat + description:Infinite lives + code:GXVUZGVG + cheat + description:Infinite lives (alt) + code:SXVUZGVG + cheat + description:Infinite health + code:GZNVILST + cheat + description:Infinite health (alt) + code:OXOVATES+GEOVPVGU+SEOVZTSZ + cheat + description:Potions last longer + code:NTEINNYK + cheat + description:Meat gives half health + code:PEEVAGZA + cheat + description:Meat gives double health + code:GEEVAGZA + cheat + description:Enter doors without needing a key + code:ALGYPL + cheat + description:Jump higher + code:KYISTO + cheat + description:Jump to the top of the scren + code:KGTITO + cheat + description:Start with 6 lives + code:IAUUKAZA+IAXGGAZA + cheat + description:Start with 9 lives + code:AAUUKAZE+AAXGGAZE + cheat + description:Invincibility (alt) + code:00FC:02 + cheat + description:Infinite health (alt 2) + code:0076:0C + cheat + description:Super-jump (disable if you get stuck) + code:0148:40 + +cartridge sha256:3ba4f6fd63a74338e438df43ddd1195f8913d69c11f6668d3bbf23a2a3cea459 + name:Wizards & Warriors (USA) + cheat + description:Invincibility + code:EINVTIEY + cheat + description:Invincibility (flashes) + code:AUATPI + cheat + description:Infinite lives + code:GXVUZGVG + cheat + description:Infinite lives (alt) + code:SXVUZGVG + cheat + description:Infinite health + code:GZNVILST + cheat + description:Infinite health (alt) + code:OXOVATES+GEOVPVGU+SEOVZTSZ + cheat + description:Potions last longer + code:NTEINNYK + cheat + description:Meat gives half health + code:PEEVAGZA + cheat + description:Meat gives double health + code:GEEVAGZA + cheat + description:Enter doors without needing a key + code:ALGYPL + cheat + description:Jump higher + code:KYISTO + cheat + description:Jump to the top of the scren + code:KGTITO + cheat + description:Start with 6 lives + code:IAUUKAZA+IAXGGAZA + cheat + description:Start with 9 lives + code:AAUUKAZE+AAXGGAZE + cheat + description:Invincibility (alt) + code:00FC:02 + cheat + description:Infinite health (alt 2) + code:0076:0C + cheat + description:Super-jump (disable if you get stuck) + code:0148:40 + +cartridge sha256:2fa3ee5f9ef17dcd63f2f3936dc79b95a71f9e58521080250d4b4e7efbd471d2 + name:Wizards & Warriors III - Kuros...Visions of Power (USA) + cheat + description:Infinite keys + code:SXXNITVG + cheat + description:Infinite gold + code:EYYYYY + cheat + description:Shopkeeper sometimes forgets to charge + code:SZNYZNSE + cheat + description:Infinite lives + code:SXVTGLVG + cheat + description:Infinite lives (except boss stages) + code:SXNTPLVG + cheat + description:Coins worth 25 + code:POSAGGZU + cheat + description:Coins worth 100 + code:GVSAGGZL + cheat + description:Coins worth 255 + code:NNSAGGZU + cheat + description:Bags worth 5 + code:IESAZKZA + cheat + description:Bags worth 50 + code:ZUSAZKZA + cheat + description:Bags worth 255 + code:NNSAZKZE + cheat + description:Less health after death (except boss stages) + code:AGELLZEA + cheat + description:More health after death (except boss stages) + code:ELELLZEA + cheat + description:Start with Less health + code:AGKZGYEA + cheat + description:Start with More health + code:ELKZGYEA + cheat + description:Start with very little life force + code:PAKZGYEA + cheat + description:Start with about half life force + code:AGKZGYEA + cheat + description:Start with 2 lives + code:PAXXPYLA + cheat + description:Start with 7 lives + code:TAXXPYLA + cheat + description:Start with 10 lives + code:PAXXPYLE + cheat + description:Invincibility + code:008B:2B + cheat + description:Infinite health + code:00EB:80 + cheat + description:Infinite Keys + code:0087:02 + cheat + description:Infinite money + code:0669:09 + cheat + description:One hit kills on most enemies/bosses + code:049D:01+049E:01+049F:01+04A0:01+04A1:01 + cheat + description:Have the Orb in slot 1 (enable then disable) + code:0657:01 + cheat + description:Have the Orb in slot 2 (enable then disable) + code:0658:01 + cheat + description:Have the Orb in slot 3 (enable then disable) + code:0659:01 + cheat + description:Have the Orb in slot 4 (enable then disable) + code:065A:01 + cheat + description:Have the Scepter in slot 1 (enable then disable) + code:0657:02 + cheat + description:Have the Scepter in slot 2 (enable then disable) + code:0658:02 + cheat + description:Have the Scepter in slot 3 (enable then disable) + code:0659:02 + cheat + description:Have the Scepter in slot 4 (enable then disable) + code:065A:02 + cheat + description:Have the Coin in slot 1 (enable then disable) + code:0657:03 + cheat + description:Have the Coin in slot 2 (enable then disable) + code:0658:03 + cheat + description:Have the Coin in slot 3 (enable then disable) + code:0659:03 + cheat + description:Have the Coin in slot 4 (enable then disable) + code:065A:03 + cheat + description:Have the Chalice in slot 1 (enable then disable) + code:0657:04 + cheat + description:Have the Chalice in slot 2 (enable then disable) + code:0658:04 + cheat + description:Have the Chalice in slot 3 (enable then disable) + code:0659:04 + cheat + description:Have the Chalice in slot 4 (enable then disable) + code:065A:04 + cheat + description:Have the Amulet in slot 1 (enable then disable) + code:0657:05 + cheat + description:Have the Amulet in slot 2 (enable then disable) + code:0658:05 + cheat + description:Have the Amulet in slot 3 (enable then disable) + code:0659:05 + cheat + description:Have the Amulet in slot 4 (enable then disable) + code:065A:05 + cheat + description:Have the Crown in slot 1 (enable then disable) + code:0657:06 + cheat + description:Have the Crown in slot 2 (enable then disable) + code:0658:06 + cheat + description:Have the Crown in slot 3 (enable then disable) + code:0659:06 + cheat + description:Have the Crown in slot 4 (enable then disable) + code:065A:06 + cheat + description:Have the Crown Jewel 1 in slot 1 (enable then disable) + code:0657:07 + cheat + description:Have the Crown Jewel 1 in slot 2 (enable then disable) + code:0658:07 + cheat + description:Have the Crown Jewel 1 in slot 3 (enable then disable) + code:0659:07 + cheat + description:Have the Crown Jewel 1 in slot 4 (enable then disable) + code:065A:07 + cheat + description:Have the Crown Jewel 2 in slot 1 (enable then disable) + code:0657:08 + cheat + description:Have the Crown Jewel 2 in slot 2 (enable then disable) + code:0658:08 + cheat + description:Have the Crown Jewel 2 in slot 3 (enable then disable) + code:0659:08 + cheat + description:Have the Crown Jewel 2 in slot 4 (enable then disable) + code:065A:08 + cheat + description:Have the Crown Jewel 3 in slot 1 (enable then disable) + code:0657:09 + cheat + description:Have the Crown Jewel 3 in slot 2 (enable then disable) + code:0658:09 + cheat + description:Have the Crown Jewel 3 in slot 3 (enable then disable) + code:0659:09 + cheat + description:Have the Crown Jewel 3 in slot 4 (enable then disable) + code:065A:09 + cheat + description:Have the Crown Jewel 4 in slot 1 (enable then disable) + code:0657:0A + cheat + description:Have the Crown Jewel 4 in slot 2 (enable then disable) + code:0658:0A + cheat + description:Have the Crown Jewel 4 in slot 3 (enable then disable) + code:0659:0A + cheat + description:Have the Crown Jewel 4 in slot 4 (enable then disable) + code:065A:0A + cheat + description:Have the Bronze Knight Statue in slot 1 (enable then disable) + code:0657:0B + cheat + description:Have the Bronze Knight Statue in slot 2 (enable then disable) + code:0658:0B + cheat + description:Have the Bronze Knight Statue in slot 3 (enable then disable) + code:0659:0B + cheat + description:Have the Bronze Knight Statue in slot 4 (enable then disable) + code:065A:0B + cheat + description:Have the Silver Knight Statue in slot 1 (enable then disable) + code:0657:0C + cheat + description:Have the Silver Knight Statue in slot 2 (enable then disable) + code:0658:0C + cheat + description:Have the Silver Knight Statue in slot 3 (enable then disable) + code:0659:0C + cheat + description:Have the Silver Knight Statue in slot 4 (enable then disable) + code:065A:0C + cheat + description:Have the Gold Knight Statue in slot 1 (enable then disable) + code:0657:0D + cheat + description:Have the Gold Knight Statue in slot 2 (enable then disable) + code:0658:0D + cheat + description:Have the Gold Knight Statue in slot 3 (enable then disable) + code:0659:0D + cheat + description:Have the Gold Knight Statue in slot 4 (enable then disable) + code:065A:0D + cheat + description:Have the Bronze Thief Statue in slot 1 (enable then disable) + code:0657:0E + cheat + description:Have the Bronze Thief Statue in slot 2 (enable then disable) + code:0658:0E + cheat + description:Have the Bronze Thief Statue in slot 3 (enable then disable) + code:0659:0E + cheat + description:Have the Bronze Thief Statue in slot 4 (enable then disable) + code:065A:0E + cheat + description:Have the Silver Thief Statue in slot 1 (enable then disable) + code:0657:0F + cheat + description:Have the Silver Thief Statue in slot 2 (enable then disable) + code:0658:0F + cheat + description:Have the Silver Thief Statue in slot 3 (enable then disable) + code:0659:0F + cheat + description:Have the Silver Thief Statue in slot 4 (enable then disable) + code:065A:0F + cheat + description:Have the Gold Thief Statue in slot 1 (enable then disable) + code:0657:10 + cheat + description:Have the Gold Thief Statue in slot 2 (enable then disable) + code:0658:10 + cheat + description:Have the Gold Thief Statue in slot 3 (enable then disable) + code:0659:10 + cheat + description:Have the Gold Thief Statue in slot 4 (enable then disable) + code:065A:10 + cheat + description:Have the Bronze Wizard Statue in slot 1 (enable then disable) + code:0657:11 + cheat + description:Have the Bronze Wizard Statue in slot 2 (enable then disable) + code:0658:11 + cheat + description:Have the Bronze Wizard Statue in slot 3 (enable then disable) + code:0659:11 + cheat + description:Have the Bronze Wizard Statue in slot 4 (enable then disable) + code:065A:11 + cheat + description:Have the Silver Wizard Statue in slot 1 (enable then disable) + code:0657:12 + cheat + description:Have the Silver Wizard Statue in slot 2 (enable then disable) + code:0658:12 + cheat + description:Have the Silver Wizard Statue in slot 3 (enable then disable) + code:0659:12 + cheat + description:Have the Silver Wizard Statue in slot 4 (enable then disable) + code:065A:12 + cheat + description:Have the Gold Wizard Statue in slot 1 (enable then disable) + code:0657:13 + cheat + description:Have the Gold Wizard Statue in slot 2 (enable then disable) + code:0658:13 + cheat + description:Have the Gold Wizard Statue in slot 3 (enable then disable) + code:0659:13 + cheat + description:Have the Gold Wizard Statue in slot 4 (enable then disable) + code:065A:13 + +cartridge sha256:2d62114f3f139e8dd01c3e6e56d83a848a236ebb0c146fac5d372ba40ae456d5 + name:Wolverine (USA) + cheat + description:No enemies + code:ISISYU + cheat + description:Infinite lives - both players + code:GZEXAOVK + cheat + description:Mega-jump + code:AXXLNUIE + cheat + description:Claws use up no health + code:AAXGYLPA + cheat + description:Super speed + code:KYXUVUVN+GAUUELZA + cheat + description:Take less damage from bullets + code:ZAXLISAA+ZAEKAKAA + cheat + description:Start each new life as a berserker + code:AGNIZAAA + cheat + description:Start with 1 life - P1 + code:PEUSZALA + cheat + description:Start with 6 lives - P1 + code:TEUSZALA + cheat + description:Start with 9 lives - P1 + code:PEUSZALE + cheat + description:Start with 1 life - P2 + code:PEVIYALA + cheat + description:Start with 6 lives - P2 + code:TEVIYALA + cheat + description:Start with 9 lives - P2 + code:PEVIYALE + cheat + description:Start on stage 2 - P1 + code:PEXIZAAA + cheat + description:Start on stage 4 - P1 + code:LEXIZAAA + cheat + description:Start on stage 6 - P1 + code:IEXIZAAA + cheat + description:Start on stage 8 - P1 + code:YEXIZAAA + cheat + description:Start on stage 2 - P2 + code:PEKSYAAA + cheat + description:Start on stage 4 - P2 + code:LEKSYAAA + cheat + description:Start on stage 6 - P2 + code:IEKSYAAA + cheat + description:Start on stage 8 - P2 + code:YEKSYAAA + cheat + description:Infinite health + code:00CD:1E + cheat + description:Infinite lives + code:04DA:03 + +cartridge sha256: + name:World Hero (Unl) [!] + cheat + description:Hit anywhere + code:AASSVEIG+AGUTUYPL+AZUTSNNV+ETUTXYSG + +cartridge sha256:3950d679fd6bbd5b59b720ef0284cb916f916a985103ccec60de2f256bcd8786 + name:Wrath of the Black Manta (USA) (Rev A) + cheat + description:Invincibility (blinking) + code:0589:FA + cheat + description:Start on stage 2 + code:054A:01 + cheat + description:Start on stage 3 + code:054A:03 + cheat + description:Start on stage 4 + code:054A:04 + cheat + description:Start on stage 5 + code:054A:05 + +cartridge sha256:545a5533481f4f7bd8f7e9d6c7ccad9195f870522d7d2a9d83c18958804da008 + name:Wrath of the Black Manta (USA) + cheat + description:Take no damage from most enemies + code:SXSLXUVK + cheat + description:Never die from falling off screen + code:SZVOKEVK + cheat + description:Mega-jump when stationary + code:GZUZSUSO + cheat + description:Start with extra energy + code:AEOAZTLE + cheat + description:Start with 1 life + code:AEOAYTZA + cheat + description:Start with 6 lives + code:IEOAYTZA + cheat + description:Start with 9 lives + code:AEOAYTZE + cheat + description:Invincibility (blinking) + code:0589:FA + cheat + description:Start on stage 2 + code:054A:01 + cheat + description:Start on stage 3 + code:054A:03 + cheat + description:Start on stage 4 + code:054A:04 + cheat + description:Start on stage 5 + code:054A:05 + +cartridge sha256:f1eb29dd1c7b2b29f4932df853f32a7560bbfe64997281aa79f61ba9f131fb17 + name:Wrecking Crew (World) + cheat + description:Invincibility + code:ATNKYZAZ + cheat + description:Infinite lives - P1 + code:SXGXGL + cheat + description:Infinite lives - P2 + code:SXIXZL + cheat + description:Annoying guy doesn't bother you + code:SZXILXSO+SXKILOSO + cheat + description:Start with Golden Hammer + code:VVUXGPSA + cheat + description:Start with 1 life - both players + code:PELXYP + cheat + description:Start with 10 lives - both players + code:PELXYO + cheat + description:Start with 15 lives - both players + code:YELXYO + cheat + description:Start with 250 lives + code:ENLXYO + +cartridge sha256:a0354fb9c1c29e25b8bd2bd45735e8af2263cde66b56cc2e61eb5d9295a42de1 + name:Wurm - Journey to the Center of the Earth! (USA) + cheat + description:Infinite fuel + code:SZSGYNSE + cheat + description:Infinite shields and life + code:SXNGZTSA + cheat + description:Start on Act 2 - Dyna Crystal + code:ZEXITGPA + cheat + description:Start on Act 3 - Magma Falls + code:LEXITGPA + cheat + description:Start on Act 4 - Ziggy + code:GEXITGPA + cheat + description:Start on Act 5 - Dual Duel + code:IEXITGPA + +cartridge sha256:e5de4656729ffa37f7f6afdccb7c207ca7b867768369cc1a2817626919bff8dc + name:WWF King of the Ring (USA) + cheat + description:Infinite health - both players + code:VZUUIVOO + cheat + description:Infinite health - P1 + code:0168:BF + cheat + description:No health - P2 + code:0194:00 + +cartridge sha256:a6f98e57ffb4544152138f109b00d1016ae957f7d842f29b41e118045fd54056 + name:WWF Wrestlemania (USA) + cheat + description:Infinite health - P1 + code:OZXGNYEU+XGXKEYZE+SAXKOYVT + cheat + description:One hit drains all health + code:ENOGVIEP + cheat + description:Opponent is idle after a body slam + code:SXZTSO + cheat + description:Countdown starts on 3 + code:LAKTLLPA + cheat + description:1 minute tournament rounds + code:PAXGXPLA + cheat + description:6 minute tournament rounds + code:TAXGXPLA + cheat + description:9 minute tournament rounds + code:PAXGXPLE + +cartridge sha256:89df74e7b275929c91a64580c5b1733bee26bcaf3a923dcca9fffdda835b2964 + name:WWF Wrestlemania Challenge (USA) + cheat + description:Pin count extended to 9 seconds + code:ZEELLGGE + cheat + description:10-count reduced to 5 seconds + code:TESGYOLA + cheat + description:All counts slower + code:IVNKGOGL + cheat + description:All counts faster + code:YONKGOGU + +cartridge sha256:b0e4bcb63416c32fc247ff8afc28915ba15906a9b02aaed77a41e8109eab91fc + name:WWF Wrestlemania Steel Cage Challenge (USA) + cheat + description:P1 cannot lose (constant 1 count) + code:VXSASUVK + cheat + description:Infinite energy refills (press select when energy is low) + code:SUXIXNSO + cheat + description:1 minute tournament rounds + code:PAXGXPLA + cheat + description:6 minute tournament rounds + code:TAXGXPLA + cheat + description:9 minute tournament rounds + code:PAXGXPLE + +cartridge sha256:4b11689be770a7dd6ef560568ba1fd70d6c585babedd8c9088769a0d63d89cf1 + name:Xenophobe (USA) + cheat + description:Infinite health - both players + code:AAKIYNUT + cheat + description:Increase starting health - both players + code:LASIZOPA + cheat + description:More health - P1 + code:LAVILONY+AIVIIOGI + cheat + description:No health pick-ups allowed + code:SXNITVOO + cheat + description:Start on level 2 + code:TAKSAPYA + cheat + description:Start on level 3 + code:IAKSAPYA + cheat + description:Start on level 4 + code:GAKSAPYA + cheat + description:Start on level 5 + code:LAKSAPYA + cheat + description:Infinite health - P1 (one's digit) + code:0753:09 + cheat + description:Infinite health - P1 (ten's digit) + code:0752:0A + cheat + description:Infinite health - P1 (hundred's digit) + code:0751:09 + cheat + description:Infinite health - P1 (thousand's digit) + code:0750:09 + cheat + description:Infinite health - P2 (one's digit) + code:0757:0B + cheat + description:Infinite health - P2 (ten's digit) + code:0756:0B + cheat + description:Infinite health - P2 (hundred's digit) + code:0755:09 + cheat + description:Infinite health - P2 (thousand's digit) + code:0754:09 + cheat + description:Character modifier - Dr. Kwack + code:0795:00 + cheat + description:Character modifier - Mr. Frogg + code:0795:01 + cheat + description:Character modifier - Dr. Zordirz + code:0795:02 + +cartridge sha256:9112f5b30c8a8d0dbd967973e84357860b5f0cf37ab3511b39128b5d37fa86ff + name:Xevious - The Avenger (USA) + cheat + description:Invincibility + code:SEKYKISZ + cheat + description:Infinite lives + code:SZLNZY + cheat + description:Hit anywere + code:AAOIUILP+AAXIOIIA+AVEVVUSL + cheat + description:Start with 1 life + code:PAZYOG + cheat + description:Start with 6 lives + code:TAZYOG + cheat + description:Start with 9 lives + code:PAZYOK + +cartridge sha256:2508e4eada73f233b2df86af2248a370b2d40ec2de590c8886a8750ddfb5b79c + name:Xexyz (USA) + cheat + description:Immune to enemy bullets + code:OTNGGYSV + cheat + description:Immune to monsters + code:OTNGGTSV + cheat + description:Infinite lives + code:SZEXTKVK + cheat + description:Become a whirlwind on new life + code:VTOXAKSE + cheat + description:1 life after continue + code:PAUXLILA + cheat + description:Start with 1 life + code:PAUZTZLA + cheat + description:Start with 6 lives + code:TAUZTZLA + cheat + description:Start with 9 lives + code:PAUZTZLE + cheat + description:Start with and keep foot-wing + code:AAOLPNAA + +cartridge sha256:1f349392d49c60c3e52a06be6ab4d914bf71ffd5b73857964ec9d604806b131b + name:Xybots (USA) (Proto) (Unl) + cheat + description:Infinite lives and second shots + code:SUEYIUVS + cheat + description:Infinite Keys - both players + code:SZEPGEVS + cheat + description:Infinite money - both players + code:SUEAVOSO + cheat + description:Infinite Slow Energy Drain and Zap power + code:SZVVUOSO + cheat + description:Infinite Warning Arrows and Level Mappers + code:SXUULVSO + cheat + description:Infinite Enemy Mappers and Guard Mapper + code:OLSTEOOO + cheat + description:Start with 6 lives and 6 second shots + code:TTSVGPZP + cheat + description:Start with 3 Slow Energy Drain and 4 Zap power - P1 + code:GZSTZPZA + cheat + description:Start with 3 Slow Energy Drain and 4 Zap power - P2 + code:GZSTYPZP + cheat + description:Start with 6 Warning Arrows and Level Mappers + code:TTVTGPPZ + cheat + description:Start with 6 Enemy Mappers and have Guard Mapper + code:TPVVGPPA + cheat + description:Start with 99 Keys, $99 and 2,544,300 points + code:LVXVGGAA + cheat + description:Start with 4 extra Speed, extra Armor, extra Shot Speed, extra Shot Power and Wide Shot + code:GGUTAPAA + cheat + description:Start at last level + code:TLNTTPPA + +cartridge sha256:0624c93899a588232f9193db0d560291b15636727813a4cd6c3dab8b7f74badb + name:Yie Ar Kung-Fu (Japan) (Rev 1.4) + cheat + description:Infinite health + code:SUOIUIVT + cheat + description:Infinite health (alt) + code:00DB:00 + +cartridge sha256:dbe10104fc90c36ff7c95424cb192dfd9619fb7c1238bbae8da87e0bc9cc5a4e + name:Yie Ar Kung-Fu (Japan) (Rev 1.2) + cheat + description:Invincible against punches and kicks + code:SZUIXISA + cheat + description:Tao does not throw fireballs + code:SXNVLTSA + cheat + description:Chen does not hit you with his chain + code:SXNTSASA + cheat + description:Lang does not throw shurikens + code:OZVVATEK + cheat + description:Bonus doesn't end when you're hit with a sword or fan + code:AVOSOVOZ + cheat + description:Infinite health + code:00DB:00 + +cartridge sha256:62a3551ce546fa7df5fd4970e725e36f1ca269be62b1e33f92546d6e649b8371 + name:Yo! Noid (USA) + cheat + description:Invincibility + code:AVZUSZ + cheat + description:Invincibility (alt) + code:SZULPTAX + cheat + description:Infinite time + code:SXXLIGVG + cheat + description:Infinite lives + code:SXKTTUVK+SXKVPUVK + cheat + description:More magic from small scrolls + code:IAKUVGPA + cheat + description:Multi-mega-jumps + code:AEUGSKTZ + cheat + description:1 continue + code:PAXSNZLA + cheat + description:6 continues + code:TAXSNZLA + cheat + description:Start with 1 life + code:AUUIVPZL+AKUSOPZG + cheat + description:Start with 6 lives + code:IUUIVPZL+IKUSOPZG + cheat + description:Start with 9 lives + code:PUUIVPZU+PKUSOPZK + cheat + description:Start on stage 2 + code:ZEVSKPPA + cheat + description:Start on stage 4 + code:GEVSKPPA + cheat + description:Start on stage 6 + code:TEVSKPPA + cheat + description:Start on stage 8 + code:AEVSKPPE + cheat + description:Start on stage 10 + code:ZEVSKPPE + cheat + description:Start on stage 12 + code:GEVSKPPE + +cartridge sha256:56a169bb3a6101057fb278f2febd58cb1dbf056e5aaeb709c51a55ce4cfac20d + name:Yoshi (USA) + cheat + description:Short wait for next characters + code:GOUYPEAZ + cheat + description:Really short wait for next characters + code:ZEUYPEAZ + cheat + description:Really long wait for next characters + code:NNUYPEAX + cheat + description:Freeze characters for a short time (press Down) + code:AVSULYZA + cheat + description:Need only 1 Victory Egg to win + code:PAVAAPLA+PESTAZLA+PEXTZLLA + cheat + description:Need only 2 Victory Eggs to win + code:ZAVAAPLA+ZESTAZLA+ZEXTZLLA + +cartridge sha256:fd4884c98d9412eb362c0654c8f5475e7f24266984f11e19961495c2d642d38a + name:Young Indiana Jones Chronicles, The (USA) + cheat + description:Infinite health + code:XVSEGPSE + cheat + description:Infinite lives + code:SZEOUGVG + cheat + description:Start with 2 + code:PEKSVGLA + cheat + description:Start with 7 lives + code:TEKSVGLA + cheat + description:Start with 10 lives + code:PEKSVGLE + +cartridge sha256:c79202082042baeb3a45e747a1675c9530137f847c357c393270715efc32217e + name:Ys II - Ancient Ys Vanished - The Final Chapter (Japan) + cheat + description:Infinite HP + code:SXOVXISA + cheat + description:Infinite gold + code:SZXELISA+SZUAZISA + cheat + description:Lots of EXP + code:AEOSNSPE+AEXISSZE + cheat + description:Start with all equipment + code:YYKSKIPE + +cartridge sha256:ec1d85479d72847d3adbd76e2e79221143e6c9324d5647be2c4a11aa87123f75 + name:Ys III - Wanderers from Ys (Japan).nes + cheat + description:Hit anywhere + code:XTKXSAAV+XTNXUAAV+XTVZKAAV+XVOZXAAV + cheat + description:One hit kills + code:AAEZYYGA + +cartridge sha256:91d281ee84a71483cd9b8e8021222ef509a8c0ea4be0a4fa675140a91b65c2da + name:Yume Koujou Doki Doki Panic (Japan) [b] (FDS) + cheat + description:Multi-jump + code:GZUEITEI + cheat + description:Invincibility + code:0085:FA + cheat + description:Infinite coins + code:062B:09 + cheat + description:Infinite sub-space time + code:04B7:FA + cheat + description:Infinite magic carpet time + code:00B9:FA + cheat + description:All characters can float + code:04C9:FA + cheat + description:Multi-jump (alt) + code:0099:00 + cheat + description:One hit kills on bosses + code:0468:00 + cheat + description:Only 1 Cherry needed for Starman + code:062A:04 + cheat + description:Only 1 big Radish needed for Stopwatch + code:062C:04 + cheat + description:Receive small heart for every enemy defeated + code:04AD:09 + cheat + description:Stopwatch always active + code:04FF:FA + cheat + description:Start on World 2 + code:0635:01 + cheat + description:Start on World 3 + code:0635:02 + cheat + description:Start on World 4 + code:0635:03 + cheat + description:Start on World 5 + code:0635:04 + cheat + description:Start on World 6 + code:0635:05 + cheat + description:Start on World 7 + code:0635:06 + +cartridge sha256:bdc9dfed1b03db470a1453da0252b3e9fcd0869d02a48622476ddaa350e53374 + name:Zanac (USA) + cheat + description:Invincibility + Hit anywhere + code:ALSEGZEU+ATSEIZPL+SZOELXOO + cheat + description:Infinite lives + code:OXEENYVK + cheat + description:Start with Straight Crusher + code:PEOPAGAA + cheat + description:Start with Field Shutter + code:ZEOPAGAA + cheat + description:Start with the Circular + code:LEOPAGAA + cheat + description:Start with the Vibrator + code:GEOPAGAA + cheat + description:Start with the Rewinder + code:IEOPAGAA + cheat + description:Start with the Plasma Flash + code:TEOPAGAA + cheat + description:Start with rapid fire + code:YEOPAGAA + cheat + description:Start with 1 life + code:PEEKOLLA + cheat + description:Start with 6 lives + code:TEEKOLLA + cheat + description:Start with 9 lives + code:PEEKOLLE + cheat + description:Invincibility + code:0764:00 + +cartridge sha256:4cfc55e1521e58039d502f2a5ff16c233b84c0a05b1048185c75c971f3814c16 + name:Zelda II - The Adventure of Link (USA) + cheat + description:Infinite health + code:XTLTILSV+XTLTTUGE + cheat + description:Almost infinite health + code:XTLTAL + cheat + description:Infinite magic + code:GXNAESON + cheat + description:Infinite magic (alt) + code:SXNASSSE + cheat + description:Infinite magic and health in battle + code:AEYSAU + cheat + description:Infinite lives + code:SZKGKXVK + cheat + description:Infinite Keys after obtaining one + code:SXVIKOVK + cheat + description:Keys not necessary to open doors + code:XVTIUO+XVTIXP + cheat + description:Gain 256 EXP when you defeat an enemy most of the time + code:XTSSTKSE + cheat + description:Gain more than 256 EXP for every EXP + code:PAVIIGAA + cheat + description:Don't lose EXP points while leveling up + code:SZVOUNSE+SZNPKNSE + cheat + description:Hit anywhere (press up if you get stuck at a Palace entrance) + code:ASXTGTEL + cheat + description:Multi-jump + code:SYUPAINY+OZUPISSX+UYUPTSIN+SAUPYIIE+IYUOAIAO+IAUOPIZA + cheat + description:Mega-jump + code:AZUOLIAL + cheat + description:Link can fly (hold A) + code:AAUOLIAL + cheat + description:Swap Shield spell for Fire spell + code:OYKEEVSA+NPKEOVVA + cheat + description:Swap Shield spell for Spell spell + code:LYKEEVSA+VAKEOVVE + cheat + description:Swap Shield spell for Fairy spell + code:LZKEEVSA+OPKEOVVA + cheat + description:Swap Shield spell for Life spell + code:IIKEEVSE+VAKEOVVE + cheat + description:Swap Shield spell for Thunder spell + code:VTKEEVSA+OPKEOVVA + cheat + description:Start with all spells + code:VIEXIVSU + cheat + description:Start with 1 life + code:PASKPLLA + cheat + description:Start with 6 lives + code:TASKPLLA + cheat + description:Start with 9 lives + code:PASKPLLE + cheat + description:Invincibility (disable when fighting your shadow) + code:0518:03 + cheat + description:Infinite health (alt) + code:0774:FF + cheat + description:Infinite magic (alt 2) + code:0773:FF + cheat + description:Infinite lives (alt) + code:0700:04 + cheat + description:Infinite Keys + code:0793:09 + cheat + description:No enemies in overworld + code:0086:00+0087:00+0088:00+0089:00 + cheat + description:Jump spell always on + code:076F:02 + cheat + description:Max sword level + code:0777:FF + cheat + description:Max magic level + code:0778:FF + cheat + description:Max life level + code:0779:FF + cheat + description:Have up/down thrust + code:0796:FF + cheat + description:Have Shield spell + code:077B:01 + cheat + description:Have Jump spell + code:077C:01 + cheat + description:Have Life spell + code:077D:01 + cheat + description:Have Fairy spell + code:077E:01 + cheat + description:Have Fire spell + code:077F:01 + cheat + description:Have Reflect spell + code:0780:01 + cheat + description:Have Spell spell + code:0781:01 + cheat + description:Have Thunder spell + code:0782:01 + cheat + description:Max magic jars + code:0783:08 + cheat + description:Have Boots + code:0788:01 + cheat + description:Have Candle + code:0785:01 + cheat + description:Have Cross + code:078A:01 + cheat + description:Have Flute + code:0789:01 + cheat + description:Have Glove + code:0786:01 + cheat + description:Have Hammer + code:078B:01 + cheat + description:Have Key + code:078C:01 + cheat + description:Have Raft + code:0787:01 + cheat + description:Can enter final palace + code:0794:00 + cheat + description:One hit kill on final boss + code:00C2:01 + +cartridge sha256:939dcb88fce04f9c91e1ce49016b12e301afc4861684576ab5862eada5860db7 + name:Zen - Intergalactic Ninja (USA) + cheat + description:Infinite health + code:GZNLYUSE + cheat + description:Infinite lives + code:SZSPGTVG+SZOZYTVG + cheat + description:9 lives allowed in options menu + code:ZAELNGIE + cheat + description:Slower timer + code:NYNXVTOE + cheat + description:Faster timer + code:YTNXVTOE + cheat + description:Even faster timer + code:YINXVTOE + cheat + description:Zen does increased damage - isometric stages + code:AEUAOLGE + cheat + description:Zen does mega damage - isometric stages + code:GOUAOLGA + cheat + description:Jab attack does more damage - horizontal stages + code:AAKXUIGE + cheat + description:Mega jab attack damage - horizontal stages + code:GPKXUIGA + cheat + description:Fewer hits in shield + code:PAEUGGLA+PAXUNTLA + cheat + description:Double hits in shield + code:TAEUGGLA+TAXUNTLA + cheat + description:Triple hits in shield + code:PAEUGGLE+PAXUNTLE + +cartridge sha256:d0850075065ecbd125a33accc952de5d012527be45aa14a1b8223a9adf1643ae + name:Zoda's Revenge - StarTropics II (USA) + cheat + description:Invincibility + code:VZKZAOSV + cheat + description:Infinite lives + code:SXKVPKVK + cheat + description:Infinite weapons + code:SLUZTSVS + cheat + description:Hit anywhere + code:GGEUIKOU+KLEUYGAY+UAEUTGKU + cheat + description:Walk faster - battle mode + code:ZAUXKAPA + cheat + description:Jump faster and further - battle mode + code:PAUXKAAA + cheat + description:Throw Tink's axe further + code:AVKULAAG + cheat + description:1 star gives energy + code:PASZPTIA+PASZITIA + cheat + description:Throw Tink's Axe faster (can't be combined with other Axe code) + code:OYUUAAPG + cheat + description:Tink's Axe splits into 3 little ones when thrown (can't be combined with other Axe code) + code:LGUUAAPG + cheat + description:Throw Tink's splitting-Axe faster (can't be combined with other Axe code) + code:UYUUAAOY + cheat + description:Start with 1 life (Only effective in battle mode on first life) + code:PAVTTZLA + cheat + description:Start with 6 lives (Only effective in battle mode on first life) + code:TAVTTZLA + cheat + description:Start with 9 lives (Only effective in battle mode on first life) + code:PAVTTZLE + +cartridge sha256:91eae4e0e59dadd5de7cdbe71fe57e304d741ae5107928e29e0f6ff8813151a9 + name:Zombie Nation (USA) + cheat + description:Infinite health + code:AVXTEISZ + cheat + description:Infinite continues + code:053B:05 + +cartridge sha256:061d1c3865ad62ae883bb30b9f0071e8f7aa572f15f61bfb91b3a755eeeb5eb0 + name:Zunou Senkan Galg (Japan) + cheat + description:Invincibility + code:ATEEIVAT+ATSKOYSZ + cheat + description:Infinite lives + code:OXNEAAVK + +cartridge sha256:8808783f789ca6413364a7abea240f6f7291b5906026f360ba8cfdd2791fc179 + name:2020 Super Baseball (USA) + cheat + description:Have lots of money - P1 + code:7F80CA:63+7F80CC:63+7F80CB:63 + cheat + description:Have 9 points - P1 + code:7FC13B:09 + cheat + description:Have no outs + code:7FC138:00 + cheat + description:Have no strikes + code:7FC136:00 + cheat + description:Have no balls + code:7FC137:00 + +cartridge sha256:2ffe8828480f943056fb1ab5c3c84d48a0bf8cbe3ed7c9960b349b59adb07f3b + name:3 Ninjas Kick Back (USA) + cheat + description:Invincibility + code:EDEA-1F6B+2DBF-4F6F + cheat + description:Infinite lives + code:C235-C768 + cheat + description:Infinite health + code:7E0A2A:06 + cheat + description:Infinite lives (alt) + code:7E1E51:14 + cheat + description:Infinite time + code:7E1E6B:14 + cheat + description:Infinite Bombs + code:7E1E63:14+7E1E65:14 + cheat + description:Max coins + code:7E1E5B:14+7E1E59:14 + cheat + description:Have throwing weapon + code:7E1E5B:14+7E1E59:14 + cheat + description:Less enemies to pass trials (disable then enable) + code:7E1FE0:02 + +cartridge sha256:4dd631433c867ba920997fd3add2c838b62e70e06e0ef55c53884b8b68b0dd27 + name:7th Saga, The (USA) + cheat + description:Human fighter has 50 HP + code:7417-87AD + cheat + description:Human fighter has 100 HP + code:1017-87AD + cheat + description:Human fighter has 200 HP + code:A617-87AD + cheat + description:Tetujin has 50 HP + code:7416-8FAD + cheat + description:Tetujin has 100 HP + code:1016-8FAD + cheat + description:Tetujin has 200 HP + code:A616-8FAD + cheat + description:Dwarf has 50 HP + code:7419-8D0D + cheat + description:Dwarf has 100 HP + code:1019-8D0D + cheat + description:Dwarf has 200 HP + code:A619-8D0D + cheat + description:Human mage has 50 HP + code:741B-840D + cheat + description:Human mage has 100 HP + code:101B-840D + cheat + description:Human mage has 200 HP + code:A61B-840D + cheat + description:Elf has 50 HP + code:7411-8DAD + cheat + description:Elf has 100 HP + code:1011-8DAD + cheat + description:Elf has 200 HP + code:A611-8DAD + cheat + description:Demon has 50 HP + code:741C-84AD + cheat + description:Demon has 100 HP + code:101C-84AD + cheat + description:Demon has 200 HP + code:A61C-84AD + cheat + description:Alien has 50 HP + code:7415-8F0D + cheat + description:Alien has 100 HP + code:1015-8F0D + cheat + description:Alien has 200 HP + code:A615-8F0D + cheat + description:Human fighter has 20 power + code:F010-8DAD + cheat + description:Tetujin has 20 power + code:F016-84AD + cheat + description:Dwarf has 20 power + code:F019-8F0D + cheat + description:Human mage has 20 power + code:F01B-870D + cheat + description:Elf has 20 power + code:F011-8FAD + cheat + description:Demon has 20 power + code:F01C-87AD + cheat + description:Alien has 20 power + code:F015-840D + cheat + description:Human fighter has 30 MP + code:F310-8D0D + cheat + description:Tetujin has 30 MP + code:F316-840D + cheat + description:Dwarf has 30 MP + code:F319-8DAD + cheat + description:Human mage has 30 MP + code:F31B-84AD + cheat + description:Elf has 30 MP + code:F311-8F0D + cheat + description:Demon has 30 MP + code:F31C-870D + cheat + description:Alien has 30 MP + code:F315-8FAD + cheat + description:Human fighter has 20 speed + code:F010-8F6D + cheat + description:Tetujin has 20 speed + code:F016-876D + cheat + description:Dwarf has 20 speed + code:F019-84DD + cheat + description:Human mage has 20 speed + code:F01C-8DDD + cheat + description:Elf has 20 speed + code:F011-846D + cheat + description:Demon has 20 speed + code:F018-8D6D + cheat + description:Alien has 20 speed + code:F015-87DD + cheat + description:Enemies aren't generated + code:18F6-EDDF + cheat + description:Touching an enemy doesn't cause a battle + code:18F7-EF67 + cheat + description:Sell an item for maximum gold + code:6D87-540D + cheat + description:Get 999 Max HP when you use a 'V Seed' + code:DDC1-7FBD + cheat + description:Get 999 Max MP when you use an 'M Seed' + code:DDC2-7F2D + cheat + description:Get 999 Power when you use a 'P Seed' + code:DDC0-54FD + cheat + description:Get 999 Guard when you use a 'Pr Seed' + code:DDC8-549D + cheat + description:Get 255 Magic when you use an 'I Seed' + code:DDC4-8FBD + cheat + description:Get 255 Speed when you use an 'A Seed' + code:DDCB-8DBD + cheat + description:Human fighter starts with Sword of Anger + code:1B10-870D + cheat + description:Human fighter starts with Sword of Courage + code:1A10-870D + cheat + description:Human fighter starts with Sword of Fire + code:1E10-870D + cheat + description:Dwarf starts with Sword of Nature + code:1C19-87AD + cheat + description:Dwarf starts with Sword of Courage + code:1A19-87AD + cheat + description:Dwarf starts with Sword of Fire + code:1E19-87AD + cheat + description:Human mage starts with petrified staff + code:631C-8FAD + cheat + description:Human mage starts with Rod of Tide + code:6E1C-8FAD + cheat + description:Elf starts with petrified staff + code:6315-8D0D + cheat + description:Elf starts with Staff of Brilliance + code:BF15-8D0D + cheat + description:Demon starts with Sword of Anger + code:1B18-840D + cheat + description:Demon starts with Sword of Despair + code:1218-840D + cheat + description:Demon starts with Sword of Fire + code:1E18-840D + cheat + description:Start with 297 gold + code:4ABD-84AD+DFBD-87DD + cheat + description:Start with 62,708 gold + code:E0BD-84AD+DFBD-87DD + cheat + description:Start with 2000 gold + code:2DBD-84AD+D5BD-87DD + +cartridge sha256:69c5805ad0494703e7d636d3d40d615d33e79bebef9d2cdb4a23b73d44c7b6f9 + name:A.S.P. - Air Strike Patrol (USA) + cheat + description:No damage from enemy fire + code:C22A-CD01+C534-CDD0 + cheat + description:Infinite fuel + code:C2B1-3765 + cheat + description:Infinite flares + code:C237-CFA1 + cheat + description:Infinite missles for F-15 Strike Eagle + code:C2B8-4DA9 + cheat + description:Infinite missles for A-10 Thunderbolt II + code:C2B7-C4D9 + +cartridge sha256:ce164872c4f5814bce04cf0565edcdb5b7969ae95a3b5cd515cfb626b5cde7b3 + name:Aaahh!!! Real Monsters (USA) + cheat + description:Invincibility + code:62BE-0767 + cheat + description:Infinite health + code:C282-04A7 + cheat + description:Infinite Fish + code:C28E-DD67 + cheat + description:Infinite Books + code:82AA-0F04 + cheat + description:Infinite Garbage + code:DD8E-4DD7 + cheat + description:Infinite Scares + code:DDAA-1464 + cheat + description:Infinite lives + code:DDC0-3FDF + cheat + description:Get nothing for each Trash Bag + code:DDC8-0FAF + cheat + description:Get 20 for each Trash Bag + code:4DC8-0FAF + cheat + description:Get 100 for each Trash Bag + code:88C8-0FAF + cheat + description:1-ups worth nothing + code:DDCE-6F6D + cheat + description:1-ups worth 3 + code:D7CE-6F6D + cheat + description:1-ups worth 5 + code:D9CE-6F6D + cheat + description:Monster books are worth nothing + code:DDCA-AF0D + cheat + description:Monster books are worth 2 + code:D4CA-AF0D + cheat + description:Monster books are worth 10 + code:FDCA-AF0D + cheat + description:Most health power-ups worth nothing + code:DDCB-A7DD + cheat + description:Most health power-ups worth more + code:D4CB-A7DD + cheat + description:Start with 1 life + code:DFC7-17FC + cheat + description:Start with 10 lives + code:DBC7-17FC + cheat + description:Start with 50 lives + code:0BC7-17FC + cheat + description:Start with 0 special scares + code:DD69-37BF + cheat + description:Start with 10 special scares + code:FD69-37BF + cheat + description:Start with 20 special scares + code:4D69-37BF + cheat + description:Infinite health (alt) + code:7E0B7A:0D + cheat + description:Infinite lives (alt) + code:7E13C8:09 + +cartridge sha256:bb83f982961c33b81fefc1f545e18ab572d1c43cf6c241948544f05a1a71f2ba + name:ABC Monday Night Football (USA) + cheat + description:Always 1st down + code:7E119C:01 + cheat + description:1 yard to go for 1st down + code:7E119D:01 + cheat + description:Infinite time - minutes + code:7E11A6:09 + cheat + description:Infinite time - seconds + code:7E11A6:09 + cheat + description:Have 0 points - Team 1 + code:7E1182:00 + cheat + description:Have 0 points - Team 2 + code:7E118C:00 + cheat + description:Have 7 points - Team 1 + code:7E1182:07 + cheat + description:Have 7 points - Team 2 + code:7E118C:07 + cheat + description:Have 14 points - Team 1 + code:7E1182:14 + cheat + description:Have 14 points - Team 2 + code:7E118C:14 + cheat + description:Have 21 points - Team 1 + code:7E1182:21 + cheat + description:Have 21 points - Team 2 + code:7E118C:21 + cheat + description:Have 99 points - Team 1 + code:7E1182:99 + cheat + description:Have 99 points - Team 2 + code:7E118C:99 + +cartridge sha256:d07e8802a6d9c777247874e05ec08fce7e0fa1bf122cc1ab9913f7d828e4072b + name:ACME Animation Factory (USA) + cheat + description:Infinite time - game mode + code:7E1BA4:3C + +cartridge sha256:555ff99acb1b02e67ae7da12b776cdbfa9a56b8ddf248258158ec58a151554ef + name:Acrobat Mission (Japan) + cheat + description:Invincibility + code:3CC2-A766 + cheat + description:Infinite lives + code:82C2-64DB + cheat + description:Invincibility (alt) + code:7E042A:30 + cheat + description:Infinite lives (alt) + code:7E0412:04 + cheat + description:Infinite lives (alt 2) + code:7E0412:0B + cheat + description:Most Powerful gun [00-10] (don't pick any weapon icons) + code:7E0424:?? + cheat + description:Score Modifier [00-99] + code:7E02B3:??+7E02B4:?? + +cartridge sha256:41af71166f509b0e615b00e7dc3cf2dc660d1701014ecadfd1629257b18471b9 + name:Action Pachio (Japan) + cheat + description:Invincibility + code:ED60-1FC9 + cheat + description:Infinite health + code:C96B-30DD + cheat + description:Infinite time + code:C922-CFF3 + cheat + description:Infinite lives + code:C963-4D9A + cheat + description:Infinite health (alt) + code:7E00CC:0A + cheat + description:Infinite lives (alt) + code:7E00C8:09 + cheat + description:Infinite Coins + code:7E00C2:99 + cheat + description:Infinite time (alt) + code:7E00C0:63+7E00C1:63 + cheat + description:Infinite continue time + code:7E1E12:09 + cheat + description:Max score + code:7E00C4:99+7E00C5:99+7E00C6:99+7E00C7:99 + +cartridge sha256:b8055844825653210d252d29a2229f9a3e7e512004e83940620173c57d8723f0 + name:ActRaiser (USA) + cheat + description:Invincibility after one hit + code:1DBB-D4D7 + cheat + description:Infinite health in action sequences + code:2264-6FD4 + cheat + description:Infinite MP (Magic Points) + code:C9BD-6467 + cheat + description:Infinite SP (Spell Points) + code:CEA5-6DA3 + cheat + description:Infinite time + code:C98B-D468 + cheat + description:Infinite time (alt) + code:DD8B-D4D8 + cheat + description:Faster timer + code:FD86-D4A8 + cheat + description:Slower timer + code:9D86-D4A8 + cheat + description:Hit anywhere continually + code:4062-6F64+4063-6D04+4063-6F64+6D68-6464+6D6A-64D4 + cheat + description:Monster lairs are always empty + code:B38B-07D3 + cheat + description:Towns always able to grow + code:DD60-07A2 + cheat + description:Unlock professional mode + code:DD67-D7AD + cheat + description:Have Fire magic and 24 MP in professional mode + code:69C4-AF6C+62C4-A7DC+CBC4-A46C+DFC4-A4AC + cheat + description:Have Stardust and 24 MP in professional mode + code:69C4-AF6C+62C4-A7DC+CBC4-A46C+D4C4-A4AC + cheat + description:Have Aura magic and 24 MP in professional mode + code:69C4-AF6C+62C4-A7DC+CBC4-A46C+D7C4-A4AC + cheat + description:Start with 1/2 health (first game only) + code:D081-6DD8 + cheat + description:Infinite health in action sequences (alt) + code:7E001D:08 + cheat + description:Infinite health in sim mode + code:7E0286:08 + cheat + description:Infinite magic in action sequences + code:7E0021:05 + cheat + description:Infinite time (alt 2) + code:02BC98:00 + cheat + description:Level 99 + code:7E0291:63 + cheat + description:One hit kills on bosses + code:7E0BCC:00 + cheat + description:Have Aura magic + code:7E02AC:03 + cheat + description:Have Fire magic + code:7E02AC:01 + cheat + description:Have Stardust magic + code:7E02AC:02 + cheat + description:Have Sword Shot + code:7E00E4:80 + cheat + description:Have Light magic + code:7E02AC:04 + cheat + description:Slot 1 - Source of Life + code:7E02A2:05 + cheat + description:Slot 1 - Source of Magic + code:7E02A2:06 + cheat + description:Slot 1 - Loaf of Bread + code:7E02A2:07 + cheat + description:Slot 1 - Wheat + code:7E02A2:08 + cheat + description:Slot 1 - Herb + code:7E02A2:09 + cheat + description:Slot 1 - Bridge + code:7E02A2:0A + cheat + description:Slot 1 - Harmonious Music + code:7E02A2:0B + cheat + description:Slot 1 - Ancient Tablet + code:7E02A2:0C + cheat + description:Slot 1 - Magic Skull + code:7E02A2:0E + cheat + description:Slot 1 - Sheep's Fleece + code:7E02A2:0F + cheat + description:Slot 1 - Bomb + code:7E02A2:10 + cheat + description:Slot 1 - Compass + code:7E02A2:13 + cheat + description:Slot 1 - Strength of Angel + code:7E02A2:14 + cheat + description:Slot 2 - Source of Life + code:7E02A3:05 + cheat + description:Slot 2 - Source of Magic + code:7E02A3:06 + cheat + description:Slot 2 - Loaf of Bread + code:7E02A3:07 + cheat + description:Slot 2 - Wheat + code:7E02A3:08 + cheat + description:Slot 2 - Herb + code:7E02A3:09 + cheat + description:Slot 2 - Bridge + code:7E02A3:0A + cheat + description:Slot 2 - Harmonious Music + code:7E02A3:0B + cheat + description:Slot 2 - Ancient Tablet + code:7E02A3:0C + cheat + description:Slot 2 - Magic Skull + code:7E02A3:0E + cheat + description:Slot 2 - Sheep's Fleece + code:7E02A3:0F + cheat + description:Slot 2 - Bomb + code:7E02A3:10 + cheat + description:Slot 2 - Compass + code:7E02A3:13 + cheat + description:Slot 2 - Strength of Angel + code:7E02A3:14 + cheat + description:Slot 3 - Source of Life + code:7E02A4:05 + cheat + description:Slot 3 - Source of Magic + code:7E02A4:06 + cheat + description:Slot 3 - Loaf of Bread + code:7E02A4:07 + cheat + description:Slot 3 - Wheat + code:7E02A4:08 + cheat + description:Slot 3 - Herb + code:7E02A4:09 + cheat + description:Slot 3 - Bridge + code:7E02A4:0A + cheat + description:Slot 3 - Harmonious Music + code:7E02A4:0B + cheat + description:Slot 3 - Ancient Tablet + code:7E02A4:0C + cheat + description:Slot 3 - Magic Skull + code:7E02A4:0E + cheat + description:Slot 3 - Sheep's Fleece + code:7E02A4:0F + cheat + description:Slot 3 - Bomb + code:7E02A4:10 + cheat + description:Slot 3 - Compass + code:7E02A4:13 + cheat + description:Slot 3 - Strength of Angel + code:7E02A4:14 + cheat + description:Slot 4 - Source of Life + code:7E02A5:05 + cheat + description:Slot 4 - Source of Magic + code:7E02A5:06 + cheat + description:Slot 4 - Loaf of Bread + code:7E02A5:07 + cheat + description:Slot 4 - Wheat + code:7E02A5:08 + cheat + description:Slot 4 - Herb + code:7E02A5:09 + cheat + description:Slot 4 - Bridge + code:7E02A5:0A + cheat + description:Slot 4 - Harmonious Music + code:7E02A5:0B + cheat + description:Slot 4 - Ancient Tablet + code:7E02A5:0C + cheat + description:Slot 4 - Magic Skull + code:7E02A5:0E + cheat + description:Slot 4 - Sheep's Fleece + code:7E02A5:0F + cheat + description:Slot 4 - Bomb + code:7E02A5:10 + cheat + description:Slot 4 - Compass + code:7E02A5:13 + cheat + description:Slot 4 - Strength of Angel + code:7E02A5:14 + cheat + description:Slot 5 - Source of Life + code:7E02A6:05 + cheat + description:Slot 5 - Source of Magic + code:7E02A6:06 + cheat + description:Slot 5 - Loaf of Bread + code:7E02A6:07 + cheat + description:Slot 5 - Wheat + code:7E02A6:08 + cheat + description:Slot 5 - Herb + code:7E02A6:09 + cheat + description:Slot 5 - Bridge + code:7E02A6:0A + cheat + description:Slot 5 - Harmonious Music + code:7E02A6:0B + cheat + description:Slot 5 - Ancient Tablet + code:7E02A6:0C + cheat + description:Slot 5 - Magic Skull + code:7E02A6:0E + cheat + description:Slot 5 - Sheep's Fleece + code:7E02A6:0F + cheat + description:Slot 5 - Bomb + code:7E02A6:10 + cheat + description:Slot 5 - Compass + code:7E02A6:13 + cheat + description:Slot 5 - Strength of Angel + code:7E02A6:14 + cheat + description:Slot 6 - Source of Life + code:7E02A7:05 + cheat + description:Slot 6 - Source of Magic + code:7E02A7:06 + cheat + description:Slot 6 - Loaf of Bread + code:7E02A7:07 + cheat + description:Slot 6 - Wheat + code:7E02A7:08 + cheat + description:Slot 6 - Herb + code:7E02A7:09 + cheat + description:Slot 6 - Bridge + code:7E02A7:0A + cheat + description:Slot 6 - Harmonious Music + code:7E02A7:0B + cheat + description:Slot 6 - Ancient Tablet + code:7E02A7:0C + cheat + description:Slot 6 - Magic Skull + code:7E02A7:0E + cheat + description:Slot 6 - Sheep's Fleece + code:7E02A7:0F + cheat + description:Slot 6 - Bomb + code:7E02A7:10 + cheat + description:Slot 6 - Compass + code:7E02A7:13 + cheat + description:Slot 6 - Strength of Angel + code:7E02A7:14 + cheat + description:Slot 7 - Source of Life + code:7E02A8:05 + cheat + description:Slot 7 - Source of Magic + code:7E02A8:06 + cheat + description:Slot 7 - Loaf of Bread + code:7E02A8:07 + cheat + description:Slot 7 - Wheat + code:7E02A8:08 + cheat + description:Slot 7 - Herb + code:7E02A8:09 + cheat + description:Slot 7 - Bridge + code:7E02A8:0A + cheat + description:Slot 7 - Harmonious Music + code:7E02A8:0B + cheat + description:Slot 7 - Ancient Tablet + code:7E02A8:0C + cheat + description:Slot 7 - Magic Skull + code:7E02A8:0E + cheat + description:Slot 7 - Sheep's Fleece + code:7E02A8:0F + cheat + description:Slot 7 - Bomb + code:7E02A8:10 + cheat + description:Slot 7 - Compass + code:7E02A8:13 + cheat + description:Slot 7 - Strength of Angel + code:7E02A8:14 + cheat + description:Slot 8 - Source of Life + code:7E02A9:05 + cheat + description:Slot 8 - Source of Magic + code:7E02A9:06 + cheat + description:Slot 8 - Loaf of Bread + code:7E02A9:07 + cheat + description:Slot 8 - Wheat + code:7E02A9:08 + cheat + description:Slot 8 - Herb + code:7E02A9:09 + cheat + description:Slot 8 - Bridge + code:7E02A9:0A + cheat + description:Slot 8 - Harmonious Music + code:7E02A9:0B + cheat + description:Slot 8 - Ancient Tablet + code:7E02A9:0C + cheat + description:Slot 8 - Magic Skull + code:7E02A9:0E + cheat + description:Slot 8 - Sheep's Fleece + code:7E02A9:0F + cheat + description:Slot 8 - Bomb + code:7E02A9:10 + cheat + description:Slot 8 - Compass + code:7E02A9:13 + cheat + description:Slot 8 - Strength of Angel + code:7E02A9:14 + +cartridge sha256:71bdd448a30b88725864e55594ebb67a118b1f197a3f9e5dd39dbf23399efa15 + name:ActRaiser 2 (USA) + cheat + description:Infinite health from most enemies + code:C2B0-CF07 + cheat + description:Infinite health from some ground hazards + code:C2B2-C7D3 + cheat + description:Infinite time + code:DD33-476F + cheat + description:Infinite MP (must have one to cast) + code:3C65-CFA8 + cheat + description:Infinite lives + code:DD67-4468 + cheat + description:Hit anywhere + code:40B5-17A4+40B6-14A4+40BB-17D4+40BC-1DA4 + cheat + description:One hit kills + code:DDB3-C764 + cheat + description:Small magic power-up adds 3 instead of 1 + code:D7C0-37A7 + cheat + description:Small magic power-up adds 5 + code:D9C0-37A7 + cheat + description:Small magic power-up adds 9 + code:DBC0-37A7 + cheat + description:Large magic power-up adds 1 instead of 3 + code:DFC9-3407 + cheat + description:Large magic power-up adds 5 + code:D9C9-3407 + cheat + description:Large magic power-up adds 9 + code:DBC9-3407 + cheat + description:Small health power-ups add 1 instead of 2 + code:DFC7-3D67 + cheat + description:Small health power-ups add 4 + code:D0C7-3D67 + cheat + description:Small health power-ups add 15 + code:F9C7-3D67 + cheat + description:Small health power-ups heal completely + code:F0C7-3D67 + cheat + description:Medium health power-ups add 2 instead of 5 + code:D4C9-3FD7 + cheat + description:Medium health power-ups add 8 + code:D6C9-3FD7 + cheat + description:Medium health power-ups add 15 + code:F9C9-3FD7 + cheat + description:Medium health power-ups heal completely + code:F0C9-3FD7 + cheat + description:Large health power-ups add 2 instead of 10 + code:D4C7-3FA7 + cheat + description:Large health power-ups add 5 + code:D0C7-3FA7 + cheat + description:Large health power-ups add 15 + code:F9C7-3FA7 + cheat + description:Large health power-ups heal completely + code:F0C7-3FA7 + cheat + description:Start with 3 lives on Easy + code:D727-4DD1 + cheat + description:Start with 10 lives on Easy + code:FD27-4DD1 + cheat + description:Start with 50 lives on Easy + code:9D27-4DD1 + cheat + description:Start with 1 life on Normal + code:DF27-4D61 + cheat + description:Start with 5 lives on Normal + code:D927-4D61 + cheat + description:Start with 10 lives on Normal + code:FD27-4D61 + cheat + description:Start with 50 lives on Normal + code:9D27-4D61 + cheat + description:Start with 1 life on Hard + code:DF27-4FD1 + cheat + description:Start with 5 lives on Hard + code:D927-4FD1 + cheat + description:Start with 10 lives on Hard + code:FD27-4FD1 + cheat + description:Start with 50 lives on Hard + code:9D27-4FD1 + cheat + description:Start with 2 MP on Easy + code:D484-1F66 + cheat + description:Start with 7 MP on Easy + code:D584-1F66 + cheat + description:Start with 9 MP on Easy + code:DB84-1F66 + cheat + description:Start with 1 MP on Normal or Hard + code:DF8F-1766 + cheat + description:Start with 5 MP on Normal or Hard + code:D98F-1766 + cheat + description:Start with 7 MP on Normal or Hard + code:D58F-1766 + cheat + description:Start with 9 MP on Normal or Hard + code:DB8F-1766 + cheat + description:Start with 1/2 health + code:DC8F-1F06 + cheat + description:Start with 3/4 health + code:DE8F-1F06 + cheat + description:Invincibility (blinking) + code:7F205E:18 + cheat + description:Infinite health (alt) + code:7E091D:16 + cheat + description:Infinite time (alt) (disable at end of level) + code:7E094D:63 + +cartridge sha256:e645310d2406ace85523ed91070ee7ff6aa245217267dacb158ae9fc75109692 + name:Addams Family, The (USA) + cheat + description:Invincibility + code:2DA7-670D + cheat + description:Infinite health + code:3CA7-A467 + cheat + description:Infinite health (alt) + code:1DA7-A4A7 + cheat + description:Infinite health (alt 2) + code:C9A7-A4A7 + cheat + description:Infinite lives + code:DDA1-A4A7 + cheat + description:Infinite lives (alt) + code:C9A1-A7D7 + cheat + description:Double-jump + code:DD87-0FA7 + cheat + description:Each $ worth 5 + code:D9CF-DDAF + cheat + description:Each $ worth 10 + code:FDCF-DDAF + cheat + description:Each $ worth 25 + code:49CF-DDAF + cheat + description:Have Fezi-copter + code:6DAC-6FDD + cheat + description:Start with and keep Fezi-copter (disable after defeating a boss, land before password screen) + code:3CAD-A46D+60BA-6704 + cheat + description:Start with 1 heart + code:DF61-0F0D+DF61-0F6D + cheat + description:Start with 3 hearts + code:D761-0F0D+D761-0F6D + cheat + description:Start with 4 hearts + code:D061-0F0D+D061-0F6D + cheat + description:Start with 5 hearts + code:D961-0F0D+D961-0F6D + cheat + description:Start with 1 life + code:DFB8-6F04 + cheat + description:Start with 3 lives + code:D7B8-6F04 + cheat + description:Start with 9 lives + code:DBB8-6F04 + cheat + description:Start with 20 lives + code:4DB8-6F04 + cheat + description:Start with 50 lives + code:9DB8-6F04 + cheat + description:Start with 99 lives + code:BBB8-6F04 + cheat + description:Infinite health and max hearts + code:7E00C3:05 + cheat + description:Always throw Balls + code:7E00EF:01 + cheat + description:Have Fezi-copter (alt) + code:7E0064:FF + cheat + description:Have Foil (Sword) + code:7E00EE:01 + +cartridge sha256:b6957bae7fd97ba681afbf8962fe2138e209649fd88ed9add2d5233178680aaa + name:Addams Family, The - Pugsley's Scavenger Hunt (USA) + cheat + description:Infinite health + code:3CCC-446D + cheat + description:Infinite hearts + code:3CCC-446D + cheat + description:Infinite lives + code:DDB6-1FA7 + cheat + description:Each $ worth 5 + code:D9C9-476D + cheat + description:Each $ worth 25 + code:49C9-476D + cheat + description:Higher jump + code:3BA5-37D4+D9A5-3704 + cheat + description:Super-jump + code:3BA5-37D4+D5A5-3704 + cheat + description:Mega-jump + code:3BA5-37D4+DBA5-3704 + cheat + description:Longer invulnerability time after being hit + code:5EC8-4DDD + cheat + description:Shorter invulnerability time after being hit + code:D6C8-4DDD + cheat + description:Get 0 lives for each $100 and 1-Up + code:DDB0-C767 + cheat + description:Get 2 lives for each $100 and 1-Up + code:D4B0-C767 + cheat + description:Start with 1 heart (don't edit hearts in options menu) + code:DDED-D76D + cheat + description:Start with 2 hearts (don't edit hearts in options menu) + code:DFED-D76D + cheat + description:Start with 5 hearts (don't edit hearts in options menu) + code:D0ED-D76D + cheat + description:Start with 4 lives (don't edit lives in options menu) + code:DDED-D40D + cheat + description:Start with 16 lives (don't edit lives in options menu) + code:DBED-D40D + cheat + description:Start with 64 lives (don't edit lives in options menu) + code:7DED-D40D + cheat + description:Infinite health (alt) + code:7E0095:03 + cheat + description:Infinite lives (alt) + code:7E004D:09 + cheat + description:Infinite Cash + code:7E004E:99 + +cartridge sha256:f59a0a8ed11ea2ba6217b1640e74bab8d8d8161a4585f5ae4a02edd7958ad9a3 + name:Addams Family Values (USA) (En,Fr,De) + cheat + description:Infinite health against enemies + code:FFBD-C767 + cheat + description:Infinite health against everything + code:3C8F-C40D + cheat + description:Infinite Small Rocks + code:DD24-3D0F + cheat + description:Infinite Blue Marbles + code:DD2C-C7AF + cheat + description:Infinite Magic Seeds + code:DD22-CF0F + cheat + description:Infinite Swamp Slime + code:DD2E-C4AF + cheat + description:Infinite cookies + code:8E2A-1D6D + cheat + description:Start with full skull meter + code:FA62-3F0D + cheat + description:Start with all items + code:EE6C-320D + cheat + description:Have Amulet of True Sight + code:7EE9FC:FF + cheat + description:Have Big Book of Bisquits + code:7EE9F0:FF + cheat + description:Have Black Beetle Cookies + code:7EE9E0:FF+7EE9E4:FF + cheat + description:Have Black Egg + code:7EEA05:FF + cheat + description:Have Black Rose + code:7EE9FA:FF + cheat + description:Have Bone Spoon + code:7EE9F7:FF + cheat + description:Have Book of Flying + code:7EE9F9:FF + cheat + description:Have Candle + code:7EE9F6:FF + cheat + description:Have Clyde's Cookie Compendium + code:7EE9EF:FF + cheat + description:Have Crumble Cookies + code:7EE9E2:FF+7EE9E6:FF + cheat + description:Have Crusty Cookies + code:7EE9E1:FF+7EE9E5:FF + cheat + description:Have Dragon Belch Cookies + code:7EE9DF:FF+7EE9E3:FF + cheat + description:Have Firefly + code:7EEA03:FF + cheat + description:Have Gold Coin + code:7EEA06:FF + cheat + description:Have Green Key + code:7EE9D8:FF + cheat + description:Have Greenhouse Key + code:7EE9D7:FF + cheat + description:Have Headless Teddy + code:7EE9F4:FF + cheat + description:Have Iron Key + code:7EE9DE:FF + cheat + description:Have Jewelled Key + code:7EE9DB:FF + cheat + description:Have Journal + code:7EE9F2:FF + cheat + description:Have Large Vine + code:7EEA02:FF + cheat + description:Have Lurch's Bowling Ball + code:7EEA04:FF + cheat + description:Have Magnet + code:7EE9FF:FF + cheat + description:Have Max's Munch Manual + code:7EE9F1:FF + cheat + description:Have Money + code:7E004E:63 + cheat + description:Have Musical Box + code:7EE9FB:FF + cheat + description:Have Plant Food + code:7EE9EA:FF + cheat + description:Have Portal Potion + code:7EE9E8:FF + cheat + description:Have Pumpkin + code:7EE9F3:FF + cheat + description:Have Red Potion + code:7EE9E7:FF + cheat + description:Have Sack of Gold + code:7EE9F5:FF + cheat + description:Have Slimming Potion + code:7EE9E9:FF + cheat + description:Have Shockwave + code:7EE9FD:FF + cheat + description:Have Skull Rattle + code:7EE9F8:FF + cheat + description:Have Skull Key + code:7EE9D9:FF + cheat + description:Have Spider Key + code:7EE9DD:FF + cheat + description:Have Spider's Eye + code:7EE9FE:FF + cheat + description:Have Stone Button + code:7EEA01:FF + cheat + description:Have Stone Key + code:7EE9DC:FF + cheat + description:Have Stone Twig Key + code:7EE9DA:FF + cheat + description:Have Strange Black Cube + code:7EEA00:FF + +cartridge sha256:0a8cd5101f849ccd4e40d55fdc4edce914b2825b69eb76ec31cf53b59719e79e + name:Advanced Dungeons & Dragons - Eye of the Beholder (USA) + cheat + description:Infinite HP + code:8285-6D2C+82DE-049B + cheat + description:No waiting to hit again + code:828D-A798 + cheat + description:One hit kills (works for enemies also) + code:CBAA-A726+3CA2-AD96 + cheat + description:Pick a lawful, human male fighter and he will be at Level 8 + code:D68B-A474 + cheat + description:Pick a lawful, human male fighter and he will be at level 6 + code:D18B-A474 + cheat + description:999,999 EXP 1st class + code:7E0533:3F+7E0534:42+7E0535:0F + +cartridge sha256:8083307f3f4b7df9e5bf53d5f25877c2e548f0f677540d4ee62d60ccca3098f8 + name:Adventures of Batman & Robin, The (USA) + cheat + description:Invincibility (except after being grabbed) + code:2DC7-1DAD + cheat + description:Infinite health + code:C982-4F0D + cheat + description:Infinite health (alt) + code:DD8A-4D6D + cheat + description:Get full health from hearts + code:466B-4494 + cheat + description:Infinite Stars + code:C9A1-34AF + cheat + description:Infinite Spray Gun ammo + code:C9A5-34DF + cheat + description:Infinite Plastic Explosives + code:C9AB-3D6F + cheat + description:Infinite Smoke Bombs + code:C9A6-3F0F + cheat + description:Infinite Missiles + code:DDA1-34AF + cheat + description:Infinite Bombs + code:DDAB-3D6F + cheat + description:Infinite lives + code:C988-340D + cheat + description:Hit anywhere + code:C9B8-349A+C9BD-4FB2+DDBB-34BA+DDC6-44AF+DDB3-3F2A+DDE9-4D02 + cheat + description:Moon-jump + code:4DAF-14DF + cheat + description:Super-jump + code:E6C7-34DF + cheat + description:Move slower + code:DD8D-C765+EE8F-CDD5 + cheat + description:Move faster + code:D08D-C765+E88F-CDD5 + cheat + description:Move even faster + code:D58D-C765+E68F-CDD5 + cheat + description:Moon-walk + code:E38D-C765+DF8F-CDD5 + cheat + description:Moon-walk faster + code:E88D-C765+D08F-CDD5 + cheat + description:Moon-walk even faster + code:E68D-C765+E58F-CDD5 + cheat + description:No credits + code:DD86-4D19 + cheat + description:Don't start with any Explosives and Smoke Bomb ammo + code:DDBE-3F0F + cheat + description:Don't start with any Stars and Spray Gun ammo + code:DDB3-376F + cheat + description:Start with 25 Stars and Spray Gun ammo + code:FBB3-376F + cheat + description:Start with 50 Stars and Spray Gun ammo + code:77B3-376F + cheat + description:Start with 25 Explosives and Smoke Bomb ammo + code:FBBE-3F0F + cheat + description:Start with 50 Explosives and Smoke Bomb ammo + code:77BE-3F0F + cheat + description:Start with 9 lives - not on easy mode + code:DB86-4FC9 + cheat + description:Start with 6 lives - not on easy mode + code:D186-4FC9 + cheat + description:Start with 1 life - not on easy mode + code:DD86-4FC9 + cheat + description:Start with 9 credits + code:DB86-4D19 + cheat + description:Start with 6 credits + code:D186-4D19 + cheat + description:Infinite health (alt 2) + code:7E0098:28 + cheat + description:Infinite item #3 + code:7E00A0:09 + cheat + description:Infinite item #4 + code:7E00A2:09 + cheat + description:Infinite item #5 + code:7E00A4:09 + cheat + description:Infinite item #6 + code:7E00A6:09 + +cartridge sha256:ecd964ae44e61203bc8759cfc6441365bf0c6e7bae6ad2a0fd553d4c7efab71e + name:Adventures of Dr. Franken, The (USA) + cheat + description:Invincibility + code:3CBB-CDD7 + cheat + description:Health power-ups give a full health bar + code:D3A0-1404+62A5-1464 + cheat + description:Infinite health (glitchy) + code:C2BB-4F0F+C2BB-44DF + cheat + description:Infinite time + code:C220-C7A4 + cheat + description:Infinite lives + code:C2B9-C4AD + cheat + description:Infinite Power Balls + code:3CB5-14AF + cheat + description:Infinite Freeze + code:3CBB-1F0F + cheat + description:Infinite Fire + code:3CBB-1D0F + cheat + description:Infinite Lightning + code:3CB5-1FAF + +cartridge sha256:670d898bdcf97d7ca3aab6c2dd1641f1270fcc2a070bbd3028ab413aef2b2ecc + name:Adventures of Kid Kleets, The (USA) (En,Fr,Es) + cheat + description:Invincibility + code:1DA6-14A0 + cheat + description:Infinite time + code:C26A-3709 + cheat + description:Infinite health + code:C2A6-1700 + cheat + description:Infinite lives + code:C282-34A1 + cheat + description:Hit anywhere + code:DDA0-476A+DDA9-4F6A + cheat + description:Moon jump + code:5C88-1D09+7D88-1DA9+DD83-17A9 + +cartridge sha256:b70099186d3774355ac5db370240e370c73f9ce5341f6c805cf9f771374b43ae + name:Adventures of Rocky and Bullwinkle and Friends, The (USA) + cheat + description:Invincibility + code:2DCA-19E4+EDCA-1554 + cheat + description:Infinite chances + code:C28C-1F44 + cheat + description:Infinite lives + code:C2CE-CF61 + cheat + description:Infinite ammo + code:C2CF-CF01 + cheat + description:Infinite health + code:C2CF-308D + cheat + description:Infinite continues + code:C2E3-47C6 + cheat + description:Don't lose ammo when you die + code:C2C9-35ED + cheat + description:Don't lose collected flags when you die + code:C2C7-C18D + cheat + description:1-Up with every flag collected + code:DFCA-1761 + +cartridge sha256:8049175767eddbc3e21ca5b94ee23fc225f834ccfab4ded30d2e981b0ef73ab6 + name:Adventures of Yogi Bear (USA) + cheat + description:Infinite health + code:C2CD-1404 + cheat + description:Infinite lives + code:C269-47DD + +cartridge sha256:b737de81315eef8ded7cfd5df6b37aba01d9e6e14566486db7ec83eb0c1aa85e + name:Aero Fighters (USA) + cheat + description:Invincibility + code:82C2-4D64 + cheat + description:Infinite lives - both players + code:8229-37A0 + cheat + description:Infinite Bombs for American F-18 - P1 + code:8237-47A1 + cheat + description:Infinite Bombs for Japanese FSX - P1 + code:8237-47A9 + cheat + description:Infinite Bombs for Swedish AJ-37 - P1 + code:8237-1D09 + cheat + description:Infinite Bombs for British AV-8 - P1 + code:8237-17A9 + cheat + description:Infinite Bombs for American F-15 - P2 + code:823E-3D60 + cheat + description:Infinite Bombs for Japanese F-15 - P2 + code:823A-4D09 + cheat + description:Infinite Bombs for Swedish JAS-39 - P2 + code:8239-1FD9 + cheat + description:Infinite Bombs for British IDS - P2 + code:823D-C769 + cheat + description:Don't lose power-ups when you die - both players + code:8229-37D0 + cheat + description:Hit anywhere + one hit kills + code:40CA-14DD+40CA-17AD+40C2-1FDD+40C2-14DD+40C2-17DD+6DC5-1F0D+6DCB-1DAD + cheat + description:One hit kills + code:6DCB-1DAD + cheat + description:Infinite lives (alt) + code:7FB78C:02 + cheat + description:Max Cannon power + code:7FB794:03 + cheat + description:Infinite Bombs / Specials + code:7FB790:02 + +cartridge sha256:18a553dafd4980cc2869180b05f9fdf6e980bf092cc683e498ec6373c9701c6e + name:Aero the Acro-Bat (USA) + cheat + description:Infinite health from most enemies + code:3CED-3DDC + cheat + description:Start with more health + code:1A27-4D03 + cheat + description:Infinite time + code:DDEC-146A + cheat + description:Infinite lives + code:DD6B-37AF + cheat + description:Start with 19 lives + code:5D68-4FDD + cheat + description:Infinite continues + code:C26E-3724 + cheat + description:Each star platform is worth 4 + code:D034-C7AD + +cartridge sha256:fc5df5db0a96d39d3df651f63993adf0f5cb5a6b92a36211f3a05d460d92c72d + name:Aero the Acro-Bat 2 (USA) + cheat + description:Invincibility + code:2DB0-4D6D + cheat + description:Infinite health + code:A287-CFAE + cheat + description:Almost infinite health + code:C287-CFAE + cheat + description:Infinite lives + code:C26C-4D0F + cheat + description:Infinite Stars + code:C227-4DDE + cheat + description:Infinite Shots + code:DD24-476E + cheat + description:Stars worth 3 + code:D7C8-17D3 + cheat + description:Stars worth 5 + code:D9C8-17D3 + cheat + description:Stars worth 7 + code:D5C8-17D3 + cheat + description:Double Drill icon lasts 99 seconds + code:BBC2-C463 + cheat + description:Double Drill icon lets you drill 4 times instead of 2 + code:D0C2-CD03 + cheat + description:Double Drill icon lets you drill 9 times instead of 2 + code:DBC2-CD03 + cheat + description:Can drill 5 times in the air until you pick-up a drill icon + code:D936-4DF1 + cheat + description:Can drill 9 times in the air until you pick-up a drill icon + code:DB36-4DF1 + cheat + description:Drill as many times as you want without hitting the ground + code:C26E-4F03 + cheat + description:Move faster + code:D468-CDAA+E26A-CD0A + cheat + description:Move even faster + code:D768-CDAA+EA6A-CD0A + cheat + description:Jump higher + code:FD67-3DD2 + cheat + description:Super-jump when standing still + code:E66E-4F62+E661-C762 + cheat + description:Flying icon worth 99 seconds of flight time + code:BBC3-3D63 + cheat + description:Start each life with max health + code:D939-14F1 + +cartridge sha256:d5f0fbeed3774bbccbd769698fc4051487a0a5eb699790a8a094451595600f60 + name:Aerobiz (USA) + cheat + description:In scenario 1, Tokyo starts with $649,280,000 + code:DDA6-0DFD + cheat + description:In scenario 1, Tokyo starts with $7,202,880,000 + code:D9A6-0DFD + cheat + description:In scenario 1, Beijing starts with $420,160,000 + code:94A6-0D2D + cheat + description:In scenario 1, Beijing starts with $7,393,600,000 + code:D9A6-0FFD + cheat + description:In scenario 1, Hong Kong starts with $449,440,000 + code:95A6-0F2D + cheat + description:In scenario 1, Hong Kong starts with $7,453,600,000 + code:D9A6-04FD + cheat + description:In scenario 1, Singapore starts with $400,640,000 + code:03A6-042D + cheat + description:In scenario 1, Singapore starts with $7,353,600,000 + code:D9A6-07FD + cheat + description:In scenario 1, Sydney starts with $297,920,000 + code:7CA6-072D + cheat + description:In scenario 1, Sydney starts with $7,153,600,000 + code:D9AB-0DFD + cheat + description:In scenario 1, Delhi starts with $317,440,000 + code:73AB-0D2D + cheat + description:In scenario 1, Delhi starts with $7,193,600,000 + code:D9AB-0FFD + cheat + description:In scenario 1, Tehran starts with $239,360,000 + code:43AB-0F2D + cheat + description:In scenario 1, Tehran starts with $7,033,600,000 + code:D9AB-04FD + cheat + description:In scenario 1, Cairo starts with $249,120,000 + code:7DAB-042D + cheat + description:In scenario 1, Cairo starts with $7,053,600,000 + code:D9AB-07FD + cheat + description:In scenario 1, Nairobi starts with $200,320,000 + code:45AB-072D + cheat + description:In scenario 1, Nairobi starts with $6,953,600,000 + code:D9AC-0DFD + cheat + description:In scenario 1, Lagos starts with $229,600,000 + code:4AAC-0D2D + cheat + description:In scenario 1, Lagos starts with $7,013,600,000 + code:D9AC-0FFD + cheat + description:In scenario 1, Moscow starts with $289,280,000 + code:DDAC-04FD + cheat + description:In scenario 1, Moscow starts with $6,842,880,000 + code:D9AC-04FD + cheat + description:In scenario 1, London starts with $949,280,000 + code:DDAC-07FD + cheat + description:In scenario 1, London starts with $7,502,880,000 + code:D9AC-07FD + cheat + description:In scenario 1, Paris starts with $289,280,000 + code:DDA8-0DFD + cheat + description:In scenario 1, Paris starts with $6,842,880,000 + code:D9A8-0DFD + cheat + description:In scenario 1, Rome starts with $371,360,000 + code:06A8-0D2D + cheat + description:In scenario 1, Rome starts with $7,293,600,000 + code:D9A8-0FFD + cheat + description:In scenario 1, New York starts with $189,280,000 + code:DDA8-04FD + cheat + description:In scenario 1, New York starts with $6,742,880,000 + code:D9A8-04FD + cheat + description:In scenario 1, Vancouver starts with $258,880,000 + code:74A8-042D + cheat + description:In scenario 1, Vancouver starts with $7,073,600,000 + code:D9A8-07FD + cheat + description:In scenario 1, Los Angeles starts with $649,280,000 + code:DDAA-0DFD + cheat + description:In scenario 1, Los Angeles starts with $7,202,880,000 + code:D9AA-0DFD + cheat + description:In scenario 1, Honolulu starts with $268,640,000 + code:70AA-0D2D + cheat + description:In scenario 1, Honolulu starts with $7,093,600,000 + code:D9AA-0FFD + cheat + description:In scenario 1, Mexico City starts with $258,880,000 + code:74AA-0F2D + cheat + description:In scenario 1, Mexico City starts with $7,073,600,000 + code:D9AA-04FD + cheat + description:In scenario 1, Lima starts with $180,800,000 + code:47AA-042D + cheat + description:In scenario 1, Lima starts with $6,913,600,000 + code:D9AA-07FD + cheat + description:In scenario 1, Rio de Janeiro starts with $317,440,000 + code:73AA-072D + cheat + description:In scenario 1, Rio de Janeiro starts with $7,193,600,000 + code:D9A2-0DFD + cheat + description:In scenario 1, Buenos Aires starts with $210,080,000 + code:4BA2-0D2D + cheat + description:In scenario 1, Buenos Aires starts with $6,973,600,000 + code:D9A2-0FFD + cheat + description:In scenario 2, Tokyo starts with $1,149,280,000 + code:DDA2-04FD + cheat + description:In scenario 2, Tokyo starts with $7,702,880,000 + code:D9A2-04FD + cheat + description:In scenario 2, Beijing starts with $498,240,000 + code:1FA2-042D + cheat + description:In scenario 2, Beijing starts with $7,553,600,000 + code:D9A2-07FD + cheat + description:In scenario 2, Hong Kong starts with $649,760,000 + code:53A2-072D + cheat + description:In scenario 2, Hong Kong starts with $7,853,600,000 + code:D9A3-0DFD + cheat + description:In scenario 2, Singapore starts with $552,160,000 + code:18A3-0D2D + cheat + description:In scenario 2, Singapore starts with $7,653,600,000 + code:D9A3-0FFD + cheat + description:In scenario 2, Sydney starts with $581,440,000 + code:5FA3-0F2D + cheat + description:In scenario 2, Sydney starts with $7,713,600,000 + code:D9A3-04FD + cheat + description:In scenario 2, Delhi starts with $517,760,000 + code:19A3-042D + cheat + description:In scenario 2, Delhi starts with $7,593,600,000 + code:D9A3-07FD + cheat + description:In scenario 2, Tehran starts with $297,920,000 + code:7CA3-072D + cheat + description:In scenario 2, Tehran starts with $7,153,600,000 + code:D9AE-0DFD + cheat + description:In scenario 2, Cairo starts with $390,880,000 + code:0AAE-0D2D + cheat + description:In scenario 2, Cairo starts with $7,333,600,000 + code:D9AE-0FFD + cheat + description:In scenario 2, Nairobi starts with $249,120,000 + code:7DAE-0F2D + cheat + description:In scenario 2, Nairobi starts with $7,053,600,000 + code:D9AE-04FD + cheat + description:In scenario 2, Lagos starts with $299,040,000 + code:7CAE-042D + cheat + description:In scenario 2, Lagos starts with $7,149,600,000 + code:D9AE-07FD + cheat + description:In scenario 2, Moscow starts with $689,280,000 + code:DDAD-6DFD + cheat + description:In scenario 2, Moscow starts with $7,242,880,000 + code:D9AD-6DFD + cheat + description:In scenario 2, London starts with $38,560,000 + code:DDAD-6FFD + cheat + description:In scenario 2, London starts with $6,592,160,000 + code:D9AD-6FFD + cheat + description:In scenario 2, Paris starts with $909,280,000 + code:DDAD-64FD + cheat + description:In scenario 2, Paris starts with $7,462,880,000 + code:D9AD-64FD + cheat + description:In scenario 2, Rome starts with $571,680,000 + code:1EAD-642D + cheat + description:In scenario 2, Rome starts with $7,693,600,000 + code:D9AD-67FD + cheat + description:In scenario 2, New York starts with $829,280,000 + code:DDAF-6DFD + cheat + description:In scenario 2, New York starts with $7,382,880,000 + code:D9AF-6DFD + cheat + description:In scenario 2, Vancouver starts with $420,160,000 + code:94AF-6D2D + cheat + description:In scenario 2, Vancouver starts with $7,393,600,000 + code:D9AF-6FFD + cheat + description:In scenario 2, Los Angeles starts with $1,109,280,000 + code:DDAF-64FD + cheat + description:In scenario 2, Los Angeles starts with $7,662,880,000 + code:D9AF-64FD + cheat + description:In scenario 2, Honolulu starts with $381,120,000 + code:0CAF-642D + cheat + description:In scenario 2, Honolulu starts with $7,313,600,000 + code:D9AF-67FD + cheat + description:In scenario 2, Mexico City starts with $468,960,000 + code:98AF-672D + cheat + description:In scenario 2, Mexico City starts with $7,493,600,000 + code:D9A4-6DFD + cheat + description:In scenario 2, Lima starts with $258,880,000 + code:74A4-6D2D + cheat + description:In scenario 2, Lima starts with $7,073,600,000 + code:D9A4-6FFD + cheat + description:In scenario 2, Rio de Janeiro starts with $630,240,000 + code:58A4-6F2D + cheat + description:In scenario 2, Rio de Janeiro starts with $7,813,600,000 + code:D9A4-64FD + cheat + description:In scenario 2, Buenos Aires starts with $361,600,000 + code:01A4-642D + cheat + description:In scenario 2, Buenos Aires starts with $7,273,600,000 + code:D9A4-67FD + cheat + description:Key Code + code:BDE3-D463 + cheat + description:Set money to less than $655,350,000 (must have Key) - P1, saved game 1 + code:DDDF-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P1, saved game 1 + code:D9DF-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P1, saved game 1 + code:D6DF-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P1, saved game 1 + code:FDDF-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P1, saved game 1 + code:4DDF-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P1, saved game 1 + code:0DDF-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P2, saved game 1 + code:DDD9-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P2, saved game 1 + code:D9D9-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P2, saved game 1 + code:D6D9-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P2, saved game 1 + code:FDD9-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P2, saved game 1 + code:4DD9-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P2, saved game 1 + code:0DD9-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P3, saved game 1 + code:DDDB-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P3, saved game 1 + code:D9DB-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P3, saved game 1 + code:D6DB-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P3, saved game 1 + code:FDDB-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P3, saved game 1 + code:4DDB-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P3, saved game 1 + code:0DDB-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P4, saved game 1 + code:DDD2-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P4, saved game 1 + code:D9D2-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P4, saved game 1 + code:D6D2-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P4, saved game 1 + code:FDD2-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P4, saved game 1 + code:4DD2-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P4, saved game 1 + code:0DD2-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P1, saved game 2 + code:DDFF-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P1, saved game 2 + code:D9FF-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P1, saved game 2 + code:D6FF-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P1, saved game 2 + code:FDFF-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P1, saved game 2 + code:4DFF-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P1, saved game 2 + code:0DFF-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P2, saved game 2 + code:DDF9-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P2, saved game 2 + code:D9F9-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P2, saved game 2 + code:D6F9-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P2, saved game 2 + code:FDF9-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P2, saved game 2 + code:4DF9-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P2, saved game 2 + code:0DF9-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P3, saved game 2 + code:DDFB-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P3, saved game 2 + code:D9FB-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P3, saved game 2 + code:D6FB-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P3, saved game 2 + code:FDFB-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P3, saved game 2 + code:4DFB-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P3, saved game 2 + code:0DFB-FEDD + cheat + description:Set money to less than $655,350,000 (must have Key) - P4, saved game 2 + code:DDF2-FEDD + cheat + description:Set money to over $327,680,000 (must have Key) - P4, saved game 2 + code:D9F2-FEDD + cheat + description:Set money to over $5,242,880,000 (must have Key) - P4, saved game 2 + code:D6F2-FEDD + cheat + description:Set money to over $10,485,760,000 (must have Key) - P4, saved game 2 + code:FDF2-FEDD + cheat + description:Set money to over $20,971,520,000 (must have Key) - P4, saved game 2 + code:4DF2-FEDD + cheat + description:Set money to over $41,943,040,000 (must have Key) - P4, saved game 2 + code:0DF2-FEDD + +cartridge sha256:1f5738552c51de25ffe8aa44ff396c1ab238435296f1e8f99f8cf335483c03d5 + name:Air Cavalry (USA) + cheat + description:Infinite lives + code:3DE8-AD64 + cheat + description:Infinite 7.62mm rounds + code:82B7-D7A7 + cheat + description:Infinite 2.75 rockets + code:89E1-D7D4+89E6-DDD4+82B5-DF07 + +cartridge sha256:aa768b8b00123717c8d49f2c6731cdbfd80ab6a54128bae7594e93f45e38a19e + name:Aladdin (USA) + cheat + description:Invincibility + code:2D3A-4D01 + cheat + description:Almost invincible + code:C267-4D0A + cheat + description:Infinite health + code:A267-4D0A + cheat + description:Infinite lives + code:A221-4FA5+C221-4FA5 + cheat + description:Infinite Apples + code:C2A9-C7D5+3CA9-C4A5 + cheat + description:Infinite continues + code:C283-37DD + cheat + description:Level select on main menu + code:DDB5-3467+DDBA-3FA7 + cheat + description:Emeralds worth 2 instead of 1 + code:FA80-44AE + cheat + description:Emeralds worth 3 + code:FB80-44AE + cheat + description:Rubies worth 1 instead of 3 + code:A381-4F0E + cheat + description:Rubies worth 2 + code:C281-4F0E + cheat + description:Bonus round played after every level + code:DDA7-4DD5 + cheat + description:Only 10 gems needed for health increase/free life + code:FD86-4F6E + cheat + description:Only 20 gems needed for health increase/free life + code:4D86-4F6E + cheat + description:Only 30 gems needed for health increase/free life + code:7D86-4F6E + cheat + description:Only 40 gems needed for health increase/free life + code:0D86-4F6E + cheat + description:Only 50 gems needed for health increase/free life + code:9D86-4F6E + cheat + description:Only 60 gems needed for health increase/free life + code:1D86-4F6E + cheat + description:Only 90 gems needed for health increase/free life + code:BD86-4F6E + cheat + description:Apple power-ups worth 20 instead of 10 + code:4D8B-4DD3 + cheat + description:Apple power-ups worth 50 + code:9D8B-4DD3 + cheat + description:Apple power-ups worth 90 + code:BD8B-4DD3 + cheat + description:Start with 5 Apples + code:D967-1F60 + cheat + description:Start with 20 Apples + code:4D67-1F60 + cheat + description:Start with 2 health + code:D464-14A0 + cheat + description:Start with 5 health + code:D964-14A0 + cheat + description:Start with 7 health + code:D564-14A0 + cheat + description:Start with 1 life + code:DF64-1DD0 + cheat + description:Start with 5 lives + code:D964-1DD0 + cheat + description:Start with 20 lives + code:F064-1DD0 + cheat + description:Start with 1 continue + code:DFB8-3F07 + cheat + description:Start with 5 continues + code:D9B8-3F07 + cheat + description:Start with 9 continues + code:DCB8-3F07 + cheat + description:Invincibility (alt) + code:7E0347:04 + cheat + description:Infinite Apples (alt) + code:7E0369:99 + cheat + description:Moon-jump + code:7E08FB:16 + +cartridge sha256:e637b8241d55ee334a3452888df5e30d72c520dbb55c498db1a984438bab3e55 + name:Alien 3 (USA) + cheat + description:Invincibility + code:DD69-1FD0 + cheat + description:Infinite energy + code:6D64-1D60 + cheat + description:Take less damage + code:D464-1D60 + cheat + description:Most attacks do no damage + code:DD64-1D60 + cheat + description:Longer invulnerability after being hit + code:EE6B-CD00 + cheat + description:Slower fuel consumption for flame thrower + code:EE26-37D4 + cheat + description:Faster fuel consumption for flame thrower + code:7D26-37D4 + cheat + description:Infinite oil for flame thrower + code:3C25-3704 + cheat + description:Infinite flame thrower + code:C22A-17D1 + cheat + description:Infinite machine-gun + code:8B28-4404 + cheat + description:Infinite missiles + code:8B22-3DA4 + cheat + description:Infinite ammo for pulse rifle + code:3C28-44D4 + cheat + description:Infinite ammo for grenade launcher + code:3C22-3D64 + cheat + description:Less ammo in rifle clips (works with extra clips only, not the ones you start with) + code:742A-44A4 + cheat + description:More ammo in rifle clips (works with extra clips only, not the ones you start with) + code:CD2A-44A4 + cheat + description:Less ammo in grenade clips (works with extra clips only, not the ones you start with) + code:D923-3D64 + cheat + description:More ammo in grenade clips (works with extra clips only, not the ones you start with) + code:F023-3D64 + cheat + description:Maximum energy from medi-kits + code:DD6D-1700 + cheat + description:Less energy from medi-kits + code:D76D-1DA0 + cheat + description:Start with more rifle clips + code:FD36-44D1 + cheat + description:Start with even more rifle clips + code:4D36-44D1 + cheat + description:Start with fewer rifle clips + code:D036-44D1 + cheat + description:Start with more grenade clips + code:FD3B-4F01 + cheat + description:Start with even more grenade clips + code:4D3B-4F01 + cheat + description:Start with fewer grenade clips + code:D03B-4F01 + cheat + description:Mission 1 completed + code:7E0FDE:FF + cheat + description:Mission 2 completed + code:7E0FF0:FF + cheat + description:Mission 3 completed + code:7E0FF2:FF + cheat + description:Mission 4 completed + code:7E0FF4:FF + cheat + description:Mission 5 completed + code:7E0FF6:FF + cheat + description:Mission 6 completed + code:7E0FF8:FF + cheat + description:Mission 7 completed + code:7E0FFA:FF + cheat + description:Mission 8 completed + code:7E0FFC:FF + +cartridge sha256:05eb897d7696555790591c431c9d55a43ff9a1c12162443c17c5fcddfa5eb3c5 + name:Alien vs Predator (USA) + cheat + description:Invincibility + code:1D3B-0FAD+6D22-D4D7 + cheat + description:Infinite health + code:C238-0FDD+C236-0DDD + cheat + description:No damage taken from punches + code:C236-0DDD + cheat + description:No damage taken from jumping attacks, tail attacks, rushes + code:C238-0FDD + cheat + description:Infinite lives + code:C286-A70D + cheat + description:Infinite lives (alt) + code:DD86-A70D + cheat + description:Infinite continues + code:3CEA-67D8 + cheat + description:One hit kills + code:6D2D-AFA7+6D37-64DD+6DB8-A765+6D39-DD6F + cheat + description:Hit anywhere + code:402B-6FD7+D12B-0D07+D12D-0D67+D13A-A4DD + cheat + description:Disc power-ups give 1 disc instead of 6 (handicap) + code:DF83-64AF + cheat + description:Disc power-ups give 3 discs + code:D783-64AF + cheat + description:Disc power-ups give 10 discs + code:DC83-64AF + cheat + description:Disc power-ups give 25 discs + code:FB83-64AF + cheat + description:Spear power-ups give 1 spear instead of 6 + code:DF8E-6D6F + cheat + description:Spear power-ups give 3 spears + code:D78E-6D6F + cheat + description:Spear power-ups give 10 spears + code:DC8E-6D6F + cheat + description:Spear power-ups give 25 spears + code:FB8E-6D6F + cheat + description:Spear and disc power-ups last until end of level (can't pick up other power-ups) + code:EDCA-0DD4 + cheat + description:Rhynth meat doesn't add to your maximum health + code:C282-6FDF + cheat + description:Rhynth meat adds 1/2 as much to maximum health (handicap) + code:D08A-6F6F + cheat + description:Rhynth meat adds 2x as much to maximum health + code:FD8A-6F6F + cheat + description:Rhynth meat adds 4x as much to maximum health + code:4D8A-6F6F + cheat + description:Rhynth meat adds nothing to your current health + code:DD82-67DF + cheat + description:Rhynth meat adds half as much to current health + code:D082-67DF + cheat + description:Rhynth meat adds 2x as much to current health + code:FD82-67DF + cheat + description:Rhynth meat adds 4x as much to current health + code:4D82-67DF + cheat + description:Ptera meat doesn't heal + code:C28D-A40F + cheat + description:Blue bottles don't heal at all + code:1D8D-A7AF + cheat + description:Blue bottles heal 1/2 of your health instead of 1/4 + code:3C8F-A76F + cheat + description:Blue bottles heal completely + code:DD84-A4DF + cheat + description:Light laser can be fired instantly + code:DFB1-A4D7 + cheat + description:Medium laser is fired above 3rd line instead of 2nd + code:F6B1-A707 + cheat + description:Medium laser can be fired above 1st line + code:D9B5-ADD7 + cheat + description:Medium laser can be fired below 1st line - eliminates light laser + code:DCB1-A4A7 + cheat + description:No damage is taken from using heavy laser + code:F6B5-AF07 + cheat + description:Heavy laser can be fired above 2nd line - eliminates medium laser + code:DFB5-AD67 + cheat + description:Start with full health bar on Standard level + code:EEB5-6404+EEB5-64A4 + cheat + description:Start with full health bar on Novice level + code:EEB5-6704+EEB5-67A4 + cheat + description:Start with full health bar on Advanced level + code:EEB6-6D04+EEB6-6DA4 + cheat + description:Start with full health bar on Expert level + code:EEB6-6F04+EEB6-6FA4 + cheat + description:Start with up to 9 lives on Options screen (selecting downward from 1 goes to 6) + code:DB8F-AD9D + cheat + description:Start with up to 30 continues on Options screen (selecting downward from 0 goes to 3) + code:F38F-AD2D + cheat + description:Start on level 1-2 + code:D4EE-A766 + cheat + description:Start on level 2-1 + code:D7EE-A766 + cheat + description:Start on level 3-1 + code:D0EE-A766 + cheat + description:Start on level 4-1 + code:D9EE-A766 + cheat + description:Start on level 5-1 + code:D1EE-A766 + cheat + description:Start on level 5-2 + code:D5EE-A766 + cheat + description:Start on level 5-3 + code:D6EE-A766 + cheat + description:Start on level 6-1 + code:DBEE-A766 + cheat + description:Start on level 6-2 + code:DCEE-A766 + cheat + description:Infinite health (alt) + code:7E1024:64 + +cartridge sha256:5c4e283efc338958b8dd45ebd6daf133a9eb280420a98e2e1df358ae0242c366 + name:Amazing Spider-Man, The - Lethal Foes (Japan) + cheat + description:Infinite health + code:7E0E0C:40 + cheat + description:Infinite lives + code:7E1C23:09 + cheat + description:Infinite time + code:7E1C22:63 + +cartridge sha256:dc9cefb4dd50dce2e9d626ac71d4a06306516cba4bc784c90e4a30fe4e7ff4ef + name:American Gladiators (USA) + cheat + description:Infinite time + code:7E00B2:59 + cheat + description:Always have 9 points - P1 + code:7E0306:09 + cheat + description:Always have 9 points in ball game - P1 + code:7E0304:09 + +cartridge sha256:6931a3eacb7ab3c2f2fb57ba7d59c6da56fe6c7d60484cebec9332e6caca3ae9 + name:American Tail, An - Fievel Goes West (USA) + cheat + description:Invincibility + code:2D6D-D4EF + cheat + description:Invincibility (alt) + code:CB6D-D47F + cheat + description:Infinite health + code:2D60-DD8F + cheat + description:Infinite lives + code:C2C5-6FDF + cheat + description:Infinite time + code:3CC4-A4DF + cheat + description:Walk left faster + code:E867-AF5D + cheat + description:Walk right faster + code:D06E-6DED + cheat + description:Multi-jumps + code:DD65-0D84 + +cartridge sha256:626f1fe52b0df0f8ede23f0062cd842321c8dabf14aefdca12e526876ecf383a + name:Animaniacs (USA) + cheat + description:Every coin gives 999 saved slot rotations + code:DFC8-3D0C + cheat + description:Every second coin gives 99 continues + code:D4CE-37AC + cheat + description:Every slot machine roll gives 99 continues + code:D9CE-37AC + cheat + description:Super-jump and float + code:CBBF-47DA+D6BF-470A+DFBF-476A + cheat + description:Invincibility + code:0CFCC0:90 + cheat + description:99 Coins + code:7F0016:63 + cheat + description:Every coin gives 999 saved slot rotations (alt) + code:82ABB1:01 + cheat + description:Every second coin gives 99 continues (alt) + code:82ABFF:02 + cheat + description:Every slot machine roll gives 99 continues (alt) + code:82ABFF:05 + cheat + description:Hold up or down against some walls to climb them + code:8390D1:FF + cheat + description:Higher jump + code:839011:FF + cheat + description:Super jump and float (alt) + code:83901C:A9+83901D:08+83901E:01 + cheat + description:Moon-jump (enable to rise slowly, disable to fall back down) + code:7E0415:FF + +cartridge sha256:31569bef662bc438194726967970bf19f504101060763cbd649350362fb6ef2f + name:Arcade's Greatest Hits - The Atari Collection 1 (USA) + cheat + description:Asteroids - Invincibility + code:1D63-34AE + cheat + description:Asteroids - Infinite lives - both players + code:896E-3D6E + cheat + description:Battlezone - Invincibility + code:ADB3-4FF9+DDB3-4F99+2DB3-4FB9+1DBF-4D95 + cheat + description:Battlezone - Infinite lives + code:C9BE-47B9 + cheat + description:Centipede - Infinite lives - both players + code:8262-C7DB + cheat + description:Super Breakout - Infinite serves - both players + code:C2AB-CDD1 + cheat + description:Tempest - Infinite lives - both players + code:82A6-C49B + +cartridge sha256:aac9d6f2b8408e4bbdc83ebbba755428caf8021fefbfac7220fb4c772abd9944 + name:Arcana (USA) + cheat + description:Infinite money for weapons + code:C225-0F02 + cheat + description:Infinite money for items + code:C22A-0402 + cheat + description:Infinite money for rooms + code:C229-640E + cheat + description:Infinite money for elixir + code:C22F-A7DE + cheat + description:Level and statistics for all characters in group are increased after each battle + code:B387-DFF2 + cheat + description:Magic points don't decrease + code:828B-AF2E + cheat + description:Start with 60,000 gold pieces + code:1D69-AFD0+3C69-AF00 + cheat + description:Start with 250 gold pieces + code:EC69-AFD0+DD69-AF00 + +cartridge sha256:41084f83e269d46b9d589f11c802a15e84fede57d604c7986053f2858f757adc + name:Archer Maclean's Super Dropzone (Europe) + cheat + description:Infinite lives + code:7E0025:04 + cheat + description:Infinite bombs + code:7E0026:04 + +cartridge sha256:0f474dafe5a26f3dea491d18073dd490d2f1f91313a7e91086565510d38d9a09 + name:Ardy Lightfoot (USA) + cheat + description:Invincibility + code:2D3F-446D+2D8F-3407 + cheat + description:Infinite lives + code:C268-CF0D + +cartridge sha256:14d3ece30898587eda20c661a4a55ec595ba6352ca1f0bfc177542aa0eef0039 + name:Arkanoid - Doh It Again (USA) + cheat + description:Infinite lives + code:82B8-1704 + cheat + description:"S" capsule gives you the longest paddle + code:D762-14D5 + cheat + description:"S" capsule gives you the laser paddle + code:D062-14D5 + cheat + description:Force field lasts until end of level + code:C2BD-3F60 + cheat + description:Keep current paddle when you get force field + code:DD66-CFA5 + +cartridge sha256:55e57c5e012583ff0fafd1aee16b3f8269ee2b34fe10f10b93ba0dde72f2b78d + name:Art of Fighting (USA) + cheat + description:Invincibility (except projectiles) + code:3D17-7464+DD17-74A4+DD17-77D4 + cheat + description:Infinite health + code:CB3C-57AF+3E38-5DDF+6238-5D0F + cheat + description:Infinite time + code:C235-5DA4 + cheat + description:Hit anywhere - both players + code:6D14-7DD4 + +cartridge sha256:59f217912f4dbfb3dd0844f46128e71d6ddd522d7e246eb687000adeaa38d13d + name:Ashita no Joe (Japan) + cheat + description:Hit anywhere - P1 + code:DD81-64AF + cheat + description:Hit anywhere - P2 + code:DD8A-A46D + cheat + description:Invincibility - P1 + code:6D8A-6DDD + cheat + description:Invincibility - P2 + code:6D81-0FDF + +cartridge sha256:d54d2703e474d7f469766d2d095ffcbbcab893e3fe58bbbcc57e24082a44bb40 + name:Asterix (Europe) (En,Fr,De,Es) + cheat + description:Invincibility + code:2D68-ADAD+A968-AF0D + cheat + description:Infinite health + code:82E9-6F64 + cheat + description:Infinite lives + code:82E0-6D04 + cheat + description:Infinite health (alt) + code:7E05F0:03 + cheat + description:Infinite lives (alt) + code:7E05FC:09+7E05FD:09 + cheat + description:Infinite time + code:7E05F7:09+7E05F8:09+7E05F9:09 + cheat + description:Infinite coins + code:7E05EE:09+7E05EF:09 + +cartridge sha256:d9127808fb02c47dd74fd22f39582c69f19936a794a8efc153cc0e51a0d4d782 + name:Asterix & Obelix (Europe) (En,Fr,De,Es) + cheat + description:Infinite health + code:7E008C:28 + cheat + description:Infinite lives + code:7E101D:09 + cheat + description:Infinite time + code:7E1076:27 + cheat + description:Always Magic Chicken + code:7E008E:04 + cheat + description:Moon jump (disable to drop back down) + code:7E007D:C0 + +cartridge sha256:2431f8dc067ba27c6c3a846929f3deac6a45aa53a9a9ac20ede8ec5ca6854ea2 + name:Axelay (USA) + cheat + description:Invincibility + code:2D87-AD04 + cheat + description:Infinite lives + code:A2AE-DF6D + cheat + description:Infinite lives (alt) + code:C2AE-DF6D+C28F-04D7 + cheat + description:Infinite credits + code:C2C5-DDDF + cheat + description:Don't lose weapon when hit + code:8285-AF07+82AA-676D + cheat + description:Hit anywhere + code:C93C-DD0F+C9BD-D408+DD36-D70F+DD3B-DF0F + cheat + description:Start with 1 credit + code:D766-D7A7 + cheat + description:Start with 2 credits + code:D066-D7A7 + cheat + description:Start with 3 credits + code:D966-D7A7 + cheat + description:Start with 4 credits + code:D166-D7A7 + cheat + description:Start with 6 credits + code:D666-D7A7 + cheat + description:Start with 7 credits + code:DB66-D7A7 + cheat + description:Start with 8 credits + code:DC66-D7A7 + cheat + description:Start with 9 credits + code:D866-D7A7 + cheat + description:Start with 1 life + code:DF21-AD04 + cheat + description:Start with 2 lives + code:D421-AD04 + cheat + description:Start with 5 lives + code:D921-AD04 + cheat + description:Start with 7 lives + code:D521-AD04 + cheat + description:Start with 9 lives + code:DB21-AD04 + cheat + description:Start with 15 lives + code:DE21-AD04 + cheat + description:Start with 25 lives + code:FB21-AD04 + cheat + description:Start with 50 lives + code:7421-AD04 + cheat + description:Start with 75 lives + code:0821-AD04 + cheat + description:Start with 99 lives + code:1721-AD04 + cheat + description:Start on Stage 2 + code:CBB7-AFA7+DFB7-A4D7+DDB7-A407 + cheat + description:Start on Stage 3 + code:CBB7-AFA7+D4B7-A4D7+DDB7-A407 + cheat + description:Start on Stage 4 + code:CBB7-AFA7+D7B7-A4D7+DDB7-A407 + cheat + description:Start on Stage 5 + code:CBB7-AFA7+D0B7-A4D7+DDB7-A407 + cheat + description:Start on Stage 6 + code:CBB7-AFA7+D9B7-A4D7+DDB7-A407 + cheat + description:Infinite lives (alt 2) + code:7E005E:02 + cheat + description:Have 1st weapon - Straight Laser + code:7E0330:02 + cheat + description:Have 1st weapon - Round Vulcan + code:7E0330:03 + cheat + description:Have 1st weapon - Wind Laser + code:7E0330:05 + cheat + description:Have 1st weapon - Explosion Bomb + code:7E0330:06 + cheat + description:Have 1st weapon - Macro Missiles + code:7E0330:07 + cheat + description:Have 1st weapon - Cluster Bomb + code:7E0330:09 + cheat + description:Have 1st weapon - Morning Star + code:7E0330:0A + cheat + description:Have 1st weapon - Needle Cracker + code:7E0330:0B + cheat + description:Have 2nd weapon - Straight Laser + code:7E0332:02 + cheat + description:Have 2nd weapon - Round Vulcan + code:7E0332:03 + cheat + description:Have 2nd weapon - Wind Laser + code:7E0332:05 + cheat + description:Have 2nd weapon - Explosion Bomb + code:7E0332:06 + cheat + description:Have 2nd weapon - Macro Missiles + code:7E0332:07 + cheat + description:Have 2nd weapon - Cluster Bomb + code:7E0332:09 + cheat + description:Have 2nd weapon - Morning Star + code:7E0332:0A + cheat + description:Have 2nd weapon - Needle Cracker + code:7E0332:0B + cheat + description:Have 3rd weapon - Straight Laser + code:7E0334:02 + cheat + description:Have 3rd weapon - Round Vulcan + code:7E0334:03 + cheat + description:Have 3rd weapon - Wind Laser + code:7E0334:05 + cheat + description:Have 3rd weapon - Explosion Bomb + code:7E0334:06 + cheat + description:Have 3rd weapon - Macro Missiles + code:7E0334:07 + cheat + description:Have 3rd weapon - Cluster Bomb + code:7E0334:09 + cheat + description:Have 3rd weapon - Morning Star + code:7E0334:0A + cheat + description:Have 3rd weapon - Needle Cracker + code:7E0334:0B + +cartridge sha256:9e6ebebcf14609c2a38a5f4409d0c8c859949cded70c5b6fd16fd15d9983d9d3 + name:B.O.B. (USA) + cheat + description:Infinite health (P) + code:C221-0D6D + cheat + description:Infinite lives + code:826E-0F0D + cheat + description:Infinite lives (alt) + code:4A6E-0F0D + cheat + description:Infinite time + code:C267-C0DD + cheat + description:Infinite weapons + code:8B37-A704 + cheat + description:Infinite Remotes + code:8BC7-3FE5 + cheat + description:Infinite Remotes (alt) + code:3CC7-3F85 + cheat + description:Infinite weapons (except for Flame) + code:3C37-A7D4 + cheat + description:Hit anywhere + code:DDE2-6D04+DDEF-AD04 + cheat + description:Max weapons on pick-up + code:DDC0-C770 + cheat + description:Slow down timer + code:CD61-0D64 + cheat + description:Speed up timer + code:7961-0D64 + cheat + description:Start with 20 3-way + code:F0A6-1D59 + cheat + description:Start with 20 Flame + code:F0A6-1FE9 + cheat + description:Start with 20 Rocket + code:F0A6-1759 + cheat + description:Start with 20 Bolt + code:F0AB-1DE9 + cheat + description:Start with 20 Wave + code:F0AB-1459 + cheat + description:Start with 3 Flash Remotes + code:DDA8-1F89 + cheat + description:Start with 3 Shield Remotes + code:DFA8-1F89 + cheat + description:Start with 3 Umbrella Remotes + code:D4A8-1F89 + cheat + description:Start with 3 Helicopter Hat Remotes + code:D0A8-1F89 + cheat + description:Start with 3 Floating Bomb Remotes + code:D9A8-1F89 + cheat + description:Start with 6 of selected remote + code:D1A8-1479 + cheat + description:Start with 15 of selected remote + code:DEA8-1479 + cheat + description:Start with 1 life + code:DD66-0DDD + cheat + description:Start with 9 lives + code:D666-0DDD + cheat + description:Start with 6 lives + code:D966-0DDD + cheat + description:Infinite health (P) (alt) + code:7E0221:30 + cheat + description:Infinite E + code:7E0222:30 + cheat + description:Infinite weapons (except for Flame) (alt) + code:00EB3C:EA + cheat + description:Infinite Remotes (alt 2) + code:8DAF36:EA + cheat + description:Infinite time (alt) + code:7E0F42:3B + cheat + description:Infinite Flash Remotes + code:7E0209:63 + cheat + description:Infinite Shield Remotes + code:7E020A:63 + cheat + description:Infinite Umbrella Remotes + code:7E020B:63 + cheat + description:Infinite Spring Remotes + code:7E020C:63 + cheat + description:Infinite Helicopter Hat Remotes + code:7E020D:63 + cheat + description:Infinite Floating Bomb Remotes + code:7E020E:63 + cheat + description:Max weapons on pick-up (alt) + code:8DA24C:00 + +cartridge sha256:e25d052d25264a14c4904aebc383482577bb5d2bb135f3ece88b1b7b0456a6bc + name:Ballz 3D - Fighting at Its Ballziest (USA) + cheat + description:Infinite time + code:C295-ED64+C296-E7D4 + cheat + description:Always fight Kronk + code:CB82-EF0D+D082-EF6D+DD82-EFAD + cheat + description:Always fight Boomer + code:CB82-EF0D+D682-EF6D+DD82-EFAD + cheat + description:Always fight Bruiser + code:CB82-EF0D+DA82-EF6D+DD82-EFAD + cheat + description:Always fight Turbo + code:CB82-EF0D+FD82-EF6D+DD82-EFAD + cheat + description:Always fight Tsunami + code:CB82-EF0D+F082-EF6D+DD82-EFAD + cheat + description:Always fight Yoko + code:CB82-EF0D+F682-EF6D+DD82-EFAD + cheat + description:Always fight Divine + code:CB82-EF0D+FA82-EF6D+DD82-EFAD + cheat + description:Always fight Crusher + code:CB82-EF0D+4D82-EF6D+DD82-EFAD + cheat + description:Death match + code:CDE8-87AF + cheat + description:Start rounds with 10 seconds + code:DC78-E7AD + cheat + description:Start rounds with 20 seconds + code:F078-E7AD + cheat + description:Start rounds with 30 seconds + code:F378-E7AD + cheat + description:Start rounds with 40 seconds + code:4678-E7AD + cheat + description:Start rounds with 50 seconds + code:7478-E7AD + cheat + description:Start rounds with 60 seconds + code:7A78-E7AD + cheat + description:Start rounds with 70 seconds + code:0178-E7AD + cheat + description:Start with with 1/4 energy + code:4EDC-7760 + cheat + description:Start with with 1/2 energy + code:9EDC-7760 + cheat + description:Start with with 3/4 energy + code:BEDC-7760 + +cartridge sha256:865919b25a9d241c907bcda18b380e3c704f33f4997ad44559046f0f08c4968b + name:Barbie Super Model (USA) + cheat + description:Infinite chances + code:C229-DF07 + +cartridge sha256:fe1ad128313b2b9a47f89cf0d95d4c0cc2cb35a817ac5d915ee6c4d98d47d675 + name:Barkley Shut Up and Jam! (USA) + cheat + description:Infinite time + code:7E0780:47 + +cartridge sha256:e2be173c77bd1957787be36d13334f655e14d32dad99cacb0fd5e5fc65d96fa1 + name:Bassin's Black Bass (USA) + cheat + description:Always catch a 60.32 pound fish + code:CBCA-A4D3 + cheat + description:Always catch a 75.68 pound fish + code:CBCA-A4D3+D3CA-A463 + cheat + description:Always catch a largemouth bass + code:CBC8-A403+DDC8-A463+3CC8-A4A3 + cheat + description:Always have all lures (open the lure menu, close it, open it again to have all lures) + code:CBEA-DF60+DFEA-DFA0+B2EA-D4D0+4BEA-D4A0 + +cartridge sha256:db1ac03cc8b7daaa812da239029bcf999b30b2afe1c03d51f7ae849a796617ea + name:BASS Masters Classic - Pro Edition (USA) + cheat + description:Start with $65,380 + code:EE40-BA86 + cheat + description:Infinite money + code:7E2242:FF + +cartridge sha256:e36aaba64be016cabc33a2dcf88913341e2edacc722e2a1ebe04eccda2a5d6e7 + name:Batman Forever (USA) + cheat + description:Straight low punches are super strong + code:EE22-C70B + cheat + description:Straight high punches are super strong + code:EE20-3D0B + cheat + description:Straight low kicks are super strong + code:EE29-4F0B + cheat + description:Straight high kicks are super strong + code:EE2C-44AB + cheat + description:Crouching low punches are super strong + code:EE26-14AC + cheat + description:Crouching high punches are super strong + code:EE30-3FA6 + cheat + description:Crouching low kicks are super strong + code:EE3F-3D06 + cheat + description:Crouching high kicks are super strong + code:EE3A-CF06 + cheat + description:Straight low punches do no damage + code:DD22-C70B + cheat + description:Straight high punches do no damage + code:DD20-3D0B + cheat + description:Straight low kicks do no damage + code:DD29-4F0B + cheat + description:Straight high kicks do no damage + code:DD2C-44AB + cheat + description:Crouching low punches do no damage + code:DD26-14AC + cheat + description:Crouching high punches do no damage + code:DD30-3FA6 + cheat + description:Crouching low kicks do no damage + code:DD3F-3D06 + cheat + description:Crouching high kicks do no damage + code:DD3A-CF06 + cheat + description:Start with half energy after your first life + code:4D2C-4D07+4DCE-1465 + cheat + description:Play as an Inmate + code:F43C-3B10 + cheat + description:Play as a Clown + code:F03C-3B10 + cheat + description:Play as Two-Face + code:F63C-3B10 + cheat + description:Play as a Riddler Thug + code:FC3C-3B10 + cheat + description:Play as the Muscle Riddler + code:FA3C-3B10 + cheat + description:Start with 1 life + code:DDB3-47D4 + cheat + description:Start with 3 lives + code:D4B3-47D4 + cheat + description:Start with 10 lives + code:DBB3-47D4 + cheat + description:Infinite health - P1 + code:7E132C:FF + cheat + description:Infinite health - P2 + code:7E132E:FF + cheat + description:Infinite lives + code:7E0017:09 + cheat + description:One hit kills enemy #1 + code:7E1330:00 + +cartridge sha256:f8d5c51f74df33edc827fbf8df7aab70160770ab0a896db6e59438ad9208cc6e + name:Batman Returns (USA) + cheat + description:Invincibility + code:2DAA-1FA4+40A7-4F0D + cheat + description:Infinite health + code:C9A7-C7A4 + cheat + description:Infinite lives (3/4 view levels) + code:C9A5-1764 + cheat + description:Infinite special moves + code:C92D-4FDD + cheat + description:Protection from some hazards + code:C9A7-C404 + cheat + description:Hit anywhere + code:DD3E-3FD7+DDAE-C7A6+DDE5-1F22+DDE6-1792 + cheat + description:Cape sweep uses up no health + code:DDAE-3707 + cheat + description:Spear gun uses up no health + code:DD2F-4FAD + cheat + description:Cape sweep uses up more health + code:FDAE-3707 + cheat + description:Spear gun uses up more health + code:FD2F-4FAD + cheat + description:Maximum health from hearts + code:DD2E-3D6B + cheat + description:Cape sweep does more damage + code:F9CF-4F05 + cheat + description:Normal punch does more damage + code:F9CD-4705 + cheat + description:Normal knee does more damage + code:F9CD-4765 + cheat + description:Jump kick does more damage + code:F9CF-4D05+F9CF-4DD5 + cheat + description:Cape sweep does mega-damage + code:7DCF-4F05 + cheat + description:Normal punch does mega-damage + code:7DCD-4705 + cheat + description:Normal knee does mega-damage + code:7DCD-4765 + cheat + description:Jump kick does mega-damage + code:7DCF-4D05+7DCF-4DD5 + cheat + description:Cape sweep does less damage + code:D4CF-4F05 + cheat + description:Normal punch does less damage + code:D4CD-4705 + cheat + description:Normal knee does less damage + code:D4CD-4765 + cheat + description:Jump kick does less damage + code:D4CF-4D05+D4CF-4DD5 + cheat + description:Enable stage select + code:F76C-1FDF+616C-1F0F+CEC8-376F+C2E8-1078 + cheat + description:Start with 9 + code:DB68-4F00 + cheat + description:Start with 6 test tubes + code:D16F-4464+D1C0-4DD7 + cheat + description:Start with 9 test tubes + code:DB6F-4464+DBC0-4DD7 + cheat + description:Enemy 1 has 0 health + code:7E0567:00 + cheat + description:Enemy 2 has 0 health + code:7E0576:00 + cheat + description:Enemy 3 has 0 health + code:7E0666:00 + cheat + description:Enemy 4 has 0 health + code:7E0756:00 + +cartridge sha256:51cc42c58145f3e33b762e8ff36e9a9b7016ca831306d0d5f84830948a1a5967 + name:Batman - Revenge of the Joker (USA) (Proto) + cheat + description:Invincibility + code:2DA7-4460 + cheat + description:Infinite health + code:C2EF-1FA8 + cheat + description:Infinite lives + code:8263-44DD + cheat + description:Infinite health (alt) + code:7E0353:07+7E0355:07 + cheat + description:Infinite lives (alt) + code:7E0356:03+7E0358:03 + +cartridge sha256:983022203546e031773db0d1af7552c489187954882843f13ff123f09064c1d3 + name:Battle Blaze (USA) + cheat + description:Infinite continues + code:C285-D4AB + cheat + description:Infinite health (disable at end of round) - P1 + code:7E06DC:C0 + cheat + description:Infinite health (disable at end of round) - P2 + code:7E0704:C0 + cheat + description:No health - P1 + code:7E06DC:00 + cheat + description:No health - P2 + code:7E0704:00 + cheat + description:Hit anywhere - both players + code:04E8-D40F+6DE8-D4DF + +cartridge sha256:32f42fda0667d9435a2de84c7ce7b067bcbab1164f8f6d837992ad6cfac4f8de + name:Battle Clash (USA) + cheat + description:Infinite health + code:C234-3FD3 + cheat + description:Protection from most enemy attacks + code:C234-3FD3 + cheat + description:Infinite time + code:C268-CFA5 + cheat + description:Weapon charges faster + code:D9A9-1DA7 + cheat + description:Weapon charges much faster + code:FDA9-1DA7 + cheat + description:Once charged, weapon always stays charged + code:1DAA-3FAF + cheat + description:Start in Cairo instead of New York + code:33EE-3D1F + cheat + description:Fight Garam at New York + code:CBAB-CDA0+DDAB-CF00+DDAB-CFD0 + cheat + description:Fight Scarab at Cairo + code:CBAB-CDA0+DDAB-CF00+DFAB-CFD0 + cheat + description:Fight Lorca at London + code:CBAB-CDA0+DDAB-CF00+D4AB-CFD0 + cheat + description:Fight Artemis at Andes + code:CBAB-CDA0+DDAB-CF00+D7AB-CFD0 + cheat + description:Fight Schneider at Kyoto + code:CBAB-CDA0+DDAB-CF00+D0AB-CFD0 + cheat + description:Fight Ivan at Oceania + code:CBAB-CDA0+DDAB-CF00+D9AB-CFD0 + cheat + description:Fight Valius at Babel + code:CBAB-CDA0+DDAB-CF00+D1AB-CFD0 + cheat + description:Fight Baron at Moonbase Luna + code:CBAB-CDA0+DDAB-CF00+D5AB-CFD0 + cheat + description:Fight Thanatos at last stage + code:CBAB-CDA0+DDAB-CF00+D6AB-CFD0 + cheat + description:Infinite health - P1 + code:7E15C0:80 + cheat + description:One hit kills + code:7E15A0:00 + +cartridge sha256:36cbc43a3ec85f235ecb6e0d5b134f069b619d3cc51e475427d3fcf8abb6ba44 + name:Battle Zeque Den (Japan) + cheat + description:Invincibility + code:D781-B386+FC3C-34A9 + cheat + description:Invincibility (alt) + code:7EB26A:03 + cheat + description:Infinite lives + code:CE35-C7A9 + cheat + description:Infinite Special + code:82C2-C7D0 + cheat + description:One hit kills + code:3D6E-C4D5+436E-C405+846E-C465+2D6E-C4A5 + cheat + description:Infinite health + code:7EB246:4E + cheat + description:Infinite lives (alt) + code:7E0329:0A + cheat + description:Infinite Special (Red) + code:7EB24C:02 + cheat + description:Infinite Special (Blue) + code:7EB24C:04 + cheat + description:Infinite Special (Green) + code:7EB24C:06 + +cartridge sha256:c7f0269498d190e4fd0f6f880a148fbe3713cd3a632083bac1e5bd18f8172371 + name:Battletoads-Double Dragon (USA) + cheat + description:Infinite lives + code:40B8-04AF + cheat + description:Enemies have less health + code:DE6E-1466 + cheat + description:Abobo has less health + code:4EB7-1DD6 + cheat + description:Big Blag has less health + code:4EB3-C4DB + cheat + description:Roper has less health + code:D7BA-3FA8 + cheat + description:Robo-Manus has less health + code:D7C5-3F66 + cheat + description:Start with 2 lives + code:DF60-D76D + cheat + description:Start with 10 lives + code:DB60-D76D + cheat + description:Start on level 2 with 11 lives + code:DD65-DD0D+CB66-D46D+DF66-D4AD + cheat + description:Start on level 3 with 11 lives + code:DD65-DD0D+CB66-D46D+D466-D4AD + cheat + description:Start on level 4 with 11 lives + code:DD65-DD0D+CB66-D46D+D766-D4AD + cheat + description:Start on level 5 with 11 lives + code:DD65-DD0D+CB66-D46D+D066-D4AD + cheat + description:Start on level 6 with 11 lives + code:DD65-DD0D+CB66-D46D+D966-D4AD + cheat + description:Invincibility (blinking) - P1 + code:7E1112:7F + cheat + description:Infinite health - P1 + code:7E003A:2F + cheat + description:Infinite lives - P1 + code:7E0026:05 + +cartridge sha256:b0dbd4d7e5689c32234e80b0c5362ef67c425ab72d6ddb49d1cb1133ef630ef7 + name:Battletoads in Battlemaniacs (USA) + cheat + description:Invincibility + code:2D20-34A8 + cheat + description:Invincibility in motorcycle levels + code:C2B4-3F68 + cheat + description:Infinite health + code:228E-34A0+2280-4DD9 + cheat + description:Infinite lives + code:8286-CF01 + cheat + description:Infinite lives - both players (except level 2, doesnメt work on falling) + code:8986-CF01 + cheat + description:Infinite continues - P1 + code:C96A-346F + cheat + description:Infinite continues - P2 + code:C96B-34DF + cheat + description:Infinite lives when falling + code:8026-CD08 + cheat + description:Longer invincibility after getting hit + code:6D20-34A8 + cheat + description:One hit kills + code:3D87-44A9+DD87-47D9+DD87-4709+CB80-4DD9+EE80-4D09+EE80-4D69+B280-4DA9 + cheat + description:Take less damage from hits + code:8280-4DD9 + cheat + description:Protection against most strength level 1 hits + code:82A7-3FAF + cheat + description:Protection against most strength level 2 hazards + code:8982-CFD1 + cheat + description:Easy finish on motorcycle levels. The turtle will keep going on until the end of the level. + code:C220-CF0C + cheat + description:Start with 2 lives + code:DF6D-0D0D + cheat + description:Start with 6 lives + code:D96D-0D0D + cheat + description:Start with 10 lives + code:DB6D-0D0D + cheat + description:Start with 0 continues + code:DD6D-04AD + cheat + description:Start with 5 continues + code:D96D-04AD + cheat + description:Start with 9 continues + code:DB6D-04AD + cheat + description:Infinite health - P1 + code:7E108E:0A + cheat + description:Infinite health - P2 + code:7E1090:0A + +cartridge sha256:0960f1de179f90e3d8488dacf09d5fe246fdb314913c370b3698dfdce58aa8ba + name:Bazooka Blitzkrieg (USA) + cheat + description:Immune to most damage + code:4AB5-3DAF + cheat + description:Fewer Missiles on pick-up + code:D9AC-1706 + cheat + description:More Missiles on pick-up + code:F0AC-1706 + cheat + description:Only 10 Missiles on pick-up (set Missiles to 10) + code:DCAB-14A6+DCAB-17A6 + cheat + description:30 Missiles allowed + code:F3AB-14A6+F3AB-17A6 + cheat + description:Less energy on pick-up from 'L' pods + code:D4AF-1406 + cheat + description:More energy on pick-up from 'L' pods + code:DCAF-1406 + cheat + description:A lot more energy on pick-up from 'L' pods + code:4EAF-1406 + cheat + description:Infinite health + code:7E0305:FF + cheat + description:Infinite Missiles + code:7E0304:14 + +cartridge sha256:d7271ca08400bbf5ae165b0aaa6e8a8a1b266f72e6e0ae10aae529732a472f7c + name:Beauty and the Beast (USA) + cheat + description:Invincibility (disable to pick up rocks, spikes still do damage) + code:3CC0-376A+3CC0-37AA + cheat + description:Invincibility (but you can't pick up objects) + code:2D6F-4DA0 + cheat + description:Invincibility after one hit + code:3C6F-4F00 + cheat + description:Infinite health + code:C2C8-3D0A + cheat + description:Infinite time + code:C269-6407 + cheat + description:Infinite flower time + code:C265-6407 + cheat + description:Infinite continues + code:C2E0-DF0F + cheat + description:Hit anywhere + code:4061-1706+4065-17A6+4065-1FD6+4066-1F66 + cheat + description:Don't take damage from some enemies + code:3CC8-3D0A + cheat + description:No loss of light when the candle runs off the screen + code:4AC8-47A8 + cheat + description:Death flash time is longer + code:EE66-4FAA + +cartridge sha256:15d4fc90cb202a9391718cd40b9f0384165aef03018ed932540e8f7c18b397dd + name:Beavis and Butt-Head (USA) + cheat + description:Start with half health (1st life) + code:D16C-0D0D + cheat + description:Start with half health (after 1st life) + code:D161-AF0D + cheat + description:Almost infinite health + code:C22C-AF08 + cheat + description:Gun power-ups worth 30 + code:7DA8-C7DC + cheat + description:Gun power-ups worth 5 + code:D9A8-C7DC + cheat + description:Infinite lives + code:C267-A70D + cheat + description:Start with 2 life + code:DF6C-040D + cheat + description:Start with 4 lives + code:D76C-040D + cheat + description:Start with 10 lives + code:DB6C-040D + cheat + description:Invincibility after one hit + code:82EA-A4D1 + cheat + description:Everyone is invincible, including enemies + code:DDEA-AFA1+DDA0-04A8 + +cartridge sha256:4958eda26f2419f473449017c64121caee5e49c480ffa205422e7dd45cd23e31 + name:Bebe's Kids (USA) + cheat + description:Infinite health + code:7E047B:00 + cheat + description:Infinite time + code:7E0470:63 + cheat + description:Infinite lives + code:7E03C9:09 + +cartridge sha256:4d22279e534848012e0f1595468687742ae18cabc3fe44eeef938bc3a4dd08bf + name:Beethoven - The Ultimate Canine Caper! (USA) + cheat + description:Infinite health + code:823F-3D01 + cheat + description:Infinite time + code:8224-1705 + cheat + description:Infinite lives + code:82C8-3464 + cheat + description:Infinite health (alt) + code:7E1628:04 + cheat + description:Infinite time (alt) + code:7E1654:63 + cheat + description:Infinite lives (alt) + code:7E15C6:09 + +cartridge sha256:e4e9beaeeb3e968af772d1c4c9e4c1b4dfdba4e47c0205b458e1ab3a62a96060 + name:Best of the Best - Championship Karate (USA) + cheat + description:Almost infinite health + code:D68F-AD65 + cheat + description:Infinite special moves + code:828D-D409 + cheat + description:No special moves - P2 + code:BAC3-6F69 + cheat + description:Can play with any boxer (can't use special moves or get password) - P1 + code:D4C3-0DAD + cheat + description:Less strength + code:DCC3-0FDD + cheat + description:Less resistance + code:DCC3-0F0D + cheat + description:Less reflexes + code:DCC3-0F6D + cheat + description:More strength + code:74C3-0FDD + cheat + description:More resistance + code:74C3-0F0D + cheat + description:More reflexes + code:74C3-0F6D + cheat + description:Start with 1 special move + code:DFC3-6D69 + cheat + description:Start with 8 special moves + code:D6C3-6D69 + cheat + description:Infinite time + code:7E1A39:09 + cheat + description:No health - P2 + code:7E0222:00 + cheat + description:Max Reflexes + code:7E0459:63 + cheat + description:Max Resistance + code:7E0455:63 + cheat + description:Max Strength + code:7E0457:63 + +cartridge sha256:4cb601168c91fa0608c16a8cf2f292d991c6a5615d51861dee2f9b91c8d6bb19 + name:Big Sky Trooper (USA) + cheat + description:Infinite HP + code:7E1E0A:20 + cheat + description:Infinite hearts + code:7E1E10:99 + cheat + description:Infinite Power Pack meter + code:7E1E0C:20 + +cartridge sha256:91ba5691dea3cdf103177ae5779110fc372fce8229cf91f263073667e7a8b5b7 + name:Biker Mice from Mars (USA) + cheat + description:Infinite ammo + code:3CB8-4F63 + cheat + description:Infinite cash + code:8E89-C7DB + cheat + description:Infinite Shield/Armor + code:82B8-C76D + cheat + description:Infinite Skull effect + code:C263-CDDA + cheat + description:Infinite Star effect + code:8289-4F03 + cheat + description:Infinite Stopwatch effect + code:C26C-47D2 + cheat + description:Infinite ammo (alt) + code:7E17C6:03 + cheat + description:Max Engines + code:7EFE38:05 + cheat + description:Max Tires + code:7EFE3C:05 + cheat + description:Max Armor + code:7EFE40:05 + cheat + description:Max Tornado Shots + code:7E1F88:63 + cheat + description:Always finish 1st + code:7E0928:00 + +cartridge sha256:6fa6b8a8804ff6544bdedf94339a86ba64ce0b6dbf059605abb1cd6f102d3483 + name:Bill Laimbeer's Combat Basketball (USA) + cheat + description:2-point shots worth 3, 3-point shots worth 4 + code:76BF-A4AF + cheat + description:All shots worth 1 point + code:1BBF-A7DF+DFBF-A70F + cheat + description:All shots worth 3 points + code:1BBF-A7DF+D7BF-A70F + cheat + description:All shots worth 4 points + code:1BBF-A7DF+D0BF-A70F + cheat + description:All shots worth 5 points + code:1BBF-A7DF+D9BF-A70F + cheat + description:All shots worth 6 points + code:1BBF-A7DF+D1BF-A70F + cheat + description:Each half is 0:30 instead of 1:30 + code:DDB4-67DF + cheat + description:Each half is 2:30 + code:D4B4-67DF + cheat + description:Each half is 3:30 + code:D7B4-67DF + cheat + description:Each half is 4:30 + code:D0B4-67DF + cheat + description:Start with $65,296 instead of $10,000 + code:EEC5-6F16 + cheat + description:Start with $8,398,608 + code:6DC5-64C6 + cheat + description:Start with $16,721,680 + code:EEC5-64C6 + cheat + description:No money is deducted from your total when you trade a player (but you must have enough money to make the trade) + code:C2BE-6D4B+C2BE-644B + cheat + description:Trade players for free + code:C2BE-6D4B+C2BE-644B+6DBE-AD4B + cheat + description:Timer continues to count when it is normally stopped (time-out by pressing start) + code:DDB7-67DF + +cartridge sha256:de1de85ad549a6aaf0431cceb47cbd07e1f6e81f9e16fd62575305e2c1f06240 + name:BioMetal (USA) + cheat + description:Invincibility (blinking) + code:406D-DDD2 + cheat + description:Infinite lives + code:C26E-6D02 + cheat + description:Infinite charge + code:C262-0D62 + cheat + description:Hit anywhere + code:462E-0767+6D2E-0707+C927-6FD7 + cheat + description:Infinite lives (alt) + code:7E029D:0A + +cartridge sha256:3f030b6c6aa86bc4ab3d39568740d8c6b0ec3422a1964fe1b56e94de47dfa420 + name:Bishin Densetsu Zoku (Japan) + cheat + description:Infinite health + code:7E122C:50 + cheat + description:No car damage + code:7E0D9B:2F + cheat + description:Infinite time + code:7E0C96:00 + cheat + description:Infinite time (alt) + code:7E0C97:09 + +cartridge sha256:ff936a073032205daadfea3738526a381daf7e402e8216d08561ddca8ceaf526 + name:Bishoujo Senshi Sailor Moon (Japan) + cheat + description:One hit kills + code:40FD-8FD0+40F8-ED69+40F9-74A1 + cheat + description:Invincibility + code:2D0D-E765 + cheat + description:Infinite health + code:8BFF-5F00+C9F9-87D1 + cheat + description:Infinite lives + code:C991-7FA0 + cheat + description:Hit anywhere + code:6DF6-54D0 + +cartridge sha256:8860380ae0afa280619fdca8723aed1393485a22bec442880acc75249cab37f4 + name:Bishoujo Senshi Sailor Moon R (Japan) + cheat + description:Invincibility + code:2D0D-EFA5+2D0D-E4A5 + cheat + description:Infinite health + code:8BDC-7D61 + cheat + description:Infinite lives + code:C992-5460 + cheat + description:Infinite Special + code:C90F-E400 + cheat + description:Hit anywhere + code:6DDD-5461 + cheat + description:One hit kills + code:40D3-5FA1+400D-7F05+40F5-5D00 + +cartridge sha256:328c8f57e2ea371f6fd5b8a9834c56e35eb3bfe710502dd80f370739f9ccb7e1 + name:Blackthorne (USA) + cheat + description:Infinite items (enable after obtaining first item, disable before getting next item, repeat this process) + code:89C6-1FD4 + cheat + description:Infinite health + code:7E0FC5:18 + cheat + description:3rd slot item mod + code:7E187A:03 + +cartridge sha256:0d4e0d134396bd1c7254cdc1da356eb944ca14910b6690f484a75a9c3a8106e7 + name:BlaZeon - The Bio-Cyborg Challenge (USA) + cheat + description:Invincibility + code:2D6D-A700 + cheat + description:Infinite lives + code:82B4-D4DD + cheat + description:Infinite lives (alt) + code:C2B4-D4DD+C2BD-64AD + cheat + description:Infinite Atomic Shields - Mars + code:C2C7-D7A7 + cheat + description:Infinite Hyper Bombs - Neptune + code:C2C3-DF67 + cheat + description:Hit anywhere + code:1D85-AD0F+1D8B-ADAF+C28A-D7A4+7685-ADDF+768B-AD6F + cheat + description:Start with 1 ship + code:DD6E-6707 + cheat + description:Start with 2 ships + code:DF6E-6707 + cheat + description:Start with 4 ships + code:D76E-6707 + cheat + description:Start with 5 ships + code:D06E-6707 + cheat + description:Start with 7 ships + code:D16E-6707 + cheat + description:Start with 10 ships + code:DB6E-6707 + cheat + description:Start with 26 ships + code:FB6E-6707 + cheat + description:Start on Stage 2 + code:DF6D-6D07 + cheat + description:Start on Stage 3 + code:D46D-6D07 + cheat + description:Start on Stage 4 + code:D76D-6D07 + cheat + description:Start on Stage 5 + code:D06D-6D07 + +cartridge sha256:99f40f06fa4dbeeea4fe67d2de5b4c1bf301bedac1958ba1c239dcaf39b0a998 + name:Blues Brothers, The (USA) + cheat + description:Invincibility + code:1DB3-14DF + cheat + description:Infinite health (1P game) + code:82A3-3F0D + cheat + description:Infinite health (2P game) + code:82AE-14D7 + cheat + description:Infinite lives + code:828F-34DF + cheat + description:Infinite time + code:C2B3-3764 + cheat + description:Infinite Discs + code:8289-CFDF + cheat + description:Multi-jump + code:6D21-CFAF+6D29-CD6F + +cartridge sha256:d50ef11383d78544dbad4d350cfd1486fb28e459e208d1553acdecbd84a808b8 + name:Bobby's World (USA) (Proto) + cheat + description:Invincibility + code:2DB7-1DD8 + cheat + description:Infinite health + code:82BC-1468 + cheat + description:Infinite health (alt) + code:7E139B03 + cheat + description:Infinite lives + code:822D-17AF + cheat + description:Infinite lives (alt) + code:7E139509 + cheat + description:Multi-jump + code:DDB3-17AC + +cartridge sha256:854d2492d1cb059749bb0904ca5f92a5eeec09167abf84f7cca4023b1819e4f0 + name:Bonkers (USA) + cheat + description:Invincibility + code:2DCD-C404 + cheat + description:Infinite health + code:89C4-1DDF + cheat + description:Infinite bombs + code:C9AB-CFDD + cheat + description:Infinite lives + code:C963-CD0F + cheat + description:Infinite dash + code:C98C-CD0F + cheat + description:Hit anywhere + code:6DE1-1F04+9DE1-1F64 + +cartridge sha256:8f131182b286bd87f12cf4f00453336538ce690d0e1f0972ac0be98df4d48987 + name:Boogerman - A Pick and Flick Adventure (USA) + cheat + description:Infinite health + code:CDF7-57AD + cheat + description:Infinite lives + code:DDF0-740D + cheat + description:Infinite Loogies + code:DD5C-74A9 + cheat + description:Infinite Boogers + code:DD53-E760 + cheat + description:Infinite Belches + code:DD55-5F09 + cheat + description:Infinite Super Belches + code:DD51-8FA9 + cheat + description:Infinite Farts + code:DD54-87D1 + cheat + description:Infinite Super Farts + code:DD54-ED61 + cheat + description:Infinite Chili Belches and Farts + code:DDB8-5DD5 + cheat + description:Infinite Super Chili Belches and Farts + code:DDBB-8765 + cheat + description:Infinite Rocket Farts + code:DDFE-7FD1 + cheat + description:Get chili when hit + code:DFF2-7D05 + cheat + description:Get Milk when hit + code:DFFA-74A5 + cheat + description:Infinite health (alt) + code:7E0EF8:02 + cheat + description:Infinite Boogers (alt) + code:7E0224:20 + cheat + description:Infinite Belches and Farts (both kinds) + code:7E0226:20 + +cartridge sha256:e67940a2106c1507f3a8d38790f263bbbf814578ebf3dbc4e3eb6007d310793c + name:Boxing Legends of the Ring (USA) + cheat + description:Invincibility - P1 + code:6D6A-C4A9 + cheat + description:Invincibility - P2 + code:6D66-3D05 + cheat + description:Infinite super punches - P1 + code:C26D-3F05 + cheat + description:Infinite super punches - P2 or CPU + code:C260-C4A9 + cheat + description:Infinite strength beads + code:DD2B-17D9+C229-C4D9 + cheat + description:Infinite time per round + code:C2BA-A7A7 + cheat + description:Hit anywhere - P1 + code:1DBD-4460+F6BD-4400 + cheat + description:Hit anywhere - P2 + code:1D69-3FD9+F669-3DA9 + cheat + description:Blocking disabled - P1 + code:DD62-CD09 + cheat + description:Blocking disabled - P2 + code:DD66-3FA5 + cheat + description:Each round is 1 minute + code:DF8D-CDA7 + cheat + description:Each round is 2 minutes + code:D48D-CDA7 + cheat + description:Each round is 4 minutes + code:D08D-CDA7 + cheat + description:Each round is 5 minutes + code:D98D-CDA7 + cheat + description:Each round is 6 minutes + code:D18D-CDA7 + cheat + description:Both fighters start with no super punches + code:DD87-C4D4 + cheat + description:Both fighters start with 2 super punches + code:D487-C4D4 + cheat + description:Both fighters start with 3 super punches + code:D787-C4D4 + cheat + description:Create a stronger left jab + code:6DEE-CF4E + cheat + description:Create a stronger left hook body + code:6DEE-CFCE + cheat + description:Create a stronger left hook head + code:6DEE-C44E + cheat + description:Create a stronger left uppercut + code:6DEE-C4CE + cheat + description:Create a stronger right cross body + code:6DEE-C74E + cheat + description:Create a stronger right cross head + code:6DEE-C7CE + cheat + description:Create a stronger right uppercut + code:6DED-3D4E + cheat + description:Start on round 5 + code:338F-C7A4 + cheat + description:Start on round 12 + code:A38F-C7A4 + cheat + description:Infinite full stanima + code:7E05AF:0F + +cartridge sha256:f4666355e7fea434843dc6d5119673bd6c23e69b884aac0b382ff036997e52b5 + name:Brain Lord (USA) + cheat + description:9999 HP + code:7E08C2:0F+7E08C3:27 + cheat + description:9999 Max HP + code:7E08C4:0F+7E08C5:27 + cheat + description:255 Power + code:7E08CA:FF + cheat + description:Have the best status + code:7E08DD:00 + cheat + description:Move faster, same effect as wearing the Cloak + code:7E08D4:07 + cheat + description:Infinite G + code:7E0376:97 + cheat + description:Can access 13 spells + code:7E08D1:0D + cheat + description:Have Magic Shot spell + code:7E0910:02 + cheat + description:Have Magic Shield spell + code:7E0911:03 + cheat + description:Have Flame Ring spell + code:7E0912:04 + cheat + description:Have Fireball spell + code:7E0913:05 + cheat + description:Have Impulse spell + code:7E0914:06 + cheat + description:Have Lightning spell + code:7E0915:07 + cheat + description:Have Magic Missile spell + code:7E0916:08 + cheat + description:Have Bound spell + code:7E0917:09 + cheat + description:Have Ice spell + code:7E0918:0A + cheat + description:Have Phaser spell + code:7E0919:0B + cheat + description:Have Slow spell + code:7E091A:0E + cheat + description:Have Stop spell + code:7E091B:0F + cheat + description:Have Ghost spell + code:7E091C:10 + cheat + description:Quick spell charge + code:7E08C7:01 + cheat + description:Have the Iron Sword + code:7E0921:01+7E0920:02 + cheat + description:Have the Steel Buster + code:7E0921:01+7E0920:03 + cheat + description:Have the Platinum Sword + code:7E0921:01+7E0920:05 + cheat + description:Have the Battle Axe + code:7E0921:01+7E0920:06 + cheat + description:Have the Tomahawk + code:7E0921:01+7E0920:07 + cheat + description:Have the Rock Breaker + code:7E0921:01+7E0920:08 + cheat + description:Have the Great Axe + code:7E0921:01+7E0920:09 + cheat + description:Have the Boomerang + code:7E0921:01+7E0920:0A + cheat + description:Have the Chuckler + code:7E0921:01+7E0920:0B + cheat + description:Have the Mornin Star + code:7E0921:01+7E0920:0C + cheat + description:Have the Heavy Mall + code:7E0921:01+7E0920:0D + cheat + description:Have the Long Bow + code:7E0921:01+7E0920:0E + cheat + description:Have the Silver Bow + code:7E0921:01+7E0920:0F + cheat + description:Have the Lightning Bow + code:7E0921:01+7E0920:10 + cheat + description:Have the Fire Sword + code:7E0921:01+7E0920:12 + cheat + description:Have the Iron Helmet + code:7E0923:02+7E0922:02 + cheat + description:Have the Cross Helmet + code:7E0923:02+7E0922:03 + cheat + description:Have the Blackgold Helm + code:7E0923:02+7E0922:04 + cheat + description:Have the Warrior's Helm + code:7E0923:02+7E0922:05 + cheat + description:Have the Platinum Helm + code:7E0923:02+7E0922:06 + cheat + description:Have the Nameless Helm + code:7E0923:02+7E0922:07 + cheat + description:Have the Nameless Helm + code:7E0923:02+7E0922:08 + cheat + description:Have the Nameless Helm + code:7E0923:02+7E0922:09 + cheat + description:Have the Chain Mail + code:7E0925:03+7E0924:02 + cheat + description:Have the Banded Mail + code:7E0925:03+7E0924:03 + cheat + description:Have the Bone Mail + code:7E0925:03+7E0924:04 + cheat + description:Have the Plate Armor + code:7E0925:03+7E0924:05 + cheat + description:Have the Royal Armor + code:7E0925:03+7E0924:06 + cheat + description:Have the Cape + code:7E0925:03+7E0924:07 + cheat + description:Have the Nameless Armor + code:7E0925:03+7E0924:08 + cheat + description:Have the Nameless Armor + code:7E0925:03+7E0924:09 + cheat + description:Have the Round Shield + code:7E0927:04+7E0926:02 + cheat + description:Have the Kite Shield + code:7E0927:04+7E0926:03 + cheat + description:Have the Bone Shield + code:7E0927:04+7E0926:04 + cheat + description:Have the Warrior Shield + code:7E0927:04+7E0926:05 + cheat + description:Have the Battle Shield + code:7E0927:04+7E0926:06 + cheat + description:Have the Shield + code:7E0927:04+7E0926:07 + cheat + description:Have the Reviving Mirror + code:7E0929:05+7E0928:01 + cheat + description:Have the Debug Mirror (a debug item) + code:7E0929:05+7E0928:02 + cheat + description:Have the Wind Shoes + code:7E0929:05+7E0928:03 + cheat + description:Have the Spike Boots + code:7E0929:05+7E0928:04 + cheat + description:Have the Life Jade + code:7E092B:06+7E092A:01 + cheat + description:Have the Crimson Jade + code:7E092B:06+7E092A:02 + cheat + description:Have the Foundation Jade + code:7E092B:06+7E092A:03 + cheat + description:Have the Power Jade + code:7E092B:06+7E092A:04 + cheat + description:Have the Lightning Jade + code:7E092B:06+7E092A:05 + cheat + description:Have the Anger Jade + code:7E092B:06+7E092A:06 + cheat + description:Have the Water Jade + code:7E092B:06+7E092A:07 + cheat + description:Have the Deceased Jade + code:7E092B:06+7E092A:08 + cheat + description:Have the Light Jade + code:7E092B:06+7E092A:09 + cheat + description:Have the Key to the Seal + code:7E092D:07+7E092C:01 + cheat + description:Have the 3rd floor Key + code:7E092D:07+7E092C:02 + cheat + description:Have the 4th floor Key + code:7E092D:07+7E092C:03 + cheat + description:Have the Puzzle Key + code:7E092D:07+7E092C:04 + cheat + description:Have the Crossroads Key + code:7E092D:07+7E092C:05 + cheat + description:Have the Sky Room Key + code:7E092D:07+7E092C:06 + cheat + description:Have the Cave Room Key + code:7E092D:07+7E092C:07 + cheat + description:Have the Dark Room Key + code:7E092D:07+7E092C:08 + cheat + description:Have the Basement Key + code:7E092D:07+7E092C:09 + cheat + description:Have the Detour Key + code:7E092D:07+7E092C:0A + cheat + description:Have the Bottomless Key + code:7E092D:07+7E092C:0B + cheat + description:Have the Distance Key + code:7E092D:07+7E092C:0C + cheat + description:Have the Office Key + code:7E092D:07+7E092C:0D + cheat + description:Have the Flyer's Key + code:7E092D:07+7E092C:0E + cheat + description:Have the Steel Sky Key + code:7E092D:07+7E092C:0F + cheat + description:Have the Invisible Key + code:7E092D:07+7E092C:10 + cheat + description:Have the Underground Key + code:7E092D:07+7E092C:11 + cheat + description:Have the Control Key + code:7E092D:07+7E092C:12 + cheat + description:Have the Preparation Key + code:7E092D:07+7E092C:13 + cheat + description:Have the Laboratory Key + code:7E092D:07+7E092C:14 + cheat + description:Have the Power Room Key + code:7E092D:07+7E092C:15 + cheat + description:Have the Oblivion Key + code:7E092D:07+7E092C:16 + cheat + description:Have the Western Sky Key + code:7E092D:07+7E092C:1F + cheat + description:Have the Ocean Key + code:7E092D:07+7E092C:20 + cheat + description:Have the Under Ice Key + code:7E092D:07+7E092C:21 + cheat + description:Have the Waterfall Key + code:7E092D:07+7E092C:22 + cheat + description:Have the Flood Gate Key + code:7E092D:07+7E092C:23 + cheat + description:Have the Wave Key + code:7E092D:07+7E092C:24 + cheat + description:Have the Ice Key + code:7E092D:07+7E092C:25 + cheat + description:Have the Water-Air Key + code:7E092D:07+7E092C:26 + cheat + description:Have the Red Wing Key + code:7E092D:07+7E092C:27 + cheat + description:Have the 1st Gate Key + code:7E092D:07+7E092C:28 + cheat + description:Have the 2nd Gate Key + code:7E092D:07+7E092C:29 + cheat + description:Have the 3rd Gate Key + code:7E092D:07+7E092C:2A + cheat + description:Have the Sky Dragon Key + code:7E092D:07+7E092C:2B + cheat + description:Have the Land Dragon Key + code:7E092D:07+7E092C:2C + cheat + description:Have the Sea Dragon Key + code:7E092D:07+7E092C:2D + cheat + description:Have the Dead Dragon Key + code:7E092D:07+7E092C:2E + cheat + description:Have the Silence Key + code:7E092D:07+7E092C:33 + cheat + description:Have the Castle Key + code:7E092D:07+7E092C:34 + cheat + description:Have the Endless Key + code:7E092D:07+7E092C:35 + cheat + description:Have the Spirit Key + code:7E092D:07+7E092C:36 + cheat + description:Have the Destruction Key + code:7E092D:07+7E092C:37 + cheat + description:Have the Platinum Key + code:7E092D:07+7E092C:38 + cheat + description:Have the Night Key + code:7E092D:07+7E092C:39 + cheat + description:Have the Afterworld Key + code:7E092D:07+7E092C:3A + cheat + description:Have the Entropy Key + code:7E092D:07+7E092C:3B + cheat + description:Have the Fountain Key + code:7E092D:07+7E092C:3C + cheat + description:Have the Duplicate Key + code:7E092D:07+7E092C:3E + cheat + description:Have the Duplicate Key + code:7E092D:07+7E092C:3F + +cartridge sha256:5f1912fdac09cd60d3a8962cad3875c6221b38347f0e98abc5800c73214678a9 + name:Brainies, The (Europe) + cheat + description:Timer disable cheat to get score then re-enable + code:7E091C:17 + +cartridge sha256:9885ca148d32c4df6230642bcfa153f7e51b9559415042a831db14d07b3e6c3d + name:Brainies, The (USA) + cheat + description:Infinite time + code:C262-0DD4 + cheat + description:Infinite continues + code:C262-67AF + cheat + description:Start with and always have 9 Jokers + code:DBCC-6F6D + cheat + description:Start on level 25 + code:FC63-AF6D + cheat + description:Start on level 50 + code:7763-AF6D + cheat + description:Start on level 75 + code:0A63-AF6D + cheat + description:Start on level 100 + code:1963-AF6D + +cartridge sha256:bbde8b46c7262f9d4a5b3926a00850cb00b4f7711f6421f0adf4e2b0c847a5d6 + name:Bram Stoker's Dracula (USA) + cheat + description:Infinite energy + code:C263-0F2F + cheat + description:Infinite lives + code:C268-ADBF + cheat + description:Infinite pistol ammo + code:C92B-A4DA + cheat + description:Infinite shotgun ammo + code:C926-64AA + cheat + description:Turbo walking + code:3CC2-6F6D + cheat + description:Infinite missile weapon + code:C927-D762 + cheat + description:One hit kills all enemies, except bosses + code:6D68-DFFF + cheat + description:Freeze most ground enemies + code:4AA8-64D4 + cheat + description:Freeze most aerial enemies + code:4AAB-6F64 + cheat + description:Start at the final battle + code:FDEC-0F03 + +cartridge sha256:130a74e76369b0ec4d6378a014550921433f1ae1ac1dddffb51f77c9f21a818f + name:Brandish (USA) + cheat + description:Have over 10,000,000 gold + code:FD53-A3D7 + cheat + description:Sell an item for max gold + code:D484-1405+6D84-14D5 + cheat + description:Luck stays maxed out + code:6D3B-4FD2 + cheat + description:Map gets filled when entering a level + code:6D02-770B+3C02-776B + +cartridge sha256:044b61613ed66eae08abd5fa5dcd13b24aab11a942e3309cdff624d198c47440 + name:Brawl Brothers (USA) + cheat + description:Invincibility and infinite special attack + code:6D63-1791+DF63-17B1 + cheat + description:Infinite health + code:A961-3DB1 + cheat + description:One hit kills on most enemies + code:EE6B-CF21+EE6B-C4F1+406B-C4B1 + cheat + description:Bosses die immediately + code:EE6E-1D21+EE6E-1FF1+406E-1FB1 + cheat + description:Hit anywhere - both players + code:40C2-44B9+40C2-4729+40CC-4D99+40CD-1DF9+40CE-4429 + cheat + description:Invincibility - P1 + code:7E0908:01 + cheat + description:Invincibility - P2 + code:7E09D8:01 + cheat + description:Infinite health - P1 + code:7E0924:50 + cheat + description:Infinite health - P2 + code:7E09F4:50 + cheat + description:Infinite lives - P1 + code:7E0946:09 + cheat + description:Infinite lives - P2 + code:7E0A16:09 + cheat + description:One hit kills on most enemies (alt) + code:7E0B94:00+7E0919:00+7E0D34:00+7E0C64:00+7E0AC4:00 + cheat + description:Have Lots of Kills - P1 + code:7E0C34:FF + cheat + description:Play as Dieter (glitchy) - P1 + code:7E0920:0A + cheat + description:Play as Dieter (glitchy) - P2 + code:7E09F0:0A + +cartridge sha256:aad8c9be1b7a9662256b0c3d76f5b7a273bcd497aa838232d307e9f2e80cf699 + name:BreakThru! (USA) + cheat + description:Infinite time + code:7E125B:FF + +cartridge sha256:cbc496a7879ba78f32c51c3df4ba1a1a42f17d78d48a39ea9c709d1ad18cb8df + name:Breath of Fire (USA) + cheat + description:9999 EXP after every battle + code:336F-172D + cheat + description:Infinite usable items in menu + code:DEEE-C0B4 + cheat + description:Infinite Gold + code:8EE1-C7F3+8EE5-CD23+8EEE-CF23 + cheat + description:Create a new character at level 5 + code:D9BF-CD69 + cheat + description:Create a new character with 153 max HP + code:BBBF-CFD9 + cheat + description:Create a new character with 153 HP + code:BBBF-CF69 + cheat + description:Create a new character with 20 max AP + code:F0BF-C4D9 + cheat + description:Create a new character with 20 AP + code:F0BF-C469 + cheat + description:Create a new character with INT at 22 + code:F1B4-CD09 + cheat + description:Create a new character with Agility at 22 + code:F1B4-CD69 + cheat + description:Create a new character with Fate at 40 + code:46B4-CFD9 + cheat + description:Create a new character with strength at 50 + code:74BF-C7A9 + cheat + description:Create a new character with Vigor at 50 + code:74B4-CDD9 + cheat + description:Ryu starts with Tri-Rang + code:9EB7-CDD9 + cheat + description:Ryu starts with EmporSD + code:D6B7-CDD9 + cheat + description:Ryu starts with DragonSH + code:90B7-CD69 + cheat + description:Ryu starts with LifeAR + code:F2B7-CFD9 + cheat + description:Ryu starts with DragonHT + code:6CB7-CF69 + cheat + description:Nina starts with PowerRP + code:F2BB-CDD9 + cheat + description:Nina starts with MaskSH + code:97BB-CD69+4FBB-CDA9 + cheat + description:Nina starts with ClearCL + code:43BB-CFD9 + cheat + description:Nina starts with LoveHT + code:56BB-CF69+4FBB-CFA9 + cheat + description:Bo starts with HeroBW + code:98B1-CDD9 + cheat + description:Bo starts with IcyAR + code:FFB1-CD69 + cheat + description:Bo starts with CursedHT + code:18B1-CFD9 + cheat + description:Ox starts with Mallet + code:41BA-CDD9 + cheat + description:Ox starts with StarSH + code:60BA-CD69 + cheat + description:Ox starts with WorldAR + code:49BA-CFD9 + cheat + description:Ox starts with CursedHT + code:18BA-CF69 + cheat + description:Gobi starts with Sleeper + code:76BE-CDD9 + cheat + description:Gobi starts with StarSH + code:60BE-CD69+4FBE-CDA9 + cheat + description:Gobi starts with SpineCL + code:F0BE-CFD9 + cheat + description:Gobi starts with CursedHT + code:18BE-CF69 + cheat + description:Karn starts with DarkDR + code:0AB4-3DD9 + cheat + description:Karn starts with StarSH + code:60B4-3D69+4FB4-3DA9 + cheat + description:Karn starts with QuartzAR + code:FEB4-3FD9 + cheat + description:Karn starts with CursedHT + code:18B4-3F69 + cheat + description:Mogu starts with MystCW + code:7EB9-3DD9 + cheat + description:Mogu starts with StarSH + code:60B9-3D69+4FB9-3DA9 + cheat + description:Mogu starts with FlameAR + code:D3B9-3FD9 + cheat + description:Mogu starts with CursedHT + code:18B9-3F69+4FB9-3FA9 + cheat + description:Bleu starts with GlowCN + code:4EB6-3DD9 + cheat + description:Bleu starts with MaskSH + code:97B6-3D69 + cheat + description:Bleu starts with ClearCL + code:43B6-3FD9 + cheat + description:Bleu starts with CursedHT + code:18B6-3F69 + cheat + description:Character 1 - Max LEVEL + code:7E104A:FF + cheat + description:Character 1 - Infinite HP + code:7E104E:E7+7E104F:03 + cheat + description:Character 1 - Max HP + code:7E104C:E7+7E104D:03 + cheat + description:Character 1 - Infinite AP + code:7E1052:E7+7E1053:03 + cheat + description:Character 1 - Max AP + code:7E1050:E7+7E1051:03 + cheat + description:Character 1 - Max Str + code:7E1057:FF + cheat + description:Character 1 - Max Vigor + code:7E1058:FF + cheat + description:Character 1 - Max Wisdom + code:7E1059:FF + cheat + description:Character 1 - Max Agil + code:7E105A:FF + cheat + description:Character 1 - Max MAG + code:7E105B:FF + cheat + description:Character 1 - Max Luck + code:7E105C:FF + cheat + description:Character 1 - Max ATK + code:7E105D:E7+7E105E:03 + cheat + description:Character 1 - Max DEF + code:7E105F:E7+7E1060:03 + cheat + description:Character 1 - Max INT + code:7E1061:FF + cheat + description:Character 1 - Max ACT + code:7E1062:FF + cheat + description:Character 1 - Max FATE + code:7E1063:FF + cheat + description:Character 2 - Max LEVEL + code:7E10EA:FF + cheat + description:Character 2 - Infinite HP + code:7E10EE:E7+7E10EF:03 + cheat + description:Character 2 - Max HP + code:7E10EC:E7+7E10ED:03 + cheat + description:Character 2 - Infinite AP + code:7E10F2:E7+7E10F3:03 + cheat + description:Character 2 - Max AP + code:7E10F0:E7+7E10F1:03 + cheat + description:Character 2 - Max Str + code:7E10F7:FF + cheat + description:Character 2 - Max Vigor + code:7E10F8:FF + cheat + description:Character 2 - Max Wisdom + code:7E10F9:FF + cheat + description:Character 2 - Max Agil + code:7E10FA:FF + cheat + description:Character 2 - Max MAG + code:7E10FB:FF + cheat + description:Character 2 - Max Luck + code:7E10FC:FF + cheat + description:Character 2 - Max ATK + code:7E10FD:E7+7E10FE:03 + cheat + description:Character 2 - Max DEF + code:7E10FF:E7+7E1100:03 + cheat + description:Character 2 - Max INT + code:7E1101:FF + cheat + description:Character 2 - Max ACT + code:7E1102:FF + cheat + description:Character 2 - Max FATE + code:7E1103:FF + cheat + description:Character 3 - Max LEVEL + code:7E118A:FF + cheat + description:Character 3 - Infinite HP + code:7E118E:E7+7E118F:03 + cheat + description:Character 3 - Max HP + code:7E118C:E7+7E118D:03 + cheat + description:Character 3 - Infinite AP + code:7E1192:E7+7E1193:03 + cheat + description:Character 3 - Max AP + code:7E1190:E7+7E1191:03 + cheat + description:Character 3 - Max Str + code:7E1197:FF + cheat + description:Character 3 - Max Vigor + code:7E1198:FF + cheat + description:Character 3 - Max Wisdom + code:7E1199:FF + cheat + description:Character 3 - Max Agil + code:7E119A:FF + cheat + description:Character 3 - Max MAG + code:7E119B:FF + cheat + description:Character 3 - Max Luck + code:7E119C:FF + cheat + description:Character 3 - Max ATK + code:7E119D:E7+7E119E:03 + cheat + description:Character 3 - Max DEF + code:7E119F:E7+7E11A0:03 + cheat + description:Character 3 - Max INT + code:7E11A1:FF + cheat + description:Character 3 - Max ACT + code:7E11A2:FF + cheat + description:Character 3 - Max FATE + code:7E11A3:FF + cheat + description:Character 4 - Max LEVEL + code:7E122A:FF + cheat + description:Character 4 - Infinite HP + code:7E122E:E7+7E122F:03 + cheat + description:Character 4 - Max HP + code:7E122C:E7+7E122D:03 + cheat + description:Character 4 - Infinite AP + code:7E1232:E7+7E1233:03 + cheat + description:Character 4 - Max AP + code:7E1230:E7+7E1231:03 + cheat + description:Character 4 - Max Str + code:7E1237:FF + cheat + description:Character 4 - Max Vigor + code:7E1238:FF + cheat + description:Character 4 - Max Wisdom + code:7E1239:FF + cheat + description:Character 4 - Max Agil + code:7E123A:FF + cheat + description:Character 4 - Max MAG + code:7E123B:FF + cheat + description:Character 4 - Max Luck + code:7E123C:FF + cheat + description:Character 4 - Max ATK + code:7E123D:E7+7E123E:03 + cheat + description:Character 4 - Max DEF + code:7E123F:E7+7E1240:03 + cheat + description:Character 4 - Max INT + code:7E1241:FF + cheat + description:Character 4 - Max ACT + code:7E1242:FF + cheat + description:Character 4 - Max FATE + code:7E1243:FF + cheat + description:Character 5 - Max LEVEL + code:7E12CA:FF + cheat + description:Character 5 - Infinite HP + code:7E12CE:E7+7E12CF:03 + cheat + description:Character 5 - Max HP + code:7E12CC:E7+7E12CD:03 + cheat + description:Character 5 - Infinite AP + code:7E12D2:E7+7E12D3:03 + cheat + description:Character 5 - Max AP + code:7E12D0:E7+7E12D1:03 + cheat + description:Character 5 - Max Str + code:7E12D7:FF + cheat + description:Character 5 - Max Vigor + code:7E12D8:FF + cheat + description:Character 5 - Max Wisdom + code:7E12D9:FF + cheat + description:Character 5 - Max Agil + code:7E12DA:FF + cheat + description:Character 5 - Max MAG + code:7E12DB:FF + cheat + description:Character 5 - Max Luck + code:7E12DC:FF + cheat + description:Character 5 - Max ATK + code:7E12DD:E7+7E12DE:03 + cheat + description:Character 5 - Max DEF + code:7E12DF:E7+7E12E0:03 + cheat + description:Character 5 - Max INT + code:7E12E1:FF + cheat + description:Character 5 - Max ACT + code:7E12E2:FF + cheat + description:Character 5 - Max FATE + code:7E12E3:FF + cheat + description:Character 6 - Max LEVEL + code:7E136A:FF + cheat + description:Character 6 - Infinite HP + code:7E136E:E7+7E136F:03 + cheat + description:Character 6 - Max HP + code:7E136C:E7+7E136D:03 + cheat + description:Character 6 - Infinite AP + code:7E1372:E7+7E1373:03 + cheat + description:Character 6 - Max AP + code:7E1370:E7+7E1371:03 + cheat + description:Character 6 - Max Str + code:7E1377:FF + cheat + description:Character 6 - Max Vigor + code:7E1378:FF + cheat + description:Character 6 - Max Wisdom + code:7E1379:FF + cheat + description:Character 6 - Max Agil + code:7E137A:FF + cheat + description:Character 6 - Max MAG + code:7E137B:FF + cheat + description:Character 6 - Max Luck + code:7E137C:FF + cheat + description:Character 6 - Max ATK + code:7E137D:E7+7E137E:03 + cheat + description:Character 6 - Max DEF + code:7E137F:E7+7E1380:03 + cheat + description:Character 6 - Max INT + code:7E1381:FF + cheat + description:Character 6 - Max ACT + code:7E1382:FF + cheat + description:Character 6 - Max FATE + code:7E1383:FF + cheat + description:Character 7 - Max LEVEL + code:7E140A:FF + cheat + description:Character 7 - Infinite HP + code:7E140E:E7+7E140F:03 + cheat + description:Character 7 - Max HP + code:7E140C:E7+7E140D:03 + cheat + description:Character 7 - Infinite AP + code:7E1412:E7+7E1413:03 + cheat + description:Character 7 - Max AP + code:7E1410:E7+7E1411:03 + cheat + description:Character 7 - Max Str + code:7E1417:FF + cheat + description:Character 7 - Max Vigor + code:7E1418:FF + cheat + description:Character 7 - Max Wisdom + code:7E1419:FF + cheat + description:Character 7 - Max Agil + code:7E141A:FF + cheat + description:Character 7 - Max MAG + code:7E141B:FF + cheat + description:Character 7 - Max Luck + code:7E141C:FF + cheat + description:Character 7 - Max ATK + code:7E141D:E7+7E141E:03 + cheat + description:Character 7 - Max DEF + code:7E141F:E7+7E1420:03 + cheat + description:Character 7 - Max INT + code:7E1421:FF + cheat + description:Character 7 - Max ACT + code:7E1422:FF + cheat + description:Character 7 - Max FATE + code:7E1423:FF + cheat + description:Character 8 - Max LEVEL + code:7E14AA:FF + cheat + description:Character 8 - Infinite HP + code:7E14AE:E7+7E14AF:03 + cheat + description:Character 8 - Max HP + code:7E14AC:E7+7E14AD:03 + cheat + description:Character 8 - Infinite AP + code:7E14B2:E7+7E14B3:03 + cheat + description:Character 8 - Max AP + code:7E14B0:E7+7E14B1:03 + cheat + description:Character 8 - Max Str + code:7E14B7:FF + cheat + description:Character 8 - Max Vigor + code:7E14B8:FF + cheat + description:Character 8 - Max Wisdom + code:7E14B9:FF + cheat + description:Character 8 - Max Agil + code:7E14BA:FF + cheat + description:Character 8 - Max MAG + code:7E14BB:FF + cheat + description:Character 8 - Max Luck + code:7E14BC:FF + cheat + description:Character 8 - Max ATK + code:7E14BD:E7+7E14BE:03 + cheat + description:Character 8 - Max DEF + code:7E14BF:E7+7E14C0:03 + cheat + description:Character 8 - Max INT + code:7E14C1:FF + cheat + description:Character 8 - Max ACT + code:7E14C2:FF + cheat + description:Character 8 - Max FATE + code:7E14C3:FF + +cartridge sha256:fede9d4aec8c35ed11e2868c3c517bce53ee3e6af724085c92500e99e43e63de + name:Breath of Fire II (USA) + cheat + description:Infinite HP in battle + code:C9FA-EFA6 + cheat + description:Infinite AP In menu + code:8E64-EDAA + cheat + description:Infinite AP In battle + code:8BDA-8DDC + cheat + description:Main character is different + code:46DA-87D4+45DA-87D4+FDDA-87D4+F4DA-87D4+F0DA-87D4 + cheat + description:Start with 50 HP + code:74DA-8F64 + cheat + description:Start with 100 HP + code:10DA-8F64 + cheat + description:Start with 150 HP + code:B1DA-8F64 + cheat + description:Start with 250 HP + code:ECDA-8F64 + cheat + description:Start with 500 HP + code:DFDA-8FA4+E0DA-8F64 + cheat + description:Start with 750 HP + code:D4DA-8FA4+33DA-8F64 + cheat + description:Start with a lot of HP + code:FEDA-8FA4 + cheat + description:Start with 50 AP + code:74DA-8464 + cheat + description:Start with 100 AP + code:10DA-8464 + cheat + description:Start with 150 AP + code:B1DA-8464 + cheat + description:Start with 250 AP + code:ECDA-8464 + cheat + description:Start with 500 AP + code:DFDA-84A4+E0DA-8464 + cheat + description:Start with 750 AP + code:D4DA-84A4+33DA-8464 + cheat + description:Start with a lot of AP + code:FEDA-84A4 + cheat + description:Start with 0 strength + code:DDDA-8704 + cheat + description:Start with Mega strength + code:EEDA-8704 + cheat + description:Start with 0 stamina + code:DDDA-8764 + cheat + description:Start with Mega stamina + code:EEDA-8764 + cheat + description:Start with 0 agility + code:DDDA-87A4 + cheat + description:Start with Mega agility + code:EEDA-87A4 + cheat + description:Start with 0 wisdom + code:DDD3-84D4 + cheat + description:Start with Mega wisdom + code:EED3-84D4 + cheat + description:Start with 0 luck + code:DDD3-8404 + cheat + description:Start with Mega luck + code:EED3-8404 + cheat + description:Start with Mega EXP + code:EED3-87D4 + cheat + description:No random battles + code:7E12DC:00 + cheat + description:Infinite Fishing Rod power + code:7E128C:60 + cheat + description:Have all warp points + code:7E5670:FF+7E5671:FF+7E5672:FF+7E5673:FF + cheat + description:Have all Shamans + code:7E5695:FF + cheat + description:Infinite Shaman use + code:7E5696:00+7E5697:00+7E5698:00+7E5699:00+7E569A:00+7E569B:00 + cheat + description:Have all non-shop tenants + code:7E55EB:DE+7E55EC:7B+7E55ED:77+7E55EE:0B + cheat + description:Character 1 - No Status Effects + code:7E51E5:00 + cheat + description:Character 1 - Level 99 + code:7E51E7:63 + cheat + description:Character 1 - Infinite HP + code:7E51E8:0F+7E51E9:27 + cheat + description:Character 1 - Maximum HP + code:7E51EA:0F+7E51EB:27 + cheat + description:Character 1 - Infinite AP + code:7E51EC:0F+7E51ED:27 + cheat + description:Character 1 - Maximum AP + code:7E51EE:0F+7E51EF:27 + cheat + description:Character 1 - 255 Str + code:7E51F1:FF + cheat + description:Character 1 - 255 Stmna + code:7E51F2:FF + cheat + description:Character 1 - 255 Agil + code:7E51F3:FF + cheat + description:Character 1 - 9999 Off + code:7E5202:0F+7E5203:27 + cheat + description:Character 1 - 9999 Def + code:7E5204:0F+7E5205:27 + cheat + description:Character 1 - 9999 Vigor + code:7E5206:0F+7E5207:27 + cheat + description:Character 1 - 255 Temporary Wisdom + code:7E5208:FF + cheat + description:Character 1 - 255 Temporary Luck + code:7E5209:FF + cheat + description:Character 1 - 255 Permanant Wisdom (next time you change equipment) + code:7E520C:FF + cheat + description:Character 1 - 255 Permanant Luck (next time you change equipment) + code:7E520D:FF + cheat + description:Character 1 - Maximum Guts + code:7E520B:FF + cheat + description:Character 1 - 9999999 EXP + code:7E520E:7F+7E520F:96+7E5210:98 + cheat + description:Character 1 - Maximum Jewel color + code:7E520A:FF + cheat + description:Character 2 - No Status Effects + code:7E5225:00 + cheat + description:Character 2 - Level 99 + code:7E5227:63 + cheat + description:Character 2 - Infinite HP + code:7E5228:0F+7E5229:27 + cheat + description:Character 2 - Maximum HP + code:7E522A:0F+7E522B:27 + cheat + description:Character 2 - Infinite AP + code:7E522C:0F+7E522D:27 + cheat + description:Character 2 - Maximum AP + code:7E522E:0F+7E522F:27 + cheat + description:Character 2 - 255 Str + code:7E5231:FF + cheat + description:Character 2 - 255 Stmna + code:7E5232:FF + cheat + description:Character 2 - 255 Agil + code:7E5233:FF + cheat + description:Character 2 - 9999 Off + code:7E5242:0F+7E5243:27 + cheat + description:Character 2 - 9999 Def + code:7E5244:0F+7E5245:27 + cheat + description:Character 2 - 9999 Vigor + code:7E5246:0F+7E5247:27 + cheat + description:Character 2 - 255 Temporary Wisdom + code:7E5248:FF + cheat + description:Character 2 - 255 Temporary Luck + code:7E5249:FF + cheat + description:Character 2 - 255 Permanant Wisdom (next time you change equipment) + code:7E524C:FF + cheat + description:Character 2 - 255 Permanant Luck (next time you change equipment) + code:7E524D:FF + cheat + description:Character 2 - Maximum Guts + code:7E524B:FF + cheat + description:Character 2 - 9999999 EXP + code:7E524E:7F+7E524F:96+7E5250:98 + cheat + description:Character 2 - Maximum Jewel color + code:7E524A:FF + cheat + description:Character 3 - No Status Effects + code:7E5265:00 + cheat + description:Character 3 - Level 99 + code:7E5267:63 + cheat + description:Character 3 - Infinite HP + code:7E5268:0F+7E5269:27 + cheat + description:Character 3 - Maximum HP + code:7E526A:0F+7E526B:27 + cheat + description:Character 3 - Infinite AP + code:7E526C:0F+7E526D:27 + cheat + description:Character 3 - Maximum AP + code:7E526E:0F+7E526F:27 + cheat + description:Character 3 - 255 Str + code:7E5271:FF + cheat + description:Character 3 - 255 Stmna + code:7E5272:FF + cheat + description:Character 3 - 255 Agil + code:7E5273:FF + cheat + description:Character 3 - 9999 Off + code:7E5282:0F+7E5283:27 + cheat + description:Character 3 - 9999 Def + code:7E5284:0F+7E5285:27 + cheat + description:Character 3 - 9999 Vigor + code:7E5286:0F+7E5287:27 + cheat + description:Character 3 - 255 Temporary Wisdom + code:7E5288:FF + cheat + description:Character 3 - 255 Temporary Luck + code:7E5289:FF + cheat + description:Character 3 - 255 Permanant Wisdom (next time you change equipment) + code:7E528C:FF + cheat + description:Character 3 - 255 Permanant Luck (next time you change equipment) + code:7E528D:FF + cheat + description:Character 3 - Maximum Guts + code:7E528B:FF + cheat + description:Character 3 - 9999999 EXP + code:7E528E:7F+7E528F:96+7E5290:98 + cheat + description:Character 3 - Maximum Jewel color + code:7E528A:FF + cheat + description:Character 4 - No Status Effects + code:7E52A5:00 + cheat + description:Character 4 - Level 99 + code:7E52A7:63 + cheat + description:Character 4 - Infinite HP + code:7E52A8:0F+7E52A9:27 + cheat + description:Character 4 - Maximum HP + code:7E52AA:0F+7E52AB:27 + cheat + description:Character 4 - Infinite AP + code:7E52AC:0F+7E52AD:27 + cheat + description:Character 4 - Maximum AP + code:7E52AE:0F+7E52AF:27 + cheat + description:Character 4 - 255 Str + code:7E52B1:FF + cheat + description:Character 4 - 255 Stmna + code:7E52B2:FF + cheat + description:Character 4 - 255 Agil + code:7E52B3:FF + cheat + description:Character 4 - 9999 Off + code:7E52C2:0F+7E52C3:27 + cheat + description:Character 4 - 9999 Def + code:7E52C4:0F+7E52C5:27 + cheat + description:Character 4 - 9999 Vigor + code:7E52C6:0F+7E52C7:27 + cheat + description:Character 4 - 255 Temporary Wisdom + code:7E52C8:FF + cheat + description:Character 4 - 255 Temporary Luck + code:7E52C9:FF + cheat + description:Character 4 - 255 Permanant Wisdom (next time you change equipment) + code:7E52CC:FF + cheat + description:Character 4 - 255 Permanant Luck (next time you change equipment) + code:7E52CD:FF + cheat + description:Character 4 - Maximum Guts + code:7E52CB:FF + cheat + description:Character 4 - 9999999 EXP + code:7E52CE:7F+7E52CF:96+7E52D0:98 + cheat + description:Character 4 - Maximum Jewel color + code:7E52CA:FF + +cartridge sha256:0a07808939e77d8c4a13a6ec7bbc008ee758cd209f8404411bf15d225453beee + name:BS Zelda no Densetsu - Dai-3-wa (Japan) (BS) + cheat + description:Disable the 57 minute time limit + code:3CDD-7F5D+3CDD-7F8D+6DDD-7FED + +cartridge sha256:811cbc3287c0959e8eb242e817684d36de664ebebc5873a1fa9958693857c438 + name:Bubsy in - Claws Encounters of the Furred Kind (USA) + cheat + description:Infinite lives + code:DDB1-175C + cheat + description:Infinite time + code:DDB4-3404 + cheat + description:Numbered t-shirts worth one more + code:766C-1766 + cheat + description:Bogus jump + code:946B-1D8B + cheat + description:Super-jump + code:716B-1D8B + cheat + description:Mega-jump + code:436B-1D8B + cheat + description:Each yarn ball worth 0 + code:DD60-1FD6 + cheat + description:Each yarn ball worth 5 + code:D960-1FD6 + cheat + description:Each yarn ball worth 10 + code:FD60-1FD6 + cheat + description:Crate of yarn holds 0 instead of 25 + code:DD69-4F6C + cheat + description:Crate of yarn holds 50 + code:9D69-4F6C + cheat + description:Crate of yarn holds 75 + code:5969-4F6C + cheat + description:Crate of yarn holds 99 + code:BB69-4F6C + cheat + description:Start with 1 life + code:DD34-4D6D + cheat + description:Start with 5 lives + code:D034-4D6D + cheat + description:Start with 25 lives + code:4034-4D6D + cheat + description:Start with 50 lives + code:9D34-4D6D + cheat + description:Start with 75 lives + code:5934-4D6D + cheat + description:Start on chapter 2 + code:DF6D-472A + cheat + description:Start on chapter 3 + code:D46D-472A + cheat + description:Start on chapter 4 + code:D76D-472A + cheat + description:Start on chapter 5 + code:D06D-472A + cheat + description:Start on chapter 6 + code:D96D-472A + cheat + description:Start on chapter 7 + code:D16D-472A + cheat + description:Start on chapter 8 + code:D66D-472A + cheat + description:Start on chapter 9 + code:DC6D-472A + cheat + description:Start on chapter 10 + code:DA6D-472A + cheat + description:Start on chapter 11 + code:D26D-472A + cheat + description:Start on chapter 12 + code:D36D-472A + cheat + description:Start on chapter 13 + code:DE6D-472A + cheat + description:Start on chapter 14 + code:FD6D-472A + cheat + description:Start on Chapter 15 + code:FF6D-472A + cheat + description:Start on Chapter 16 + code:F46D-472A + +cartridge sha256:2357d344af77d25dda030520ce203045fd9060f83e3b9609a228dba859d9017b + name:Bubsy II (USA) + cheat + description:Invincibility + code:62E5-5F0F + cheat + description:Infinite health + code:8FD5-EDD4 + cheat + description:Infinite lives + code:C2D8-7DAF + cheat + description:Infinite time in most main levels + code:C217-8DD7+C21F-87A7 + cheat + description:Infinite time in some bonus levels + code:C25C-740D + cheat + description:Infinite Warp Holes + code:C2DE-54D0 + cheat + description:Infinite Diving Suits + code:C212-57AD + cheat + description:Infinite Smart Bombs + code:C271-7DD0 + cheat + description:Infinite ammo for Nerf Gun + code:C247-5465 + cheat + description:Infinite health (alt) + code:7E1188:04 + cheat + description:Infinite lives (alt) + code:7E3422:09 + +cartridge sha256:49020695a017acc3dfadea97a60e28609e583571f69c5abeb3c6b1c2db8113fa + name:Bugs Bunny - Rabbit Rampage (USA) + cheat + description:Invincibility + code:2D6A-17AF + cheat + description:Infinite energy + code:C28C-4FAF + cheat + description:Infinite lives + code:DDA3-3D07 + cheat + description:Infinite lives (alt) + code:C2A3-3DA7 + cheat + description:Take minimal damage + code:A38C-4FAF + cheat + description:Full energy from carrots + code:DD88-476F + cheat + description:Moon jumping Bugs + code:F0B4-1404 + cheat + description:Super-jumping Bugs + code:0DB4-1404+E0B7-1DD4 + cheat + description:Start and continue with 10 lives + code:DC60-CD0D + cheat + description:Start and continue with 2 lives + code:D460-CD0D + +cartridge sha256:ba4f31353e0e1233b574391ad97a80901d7de212e2c55d7be2af11a9a57c8225 + name:Bulls vs Blazers and the NBA Playoffs (USA) + cheat + description:Never miss a shot + code:DD66-C4BD + +cartridge sha256:d6f6c30732dae8d00cd83628c3156acbdf26f99df701f779522e21de74dae5fe + name:Bust-A-Move (USA) + cheat + description:Infinite continues + code:C281-DFE2 + cheat + description:Infinite time to shoot each ball + code:3C38-A764 + cheat + description:Always get max bonus in shooting rounds + code:3C83-D467 + cheat + description:Shot guide is always on (new 1P game) + code:338B-0DA4 + cheat + description:Shot guide is always on (password game) + code:338D-07A4 + cheat + description:Shot guide is always on ("challenge record" mode) + code:333E-D721 + +cartridge sha256:2a117951adcfbc4298763673a834d502c3f7a3964db1e59650f113c07bb831fb + name:Captain America and the Avengers (USA) + cheat + description:Invincibility - both players + code:1D38-CFA1+6DAA-CD00+82A6-3D60 + cheat + description:Infinite lives - both players + code:C283-34A0 + cheat + description:Invincibility - P1 + code:7E16A8:20 + cheat + description:Invincibility - P2 + code:7E16A9:63 + cheat + description:Infinite health - P1 + code:7E0226:63 + cheat + description:Infinite health - P2 + code:7E0227:63 + cheat + description:Infinite lives - P1 + code:7E0229:09 + cheat + description:Infinite lives - P2 + code:7E022A:09 + cheat + description:Hit anywhere + code:C28E-1F60+DC8E-14D0+EC8E-1FA0+ED8E-1400 + +cartridge sha256:d9b7f9356be0780f0037093a86ef8450f15e569cbd3680073d1cd345dfadb709 + name:Captain Commando (USA) + cheat + description:Invincibility - p1 + code:CB4E-7FD4+D04E-7F04+B24E-7F64 + cheat + description:Hit anywhere (throws are disabled) + code:6DF1-846D+6DF9-74DF+6DFA-7D0F+95F9-740F + cheat + description:One hit kills - Both players + code:76F4-57DF+3BF4-570F+6DF4-576F + cheat + description:Invincibility - P1 (alt) + code:7E0404:03 + cheat + description:Infinite health - P1 + code:7E0895:32 + cheat + description:Infinite health - P2 + code:7E0893:32 + cheat + description:9 lives - P1 + code:7E0B15:09 + cheat + description:9 lives - P2 + code:7E0B13:09 + cheat + description:9 continues + code:7E1D5A:39 + +cartridge sha256:8784614896e2b3e8d98c8166613ca5d2329643795a4dc107791c58c6c51e1268 + name:Captain Novolin (USA) (En,Fr,Es) + cheat + description:Invincibility + code:7E0C02:29 + cheat + description:Infinite health + code:7E0BDA:04 + cheat + description:Infinite time + code:7E16F2:00 + +cartridge sha256:be2bdb03549665136cc91173ac538b41b3085e0f1f6b02d6567d174b5b78e435 + name:Caravan Shooting Collection (Japan) + cheat + description:Hector 87 - Infinite health + code:7E00E5:10 + cheat + description:Hector 87 - Infinite lives + code:7E00E4:02 + cheat + description:Star Force - Invincibility + code:7E09CA:01 + cheat + description:Star Force - Always have powered-up weapon + code:7E099E:01 + cheat + description:Star Force - Infinite lives + code:7E094D:02 + cheat + description:Star Force - No enemies (disable before reaching the boss) + code:7E0963:05 + cheat + description:Star Soldier - Invincibility + code:7E0086:39 + cheat + description:Star Soldier - Infinite lives + code:7E062F:02 + cheat + description:Star Soldier - Rapid fire + code:7E0630:00 + cheat + description:Star Soldier - Ship is always blue + code:7E0087:00 + cheat + description:Star Soldier - No enemies except bosses + code:7E062E:00 + +cartridge sha256:ee5fc27dd19a2ecb3c3c7c73d558a18ffd5ff365710c18b88150e277f08d587e + name:Carrier Aces (USA) + cheat + description:Invincibility (works for dogfights and ship fire) + code:DDED-670F+6DEE-64DD + cheat + description:Infinite fuel + code:C2B3-6F64 + cheat + description:Infinite rockets + code:3CC9-D764 + +cartridge sha256:b9b982cd8f91c51089d49b550f11882b1ee785ebddcb7355cfc465916d61a042 + name:Casper (USA) + cheat + description:Infinite lives + code:C225-1071 + cheat + description:Infinite health + code:C221-1981 + cheat + description:Have all items and 5 lives after you leave the first room + code:2DAC-CD44 + +cartridge sha256:367725a149a471411e4f72ad77603b61fb101c9cab4521be5647e13708cc97ba + name:Castlevania - Dracula X (USA) + cheat + description:Invincibility + code:2D69-CD9D + cheat + description:Invincibility after one hit + code:C969-CD2D + cheat + description:Infinite health + code:C96D-17FF + cheat + description:Infinite lives + code:C9AF-47A7 + cheat + description:All hearts worth 99 + code:2D25-1FD3+DD25-1F03 + cheat + description:Keep sub-weapon after dying + code:C9A4-47D7 + cheat + description:Keep sub-weapon after continue + code:C985-17DF + cheat + description:Item Crash doesn't use hearts + code:C9A6-3D94 + cheat + description:Hit anywhere + code:DD20-34D3+DD24-3403 + cheat + description:Small hearts worth 0 + code:DD29-1763 + cheat + description:Small hearts worth 10 + code:FD29-1763 + cheat + description:Small hearts worth 25 + code:4929-1763 + cheat + description:No Invincibility after getting hit + code:DD6F-CFBF + cheat + description:More invincibility after getting hit + code:EE6F-CFBF + cheat + description:Super jump + code:EB87-C7BD + cheat + description:Super-Duper jump + code:E687-C7BD + cheat + description:Mega-jump + code:E587-C7BC + cheat + description:Have the Axe + code:DFDC-F276 + cheat + description:Have the Cross + code:D4DC-F276 + cheat + description:Have the Holy Water + code:D7DC-F276 + cheat + description:Have the Knife + code:D0DC-F276 + cheat + description:Have the Clock + code:D9DC-F276 + cheat + description:Have the Key + code:D1DC-F276 + cheat + description:Start with half energy + code:4D21-1707 + cheat + description:Start with 1/4 energy + code:F421-1707 + cheat + description:Start with 3/4 energy + code:7D21-1707 + cheat + description:Start with 99 hearts + code:6D81-170F + cheat + description:Start with 50 hearts + code:9D81-170F + cheat + description:Start with 25 hearts + code:4981-170F + cheat + description:Start with 1 life + code:DD85-1D6F + cheat + description:Start with 10 lives + code:DB85-1D6F + cheat + description:Start with 25 lives + code:4085-1D6F + cheat + description:Start with 50 lives + code:0B85-1D6F + cheat + description:Start with 99 lives + code:BB85-1D6F + cheat + description:Start with 25 hearts after you die + code:49A4-44D7 + cheat + description:Start with 50 hearts after you die + code:9DA4-44D7 + cheat + description:Start with 99 hearts after you die + code:BBA4-44D7 + cheat + description:Start on level 2 + code:DFD5-F376 + cheat + description:Start on level 3 + code:D4D5-F376 + cheat + description:Start on level 4 + code:D7D5-F376 + cheat + description:Start on level 5 + code:D0D5-F376 + cheat + description:Start on level 6 + code:D9D5-F376 + cheat + description:Start on level 7 + code:D1D5-F376 + +cartridge sha256:aa69d4e19c2eb206fe88eba65994c830256c220e5506f59824aefa0a75dd44d5 + name:Chavez (USA) + cheat + description:Infinite time + code:7E1F93:15 + +cartridge sha256:ee0e51d922d1cf8abe3dfc6b0d84a988a6635dc96b2a96962007c41aaa542774 + name:Chessmaster, The (USA) + cheat + description:White player's timer is stopped + code:C9C7-D76F + cheat + description:Black player's timer is stopped + code:C9C9-DFDF + cheat + description:Timers count 2x as slow + code:56C4-D46F + cheat + description:Timers count 3x times as slow + code:80C4-D46F + cheat + description:Timers count 2x as fast + code:F3C4-D46F + cheat + description:Timers count 3x times as fast + code:F0C4-D46F + +cartridge sha256:c7e7df8932bf0056aa530f3dc3c913c1171a359af4c197094c2b972946dc6051 + name:Chester Cheetah - Too Cool to Fool (USA) + cheat + description:Invincibility (blinking) (you may freeze if you get the guitar and fall in water) + code:3C60-04D9 + cheat + description:Infinite life points + code:3CBF-0D69 + cheat + description:Infinite credits + code:A26F-04D4 + cheat + description:Badges worth 5 + code:D965-D7DB + cheat + description:Badges worth 25 + code:4965-D7DB + cheat + description:Badges worth 50 + code:9D65-D7DB + cheat + description:Start with 2 life points + code:D469-DFD9 + cheat + description:Start with 0 life points + code:DD69-DFD9 + +cartridge sha256:21a2aa488cb8140ca318f7d1f513103d14e758181aa336a594097d32ba0a7587 + name:Chester Cheetah - Wild Wild Quest (USA) + cheat + description:Invincibility (once you eat a bag of Cheetos) + code:C3CC-6D07 + cheat + description:Infinite Cheetos bags (once you collect one) + code:C282-DFD4 + cheat + description:Infinite time + code:C2B2-A4AD + cheat + description:Infinte lives + code:C2BC-D7AF + +cartridge sha256:9a064b67f522b75b82d0857519c0e33b4dbbe494c2ef79a44fdc913d605d0b26 + name:Choplifter III - Rescue-Survive (USA) + cheat + description:Have all weapons and infinte ammo + code:DD67-CDA7+DD60-CF67 + cheat + description:Infinite secondary weapons + code:3C60-34D7 + cheat + description:Infinite choppers + code:C26D-1767 + cheat + description:Chopper can carry 30 hostages + code:F3C7-3D53+F3C1-1F5E + cheat + description:Invincibility + code:7E0CEB:5A + +cartridge sha256:224572832b988f31a81c907f751f0292f5702a3acea5866ce6742387c7c6239d + name:Choujikuu Yousai Macross - Scrambled Valkyrie (Japan) + cheat + description:Infinite health + code:C268-4F64+C269-47A4 + cheat + description:Infinite absorb charge + code:C2B2-C4D1 + cheat + description:Hit anywhere + code:DD6B-3FD7+DD65-3467+DD66-34D7 + cheat + description:Invincibility + code:7E0A90:FF + cheat + description:Infinite continues + code:7E02AA:09 + +cartridge sha256:06d1c2b06b716052c5596aaa0c2e5632a027fee1a9a28439e509f813c30829a9 + name:Chrono Trigger (USA) + cheat + description:Use "organize" to get 90 of all items + code:B6C6-E76C+DDCB-E7DC+9CCB-E76C + cheat + description:Maxed out abilities for all characters + code:65EB-E4A9 + cheat + description:Every attack causes 9999 damage + code:B323-7405 + cheat + description:Can open sealed chests + code:6D1C-770F + cheat + description:Start with a higher max HP + code:EEDD-7F5D + cheat + description:Start with a higher max MP + code:63DD-745D + cheat + description:Start with max power + code:BDDD-74ED + cheat + description:Start with max stamina + code:BDDD-777D + cheat + description:Start with max speed + code:BDDD-775D + cheat + description:Start with max magic + code:BDDD-778D + cheat + description:Start with max hit ratio + code:BDDD-77ED + cheat + description:Start with max evade + code:BDDF-7D7D + cheat + description:Start with max magic defense + code:BDDF-7D5D + cheat + description:Position 1 - Infinite health + code:7E5E30:E7+7E5E31:03 + cheat + description:Position 1 - Infinite Magic + code:7E5E34:63 + cheat + description:Position 1 - Attack bar always full + code:7EAFAB:00 + cheat + description:Position 2 - Infinite health + code:7E5EB0:E7+7E5EB1:03 + cheat + description:Position 2 - Infinite Magic + code:7E5EB4:63 + cheat + description:Position 2 - Attack bar always full + code:7EAFAC:00 + cheat + description:Position 3 - Infinite health + code:7E5F30:E7+7E5F31:03 + cheat + description:Position 3 - Infinite Magic + code:7E5F34:63 + cheat + description:Position 3 - Attack bar always full + code:7EAFAD:00 + cheat + description:Infinite Speed Boosts + code:7E009A:03 + cheat + description:Instantly enable next Speed Boost + code:7E00BA:00 + +cartridge sha256:63ab79e86ea13e2cf9bb67aec971febb68450db9865b00b5f412610653822393 + name:Chuck Rock (USA) + cheat + description:Infinite health + code:C9A1-A70D + cheat + description:Infinite lives + code:C9AB-AF0D + cheat + description:Hit anywhere + code:DDAC-040D+DDAE-076D + cheat + description:Jump higher + code:70C9-A7DD + cheat + description:Super-jump + code:49C9-A7DD + cheat + description:Mega-jump + code:F5C9-A7DD + cheat + description:Invincibility + code:7E0BAA:25 + +cartridge sha256:8b7525b2aa30cbea9e3deee601dd26e0100b8169c1948f19866be15cae0ac00d + name:Clay Fighter (USA) + cheat + description:Infinite health - P1 + code:C20B-7916+C256-E536 + cheat + description:Enable Blob's Bomb move (away, away + down, down, towards + down, towards, punch) + code:6280-DD6F + cheat + description:Always fight Bad Mr. Frosty after 1st match + code:DD4A-8548+DD9C-E53E + cheat + description:Always fight Taffy after 1st match + code:DD4A-8548+DF9C-E53E + cheat + description:Always fight Tiny after 1st match + code:DD4A-8548+D49C-E53E + cheat + description:Always fight The Blob after 1st match + code:DD4A-8548+D79C-E53E + cheat + description:Always fight Blue Suede Goo after 1st match + code:DD4A-8548+D09C-E53E + cheat + description:Always fight Ickybod Clay after 1st match + code:DD4A-8548+D99C-E53E + cheat + description:Always fight Helga after 1st match + code:DD4A-8548+D19C-E53E + cheat + description:Always fight Bonker after 1st match + code:DD4A-8548+D59C-E53E + cheat + description:Always fight N. Boss after 1st match + code:DD4A-8548+D69C-E53E + cheat + description:Start with 1/6 health - 1st round + code:FDF7-E5CE + cheat + description:Start with 1/3 health - 1st round + code:4DF7-E5CE + cheat + description:Start with 1/2 health - 1st round + code:7DF7-E5CE + cheat + description:Start with 2/3 health - 1st round + code:0DF7-E5CE + cheat + description:Start with 5/6 health - 1st round + code:9DF7-E5CE + cheat + description:Start with 1/6 health - 2nd and later rounds + code:FD4A-E01C + cheat + description:Start with 1/3 health - 2nd and later rounds + code:4D4A-E01C + cheat + description:Start with 1/2 health - 2nd and later rounds + code:7D4A-E01C + cheat + description:Start with 2/3 health - 2nd and later rounds + code:0D4A-E01C + cheat + description:Start with 5/6 health - 2nd and later rounds + code:9D4A-E01C + cheat + description:Bad Mr. Frosty's Brutal Punches do more damage + code:7D46-E1C2+7D46-E132+7D46-E542+7D46-E512+7D46-E5C2 + cheat + description:Bad Mr. Frosty's Medium Punches do more damage + code:7D46-E532+7D4B-E042+7D4B-E012+7D4B-E0C2+7D4B-E032 + cheat + description:Bad Mr. Frosty's Quick Punches do more damage + code:7D4B-E942+7D4B-E912+7D4B-E9C2+7D4B-E932+7D4B-E142 + cheat + description:Bad Mr. Frosty's Brutal Kicks do more damage + code:7D4B-E112+7D4B-E1C2+7D4B-E132+7D4B-E542+7D4B-E512 + cheat + description:Bad Mr. Frosty's Medium Kicks do more damage + code:7D4B-E5C2+7D4B-E532+7D4C-E042+7D4C-E012+7D4C-E0C2 + cheat + description:Bad Mr. Frosty's Quick Kicks do more damage + code:7D4C-E032+7D4C-E942+7D4C-E912+7D4C-E9C2+7D4C-E932 + cheat + description:Bad Mr. Frosty's Snow Ball (all punches) does more damage + code:7D4C-E142 + cheat + description:Taffy's Brutal Punches do more damage + code:7D48-E0C2+7D48-E032+7D48-E942+7D48-E912+7D48-E9C2 + cheat + description:Taffy's Medium Punches do more damage + code:7D48-E932+7D48-E142+7D48-E112+7D48-E1C2+7D48-E132 + cheat + description:Taffy's Quick Punches do more damage + code:7D48-E542+7D48-E512+7D48-E5C2+7D48-E532+7D4A-E042 + cheat + description:Taffy's Brutal Kicks do more damage + code:7D4A-E012+7D4A-E0C2+7D4A-E032+7D4A-E942+7D4A-E912 + cheat + description:Taffy's Medium kick does more damage + code:7D4A-E9C2+7D4A-E932+7D4A-E142+7D4A-E112+7D4A-E1C2 + cheat + description:Taffy's Quick Kicks do more damage (not in crouch) + code:7D4A-E132+7D4A-E542+7D4A-7513+7D4A-E5C2+7D4A-E532 + cheat + description:Taffy's Whack (all punches) does more damage + code:7D42-E912 + cheat + description:Taffy's Whack (all kicks) does more damage + code:7D42-E9C2 + cheat + description:Tiny's Brutal Punches do more damage + code:7D42-E1C2+7D42-E132+7D42-E542+7D42-E512+7D42-E5C2 + cheat + description:Tiny's Medium Punches do more damage + code:7D42-E532+7D43-E042+7D43-E012+7D43-E0C2+7D43-E032 + cheat + description:Tiny's Quick Punches do more damage + code:7D43-E942+7D43-E912+7D43-E9C2+7D43-E932+7D43-E142 + cheat + description:Tiny's Brutal Kicks do more damage + code:7D43-E112+7D43-E1C2+7D43-E132+7D43-E542+7D43-E512 + cheat + description:Tiny's Medium Kicks do more damage + code:7D43-E5C2+7D43-E532+7D4E-E042+7D4E-E012+7D4E-E0C2 + cheat + description:Tiny's Quick Kicks do more damage + code:7D4E-E032+7D4E-E942+7D4E-E912+7D4E-E9C2+7D4E-E932 + cheat + description:Tiny's Medicine Ball Does more damage + code:7D4E-E142 + cheat + description:Tiny's Sucker Punch does more damage + code:7D4E-E512 + cheat + description:Blob's Brutal Punches do more damage + code:7D4D-70C3+7D4D-7033+7D4D-7943+7D4D-7913+7D4D-79C3 + cheat + description:Blob's Medium Punches do more damage + code:7D4D-7933+7D4D-7143+7D4D-7113+7D4D-71C3+7D4D-7133 + cheat + description:Blob's Quick Punches do more damage + code:7D4D-7543+7D4D-7513+7D4D-75C3+7D4D-7533+7D4F-7043 + cheat + description:Blob's Brutal kick does more damage + code:7D4F-7013+7D4F-70C3+7D4F-7033+7D4F-7943+7D4F-7913 + cheat + description:Blob's Medium Kicks do more damage + code:7D4F-79C3+7D4F-7933+7D4F-7143+7D4F-7113+7D4F-71C3 + cheat + description:Blob's Quick Kicks do more damage + code:7D4F-7133+7D4F-7543+7D4F-7513+7D4F-75C3+7D4F-7533 + cheat + description:Blue Suede Goo's Brutal Punches do more damage + code:7D44-71C3+7D44-7133+7D44-7543+7D44-7513+7D44-75C3 + cheat + description:Blue Suede Goo's Medium Punches do more damage + code:7D44-7533+7D47-7043+7D47-7013+7D47-70C3+7D47-7033 + cheat + description:Blue Suede Goo's Quick Punches do more damage + code:7D47-7943+7D47-7913+7D47-79C3+7D47-7933+7D47-7143 + cheat + description:Blue Suede Goo's Brutal Kicks do more damage + code:7D47-7113+7D47-71C3+7D47-7133+7D47-7543+7D47-7513 + cheat + description:Blue Suede Goo's Medium Kicks do more damage + code:7D47-75C3+7D47-7533+7D40-7043+7D40-7013+7D40-70C3 + cheat + description:Blue Suede Goo's Quick Kicks do more damage + code:7D40-7033+7D40-7943+7D40-7913+7D40-79C3+7D40-7933 + cheat + description:Ickybod Clay's Brutal Punches do more damage + code:7D49-70C3+7D49-7033+7D49-7943+7D49-7913+7D49-79C3 + cheat + description:Ickybod Clay's Medium Punches do more damage + code:7D49-7933+7D49-7143+7D49-7113+7D49-71C3+7D49-7133 + cheat + description:Ickybod Clay's Quick Punches do more damage + code:7D49-7543+7D49-7513+7D49-75C3+7D49-7533+7D41-7043 + cheat + description:Ickybod Clay's Brutal Kicks do more damage + code:7D41-7013+7D41-70C3+7D41-7033+7D41-7943+7D41-7913 + cheat + description:Ickybod Clay's Medium Kicks do more damage + code:7D41-79C3+7D41-7933+7D41-7143+7D41-7113+7D41-71C3 + cheat + description:Ickybod Clay's Quick Kicks do more damage + code:7D41-7133+7D41-7543+7D41-7513+7D41-75C3+7D41-7533 + cheat + description:Ickybod Clay's Ecto Punch does more damage + code:7D45-7013 + cheat + description:Helga's Brutal Punches do more damage + code:7D45-71C3+7D45-7133+7D45-7543+7D45-7513+7D45-75C3 + cheat + description:Helga's Medium Punches do more damage + code:7D45-7533+7D46-7043+7D46-7013+7D46-70C3+7D46-7033 + cheat + description:Helga's Quick Punches do more damage + code:7D46-7943+7D46-7913+7D46-79C3+7D46-7933+7D46-7143 + cheat + description:Helga's Brutal Kicks do more damage + code:7D46-7113+7D46-71C3+7D46-7133+7D46-7543+7D46-7513 + cheat + description:Helga's Medium Kicks do more damage + code:7D46-75C3+7D46-7533+7D4B-7043+7D4B-7013+7D4B-70C3 + cheat + description:Helga's Quick Kicks do more damage (not far away) + code:7D46-5033+7D4B-7943+7D4B-7913+7D4B-79C3+7D4B-7933 + cheat + description:Helga's Viking Ram does more damage + code:7D4B-71C3 + cheat + description:Bonker's Brutal Punches do more damage + code:7D4C-70C3+7D4C-7033+7D4C-7943+7D4C-7913+7D4C-79C3 + cheat + description:Bonker's Medium Punches do more damage + code:7D4C-7933+7D4C-7143+7D4C-7113+7D4C-71C3+7D4C-7133 + cheat + description:Bonker's Quick Punches do more damage + code:7D4C-7543+7D4C-7513+7D4C-75C3+7D4C-7533+7D48-7043 + cheat + description:Bonker's Brutal Kicks do more damage + code:7D48-7013+7D48-70C3+7D48-7033+7D48-7943+7D48-7913 + cheat + description:Bonker's Medium Kicks do more damage + code:7D48-79C3+7D48-7933+7D48-7143+7D48-7113+7D48-71C3 + cheat + description:Bonker's Quick Kicks do more damage + code:7D48-7133+7D48-7543+7D48-7513+7D48-75C3+7D48-7533 + cheat + description:Bonker's Cutting Cartwheel does more damage + code:7D4A-7043 + +cartridge sha256:2d40c86bc19d85555bf2672acf515b04dbf56a6a59b29ad503e672310b0fae3b + name:Clay Fighter 2 - Judgment Clay (USA) + cheat + description:Select more speed in options + code:4D08-E4A1 + cheat + description:Select more difficulty in options + code:DB0B-E4D1 + cheat + description:Both players jump off the screen + code:8F59-EDA7 + cheat + description:Infinite health and time + code:CB51-7D64+6251-7F04+4651-7F64+F651-7FA4 + cheat + description:Blob - Blob spit kills + code:EE0C-77E9 + cheat + description:Blob - Buzz saw kills + code:EE0E-7479 + cheat + description:Blob - Rocket-anvil attack kills + code:EE09-5789 + cheat + description:Hoppy - Spinning carrot kills + code:EEB0-5D7C + cheat + description:Hoppy - Spin kick towards (special move) kills + code:EEBB-5F8C + cheat + description:Octo - Brutal cartwheel kills (when close) + code:EE1C-5785 + cheat + description:Octo - Ground spin kills + code:EE15-8DE5 + +cartridge sha256:1d19e7fbe32eb26181c95fcbb028a5d64797ab65b86568eb059c60b8acf0d702 + name:Claymates (USA) (Sample) + cheat + description:Invincibility + code:C2D4-8F50 + cheat + description:Infinite time + code:C216-E779 + cheat + description:Multi-jump (tap jump button) + code:89DA-87E9 + cheat + description:Infinite lives + code:C218-8479 + +cartridge sha256:e5980b990605a9c91fa89101c440b2ec9993329296ba09a9538042d724a080fb + name:Cliffhanger (USA) + cheat + description:Invincibility + code:ED60-1761 + cheat + description:Infinite health + code:C28E-44A9 + cheat + description:Infinite ammo + code:C2CD-34A5 + cheat + description:Infinite lives + code:3C8B-1D69 + cheat + description:Hit anywhere + code:DD8F-CF60 + cheat + description:One hit kills on normal enemies + code:CBBC-3F6B+DFBC-3FAB + cheat + description:Stop snow avalanche (run into it) + code:1882-4D69 + +cartridge sha256:03f6c69aef92d36b5ea25a6023368da0e1da9fa160e8316ebd533d4f358ffacf + name:Clue (USA) + cheat + description:Always roll a 1 + code:CBBC-0D07+3CBC-0DA7+DDBC-0D67 + cheat + description:Always roll a 2 + code:CBBC-0D07+3CBC-0DA7+DFBC-0D67 + cheat + description:Always roll a 3 + code:CBBC-0D07+3CBC-0DA7+D4BC-0D67 + cheat + description:Always roll a 4 + code:CBBC-0D07+3CBC-0DA7+D7BC-0D67 + cheat + description:Always roll a 5 + code:CBBC-0D07+3CBC-0DA7+D0BC-0D67 + cheat + description:Always roll a 6 + code:CBBC-0D07+3CBC-0DA7+D9BC-0D67 + cheat + description:Allow no interrogations instead of 2 + code:BDBA-D464 + cheat + description:Allow only 1 interrogation + code:DFBA-D4D4 + cheat + description:Allow 3 interrogations + code:D7BA-D4D4 + cheat + description:Allow 4 interrogations + code:D0BA-D4D4 + cheat + description:Allow 5 interrogations + code:D9BA-D4D4 + cheat + description:Infinite interrogations + code:8B83-070F + +cartridge sha256:5536cea2da39f2572abe3b0fcf71f8fcd981376b470b174969772aae4a7a1845 + name:College Football USA 97 (USA) + cheat + description:Always 1st down + code:7E1836:05 + cheat + description:Infinite time + code:7E1828:FF + cheat + description:Have 50 points - P1 + code:7FB140:32+7FB726:32 + cheat + description:Have 50 time outs - P1 + code:7FB1C7:32 + +cartridge sha256:c88a882ad72dfa07a9b1eb8a2183aa10057d60877a02edf90cf2cd8c78abe65e + name:Combatribes, The (USA) + cheat + description:Invincibility - both players + code:2DB1-A7D4 + cheat + description:Infinite health - both players + code:3CB5-6F64+CBB5-6FA4+A6B5-64D4+62B5-6464 + cheat + description:Infinite credits + code:A2B3-A404 + cheat + description:Hit anywhere - P1 + code:3DBB-076D+70BC-0D6D+DDBB-07AD+DDBC-0DDD+EDBC-0D0D + cheat + description:One hit kills - both players + code:3DA3-64AF+DDA3-67DF+DDA3-670F+40AE-6FAF + cheat + description:Invincibility - P1 + code:7E1934:01 + cheat + description:Infinite health - P1 + code:7E1794:C8 + cheat + description:Infinite health - P2 + code:7E1796:C8 + cheat + description:Infinite credits (alt) + code:7E1564:09 + cheat + description:Unlock all characters in vs mode + code:7E1EE7:10 + +cartridge sha256:26e09f5bc2bde28d57aeca0bf5be7f7fb8e3b3887af975bcbf2e6f29b07df56f + name:Congo's Caper (USA) + cheat + description:Infinite lives + code:DDEC-CF6D + cheat + description:Hit anywhere + code:DD6B-ADA4 + cheat + description:Multi-jump + code:DDA2-DDDF + cheat + description:Stay as Super Congo (you may change if you walk on spikes) + code:CB69-34D7 + cheat + description:1 life after continue + code:DDB0-44D4 + cheat + description:6 lives after continue + code:D9B0-44D4 + cheat + description:9 lives after continue + code:D6B0-44D4 + cheat + description:1 ruby turns you into Super Congo + code:CBB2-340D+D4B2-346D + cheat + description:Start as Super Congo + code:64B9-4FD4 + cheat + description:Start with 1 life + code:DDAC-4F09 + cheat + description:Start with 6 lives + code:D9AC-4F09 + cheat + description:Start with 9 lives + code:D6AC-4F09 + +cartridge sha256:a93ea87fc835c530b5135c5294433d15eef6dbf656144b387e89ac19cf864996 + name:Contra III - The Alien Wars (USA) + cheat + description:Invincibility (top-view levels) + code:8961-6F08 + cheat + description:Invincibility (side-view levels) - P1 + code:89B3-6F01+89C0-6D09 + cheat + description:Invincibility (side-view levels) - P2 + code:89C5-6FD9+89B6-AFA1 + cheat + description:Infinite continues + code:C2CA-0F04 + cheat + description:Infinite lives (side-view levels) + code:22BB-AD01 + cheat + description:Infinite lives (top-view levels) + code:22BB-6F0B+6DBB-64DB + cheat + description:Infinite bombs (side-view levels) + code:2264-D760 + cheat + description:Infinite bombs (top-view levels) + code:22B8-0766 + cheat + description:Enable 30 and 99 lives in option menu (99 actually gives 35,081 lives) + code:D987-AFA4 + cheat + description:Keep main weapon when you die (side-view levels) + code:82BA-6FA1 + cheat + description:Keep main weapon when you die (top-view levels) + code:82BC-646B + cheat + description:Multi-jump + code:D961-04D9+CB61-0409+EC61-0469+EE61-04A9+B961-07D9+F361-0709+C961-0D69+4661-0DA9+4B61-0FD9+DD61-0F09+6D61-0F69+ED61-0FA9 + cheat + description:Enable stage select + code:40CC-67DF + cheat + description:Start with 5 bombs on each life (side-view levels) + code:D9BB-AFA1+D9CE-6D0D + cheat + description:Start with 9 bombs on each life (side-view levels) + code:DBBB-AFA1+DBCE-6D0D + cheat + description:Start with 5 bombs on each life (top-view levels) + code:D963-6708+D9CE-6D0F + cheat + description:Start with 9 bombs on each life (top-view levels) + code:DB63-6708+DBCE-6D0F + cheat + description:Always have Scatter Blaster for gun 1 (disable during bonus stages) + code:7E1F84:01 + cheat + description:Always have Missile Launcher for gun 1 (disable during bonus stages) + code:7E1F84:02 + cheat + description:Always have Homing Missile for gun 1 (disable during bonus stages) + code:7E1F84:03 + cheat + description:Always have Torch for gun 1 (disable during bonus stages) + code:7E1F84:04 + cheat + description:Always have Laser for gun 1 (disable during bonus stages) + code:7E1F84:05 + cheat + description:Always have Scatter Blaster for gun 2 (disable during bonus stages) + code:7E1F86:01 + cheat + description:Always have Missile Launcher for gun 2 (disable during bonus stages) + code:7E1F86:02 + cheat + description:Always have Homing Missile for gun 2 (disable during bonus stages) + code:7E1F86:03 + cheat + description:Always have Torch for gun 2 (disable during bonus stages) + code:7E1F86:04 + cheat + description:Always have Laser for gun 2 (disable during bonus stages) + code:7E1F86:05 + cheat + description:Enable stage select (alt) + code:7E1E60:01 + cheat + description:Start on stage 2 + code:7E0086:02 + cheat + description:Start on stage 3 + code:7E0086:03 + cheat + description:Start on stage 4 + code:7E0086:04 + cheat + description:Start on stage 5 + code:7E0086:05 + cheat + description:Start on stage 6 + code:7E0086:06 + +cartridge sha256:c7d622391f7699fb0dc6367e141c894e700cc9bd8abca69f36785e7bc2f42a49 + name:Cool Spot (USA) + cheat + description:Infinite lives + code:402C-D7D1 + cheat + description:Less invincibility time + code:FE89-DF69 + cheat + description:More invincibility time + code:EE89-DF69 + cheat + description:5 seconds picked up + code:D98C-0D05 + cheat + description:1 minute picked up + code:7A8C-0D05 + cheat + description:16% picked up from '7up' + code:FD89-07D5 + cheat + description:Be able to free fellow spot right away + code:DD26-D4D9 + cheat + description:Start with 1 life + code:DF28-D404 + cheat + description:Start with 6 lives + code:D128-D404 + cheat + description:Start with 9 lives + code:DB28-D404 + +cartridge sha256:9674cc269d89a52d1719a487b44acf004fb777cbd58d76b19a2cd25749728215 + name:Cool World (USA) + cheat + description:Infinite lives + code:C2B6-D4DC + cheat + description:Infinite continues + code:C2B2-DF67 + cheat + description:A Nickel for a life costs nothing (must have 1 Nickel) + code:DD8D-046F+DD8D-04AF + cheat + description:Bank deposits cost nothing (must have 5 Nickels) + code:DD8C-0F6F+DD8C-0FAF + cheat + description:Opening a bank account costs nothing (must have 10 Nickels) + code:DDA6-DFA4+DDA6-D4D4 + cheat + description:High-Low game at the Gold Rush costs nothing (must have 5 Nickels) + code:DDC8-ADA5+DDC8-AFD5 + cheat + description:Most Nickels worth 2 on pick-up (must have 5 Nickels) + code:D4BE-07A1+D4B4-6761 + cheat + description:Most Nickels worth 10 on pick-up (must have 5 Nickels) + code:DCBE-07A1+DCB4-6761 + cheat + description:Continue with 9 lives + code:DB8F-6DAD + cheat + description:Start with 1 life + code:DFBE-DD07 + cheat + description:Start with 9 lives + code:DBBE-DD07 + cheat + description:Start with 10 Nickels + code:3187-64DD+3387-640D + cheat + description:Start with 1 Nickel + code:3187-64DD + cheat + description:Invincibility (blinking) + code:7E02BF:FF + cheat + description:Infinite Nickels + code:7E00ED:63 + +cartridge sha256:73533c37fcd3eddce4804eb4c016214d1741c348c349f00d8e6838d341a50df9 + name:Cosmo Gang - The Video (Japan) + cheat + description:Infinite lives + code:7E0200:05 + +cartridge sha256:2602f6e598c711aedb2e3a22414b7869a8490993aef32f53127c408e549afc6d + name:Cosmo Police Galivan II - Arrow of Justice (Japan) + cheat + description:Invincibility + code:CBB4-6DAF+DFB4-6FDF+62B4-6F0F+55B4-6F6F+F4B4-6FAF + cheat + description:Infinite health + code:C23F-6D67 + cheat + description:Infinite lives + code:A2B1-6FA7 + cheat + description:One hit kills + code:B33A-67A4 + cheat + description:Hit anywhere + code:403D-64D4+6D33-0464+6D3D-6FA4 + cheat + description:Invincibility (alt) + code:7E1277:DF + cheat + description:Infinite health (alt) + code:7E126C:60 + cheat + description:Infinite health (alt 2) + code:7E126C:61 + cheat + description:Infinite lives (alt) + code:7E1485:03 + +cartridge sha256:7c722f9941957630467c1784d0eb3f92fbfc0a2a1da3c8f5c27f593eca2a5a04 + name:Cutthroat Island (USA) + cheat + description:Stage select menu after character select screen + code:3C6B-479E + cheat + description:Infinite health - P1 + code:7E09F4:28 + cheat + description:Infinite health - P2 + code:7E0A53:28 + cheat + description:Stage select menu after character select screen (alt) + code:878C9D:EA + cheat + description:9 lives - P1 + code:7E1EF7:09 + cheat + description:9 lives - P2 + code:7E1EF9:09 + +cartridge sha256:c4ae2797fac2586b8640064be6398f2b4f2b3158a07f26c66912b29f7fd197de + name:Cyber Spin (USA) + cheat + description:Infinite power + code:C2B9-ADA1+C2B5-AF01+C2BB-AFA1 + +cartridge sha256:ad31b94ce928ecff605e2b89082154671691509e95d38370ed381437f2c36698 + name:Cybernator (USA) + cheat + description:Infinite health + code:82C7-4FDC+82C9-470C+C9B3-34A6 + cheat + description:Protection against some hazards + code:82C9-470C+82C7-4FDC + cheat + description:Infinite Vulcan + code:C264-3D2F+C264-3DFF + cheat + description:Never overheat + code:C2B5-3D66 + cheat + description:Infinite credits + code:C234-4FDD + cheat + description:Only 2 P's needed for level 2 Vulcan + code:D461-4D62 + cheat + description:Only 4 P's needed for level 3 Vulcan + code:D061-4FD2 + cheat + description:Only 3 P's needed for level 3 Laser + code:D761-4462 + cheat + description:Only 3 P's needed for level 3 Missile + code:D765-4DD2 + cheat + description:Only 2 P's needed for level 2 Napalm + code:D465-4FD2 + cheat + description:Only 4 P's needed for level 3 Napalm + code:D065-4F62 + cheat + description:Only 2 P's needed for level 2 Punch + code:D465-4462 + cheat + description:Only 3 P's needed for level 3 Punch + code:D765-47D2 + cheat + description:Energy chip worth nothing + code:DD3F-1406 + cheat + description:Energy chip worth more + code:CD3F-1406 + cheat + description:Weapons start at level 2 + code:D4BF-1FDF + cheat + description:Weapons start at level 3 + code:D7BF-1FDF + cheat + description:Start with Lasers + code:62BF-17AF + cheat + description:Start with Homing Missiles + code:62BF-17DF + cheat + description:Start with Napalm + code:62B4-1D6F + cheat + description:Start with 2 credits + code:DFB1-17AF + cheat + description:Start with 6 credits + code:D9B1-17AF + cheat + description:Start with 10 credits + code:DBB1-17AF + cheat + description:Start on level 3.1 + code:D4BD-176F + cheat + description:Start on level 3.2 + code:D7BD-176F + cheat + description:Start on level 3.3 + code:D0BD-176F + cheat + description:Start on level 4.1 + code:D9BD-176F + cheat + description:Start on level 4.2 + code:D1BD-176F + cheat + description:Start on level 5.1 + code:D5BD-176F + cheat + description:Start on level 5.2 + code:D6BD-176F + cheat + description:Start on level 6.1 + code:DBBD-176F + cheat + description:Start on level 7.3 + code:FDBD-176F + cheat + description:Start on level 7.4 + code:FFBD-176F + cheat + description:View the failed ending + code:F4BD-176F + cheat + description:View the successful ending + code:F7BD-176F + +cartridge sha256:71e77fdbd9c865ae07e907549b02549ebe87fa8d436401c485e588c61797754a + name:Cyborg 009 (Japan) + cheat + description:Infinite health + code:7E0AE1:3C + cheat + description:Infinite lives + code:7E1A31:02 + cheat + description:Infinite Super Power + code:7E0AE3:3C + +cartridge sha256:4068add412571bd85adac32dff9835e4a4886077d752adb104fee3908e42b7ef + name:Daffy Duck - The Marvin Missions (USA) + cheat + description:Infinite health + code:C283-3D6F + cheat + description:Infinite ammo (must have some ammo for the gun to be selectable) + code:DD85-17DD + cheat + description:Infinite lives + code:DDB3-3404 + cheat + description:Infinite continues + code:DDA2-C76C + cheat + description:Infinite Nutty attacks + code:C287-34AD + cheat + description:Hit anywhere + code:DD33-1DDF + cheat + description:Get items from anywhere + code:DD20-C7A4+DD26-1FD4+DD27-CFA7+DD3C-1D6D + cheat + description:One hit kills + code:6D86-17DF + cheat + description:Disable recoil + code:DD89-CFAD + cheat + description:Juice cans set health to 1/2 + code:D121-CD64 + cheat + description:Juice cans set health to 3/4 + code:DB21-CD64 + cheat + description:Gem power-ups worth 0 + code:DD3C-446D + cheat + description:Gem power-ups worth 5 (1 continue) + code:D93C-446D + cheat + description:Gems are free + code:DDA8-44D6 + cheat + description:Freeze Gun ammo is free + code:DDAC-4406 + cheat + description:Freeze Gun ammo is $200 + code:4DAC-4406 + cheat + description:Electricity Gun ammo is free + code:DDAC-44A6 + cheat + description:Electricity Gun ammo is $150 + code:F9AC-44A6 + cheat + description:3-way Gun ammo is free + code:DDAC-4706 + cheat + description:3-way Gun ammo is $150 + code:F9AC-4706 + cheat + description:Bomb Gun ammo is free + code:DDAC-47A6 + cheat + description:Bomb Gun ammo is $150 + code:F9AC-47A6 + cheat + description:Antimatter Gun ammo is free + code:DDA8-4D06 + cheat + description:Antimatter Gun ammo is $200 + code:4DA8-4D06 + cheat + description:Freeze Gun ammo power-ups are worth 20 + code:4D28-4FA7 + cheat + description:Electricity Gun ammo power-ups are worth 20 + code:4D26-1DA7 + cheat + description:Three-way Gun ammo power-ups are worth 20 + code:4D20-C7A7 + cheat + description:Bomb Gun ammo power-ups are worth 20 + code:4D2F-34A7 + cheat + description:Antimatter Gun ammo power-ups are worth 20 + code:4D23-3FA7 + cheat + description:Nutty attacks are free + code:DDA8-4F06 + cheat + description:Nutty attacks are $400 + code:0DA8-4F06 + cheat + description:Jetpack fuel is free + code:DDA8-4DA6 + cheat + description:Fuel is consumed at 1/4 normal rate + code:D1C8-14A7 + cheat + description:Fuel is consumed at 1/2 normal rate + code:DAC8-14A7 + cheat + description:Fuel is consumed at 3/4 normal rate + code:F4C8-14A7 + cheat + description:Fuel power-ups are worth 1/2 as much + code:D12B-17D4 + cheat + description:Fuel power-ups are worth 2x + code:FC2B-17D4 + cheat + description:Buy a life and get a ton of money + code:6DA8-3766 + cheat + description:Bought Freeze Gun ammo is worth 20 + code:4DAE-44D6 + cheat + description:Bought gems worth 0 + code:DDA6-34A6 + cheat + description:Bought gems worth 5 (1 continue) + code:D9A6-34A6 + cheat + description:Bought Electricity Gun ammo is worth 20 + code:4DA9-1406 + cheat + description:Bought Three-way Gun ammo is worth 20 + code:4DA8-1466 + cheat + description:Bought Bomb Gun ammo is worth 20 + code:4DAF-C4A6 + cheat + description:Bought Anti matter Gun ammo is worth 20 + code:4DA5-C7D6 + cheat + description:Bought fuel is worth 1/2 as much + code:D1A2-C7A6 + cheat + description:Bought fuel is worth 2x as much + code:FCA2-C7A6 + cheat + description:Extra lives cost $500 + code:DDA8-4466 + cheat + description:Extra lives cost $1,500 + code:DFA8-4466 + cheat + description:Extra life power-ups don't work + code:DD23-34D4 + cheat + description:Extra life power-ups worth 2 + code:D423-34D4 + cheat + description:Extra life power-ups worth 5 + code:D923-34D4 + cheat + description:Extra lives can't be bought + code:DDA3-3FA6 + cheat + description:2 extra lives for each one purchased + code:D4A3-3FA6 + cheat + description:5 extra lives for each one purchased + code:D9A3-3FA6 + cheat + description:Start with 1 life + code:DFBD-1DA4 + cheat + description:Start with 9 lives (don't set lives in options menu) + code:DBBD-1DA4 + cheat + description:Start with 25 lives (don't set lives in options menu) + code:49BD-1DA4 + cheat + description:Start with 51 lives (don't set lives in options menu) + code:9FBD-1DA4 + cheat + description:Start with 1/2 health + code:D1B4-3DD7 + cheat + description:Start with 3/4 health + code:DBB4-3DD7 + cheat + description:Start with no nutty attacks + code:DDBD-CF04 + cheat + description:Start with 3 nutty attacks + code:D7BD-CF04 + cheat + description:Start with 5 nutty attacks + code:D9BD-CF04 + cheat + description:Start with 7 nutty attacks + code:D5BD-CF04 + cheat + description:Start with 0 gems + code:DDB4-C764 + cheat + description:Start with 10 gems (2 continues) + code:FDB4-C764 + cheat + description:Start with 25 gems (5 continues) + code:49B4-C764 + cheat + description:Start with 10 ammo for all Guns (except blaster) + code:FDBF-CF64 + cheat + description:Start with 50 ammo for all Guns + code:9DBF-CF64 + cheat + description:Start with 90 ammo for all Guns + code:BDBF-CF64 + cheat + description:Start with almost no fuel + code:DDB4-C404 + cheat + description:Start with 2x fuel + code:F8B4-C404 + cheat + description:Start with 3x fuel + code:45B4-C404 + cheat + description:Start with $2,500 + code:D4BD-C7D4 + cheat + description:Start with $3,500 + code:D7BD-C7D4 + cheat + description:Start with $9,500 + code:DBBD-C7D4 + cheat + description:Start with $30,500 + code:7DBD-C7D4 + cheat + description:Start on level 1-2 + code:DFB9-1D04 + cheat + description:Start on level 1-3 + code:D4B9-1D04 + cheat + description:Start on level 1-4 + code:D7B9-1D04 + cheat + description:Start on level 2-1 + code:D0B9-1D04 + cheat + description:Start on level 2-2 + code:D9B9-1D04 + cheat + description:Start on level 2-3 + code:D1B9-1D04 + cheat + description:Start on level 2-4 + code:D5B9-1D04 + cheat + description:Start on level 3-1 + code:D6B9-1D04 + cheat + description:Start on level 3-2 + code:DBB9-1D04 + cheat + description:Start on level 3-3 + code:DCB9-1D04 + cheat + description:Start on level 3-4 + code:D8B9-1D04 + cheat + description:Start on level 4-1 + code:DAB9-1D04 + cheat + description:Start on level 4-2 + code:D2B9-1D04 + cheat + description:Start on level 4-3 + code:D3B9-1D04 + cheat + description:Start on level 4-4 + code:DEB9-1D04 + cheat + description:Start on level 5-1 + code:FDB9-1D04 + cheat + description:Start on level 5-2 + code:FFB9-1D04 + cheat + description:Start on level 5-3 + code:F4B9-1D04 + cheat + description:Start on level 5-4 + code:F7B9-1D04 + cheat + description:Invincibility (blinking) + code:7E1F12:05 + cheat + description:Infinite health (alt) + code:7E1F0E:0C + cheat + description:Infinite lives (alt) + code:7E1F10:99 + cheat + description:Infinite continues (alt) + code:7E1F82:99 + cheat + description:Infinite Nutty attacks (alt) + code:7E1F16:07 + cheat + description:Infinite Fuel + code:7E1F45:10 + cheat + description:Infinite money + code:7E00F7:99+7E00F8:99 + cheat + description:Infinite ammo for Freeze Gun + code:7E1F2A:99 + cheat + description:Infinite ammo for Electricity Gun + code:7E1F2C:99 + cheat + description:Infinite ammo for 3-way Gun + code:7E1F2E:99 + cheat + description:Infinite ammo for Bomb Gun + code:7E1F30:99 + cheat + description:Infinite ammo for Antimatter Gun + code:7E1F32:99 + +cartridge sha256:f3527855afea87b29406700b9dab45ebbb48edcb5a01d59cc2b0986abd3b1dd7 + name:Darius Force (Japan) + cheat + description:Invincibility (can make the screen flash if you use both weapons) + code:7E1000:81 + cheat + description:Infinite lives + code:7E0111:03 + +cartridge sha256:ceb470157576eac3b8b8c16e8ab6b59672409681ffb4232e4ec39dd0cb37ef91 + name:Darius Twin (USA) + cheat + description:Invincibility - P1 + code:C22D-67D9 + cheat + description:Invincibility - P2 + code:C23C-AF60 + cheat + description:Infinite lives - P1 + code:DD35-6FA5 + cheat + description:Infinite lives - P2 + code:DD3B-6FA5 + cheat + description:Hit anywhere - both players + code:6D23-6FA4+C22D-A764+DD28-67A4+DD2E-6D04 + cheat + description:Start with the strongest main weapon and 8 lives - both players + code:3CC3-6DA7+62C3-6467+62C3-6707+CBC3-6D07+D6C3-6D67 + cheat + description:Start with 1 Green Power Cube - P1 + code:62CD-AF67+4ACE-64D7 + cheat + description:Start with 1 Green Power Cube - P2 + code:62CD-A407+4ACE-64D7 + cheat + description:Start with 10 lives - both players + code:FDC3-6D67+CBC3-6D07+3CC3-6DA7 + cheat + description:Start with 15 lives - both players + code:F9C3-6D67+CBC3-6D07+3CC3-6DA7 + cheat + description:Start with 20 lives - both players + code:4DC3-6D67+CBC3-6D07+3CC3-6DA7 + cheat + description:Start with 25 lives - both players + code:49C3-6D67+CBC3-6D07+3CC3-6DA7 + cheat + description:Start on planet B + code:DFB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet C + code:D4B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet D + code:D7B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet E + code:D0B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet F + code:D9B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet G + code:D1B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet H + code:D5B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet I + code:D6B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet J + code:DBB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet K + code:DCB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Start on planet L + code:D8B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D + cheat + description:Invincibility - P1 (alt) + code:01D60C:AD + cheat + description:Invincibility - P2 (alt) + code:01E3A6:AD + cheat + description:Start with 99 lives - both players + code:7E1067:99 + cheat + description:Infinite Shield - P1 + code:7E177B:FF + cheat + description:Infinite Shield - P2 + code:7E188B:FF + cheat + description:Max 1st Gun - P1 + code:7E17A4:08 + cheat + description:Max 1st Gun - P2 + code:7E1835:08 + cheat + description:Max 2nd Gun - P1 + code:7E17EB:08 + cheat + description:Max 2nd Gun - P2 + code:7E177C:08 + cheat + description:Start with 1 Green Power Cube - P1 (alt) + code:00AEF8:2C+00AF06:8D + cheat + description:Start with 1 Green Power Cube - P2 (alt) + code:00AEF8:2C+00AF09:8D + +cartridge sha256:6c1749b24124f74d3aceefa24297b836b6ee7598fc2094f4d065b3c762c898a4 + name:Dark Law - Meaning of Death (Japan) + cheat + description:Sell an item to get maximum cash + code:6D53-7468+D653-74A8 + cheat + description:Fewer random battles + code:6D7E-7DA3 + cheat + description:Any code will open locked doors + code:DD4C-7909 + cheat + description:One hit kills + code:6DC1-8D10 + cheat + description:Infinite walking range in battle + code:DD98-5F19 + +cartridge sha256:e6efb6361af04963f22c772f879a466543f56b3b6a084204fef2dcb4659d82d9 + name:David Crane's Amazing Tennis (USA) + cheat + description:Faster side-to-side movement + code:EA8B-AFDD+D085-A7DD + cheat + description:Even faster side-to-side movement + code:EC8B-AFDD+D185-A7DD + +cartridge sha256:6ce516e3d1a7068cc9732cd3517cfd1e92179f2340c63a244625a1ff49815085 + name:Daze Before Christmas (Europe) + cheat + description:Infinite health + code:7E06F9:05 + cheat + description:Infinite lives + code:7E1E68:04 + +cartridge sha256:300c1937e4b68108302e9b0f49974d1ec6b6c45dd8da69dddc19443f9562ecf4 + name:Death and Return of Superman, The (USA) + cheat + description:Invincibility + code:2D6B-CF6D+ED6C-CFAD + cheat + description:Infinite health + code:C92D-C7DD+992D-C70D+622D-C76D+242D-C7AD+D32F-CDDD + cheat + description:Infinite lives + code:3324-3F6D + cheat + description:Infinite special attacks + code:3323-C76D+D323-C7AD + +cartridge sha256:a33af57e62a46282e3755824cc5fc39870a8eab8a28aaeb1c3817ba2c8e8655e + name:Death Brade (Japan) + cheat + description:Infinite heath - P1 + code:7E0A10:50 + +cartridge sha256:752d24fab240f4dd1dfbfea5ec83438998316806ad44488bf8c84430ca5a2cd0 + name:Demolition Man (USA) + cheat + description:Infinite health + code:F989-376F + cheat + description:Infinite lives + code:C2AC-1FDD + cheat + description:Infinite Grenades + code:82A2-4DA1 + cheat + description:Infinite ammo - Shotgun and Magnum + code:82AA-17AF + cheat + description:Infinite ammo - Shotgun + code:DFAA-14DF + cheat + description:Infinite ammo - Magnum + code:D4BF-1FF0 + cheat + description:Jump 2x higher + code:4D80-67DF + cheat + description:Jump 4x higher + code:FD80-67DF + cheat + description:Jump 8x higher + code:D680-67DF + +cartridge sha256:18d40a807d5f88c5b6a1ad849eec7e0f189225d9a1586037c850f6680b5844de + name:Demon's Crest (USA) + cheat + description:Invincibility after one hit + code:C92A-44A7 + cheat + description:Hit anywhere + code:DD66-47DC+DD6C-4D6C+6D6D-3DDC+6D64-3DAC + cheat + description:Get GP from anywhere + code:DDA5-176C + cheat + description:Large health refills full health + code:C9AC-176C + cheat + description:Rapid fire + code:C939-37D7 + cheat + description:Enemies always drop the 20 coin + code:C9A5-370B + cheat + description:First enemy takes longer to kill + code:DB67-C703 + cheat + description:First enemy take less time to kill + code:D467-C703 + cheat + description:More flash time + code:EE3A-1DAF + cheat + description:Die after one hit + code:6927-CDA7 + cheat + description:Super-jump + code:D635-1F0D + cheat + description:Ginseng costs nothing + code:DD38-CFD9 + cheat + description:20 coin worth 999 + code:C9A2-17DC + cheat + description:1 coin worth 999 + code:C9A2-170C + cheat + description:Start a new game with all items + code:A363-44F4+A363-4424+A363-47B4 + cheat + description:Disable anti-cheat (enable to use codes) + code:7E0EEE:00+7E0EED:00 + cheat + description:Invincibility + code:7E103C:30 + cheat + description:Infinite health + code:7E1062:14 + cheat + description:Infinite GP + code:7E1063:E7+7E1064:03 + cheat + description:Infinite Hold spells + code:7E1E30:02 + cheat + description:Infinite Death spells + code:7E1E31:04 + cheat + description:Infinite Shock spells + code:7E1E32:06 + cheat + description:Infinite Imp spells + code:7E1E33:08 + cheat + description:Infinite Shadow spells + code:7E1E34:0A + cheat + description:Infinite Herb potions + code:7E1E35:0C + cheat + description:Infinite Ginseng potions + code:7E1E36:0E + cheat + description:Infinite Mercury potions + code:7E1E37:10 + cheat + description:Infinite Sulfer potions + code:7E1E38:12 + cheat + description:Infinite Elixer potions + code:7E1E39:14 + cheat + description:Have all Powers, Crests, Talismen, Jewels, can hold 5 Spells/Potions + code:7E1E51:FF+7E1E52:FF+7E1E53:FF + +cartridge sha256:a362033d0d7e754d79202b255679186ad799b9e784719614b913ec8c9857ae33 + name:Dennis the Menace (USA) + cheat + description:Infinite courage + code:C9B7-4FD7+C9B7-44A7 + cheat + description:Infinite time + code:C92F-3D9E + cheat + description:Infinite lives + code:C9CB-44AF + +cartridge sha256:606abf536440173ae36466db360c7db6b474beb7a105c8a62bc74a54cbe1c38b + name:Desert Strike - Return to the Gulf (USA) + cheat + description:Infinite ammo + code:223B-07D9 + cheat + description:Infinite fuel + code:DD63-A409 + cheat + description:Infinite lives + code:4A68-04A1 + cheat + description:2x fuel consumption + code:D063-A409 + cheat + description:Faster gun auto-repeat speed + code:DF3C-676F + cheat + description:Slower gun auto-repeat speed + code:F63C-676F + cheat + description:Missiles fly faster + code:D032-6D6F + cheat + description:Hydras fly faster + code:D03E-6DDF + cheat + description:Guns do as much damage as missiles + code:1038-6D6F + cheat + description:Hydras do as much damage as missiles + code:1032-6DDF + cheat + description:Missiles do 250 points of damage + code:EC33-676F + cheat + description:AK47's do 1 point of damage + code:DF39-DF64 + cheat + description:AK47's do 1/2x damage + code:D439-DF64 + cheat + description:AK47's do 2x damage + code:DC39-DF64 + cheat + description:APHIDs do 1 point of damage + code:DF3E-A7DF + cheat + description:APHIDs do 1/2x damage + code:493E-A7DF + cheat + description:APHIDs do 2x damage + code:B13E-A7DF + cheat + description:AAA's do 1 point of damage + code:DF3D-A7DF + cheat + description:AAA's do 1/2x damage + code:DC3D-A7DF + cheat + description:AAA's do 2x damage + code:463D-A7DF + cheat + description:Rapiers do 1 point of damage + code:DF3C-AD6F + cheat + description:Rapiers do 1/2x damage + code:743C-AD6F + cheat + description:Rapiers do 2x damage + code:A63C-AD6F + cheat + description:VDA's do 1 point of damage + code:DF34-A46F + cheat + description:VDA's do 1/2x damage + code:DA34-A46F + cheat + description:VDA's do 2x damage + code:7434-A46F + cheat + description:ZSU's do 1 point of damage + code:DF31-AF6F + cheat + description:ZSU's do 1/2x damage + code:F031-AF6F + cheat + description:ZSU's do 2x damage + code:9D31-AF6F + cheat + description:Speedboats do 1 point of damage + code:DF3F-D464 + cheat + description:Speedboats do 1/2x damage + code:FB3F-D464 + cheat + description:Speedboats do 2x damage + code:103F-D464 + cheat + description:Choppers do 1 point of damage + code:DF37-D4D4 + cheat + description:Choppers do 1/2x damage + code:7437-D4D4 + cheat + description:Choppers do 2x damage + code:A637-D4D4 + cheat + description:M48's do 1 point of damage + code:DF32-A76F + cheat + description:M48's do 1/2x damage + code:7432-A76F + cheat + description:M48's do 2x damage + code:A632-A76F + cheat + description:Crotales do 1 point of damage + code:DF3A-ADDF + cheat + description:Crotales do 1/2x damage + code:743A-ADDF + cheat + description:Crotales do 2x damage + code:A63A-ADDF + cheat + description:AK47's have 1 armor point + code:DF29-0FDD + cheat + description:AK47's have 1/2x armor points + code:D929-0FDD + cheat + description:AK47's have 2x armor points + code:F029-0FDD + cheat + description:APHIDs have 1 armor points + code:DFA7-D76D + cheat + description:APHIDs have 1/2x armor points + code:DAA7-D76D + cheat + description:APHIDs have 2x armor points + code:74A7-D76D + cheat + description:AAA's have 1 armor points + code:DF83-ADD7 + cheat + description:AAA's have 1/2x armor points + code:FB83-ADD7 + cheat + description:AAA's have 2x armor points + code:1083-ADD7 + cheat + description:Rapiers have 1 armor points + code:DFAE-6F6D + cheat + description:Rapiers have 1/2x armor points + code:49AE-6F6D + cheat + description:Rapiers have 2x armor points + code:B1AE-6F6D + cheat + description:VDA's have 1 armor points + code:DFA9-AFDD + cheat + description:VDA's have 1/2x armor points + code:74A9-AFDD + cheat + description:VDA's have 2x armor points + code:A6A9-AFDD + cheat + description:ZSU's have 1 armor points + code:DFAD-DFDF + cheat + description:ZSU's have 1/2x armor points + code:08AD-DFDF + cheat + description:ZSU's have 2x armor points + code:EEAD-DFDF + cheat + description:Speedboats have 1 armor points + code:DFAB-DDDD + cheat + description:Speedboats have 1/2x armor points + code:08AB-DDDD + cheat + description:Speedboats have 2x armor points + code:EEAB-DDDD + cheat + description:Choppers have 1 armor points + code:DFA7-0DDD + cheat + description:Choppers have 1/2x armor points + code:08A7-0DDD + cheat + description:Choppers have 2x armor points + code:EEA7-0DDD + cheat + description:M48's have 1 armor points + code:DFA0-646D + cheat + description:M48's have 1/2x armor points + code:10A0-646D + cheat + description:M48's have 2x armor points + code:DFA0-64AD + cheat + description:Crotales have 1 armor points + code:DFA3-07DD + cheat + description:Crotales have 1/2x armor points + code:52A3-07DD + cheat + description:Crotales have 2x armor points + code:DFA3-070D + cheat + description:AK47 bullets fly slower + code:DD39-D4D4 + cheat + description:APHID bullets fly slower + code:DD3E-A76F + cheat + description:AAA bullets fly slower + code:DD3D-A76F + cheat + description:Rapier bullets fly slower + code:DD3C-AFDF + cheat + description:VDA bullets fly slower + code:DD34-A7DF + cheat + description:ZSU bullets fly slower + code:DD31-A4DF + cheat + description:Speedboat bullets fly slower + code:DD3F-D7D4 + cheat + description:Chopper bullets fly slower + code:DD37-D464 + cheat + description:M48 bullets fly slower + code:DD33-ADDF + cheat + description:Armor starts at 344 + code:DFBC-64A9+DF64-64D1 + cheat + description:Armor starts at 856 + code:D7BC-64A9+D764-64D1 + cheat + description:Armor starts at 1,112 + code:D0BC-64A9+D064-64D1 + cheat + description:Armor starts at 2,136 + code:D6BC-64A9+D664-64D1 + cheat + description:Armor starts at 5,208 + code:F0BC-64A9+F064-64D1 + cheat + description:Fuel starts at 25 + code:FBB1-07DC + cheat + description:Fuel starts at 50 + code:74B1-07DC + cheat + description:Fuel starts at 75 + code:08B1-07DC + cheat + description:Fuel starts at 150 + code:B1B1-07DC + cheat + description:Fuel starts at 200 + code:A6B1-07DC + cheat + description:Fuel starts at 868 + code:D7B1-070C + cheat + description:Guns start at 154 rounds remaining + code:DD38-6D0F + cheat + description:Guns start at 666 rounds remaining + code:D438-6D0F + cheat + description:Guns start at 2,458 rounds remaining + code:DB38-6D0F + cheat + description:Guns start at 5,018 rounds remaining + code:F738-6D0F + cheat + description:Guns start at 9,882 rounds remaining + code:4138-6D0F + cheat + description:Start with 10 hydras + code:DC3A-676F + cheat + description:Start with 50 hydras + code:743A-676F + cheat + description:Start with 100 hydras + code:103A-676F + cheat + description:Start with 250 hydras + code:EC3A-676F + cheat + description:Start with 1 missile + code:DF33-67DF + cheat + description:Start with 20 missiles + code:F033-67DF + cheat + description:Start with 50 missiles + code:7433-67DF + cheat + description:Start with 100 missiles + code:1033-67DF + cheat + description:Start with 250 missiles + code:EC33-67DF + cheat + description:Start with 1 life + code:DFB1-0F6C + cheat + description:Start with 5 lives + code:D9B1-0F6C + cheat + description:Start with 7 lives + code:D5B1-0F6C + cheat + description:Start with 10 lives + code:DCB1-0F6C + cheat + description:Start with 20 lives + code:F0B1-0F6C + cheat + description:Start with 50 lives + code:74B1-0F6C + cheat + description:Start with 99 lives + code:17B1-0F6C + +cartridge sha256:337e643d3e63915de06429992f306e8d2b73aed6849b795f9c855c2d03c18180 + name:D-Force (USA) + cheat + description:Infinite lives + code:3CCA-D4DD + cheat + description:Continue equipped with unguided missiles + code:7D6C-D40F+2C6C-D46F+FD6C-D7DF + cheat + description:Loss of a life does not decrease cannon power at normal difficulty (except on continues) + code:DDC7-DD0F + cheat + description:Loss of a life does not decrease cannon power at hard difficulty (except on continues) + code:DDC0-D4DF + cheat + description:Pink power-up increases missile power along with cannon power + code:DA3D-6464 + cheat + description:Continue with 10 lives + code:7168-D70F+C668-D76F + cheat + description:Continue with 12 lives + code:C868-D70F+C068-D76F + cheat + description:Continue with 14 lives + code:CF68-D70F+EF68-D76F + cheat + description:Continue with 16 lives + code:9E68-D70F+C068-D76F + cheat + description:Continue with cannon power at level 2 + code:DF68-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 3 + code:D468-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 4 + code:D768-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 6 + code:D968-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 8 + code:D568-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 10 + code:DB68-DF0F+DE68-DD6F + cheat + description:Continue with cannon power at level 12 + code:D868-DF0F+DE68-DD6F + cheat + description:Start with cannon power at level 2 + code:DFB6-DF6D + cheat + description:Start with cannon power at level 3 + code:D4B6-DF6D + cheat + description:Start with cannon power at level 4 + code:D7B6-DF6D + cheat + description:Start with cannon power at level 6 + code:D9B6-DF6D + cheat + description:Start with cannon power at level 8 + code:D5B6-DF6D + cheat + description:Start with cannon power at level 10 + code:DBB6-DF6D + cheat + description:Start with cannon power at level 12 + code:D8B6-DF6D + cheat + description:Start equipped with unguided missiles + code:DAB6-D76D+FDB6-D4AD + cheat + description:Start with 10 lives + code:7168-D5F6+C668-D596 + cheat + description:Start with 12 lives + code:C868-D5F6+C068-D596 + cheat + description:Start with 14 lives + code:CF68-D5F6+EF68-D596 + cheat + description:Start with 16 lives + code:9E68-D5F6+C068-D596 + +cartridge sha256:7dbfc44d28a46e6d399628e43086aa9fd0b2abeda4c108751a5ad91c102c3aaf + name:Dino City (USA) + cheat + description:Infinite health + code:8BA6-67A9 + cheat + description:No harm from most enemies + code:6DA6-6D69 + cheat + description:No harm if swallowed by a monster + code:C23B-A7F9+C232-67B1 + cheat + description:Infinite plays - both players + code:C26E-6D2D + cheat + description:Infinite time (disable in bonus stage) + code:8269-DF90 + cheat + description:Infinite credits - both players + code:C260-67F7 + cheat + description:Hit and stomp anywhere + code:6DAE-6469+F9AE-64A9 + cheat + description:Clock runs faster + code:7A64-D420 + cheat + description:Clock runs slower + code:ED64-D420 + cheat + description:Clock runs much slower + code:ED64-D420+DF64-D7F0 + cheat + description:Rex jumps higher + code:EC6B-DFBE + cheat + description:Rex jumps much higher + code:E66B-DFBE + cheat + description:Tops jumps higher + code:EC8A-D793 + cheat + description:Tops jumps much higher + code:E68A-D793 + cheat + description:Timmy and Jamie jump higher + code:EC22-DF22 + cheat + description:Timmy and Jamie jump much higher + code:E622-DF22 + cheat + description:Collect 2 eggs for extra play instead of 50 + code:D427-6D2D + cheat + description:Collect 5 eggs for extra play + code:D927-6D2D + cheat + description:Collect 10 eggs for extra play + code:FD27-6D2D + cheat + description:Collect 15 eggs for extra play + code:F927-6D2D + cheat + description:Collect 25 eggs for extra play + code:4927-6D2D + cheat + description:Collect 75 eggs for extra play + code:5927-6D2D + cheat + description:Collect 99 eggs for extra play + code:BB27-6D2D + cheat + description:1 play per game instead of 3 - both players + code:DF6D-D7BD + cheat + description:2 plays per game - both players + code:D46D-D7BD + cheat + description:4 plays per game - both players + code:D06D-D7BD + cheat + description:5 plays per game - both players + code:D96D-D7BD + cheat + description:7 plays per game - both players + code:D56D-D7BD + cheat + description:9 plays per game - both players + code:DB6D-D7BD + cheat + description:Start with 1 credit instead of 3 - P1 + code:DFC2-A494 + cheat + description:Start with 2 credits - P1 + code:D4C2-A494 + cheat + description:Start with 5 credits - P1 + code:D9C2-A494 + cheat + description:Start with 7 credits - P1 + code:D5C2-A494 + cheat + description:Start with 9 credits - P1 + code:DBC2-A494 + cheat + description:Start with No credits - P1 + code:DDC2-A494 + cheat + description:Start with 1 credit instead of 3 - P2 + code:DFCF-DFF7 + cheat + description:Start with 2 credits - P2 + code:D4CF-DFF7 + cheat + description:Start with 5 credits - P2 + code:D9CF-DFF7 + cheat + description:Start with 7 credits - P2 + code:D5CF-DFF7 + cheat + description:Start with 9 credits - P2 + code:DBCF-DFF7 + cheat + description:Start with No credits - P2 + code:DDCF-DFF7 + cheat + description:Infinite health - P1 + code:7E16ED:03 + +cartridge sha256:10e07e9e094e77a2b71bab3bac1d79a62b7a7bfdb80111044b1f9c64645c622f + name:Donald in Maui Mallard (Europe) + cheat + description:Infinite health + code:7E0DD3:64 + cheat + description:Infinite lives + code:7E1F4A:03 + cheat + description:Infinite Zapps + code:7E0DDB:0A + cheat + description:Infinite Homers + code:7E0DDD:0A + +cartridge sha256:fa8cacf5bbfc39ee6bbaa557adf89133d60d42f6cf9e1db30d5a36a469f74d15 + name:Donkey Kong Country (USA) + cheat + description:Invincibility (no lockup) + code:1DCC-CA7A+F6CF-13EA+F6CC-3E7A + cheat + description:Invincibility + code:1DCC-CA7A + cheat + description:Almost invincible (disable if you get stuck) + code:1DCC-CA7A+1DCA-C2EA + cheat + description:Infinite lives + code:C2C1-4A9C + cheat + description:Infinite lives (alt) + code:C2C9-4E2C+C2C1-4A9C + cheat + description:Get Life Balloons from anywhere + code:6DC7-3ABB + cheat + description:Get KONG letters from anywhere + code:6D2B-C272 + cheat + description:Get Banana bunches from anywhere + code:6D20-3E52 + cheat + description:Get Midway Barrel from anywhere + code:6DEA-CEBB + cheat + description:Get most single Bananas from anywhere + code:6D88-3A14+DD80-3E34+DD89-32C4 + cheat + description:10 Bananas needed for extra life + code:DBC1-3D6D+DCC1-34AD+DBC9-340D+DCC1-3D6D + cheat + description:25 Bananas needed for extra life + code:F6C1-3D6D+FBC1-34AD+F6C9-340D+FBC1-3D6D + cheat + description:50 Bananas needed for extra life + code:7FC1-3D6D+74C1-34AD+7FC9-340D+74C1-3D6D + cheat + description:75 Bananas needed for extra life + code:0CC1-3D6D+08C1-34AD+0CC9-340D+08C1-3D6D + cheat + description:Easy level exit (press start and select) + code:DDB9-3DD4 + cheat + description:Easy level exit (press start and select) (alt) + code:DDB9-3DD4+DDB0-34A4 + cheat + description:Bad buddy code (In 2P team mode, the inactive player can press select to gain control) + code:DD8B-C28A + cheat + description:Bad buddy code (In 2P team mode, the inactive player can press select to gain control) (alt) + code:DD8B-C28A+DD88-CE5A + cheat + description:Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) + code:D76B-337E + cheat + description:Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). + code:EE65-C37E + cheat + description:Keep Animals between stages + code:1D6B-3FDD+196A-333D + cheat + description:Keep Animals between stages (alt) + code:D76B-3FDD+196A-333D + cheat + description:Keep Animals between stages (alt) + code:1D6B-3FDD+196A-333D+1D6B-3D6D+166A-3ECD + cheat + description:Multi-jump + code:6D84-33EA+4084-1273+6D84-1353+2D87-1273 + cheat + description:Multi-jump - Expresso (the Ostrich) + code:EE80-C373 + cheat + description:High-jump - Donkey Kong + code:A081-1273 + cheat + description:Super-jump - Donkey Kong + code:2D81-1273 + cheat + description:Mega-jump - Donkey Kong + code:3D81-1273 + cheat + description:Moon-jump - Donkey Kong + code:EE81-1273 + cheat + description:High-jump - Diddy Kong + code:8081-1E73 + cheat + description:Super-jump - Diddy Kong + code:AD81-1E73 + cheat + description:Mega-jump - Diddy Kong + code:2D81-1E73 + cheat + description:Moon-jump - Diddy Kong + code:EE81-1E73 + cheat + description:High-jump - Animals + code:A08F-C273 + cheat + description:Super-jump - Animals + code:2D8F-C273 + cheat + description:Mega-jump - Animals + code:3D8F-C273 + cheat + description:Moon-jump - Animals + code:EE8F-C273 + cheat + description:High-jump - Donkey Kong + code:A081-1273+A086-13E3 + cheat + description:Super-jump - Donkey Kong + code:2D81-1273+2D86-13E3 + cheat + description:Mega-Jump - Donkey Kong + code:3D81-1273+3D86-13E3 + cheat + description:High-jump - Diddy Kong + code:8081-1E73+808B-1AE3 + cheat + description:Super-jump - Diddy Kong + code:AD81-1E73+AD8B-1AE3 + cheat + description:Mega-Jump - Diddy Kong + code:2D81-1E73+2D8B-1AE3 + cheat + description:High-jump - all Animals + code:A08F-C273+A087-C3E3 + cheat + description:Super-jump - all Animals + code:2D8F-C273+2D87-C3E3 + cheat + description:Mega-jump - all Animals + code:3D8F-C273+3087-C3E3 + cheat + description:See the ending + code:CD68-3FDD+226A-333D + cheat + description:Start With 8 lives + code:D568-C34D+D568-C33D + cheat + description:Start With 11 lives + code:DC68-C34D+DC68-C33D + cheat + description:Start With 16 lives + code:DE68-C34D+DE68-C33D + cheat + description:Start With 26 lives + code:FB68-C34D+FB68-C33D + cheat + description:Start With 51 lives + code:7468-C34D+7468-C33D + cheat + description:Start With 76 lives + code:0868-C34D+0868-C33D + cheat + description:Start With 100 lives + code:1768-C34D+1768-C33D + cheat + description:Start with 255 lives + code:EE68-C34D + cheat + description:Return of Kong (alt) + code:7E0579:01 + +cartridge sha256:df2644d435330192a13768cc1f79c5aa3084a64217a5250c6dd4ffdbe2175be4 + name:Donkey Kong Country (USA) (Rev 1) + cheat + description:Invincibility (no lockup) + code:1DCA-C2EA+F6C0-1A8A+F6C2-3AEA + cheat + description:Invincibility + code:1DCA-C2EA + cheat + description:Almost invincible (disable if you get stuck) + code:1DCA-C2EA + cheat + description:Infinite lives + code:C2C1-4A2C + cheat + description:Get Life Balloons from anywhere + code:6DC7-32FB + cheat + description:Get KONG letters from anywhere + code:6D28-CE52 + cheat + description:Get Banana bunches from anywhere + code:6D25-3282 + cheat + description:Get Midway Barrel from anywhere + code:6DE3-CABB + cheat + description:Get most single Bananas from anywhere + code:6D80-3E44+6D88-3244+DD89-3314 + cheat + description:Easy level exit (press start and select) + code:DDB0-34A4 + cheat + description:Bad buddy code (In 2P team mode, the inactive player can press select to gain control) + code:DD88-CE5A + cheat + description:Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) + code:D76C-327E + cheat + description:Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). + code:EE66-C27E + cheat + description:Keep Animals + code:1D6B-3D6D+166A-3ECD + cheat + description:Multi-jump + code:6D89-3A8A+4080-13E3+6D89-1A73+2D89-13E3 + cheat + description:Multi-jump - Expresso (the Ostrich) + code:EE81-CEE3 + cheat + description:High-jump - Donkey Kong + code:A086-13E3 + cheat + description:Super-jump - Donkey Kong + code:2D86-13E3 + cheat + description:Mega-jump - Donkey Kong + code:3D86-13E3 + cheat + description:Moon-jump - Donkey Kong + code:EE86-13E3 + cheat + description:High-jump - Diddy Kong + code:808B-1AE3 + cheat + description:Super-jump - Diddy Kong + code:AD8B-1AE3 + cheat + description:Mega-jump - Diddy Kong + code:2D8B-1AE3 + cheat + description:Moon-jump - Diddy Kong + code:EE8B-1AE3 + cheat + description:High-jump - Animals + code:A087-C3E3 + cheat + description:Super-jump - Animals + code:2D87-C3E3 + cheat + description:Mega-jump - Animals + code:3087-C3E3 + cheat + description:Moon-jump - Animals + code:EE87-C3E3 + cheat + description:Land animals roll attack + code:C4A2-CA7A + cheat + description:Start with 255 lives + code:EE68-C33D + cheat + description:Return of Kong (alt) + code:7E0579:01 + +cartridge sha256:628147468c3539283197f58f03b94df49758a332831857481ea9cc31645f0527 + name:Donkey Kong Country (USA) (Rev 2) + cheat + description:Invincibility (no lockup) + code:1DC2-C3EA+F6C9-128A+F6C3-32EA + cheat + description:Invincibility + code:1DC2-C3EA + cheat + description:Infinite lives + code:C2C5-4A2C + cheat + description:Get Life Balloons from anywhere + code:6DC0-32FB + cheat + description:Get KONG letters from anywhere + code:6D2D-3E52 + cheat + description:Get Banana bunches from anywhere + code:6D2A-3282 + cheat + description:Get Midway Barrel from anywhere + code:6DEF-32FB + cheat + description:Get most single Bananas from anywhere + code:6D82-4E17+6D85-4217+DD86-4AC7 + cheat + description:Easy level exit (press start and select) + code:DDB9-3764 + cheat + description:Bad buddy code (In 2P team mode, the inactive player can press select to gain control) + code:DD82-CEEA + cheat + description:Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) + code:D76C-337E + cheat + description:Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). + code:EE66-C37E + cheat + description:Multi-jump + code:6D85-327A+4081-1E53+6D85-1A83+2D85-1E53 + cheat + description:Multi-jump - Expresso (the Ostrich) + code:EE8B-CA53 + cheat + description:High-jump - Donkey Kong + code:A08C-1E53 + cheat + description:Super-jump - Donkey Kong + code:2D8C-1E53 + cheat + description:Mega-jump - Donkey Kong + code:308C-1E53 + cheat + description:Moon-jump - Donkey Kong + code:EE8C-1E53 + cheat + description:High-jump - Diddy Kong + code:8088-1253 + cheat + description:Super-jump - Diddy Kong + code:AD88-1253 + cheat + description:Mega-jump - Diddy Kong + code:2D88-1253 + cheat + description:Moon-jump - Diddy Kong + code:EE88-1253 + cheat + description:High-jump - Animals + code:A089-CE53 + cheat + description:Super-jump - Animals + code:2D89-CE53 + cheat + description:Mega-jump - Animals + code:3089-CE53 + cheat + description:Moon-jump - Animals + code:EE89-CE53 + cheat + description:Land animals can roll attack + code:A98B-327A + cheat + description:Start with 255 lives + code:EE63-333D + cheat + description:Return of Kong (alt) + code:7E0579:01 + +cartridge sha256:b79c2bb86f6fc76e1fc61c62fc16d51c664c381e58bc2933be643bbc4d8b610c + name:Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr) (Rev 1) + cheat + description:Master code - Must be entered + code:E6EE-A7D7+6DA4-1A8B+6D8F-C33E + cheat + description:Invincibility + code:CB2C-1A4D+FD2C-1A1D+DD2C-1ACD + cheat + description:Infinite lives + code:C2A1-CE5B+C2A5-C37B + cheat + description:Get 2 lives per 100 bananas collected + code:D4A1-437C+D4A5-4AEC + cheat + description:Get 5 lives per 100 bananas collected + code:D9A1-437C+D9A5-4AEC + cheat + description:Get 255 lives per 100 bananas collected + code:EEA1-437C + cheat + description:When your last Kong is hit, the other returns + code:EEC2-1A1D+EECC-CA4D + cheat + description:Easy level exit (press start and select) + code:DD6C-C7D4+DD62-C4A4 + cheat + description:Kong family coins don't get used up + code:C2B9-13B7+C2B1-13F7 + cheat + description:Kremcoins don't get used up + code:C2B9-1297+C2B1-1A27 + cheat + description:Multi-jump + code:DDBD-CA44+D5BD-3214+DBB2-3244+DD8E-121D+6787-C334 + cheat + description:Mega-jump for Diddy + code:EDD0-735A + cheat + description:Super-jump - Diddy + code:E7D0-735A + cheat + description:Jump higher - Diddy + code:E1D0-735A + cheat + description:Jump lower - Diddy + code:EBD0-735A + cheat + description:Jump much lower - Diddy + code:ECD0-735A + cheat + description:Mega-jump - Dixie + code:EDD7-5AEA + cheat + description:Super-jump - Dixie + code:E7D7-5AEA + cheat + description:Jump higher - Dixie + code:E5D7-5AEA + cheat + description:Jump lower - Dixie + code:EBD7-5AEA + cheat + description:Jump much lower - Dixie + code:ECD7-5AEA + cheat + description:Mega-jump - Rambi with Diddy riding + code:EFDD-535A + cheat + description:Super-jump - Rambi with Diddy riding + code:E7DD-535A + cheat + description:Rambi jumps higher with Diddy riding + code:E5DD-535A + cheat + description:Rambi doesn't jump as high with Diddy riding + code:ECDD-535A + cheat + description:Start with more kong family coins + code:626D-4EBD + cheat + description:Start with more Kremcoins + code:626D-432D + cheat + description:Start with 3 lives + code:D465-3D67+D46C-3D07 + cheat + description:Start with 10 lives + code:DB65-3D67+DB6C-3D07 + cheat + description:Start with 25 lives + code:F665-3D67+F66C-3D07 + cheat + description:Start with 50 lives + code:7F65-3D67+7F6C-3D07 + cheat + description:Start with 99 lives + code:1765-3D67+176C-3D07 + cheat + description:Start with 255 lives + code:EE65-3D67 + +cartridge sha256:35421a9af9dd011b40b91f792192af9f99c93201d8d394026bdfb42cbf2d8633 + name:Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr) + cheat + description:Master code - Must be entered + code:E6EE-A7D7+6DAF-12EB+6D8D-C33E + cheat + description:Invincibility + code:4028-434D + cheat + description:Infinite lives + code:C2A1-CE5B+C2A5-C37B + cheat + description:When your last Kong is hit, the other returns + code:EEC2-1A1D+EECC-CA4D + cheat + description:Easy level exit (press start and select) + code:DD6C-C7D4+DD62-C4A4 + cheat + description:Kong family coins don't get used up + code:C2B9-13B7+C2B1-13F7 + cheat + description:Kremcoins don't get used up + code:C2B9-1297+C2B1-1A27 + cheat + description:Get single Bananas from almost anywhere + code:6DEC-33F9+6DED-43F1+DDE8-32B9 + cheat + description:Get Banana bunches from anywhere + code:6DA7-33AA + cheat + description:Get DK and Banana Coins from anywhere + code:6D85-42EC + cheat + description:Get KONG letters from anywhere + code:6D88-C38C + cheat + description:Get Krem Koins from anywhere + code:6D83-125C + cheat + description:Get Life balloons from anywhere + code:6DAE-336A + cheat + description:Get Midway Barrel from anywhere + code:6D3A-42A2 + cheat + description:Get 2 lives per 100 bananas collected + code:D4A1-437C+D4A5-4AEC + cheat + description:Get 5 lives per 100 bananas collected + code:D9A1-437C+D9A5-4AEC + cheat + description:Get 255 lives per 100 bananas collected + code:EEA1-437C + cheat + description:Multi-jump + code:4DAF-121F+54AF-12CF+A0AF-123F+1DAF-134F + cheat + description:Mega-jump for Diddy + code:EDD0-735A + cheat + description:Super-jump - Diddy + code:E7D0-735A + cheat + description:Jump higher - Diddy + code:E1D0-735A + cheat + description:Jump lower - Diddy + code:EBD0-735A + cheat + description:Jump much lower - Diddy + code:ECD0-735A + cheat + description:Mega-jump - Dixie + code:EDD7-5AEA + cheat + description:Super-jump - Dixie + code:E7D7-5AEA + cheat + description:Jump higher - Dixie + code:E5D7-5AEA + cheat + description:Jump lower - Dixie + code:EBD7-5AEA + cheat + description:Jump much lower - Dixie + code:ECD7-5AEA + cheat + description:Mega-jump - Rambi with Diddy riding + code:EFDD-535A + cheat + description:Super-jump - Rambi with Diddy riding + code:E7DD-535A + cheat + description:Rambi jumps higher with Diddy riding + code:E5DD-535A + cheat + description:Rambi doesn't jump as high with Diddy riding + code:ECDD-535A + cheat + description:Start with more kong family coins + code:626D-4EBD + cheat + description:Start with more Kremcoins + code:626D-432D + cheat + description:Start with 3 lives + code:D465-3D67+D46C-3D07 + cheat + description:Start with 10 lives + code:DB65-3D67+DB6C-3D07 + cheat + description:Start with 25 lives + code:F665-3D67+F66C-3D07 + cheat + description:Start with 50 lives + code:7F65-3D67+7F6C-3D07 + cheat + description:Start with 99 lives + code:1765-3D67+176C-3D07 + cheat + description:Start with 255 lives + code:EE65-3D67 + +cartridge sha256:2277a2d8dddb01fe5cb0ae9a0fa225d42b3a11adccaeafa18e3c339b3794a32b + name:Donkey Kong Country 3 - Dixie Kong's Double Trouble! (USA) (En,Fr) + cheat + description:Invincibility + code:B768-C34D + cheat + description:Invincibility (alt) + code:CBA0-CECF+DBA0-CE3F+DDA9-CA4F + cheat + description:Infinite lives + code:CB6E-73CD + cheat + description:Infinite bear coins + code:DBB8-729D + cheat + description:Get Funky's Gyrocopter with no need for DK coins + code:6D6C-7EFF+6D62-722F + cheat + description:Get Single Bananas from almost anywhere + code:6D3C-33F3+6D3D-43FE+DD38-32B3 + cheat + description:Get Banana Bunches from anywhere + code:6D24-434A + cheat + description:Get Bear Coins from anywhere + code:6D29-C3CA + cheat + description:Get KONG letters from anywhere + code:6DAF-123E + cheat + description:Get Midway Barrel from anywhere + code:6D20-4388 + cheat + description:Get Bonus Coins from anywhere + code:6D2E-CE1A + cheat + description:Get Life Balloons from anywhere + code:6D22-1ACA + cheat + description:Get DK Coins from anywhere + code:DDC0-33BB + cheat + description:Multi-jump + code:4D2B-3E1F+5F2B-3ECF+BD2B-3E3F+1D2C-3A4F + +cartridge sha256:d45e26eb10c323ecd480e5f2326b223e29264c3adde67f48f0d2791128e519e8 + name:Doom (USA) + cheat + description:Infinite health + code:6EDE-955D+C3DE-958D+9CDE-95ED+5DDD-B07D+6DDD-B05D2 + cheat + description:Start with mega health and mega armor + code:BDEA-B053+62EA-B953 + cheat + description:Start with more ammo + code:E3EA-B153 + cheat + description:Heat vision/color blind mode + code:CBD3-B17F + cheat + description:Select "The Shores of Hell" or "Inferno" in any skill level + code:D7CF-F953 + +cartridge sha256:8d4ada4f98464d176ae7f0fb8a20032056680f3241637a0f903f23f31f41ff36 + name:Doom Troopers (USA) + cheat + description:Invincibility + code:7E0C99:01 + cheat + description:Infinite health + code:7E0C31:64 + cheat + description:Infinite lives + code:7E0CB3:03+7E0102:03 + cheat + description:Infinite ammo + code:7E00E6:63 + cheat + description:Infinite special weapon ammo + code:7E00EA:0A + cheat + description:Die to complete level (don't use with infinite lives code) + code:7E0102:01 + +cartridge sha256:bb915b286b33842e39e9022366169233a4041515c7ecc60ac428420b28e48dd5 + name:Doomsday Warrior (USA) + cheat + description:Infinite health and matches last forever + code:82C7-046F + cheat + description:Always get 4 bonus points for improving abilities + code:CBB2-ADDD+D0B2-AD0D+6DB2-A46D + cheat + description:On normal level, start with all stats at 2 bars instead of 0 + code:D9B9-64DD + cheat + description:First 6 fights are against Sledge + code:DDB0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Layban + code:DFB0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Amon + code:D4B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Daisy + code:D7B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against P-Lump + code:D0B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Grimrock + code:D9B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Nuform + code:D1B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 7 fights are against Shadow + code:D5B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Ashura + code:D6B0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:First 6 fights are against Main + code:DBB0-ADAD+6DB0-AFDD+E9B0-AF0D + cheat + description:All fights are in order (you don't choose your opponent) + code:DDB7-AFAD + cheat + description:You can heal completely, not just to the top of each segment + code:DD83-D4AF + cheat + description:Don't heal at all + code:3C8E-DDAF + cheat + description:Infinite health - P1 + code:7E02C6:64 + cheat + description:Infinite health - P2 + code:7E03C6:64 + cheat + description:No health - P1 + code:7E02C6:00 + cheat + description:No health - P2 + code:7E03C6:00 + +cartridge sha256:b32aa9cbf8f6baacc84f6418fa6fbc33b9ce71458fecc91275aafdbf6f743a99 + name:Double Dragon V - The Shadow Falls (USA) + cheat + description:Always win - P1 + code:DDAB-3DAE + cheat + description:Can't perform special moves - P2/CPU + code:B3C8-CFBF+B3C6-CDBF+BAC9-3FBF + cheat + description:Pick up to 9 points of any attribute instead of 5 + code:DBBC-1F27 + cheat + description:Harder to recover from dizziness + code:3C85-CF07 + cheat + description:Dizziness doesn't last long + code:D685-C407 + cheat + description:Start with 50% health - both characters + code:46C6-340D + cheat + description:Start with 25% health - both characters + code:F0C6-340D + cheat + description:Infinite health - P1 + code:7E1B8D:50 + cheat + description:Infinite health - P2 + code:7E1C8A:50 + cheat + description:No health - P1 + code:7E1B8D:00 + cheat + description:No health - P2 + code:7E1C8A:00 + cheat + description:Bosses unlocked cheat enabled + code:7F0068:01 + cheat + description:Stuns disabled cheat enabled + code:7F006A:01 + cheat + description:Throwing disabled cheat enabled + code:7F006C:01 + cheat + description:P1 is Billy Lee + code:7E0632:00 + cheat + description:P1 is Jimmy Lee + code:7E0632:01 + cheat + description:P1 is Jawbreaker + code:7E0632:02 + cheat + description:P1 is Icepick + code:7E0632:03 + cheat + description:P1 is S Master + code:7E0632:04 + cheat + description:P1 is Bones + code:7E0632:05 + cheat + description:P1 is Sickle + code:7E0632:06 + cheat + description:P1 is Blade + code:7E0632:07 + cheat + description:P1 is T Happy + code:7E0632:08 + cheat + description:P1 is Countdown + code:7E0632:09 + cheat + description:P1 is Dominique + code:7E0632:0A + cheat + description:P1 is Sekka + code:7E0632:0B + cheat + description:P2 is Billy Lee + code:7E0633:00 + cheat + description:P2 is Jimmy Lee + code:7E0633:01 + cheat + description:P2 is Jawbreaker + code:7E0633:02 + cheat + description:P2 is Icepick + code:7E0633:03 + cheat + description:P2 is S Master + code:7E0633:04 + cheat + description:P2 is Bones + code:7E0633:05 + cheat + description:P2 is Sickle + code:7E0633:06 + cheat + description:P2 is Blade + code:7E0633:07 + cheat + description:P2 is T Happy + code:7E0633:08 + cheat + description:P2 is Countdown + code:7E0633:09 + cheat + description:P2 is Dominique + code:7E0633:0A + cheat + description:P2 is Sekka + code:7E0633:0B + +cartridge sha256:d98d7da1e7636e067563e2e480d7dfbc013b7e9bdf1329fd61c5cacac0293e1d + name:Dragon - The Bruce Lee Story (USA) + cheat + description:Infinite health (disable before stage ends) + code:7E00D9:FF + cheat + description:Infinite fighting power + code:7E00DB:FF + cheat + description:0 HP - Enemy 1 + code:7E01D9:00 + cheat + description:0 HP - Enemy 2 + code:7E02D9:00 + cheat + description:Infinite time (turn on only in a timed fight and off after defeating your opponent) + code:7E2082:63 + cheat + description:Hyper Mode - P1 + code:7E003E:01 + cheat + description:Hyper Mode - P2/Enemy 1 + code:7E013E:01 + cheat + description:Hyper Mode - P3/Enemy 2 + code:7E023E:01 + cheat + description:P1 Knocks Out Easier + code:7E0093:02 + cheat + description:P2 Knocks Out Easier + code:7E0193:02 + cheat + description:P3 Knocks Out Easier + code:7E0293:02 + cheat + description:P1 Can't Be Hit + code:7E0095:44 + cheat + description:P2 Can't Be Hit + code:7E0195:44 + cheat + description:P3 Can't Be Hit + code:7E0295:44 + cheat + description:Start in Alley outside kitchen (version 2) + code:7E539E:01 + cheat + description:Start in Alley outside kitchen + code:7E539E:02 + cheat + description:Start in the Seattle Gym + code:7E539E:03 + cheat + description:Start in the George Wu Gym + code:7E539E:04 + cheat + description:Start in Film Set + code:7E539E:05 + cheat + description:Start in Bruce's Kwoon + code:7E539E:06 + cheat + description:Start in Virgin Gym + code:7E539E:07 + cheat + description:Start in the Big Boss Film set (version 2) + code:7E539E:08 + cheat + description:Start in the Big Boss Film set + code:7E539E:09 + cheat + description:Start in the Enter The Dragon set + code:7E539E:0A + cheat + description:Start in the Armored Boss Arena + code:7E539E:0B + cheat + description:Start in the Machine + code:7E539E:0C + +cartridge sha256:32226fb8b126261dfec279aea51b2fe01e0c7bfbf26699ddcceb750a0d3a9fc0 + name:Dragon Ball Z - Hyper Dimension (Japan) + cheat + description:One hit kills + code:CBAB-0D0F+DFAB-0D6F+DDAB-0DAF+62AB-04AF+1DAB-07DF + +cartridge sha256:b698dd6e1db1a3fb2026dbc78c2cfbfd834f7c64fccb76139d5075c8b5233f28 + name:Dragon Quest I & II (Japan) + cheat + description:DQ I & II - Infinite MP in battle + code:82C0-6F43 + cheat + description:DQ I & II - Infinite MP ouside battle + code:8BA6-DDD7 + cheat + description:DQ I & II - Keep gold after deposit in the vault + code:44E0-DFDD + cheat + description:DQ I & II - Take no damage from poison swamps + code:3C67-0913 + cheat + description:DQ I & II - Take no damage from barriers + code:8265-01C3 + cheat + description:DQ I & II - Take no damage from monster hits or magic + code:1D6A-AD4E + cheat + description:DQ I & II - Take no damage from monster fire + code:6DB6-DD43+DCB6-DD13 + cheat + description:DQ I & II - Inns don't take your money + code:C2E3-DF6F + cheat + description:DQ I & II - All equipment in shops is free + code:6DA6-A7AF + cheat + description:DQ I - Infinite medical herbs + code:C261-A7C0 + cheat + description:DQ I - Key shops don't take your money + code:C2A0-6DD4 + cheat + description:DQ I - Fairy water shops don't take your money + code:C2AE-0FA4 + +cartridge sha256:a3b1cae3fe55fe52c035ab122e7f850640b0935524496d45b1915ca3c8a934f4 + name:Dragon View (USA) + cheat + description:Infinite health (may crash at the end of Ortah Temple if using an emulator) + code:CE65-4586 + cheat + description:Infinite Jade + code:CE34-3106 + cheat + description:Infinite Bombs + code:E23-C9:A2 + cheat + description:Infinite Potions + code:CE26-41A3 + cheat + description:Infinite magic for rings + code:C237-4116 + cheat + description:Max level after killing a Demon + code:7834-1F67 + cheat + description:Sell a fruit to get 254 fruit + code:6D37-196B+7534-C0AB + cheat + description:Infinite HP + code:7E6FCA:B8 + cheat + description:Max HP + code:7E6FCB:BE+7E6FCB:BE + cheat + description:Max EXP + code:7E7095:E7+7E7096:03 + cheat + description:Max money (Jade) + code:7E2131:0F+7E2132:27 + cheat + description:Max attack power + code:7E98E9:FF + cheat + description:Max defense power + code:7E98EA:FF + +cartridge sha256:49a1f9f5e6084b3daa1b13ab5a37ebe8bd3cf20e1c7429fbf722298092893e81 + name:Dragon's Lair (USA) + cheat + description:Infinite health + code:3C8C-0FA4 + cheat + description:Infinite time + code:4A84-64D4 + cheat + description:Infinite lives + code:3C62-D70F + cheat + description:Start with 1 life + code:DD89-0404 + cheat + description:Start with 6 lives + code:D989-0404 + cheat + description:Start with 9 lives + code:D689-0404 + cheat + description:Start with the Dagger + code:DF86-0DD4 + cheat + description:Start with the Shuriken + code:D486-0DD4 + cheat + description:Slow timer + code:5D89-6D04 + cheat + description:Faster timer + code:4989-6D04 + cheat + description:1 coin gives 10 + code:DF88-0F64 + cheat + description:Infinite health (alt) + code:7E1036:04 + cheat + description:Infinite time (alt) + code:7E1033:09 + cheat + description:Infinite lives (alt) + code:7E1028:03 + cheat + description:Infinite Gold + code:7E1030:09 + +cartridge sha256:74910ce01d19d25cb97a243a51f21c3d522f02fb116682f60440da3292bb14f7 + name:Drakkhen (USA) + cheat + description:Protection from some attacks + code:8E3D-696D+8E30-A408+8EA2-0113 + cheat + description:Magic points restored 50 points at a time while player is on screen + code:7433-6FD8 + cheat + description:Magic points restored 10 points at a time while player is on screen + code:DC33-6FD8 + cheat + description:Magic points don't decrease except in battle + code:8E27-6D28 + +cartridge sha256:1a79d51a2ad7dd4848205a07ff8e5d873b155dc420de5e52158c9bab935e05c3 + name:Dream T.V. (USA) + cheat + description:Almost infinite health + code:8FA6-3DA8+8FAA-3FA8 + cheat + description:Infinite lives + code:DDCE-C7DC + cheat + description:One hit kills, except skeletons + code:8F23-3768 + cheat + description:Mega-jump (disable to land again) + code:8F84-17D8 + cheat + description:Can't get hit - some characters are white + code:DDC7-1DD8 + cheat + description:Start with 5 lives + code:D9B8-1F04 + cheat + description:Start with 1 life + code:DFB8-1F04 + cheat + description:Start with 8 lives + code:D6B8-1F04 + cheat + description:Start with 2/3 health - 1st life + code:4DBD-CF04 + cheat + description:Start with 2/3 health - after 1st life + code:4DCE-CD0C + cheat + description:Start with 1/3 health - 1st life + code:FDBD-CF04 + cheat + description:Start with 1/3 health - after 1st life + code:FDCE-CD0C + +cartridge sha256:c509e957873d6cff232bc360ae1795ea74e86bf4fa09c686f6cfc83bd8bac3d7 + name:Dual Orb II (Japan) + cheat + description:Gain 65,535 EXP from each battle + code:CEF7-8F9F+A8F7-84FF + cheat + description:Sell one item for maximum money + code:DD4F-8FD4 + cheat + description:Can skip barrel puzzle + code:544E-7FD6 + cheat + description:No random battles + code:6D7B-77D6 + cheat + description:Enemies start with 10 HP + code:CE2C-540D+7B2C-546D + cheat + description:Enemies start with 100 HP + code:CE2C-540D + +cartridge sha256:2dfc2e037679a62a960dab9682bca6d1b2737f603edd336c8b2fdf05db10cc07 + name:Dungeon Master (USA) + cheat + description:Almost no mana loss (must have enough to cast) + code:85B5-07D9 + cheat + description:Food meter doesn't go down + code:85CF-0F29 + cheat + description:Water meter doesn't go down + code:85C5-0FB9 + cheat + description:1st character has 250 maximum hit points + code:ECDC-F26F + cheat + description:2nd character has 250 maximum hit points + code:ECDA-220F + cheat + description:3rd character has 250 maximum hit points + code:ECD3-B2D4 + cheat + description:4th character has 250 maximum hit points + code:ECDD-BAA7 + cheat + description:1st character has 250 maximum stamina + code:A0DC-F36F+DBDC-F3AF + cheat + description:2nd character has 250 maximum stamina + code:A0DA-230F+DBDA-236F + cheat + description:3rd character has 250 maximum stamina + code:A0D3-B3D4+DBD3-B304 + cheat + description:4th character has 250 maximum stamina + code:A0DD-B2A7+DBDD-B3D7 + cheat + description:1st character has 250 maximum mana + code:ECDC-FE6F + cheat + description:2nd character has 250 maximum mana + code:ECDA-2E0F + cheat + description:3rd character has 250 maximum mana + code:ECD3-BED4 + cheat + description:4th character has 250 maximum mana + code:ECDD-B3A7 + cheat + description:1st character has 99 current strength + code:17D8-F36F + cheat + description:2nd character has 99 current strength + code:17D2-230F + cheat + description:3rd character has 99 current strength + code:17DE-B3D4 + cheat + description:4th character has 99 current strength + code:17DF-B2A7 + cheat + description:1st character has 99 maximum strength + code:17D8-F30F + cheat + description:2nd character has 99 maximum strength + code:17D2-23DF + cheat + description:3rd character has 99 maximum strength + code:17DE-B2A4 + cheat + description:4th character has 99 maximum strength + code:17DF-B267 + cheat + description:1st character has 99 current dexterity + code:17D8-FE0F + cheat + description:2nd character has 99 current dexterity + code:17D2-2EDF + cheat + description:3rd character has 99 current dexterity + code:17DE-B3A4 + cheat + description:4th character has 99 current dexterity + code:17DF-B367 + cheat + description:1st character has 99 maximum dexterity + code:17D8-FEDF + cheat + description:2nd character has 99 maximum dexterity + code:17D2-23AF + cheat + description:3rd character has 99 maximum dexterity + code:17DE-B364 + cheat + description:4th character has 99 maximum dexterity + code:17DF-B307 + cheat + description:1st character has 99 current wisdom + code:17DA-FADF + cheat + description:2nd character has 99 current wisdom + code:17D2-2EAF + cheat + description:3rd character has 99 current wisdom + code:17DE-BE64 + cheat + description:4th character has 99 current wisdom + code:17DF-BE07 + cheat + description:1st character has 99 maximum wisdom + code:17D8-FEAF + cheat + description:2nd character has 99 maximum wisdom + code:17D2-2E6F + cheat + description:3rd character has 99 maximum wisdom + code:17DE-BE04 + cheat + description:4th character has 99 maximum wisdom + code:17DF-BED7 + cheat + description:1st character has 99 current vitality + code:17DA-FAAF + cheat + description:2nd character has 99 current vitality + code:17D3-2A6F + cheat + description:3rd character has 99 current vitality + code:17DD-2A04 + cheat + description:4th character has 99 current vitality + code:17D4-BAD7 + cheat + description:1st character has 99 maximum vitality + code:17DA-FA6F + cheat + description:2nd character has 99 maximum vitality + code:17D3-2A0F + cheat + description:3rd character has 99 maximum vitality + code:17DD-2AD4 + cheat + description:4th character has 99 maximum vitality + code:17DF-BEA7 + cheat + description:1st character has 99 current anti-magic + code:17DA-F26F + cheat + description:2nd character has 99 current anti-magic + code:17D3-220F + cheat + description:3rd character has 99 current anti-magic + code:17DD-22D4 + cheat + description:4th character has 99 current anti-magic + code:17D4-BAA7 + cheat + description:1st character has 99 maximum anti-magic + code:17DA-F20F + cheat + description:2nd character has 99 maximum anti-magic + code:17D3-22DF + cheat + description:3rd character has 99 maximum anti-magic + code:17DD-2AA4 + cheat + description:4th character has 99 maximum anti-magic + code:17D4-BA67 + cheat + description:1st character has 99 current anti-fire + code:17DA-F30F + cheat + description:2nd character has 99 current anti-fire + code:17D3-23DF + cheat + description:3rd character has 99 current anti-fire + code:17DD-22A4 + cheat + description:4th character has 99 current anti-fire + code:17D4-B267 + cheat + description:1st character has 99 maximum anti-fire + code:17DA-F3DF + cheat + description:2nd character has 99 maximum anti-fire + code:17D3-22AF + cheat + description:3rd character has 99 maximum anti-fire + code:17DD-2264 + cheat + description:4th character has 99 maximum anti-fire + code:17D4-B207 + cheat + description:1st character is a level 15 fighter + code:5EDA-FEAF + cheat + description:1st character is a level 15 ninja + code:5ED2-F20F + cheat + description:1st character is a level 15 healer + code:5ED2-F3AF + cheat + description:1st character is a level 15 wizard + code:5ED3-FA0F + cheat + description:2nd character is a level 15 fighter + code:5ED3-2E6F + cheat + description:2nd character is a level 15 ninja + code:5EDE-22DF + cheat + description:2nd character is a level 15 healer + code:5EDE-236F + cheat + description:2nd character is a level 15 wizard + code:5EDD-FAD4 + cheat + description:3rd character is a level 15 fighter + code:5EDD-2E04 + cheat + description:3rd character is a level 15 ninja + code:5EDF-2AA4 + cheat + description:3rd character is a level 15 healer + code:5EDF-2304 + cheat + description:3rd character is a level 15 wizard + code:5EDF-2EA4 + cheat + description:4th character is a level 15 fighter + code:5ED4-BED7 + cheat + description:4th character is a level 15 ninja + code:5ED7-BA67 + cheat + description:4th character is a level 15 healer + code:5ED7-B3D7 + cheat + description:4th character is a level 15 wizard + code:5ED7-BE67 + cheat + description:1st character has a nearly full food meter + code:D5D8-FAAF + cheat + description:1st character has a nearly full water meter + code:D5D8-F20F + cheat + description:2nd character has a nearly full food meter + code:D5D2-2A6F + cheat + description:2nd character has a nearly full water meter + code:D5D2-22DF + cheat + description:3rd character has a nearly full food meter + code:D5DE-BA04 + cheat + description:3rd character has a nearly full water meter + code:D5DE-BAA4 + cheat + description:4th character has a nearly full food meter + code:D5DF-BAD7 + cheat + description:4th character has a nearly full water meter + code:D5DF-BA67 + +cartridge sha256:8481e47381bd98c27b9782b5727a5d5f0976fbb3aa3df25c2c42aa37e0586815 + name:E.V.O. - Search for Eden (USA) + cheat + description:Invincibility + code:1D66-072B + cheat + description:Infinite EVO points + code:6D27-6FAF + cheat + description:Infinite EP + code:FDD2-FA86+45D2-FAE6 + cheat + description:Protection from most hazards + code:C96E-07FB + cheat + description:Food replenishes hit points to full + code:DD60-D18B + cheat + description:Less damage from stronger creatures + code:D566-A7F8 + cheat + description:Horn never breaks + code:C964-A726 + cheat + description:Collect one health to max it out + code:DD61-D97B + cheat + description:One-hit kills + code:DD6C-AFF2 + +cartridge sha256:0408e3d9f2259044344a3bfbd7a7ca3c3427f82108fbecd6e5c4c41e80cd303b + name:Earth Defense Force (USA) + cheat + description:Invincibility + code:406A-676F + cheat + description:Infinite shields + code:C263-6FAF + cheat + description:Infinite credits + code:C268-A491 + cheat + description:Continually hit anywhere + code:4064-09DA+406A-676F+406D-01DA+406E-D16A+406F-096A + cheat + description:Advancing experience levels is easier + code:4D21-6F0F + cheat + description:Advancing experience levels is much easier + code:DA21-6F0F + cheat + description:Keep current score when game is continued + code:C223-AFD7+C223-AFA7 + cheat + description:1 credit + code:DD2E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:2 credits + code:DF2E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:3 credits + code:D42E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:6 credits + code:D92E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:8 credits + code:D52E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:10 credits + code:DB2E-AF67+CB2E-AF07+DD2E-AFA7 + cheat + description:Start with 4 shields + code:7123-A4A7+3D23-A7D7 + cheat + description:Start with 5 shields + code:2B23-A4A7+B823-A7D7 + cheat + description:Start at experience level 2 + code:D42E-A7A7 + cheat + description:Start at experience level 3 + code:D72E-A7A7 + cheat + description:Start at experience level 4 + code:D02E-A7A7 + cheat + description:Start at experience level 5 + code:D92E-A7A7 + cheat + description:Start at stage 2 + code:DF37-DDDD+CB34-D7AD+DD37-DD0D + cheat + description:Start at stage 3 + code:D437-DDDD+CB34-D7AD+DD37-DD0D + cheat + description:Start at stage 4 + code:D737-DDDD+CB34-D7AD+DD37-DD0D + cheat + description:Start at stage 5 + code:D037-DDDD+CB34-D7AD+DD37-DD0D + cheat + description:Start at stage 6 + code:D937-DDDD+CB34-D7AD+DD37-DD0D + +cartridge sha256:a8fe2226728002786d68c27ddddf0b90a894db52e4dfe268fdf72a68cae5f02e + name:EarthBound (USA) + cheat + description:Infinite health (all characters) + code:8251-57D6 + cheat + description:Get to level 99 after one battle (all characters) + code:EE2E-54A1 + cheat + description:Fast money (buy a bread with the code disabled, enable and sell it for $32,646) + code:EE9A-E5F5 + cheat + description:Dad never calls + code:E395-87DD + cheat + description:Massive numbers of enemies (piracy check) + code:6D4F-7704 + cheat + description:Start with a level 9 character + code:DB23-77D1 + cheat + description:Start with a level 15 character + code:DE23-77D1 + cheat + description:Start with a level 50 character + code:7423-77D1 + cheat + description:Start with a level 100 character + code:1723-77D1 + cheat + description:Start with a level 255 character + code:EE23-77D1 + cheat + description:Start with a super strong character + code:EE2E-7D01 + cheat + description:Start with a lot of HP + code:BB2D-5461 + cheat + description:Start with a lot of PSI + code:BB2F-54A1 + cheat + description:Infinite health + code:7E9A13:E7+7E9A14:03 + cheat + description:9999 current PP + code:7E9A1B:0F+7E9A1C:27 + +cartridge sha256:4579e437279f79eedd6b9cf648a814df2ab2c83d937a1bcec1578d28965fb9a0 + name:Earthworm Jim (USA) + cheat + description:Infinite health + code:A21F-7464 + cheat + description:Infinite Ammo + code:2215-EFAF + cheat + description:Infinite lives + code:A2DA-87A7 + cheat + description:Hit anywhere (Gun) + code:6D01-776D+6D63-7401+F901-77AD + cheat + description:Die after one hit + code:7D17-7F64 + cheat + description:Start with 1 life + code:7D13-8FDF + cheat + description:Start with 5 lives + code:7013-8FDF + cheat + description:Start with 10 lives + code:7B13-8FDF + cheat + description:Start with 25 lives + code:0613-8FDF + cheat + description:Start with 50 lives + code:1F13-8FDF + cheat + description:Start with 300% health + code:7717-7F64 + cheat + description:Start with 500% health + code:7917-7F64 + cheat + description:Start with 900% health + code:7B17-7F64 + cheat + description:Invincibility against enemies + code:7E682A:3D + cheat + description:Infinite health (alt) + code:7E6627:39 + cheat + description:Infinite shields + code:7E6B48:63 + cheat + description:Super shot always active + code:7E661C:FF+7E69A0:09 + cheat + description:Infinite time in Sub + code:7E6752:63 + cheat + description:Always win race in Andy Asteroids stages (glitchy graphics) + code:7E6B46:FF + cheat + description:Start on What The Heck? + code:7E512A:01 + cheat + description:Start on What The Heck? (Snowman Boss) + code:7E512A:02 + cheat + description:Start on What The Heck? (Boss Fight With Evil The Cat) + code:7E512A:03 + cheat + description:Start on Snot A Problem Round 1 + code:7E512A:04 + cheat + description:Start on Snot A Problem Round 2 + code:7E512A:05 + cheat + description:Start on Snot A Problem Round 3 + code:7E512A:06 + cheat + description:Start on For Pete's Sake + code:7E512A:07 + cheat + description:Start on Buttville, Part 2 + code:7E512A:08 + cheat + description:Start on Buttville, Part 1 + code:7E512A:09 + cheat + description:Start on Level 5, Part 1 + code:7E512A:0A + cheat + description:Start on Level 5 (Chicken Boss) + code:7E512A:0B + cheat + description:Start on Level 5, Part 2 + code:7E512A:0C + cheat + description:Start on Down The Tubes + code:7E512A:0D + cheat + description:Start on Tube Race + code:7E512A:0E + cheat + description:Start on Andy Asteroids?, Course 1 + code:7E512A:0F + cheat + description:Start on Andy Asteroids?, Course 2 + code:7E512A:10 + cheat + description:Start on Andy Asteroids?, Course 3 + code:7E512A:11 + cheat + description:Start on Andy Asteroids?, Course 4 + code:7E512A:12 + cheat + description:Start on Andy Asteroids?, Course 5 + code:7E512A:13 + cheat + description:Start on Andy Asteroids?, Course 6 + code:7E512A:14 + cheat + description:Start on Who Turned Out The Light?, Part 1 + code:7E512A:15 + cheat + description:Start on Who Turned Out The Light?, Part 2 + code:7E512A:16 + cheat + description:Start on Who Turned Out The Light?, Part 3 + code:7E512A:17 + cheat + description:Start on Who Turned Out The Light?, Part 4 + code:7E512A:18 + cheat + description:Start on Who Turned Out The Light?, Part 5 + code:7E512A:19 + cheat + description:Start on Psycrow + code:7E512A:1A + +cartridge sha256:10eadaab168707829418702386e1bcedd2619d9bbefc37cf31c4118313bcf6de + name:Earthworm Jim 2 (USA) + cheat + description:Infinite health + code:CB57-7D0B + cheat + description:Infinite lives + code:CBF0-7464 + cheat + description:Hit anywhere (Gun) + code:6D5C-EF08+F95C-EF68 + cheat + description:Infinite time - Lorenzen's Soil level + code:C2FA-8D0C + cheat + description:Get 1000 bullets on pick-up + code:D798-74F7+3B98-7F27 + cheat + description:Get 2000 bullets on pick-up + code:D598-74F7+3D98-7F27 + cheat + description:Start with 200% health + code:7450-770B + cheat + description:Start with 300% health + code:7750-770B + cheat + description:Start with 400% health + code:7050-770B + cheat + description:Start with 500% health + code:7950-770B + cheat + description:Start with 700% health + code:7550-770B + cheat + description:Start with 900% health + code:7B50-770B + cheat + description:Start with 1 life and no continues + code:7D55-5F06 + cheat + description:Start with 5 lives + code:7055-5F06 + cheat + description:Start with 7 lives + code:7155-5F06 + cheat + description:Start with 9 lives + code:7655-5F06 + cheat + description:Start with 2000 bullets + code:749E-54B4 + cheat + description:Start with 3000 bullets + code:779E-54B4 + cheat + description:Start with 4000 bullets + code:709E-54B4 + cheat + description:Start with 5000 bullets + code:799E-54B4 + cheat + description:Start with 7000 bullets + code:759E-54B4 + cheat + description:Start with 9000 bullets + code:7B9E-54B4 + cheat + description:Invincibility + code:7E653C:10 + +cartridge sha256:5d658b63d35e2e0baf48ae3bb04ea5e1553855b34bb39fc2c7ca41fbd3894d52 + name:Eek! The Cat (USA) + cheat + description:Infinite health + code:7E004E:BF + cheat + description:Infinite lives + code:7E1FE5:09 + +cartridge sha256:a6eec3329d956e1ddc4acfe3c738387622c10fc95fb9ab63dd5f45be8bec0b16 + name:Emerald Dragon (Japan) + cheat + description:Max level after one battle + code:6DDA-E707 + cheat + description:Max Parus after one battle + code:6DD6-E4D7 + cheat + description:No random battles + code:F6C0-57D0 + +cartridge sha256:cfd666f0bbabec59613d9fe189db7d0a060a78047bc084c0c365840769047bf2 + name:Equinox (USA) + cheat + description:Invincibility against most small monsters + code:C28F-AF4D + cheat + description:Infinite life + code:3CA0-0DC7 + cheat + description:Infinite magic (must have enough MP for spell to work) + code:CEAE-0D17 + cheat + description:More life from Apples + code:CB2A-C4D9 + cheat + description:Super-jump + code:4F27-1F00+4020-1FD0 + cheat + description:Mega-jump + code:FC27-1F00+4020-1FD0 + cheat + description:Super speed + code:B32C-4FA0+CD2C-4700 + cheat + description:Colored doors don't need keys + code:DD86-674F+3C86-671F + cheat + description:Walk through objects (hold L) + code:2D85-674D+4D85-64CD+4B85-6F3D+C285-6FCD+DA81-674D + cheat + description:Slow spell lasts 2x as long + code:D9AC-6437 + cheat + description:Slow spell lasts 3x as long + code:D6AC-6437 + cheat + description:Freeze spell lasts 2x as long + code:D9AB-6FC7 + cheat + description:Freeze spell lasts 3x as long + code:D6AB-6FC7 + +cartridge sha256:1576066e0cb771a91caf79e7d4f6dc00eb0daa47f0786f1604b32537429a7f45 + name:Extra Innings (USA) + cheat + description:Game lasts 1 inning + code:DFBE-ADAD+DFBF-DF6F+DFB4-0FDF + cheat + description:Game lasts 2 innings + code:D4BE-ADAD+D4BF-DF6F+D4B4-0FDF + cheat + description:Game lasts 3 innings + code:D7BE-ADAD+D7BF-DF6F+D7B4-0FDF + cheat + description:Game lasts 4 innings + code:D0BE-ADAD+D0BF-DF6F+D0B4-0FDF + cheat + description:Game lasts 5 innings + code:D9BE-ADAD+D9BF-DF6F+D9B4-0FDF + cheat + description:Game lasts 7 innings + code:D5BE-ADAD+D5BF-DF6F+D5B4-0FDF + cheat + description:1 strike and batter's out + code:DF67-DF07+DD60-A4D7 + cheat + description:2 strikes and batter's out + code:D467-DF07+DF60-A4D7 + cheat + description:Batter never strikes out + code:C264-D767+C260-A4A7 + cheat + description:1 ball and batter walks + code:DF6A-DFA7 + cheat + description:2 balls and batter walks + code:D46A-DFA7 + cheat + description:3 balls and batter walks + code:D76A-DFA7 + cheat + description:Batter never walks + code:C26A-DDD7 + cheat + description:1 out per inning + code:DF67-AD67+DF61-D4A7 + cheat + description:2 outs per inning + code:D467-AD67+D461-D4A7 + +cartridge sha256:1d38e3af9e3a6409e93f4705b68c42558f558c68f3e83ef2a40e46cf560b26cc + name:F-1 ROC - Race of Champions (USA) + cheat + description:No damage when hitting walls + code:C9A8-07DD + cheat + description:No damage when hitting other cars + code:C922-0FDD + cheat + description:Normal tires are free + code:DDEE-6F21 + cheat + description:Hi-grip tires are free + code:DDEE-6491 + cheat + description:Rain tires are free + code:DDEE-6F91 + cheat + description:2L nitro is free + code:DDED-A491 + cheat + description:3L nitro is free + code:DDED-A421 + cheat + description:4L nitro is free + code:DDED-A791 + cheat + description:Ford V-8 engine is free + code:DDEE-6721+DDED-ADF1 + cheat + description:Ilmoa V-8 engine is free + code:DDED-AD91+DDED-ADB1 + cheat + description:Remart V-10 engine is free + code:DDED-AD21+DDED-AFF1 + cheat + description:Low DF rear wing is free + code:DDE3-6791 + cheat + description:High DF rear wing is free + code:DDEE-6D91+DDEE-6DB1 + cheat + description:Low DF front wing is free + code:DDE3-6D21 + cheat + description:High DF front wing is free + code:DDE3-6F21+DDE3-64F1 + cheat + description:Special-L front wing is free + code:DDE3-6491+DDE3-64B1 + cheat + description:Small diffuser is free + code:DDE2-6421 + cheat + description:Large diffuser is free + code:DDE2-6721 + cheat + description:Special diffuser is free + code:DDE3-6D91+DDE3-6DB1 + cheat + description:Hard suspension is free + code:DDE2-6F21 + cheat + description:Active suspension is free + code:DDE2-6491+DDE2-64B1 + cheat + description:Carbon brakes are free + code:DDE2-6D91 + cheat + description:Antilock brakes are free + code:DDE2-6D21+DDE2-6FF1 + cheat + description:5-speed transmission is free + code:DDEA-6491 + cheat + description:6-speed transmission is free + code:DDEA-6421+DDEA-67F1 + cheat + description:7-speed transmission is free + code:DDEA-6791+DDEA-67B1 + cheat + description:Type 2 chassis is free + code:DDEA-6D21+DDEA-6FF1 + cheat + description:Type 3 chassis is free + code:DDEA-6F91+DDEA-6FB1 + cheat + description:Start with no money instead of $500 + code:BA26-A44F + cheat + description:Start with $5,240 + code:3C26-AF4F+CB26-AF1F+D426-AF3F + cheat + description:Start with $20,600 + code:3C26-AF4F+CB26-AF1F+D626-AF3F + cheat + description:Start with $163,960 + code:3C26-AF4F+CB26-AF1F+0D26-AF3F + cheat + description:Start with $327,800 + code:3C26-AF4F+CB26-AF1F+6D26-AF3F + cheat + description:Start with $652,920 + code:3C26-AF4F+CB26-AF1F+EE26-AF3F + +cartridge sha256:d689392884df91c2bb84b1411a96f3919b6c9cc8a583dff901a98f0d86d31c30 + name:Faceball 2000 (USA) + cheat + description:Infinite lives + code:89AB-D708 + cheat + description:Only need 8 tags to win in arena mode instead of 10 (start with 2 instead of 0) + code:B9B1-6F01 + cheat + description:Allow 98 seconds in zone 1 bonus level + code:1061-DD52 + cheat + description:Allow 98 seconds in zone 2 bonus level + code:1069-6752 + cheat + description:Allow 98 seconds in zone 3 bonus level + code:1068-DDE3 + cheat + description:Allow 98 seconds in zone 4 bonus level + code:1061-A473 + cheat + description:Allow 198 seconds in zone 5 bonus level + code:A66C-047E + cheat + description:Allow 198 seconds in zone 6 bonus level + code:A6B1-D45A + cheat + description:Allow 198 seconds in zone 7 bonus level + code:A6B0-AF7A + cheat + description:Start with 1 life instead of 3 + code:DFB6-6461 + cheat + description:Start with 5 lives + code:D9B6-6461 + cheat + description:Start with 7 lives + code:D5B6-6461 + cheat + description:Start with 9 lives + code:DBB6-6461 + cheat + description:Start with 25 lives + code:FBB6-6461 + cheat + description:Start with 50 lives + code:74B6-6461 + cheat + description:Start with 75 lives + code:08B6-6461 + cheat + description:Start with 99 lives + code:17B6-6461 + cheat + description:Start with 255 lives + code:EEB6-6461 + cheat + description:Start each Cyberzone level with 1 tag required + code:CBB5-6406+DFB5-6466 + cheat + description:Start each Cyberzone level with 5 tags required + code:CBB5-6406+D9B5-6466 + cheat + description:Start each Cyberzone level with 20 tags required + code:CBB5-6406+F0B5-6466 + cheat + description:Start each Cyberzone level with 30 tags required + code:CBB5-6406+F3B5-6466 + cheat + description:Start each Cyberzone level with 60 tags required + code:CBB5-6406+7AB5-6466 + cheat + description:Start each Cyberzone level with 90 tags required + code:CBB5-6406+9CB5-6466 + cheat + description:Start Cyberzone mode on zone 1 level 2 + code:C282-0706+DFCE-0468 + cheat + description:Start Cyberzone mode on zone 1 level 3 + code:C282-0706+D4CE-0468 + cheat + description:Start Cyberzone mode on zone 1 level 4 + code:C282-0706+D7CE-0468 + cheat + description:Start Cyberzone mode on zone 1 level 5 + code:C282-0706+D0CE-0468 + cheat + description:Start Cyberzone mode on zone 1 bonus level + code:C282-0706+D9CE-0468 + cheat + description:Start Cyberzone mode on zone 2 level 6 + code:C282-0706+D1CE-0468 + cheat + description:Start Cyberzone mode on zone 2 level 7 + code:C282-0706+D5CE-0468 + cheat + description:Start Cyberzone mode on zone 2 level 8 + code:C282-0706+D6CE-0468 + cheat + description:Start Cyberzone mode on zone 2 level 9 + code:C282-0706+DBCE-0468 + cheat + description:Start Cyberzone mode on zone 2 level 10 + code:C282-0706+DCCE-0468 + cheat + description:Start Cyberzone mode on zone 2 bonus level + code:C282-0706+D8CE-0468 + cheat + description:Start Cyberzone mode on zone 3 level 11 + code:C282-0706+DACE-0468 + cheat + description:Start Cyberzone mode on zone 3 level 12 + code:C282-0706+D2CE-0468 + cheat + description:Start Cyberzone mode on zone 3 level 13 + code:C282-0706+D3CE-0468 + cheat + description:Start Cyberzone mode on zone 3 level 14 + code:C282-0706+DECE-0468 + cheat + description:Start Cyberzone mode on zone 3 level 15 + code:C282-0706+FDCE-0468 + cheat + description:Start Cyberzone mode on zone 3 bonus level + code:C282-0706+FFCE-0468 + cheat + description:Start Cyberzone mode on zone 4 level 16 + code:C282-0706+F4CE-0468 + cheat + description:Start Cyberzone mode on zone 4 level 17 + code:C282-0706+F7CE-0468 + cheat + description:Start Cyberzone mode on zone 4 level 18 + code:C282-0706+F0CE-0468 + cheat + description:Start Cyberzone mode on zone 4 level 19 + code:C282-0706+F9CE-0468 + cheat + description:Start Cyberzone mode on zone 4 level 20 + code:C282-0706+F1CE-0468 + cheat + description:Start Cyberzone mode on zone 4 bonus level + code:C282-0706+F5CE-0468 + cheat + description:Start Cyberzone mode on zone 5 level 21 + code:C282-0706+F6CE-0468 + cheat + description:Start Cyberzone mode on zone 5 level 22 + code:C282-0706+FBCE-0468 + cheat + description:Start Cyberzone mode on zone 5 level 23 + code:C282-0706+FCCE-0468 + cheat + description:Start Cyberzone mode on zone 5 level 24 + code:C282-0706+F8CE-0468 + cheat + description:Start Cyberzone mode on zone 5 level 25 + code:C282-0706+FACE-0468 + cheat + description:Start Cyberzone mode on zone 5 bonus level + code:C282-0706+F2CE-0468 + cheat + description:Start Cyberzone mode on zone 6 level 26 + code:C282-0706+F3CE-0468 + cheat + description:Start Cyberzone mode on zone 6 level 27 + code:C282-0706+FECE-0468 + cheat + description:Start Cyberzone mode on zone 6 level 28 + code:C282-0706+4DCE-0468 + cheat + description:Start Cyberzone mode on zone 6 level 29 + code:C282-0706+4FCE-0468 + cheat + description:Start Cyberzone mode on zone 6 level 30 + code:C282-0706+44CE-0468 + cheat + description:Start Cyberzone mode on zone 6 bonus level + code:C282-0706+47CE-0468 + cheat + description:Start Cyberzone mode on zone 7 level 31 + code:C282-0706+40CE-0468 + cheat + description:Start Cyberzone mode on zone 7 level 32 + code:C282-0706+49CE-0468 + cheat + description:Start Cyberzone mode on zone 7 level 33 + code:C282-0706+41CE-0468 + cheat + description:Start Cyberzone mode on zone 7 level 34 + code:C282-0706+45CE-0468 + cheat + description:Start Cyberzone mode on zone 7 level 35 + code:C282-0706+46CE-0468 + cheat + description:Start Cyberzone mode on zone 7 bonus level + code:C282-0706+4BCE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 36 + code:C282-0706+4CCE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 37 + code:C282-0706+48CE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 38 + code:C282-0706+4ACE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 39 + code:C282-0706+42CE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 40 + code:C282-0706+43CE-0468 + cheat + description:Start Cyberzone mode on zone 8 level 41 + code:C282-0706+4ECE-0468 + +cartridge sha256:2891f1eab285133364ecc379a5c9e1d0026d60f425f1a458d149014f386cfa50 + name:Family Dog (USA) + cheat + description:Infinite health (except against vacuum or falls) + code:82C6-37D5 + cheat + description:Infinite lives + code:C2A8-C7D9 + cheat + description:Infinite Super Barks + code:C2AE-CD69 + cheat + description:Start with 90 Super Barks + code:DB6F-17AD + cheat + description:Cheese Treats worth 10 Super Barks + code:DCA2-CDA9 + cheat + description:Start in the Hallway + code:9DA0-CF67 + cheat + description:Start in the Living Room + code:10A0-CF67 + cheat + description:Start in the Hallway to the Kitchen + code:13A0-CF67 + cheat + description:Start in the Kitchen + code:64A0-CF67 + cheat + description:Start in the Hallway to the Backdoor + code:6AA0-CF67 + cheat + description:Start outside the Yard + code:B1A0-CF67 + cheat + description:Start in the Kennel Interior + code:83A0-CF67 + cheat + description:Start in the Kennel Exterior + code:3DA0-CF67+DFA0-CFA7 + cheat + description:Start in the Woods and Trees + code:E0A0-CF67+DFA0-CFA7 + cheat + description:View the ending + code:FAA0-CF67+D4A0-CFA7 + +cartridge sha256:c92f389d25870aada3002775838ec9f69a988120c0238af885fd08d46bd94930 + name:Fatal Fury (USA) + cheat + description:Take minimum damage - P1 + code:C2A9-D40F + cheat + description:Take minimum damage - P2/CPU + code:C2A2-DF6F + cheat + description:Win 1 bout to win the match instead of 2 out of 3 (disable on bonus rounds) + code:DFA5-64DF + cheat + description:10 seconds to complete bonus rounds + code:FDC7-AFAF + cheat + description:30 seconds to complete bonus rounds + code:7DC7-AFAF + cheat + description:45 seconds to complete bonus rounds + code:09C7-AFAF + cheat + description:60 seconds to complete bonus rounds + code:1DC7-AFAF + cheat + description:90 seconds to complete bonus rounds + code:BDC7-AFAF + cheat + description:Always fight Richard Myer on the West Subway + code:BAB4-6DAD+D7BC-A46D + cheat + description:Always fight Michael Max on the West Subway + code:BAB4-6DAD+D0BC-A46D + cheat + description:Always fight Duck King on the West Subway + code:BAB4-6DAD+D9BC-A46D + cheat + description:Always fight Tung Fu Rue on the West Subway + code:BAB4-6DAD+D1BC-A46D + cheat + description:Always fight Hwa Jai on the West Subway + code:BAB4-6DAD+D5BC-A46D + cheat + description:Always fight Raiden on the West Subway + code:BAB4-6DAD+D6BC-A46D + cheat + description:Always fight Billy Kane on the West Subway + code:BAB4-6DAD+DBBC-A46D + cheat + description:Always fight Geese Howard on the West Subway + code:BAB4-6DAD+DCBC-A46D + cheat + description:Start with 1/4 health - both players + code:F6CD-A4AF + cheat + description:Start with 1/2 health - both players + code:7DCD-A4AF + cheat + description:Start with 3/4 health - both players + code:06CD-A4AF + +cartridge sha256:a0c554d46034caef231c36dd6849828ca39703678fb7fdd15a11f292b93bcd6b + name:Fatal Fury 2 (USA) + cheat + description:Infinite health - P1 + code:6D7D-54AD + cheat + description:Infinite time + code:DD7E-7FDD + cheat + description:Timer is 2x fast + code:D47E-7FDD + cheat + description:Timer is 3x fast + code:D77E-7FDD + cheat + description:Computer can't win a round, except last round, game ends after 4 rounds + code:C250-7FA7 + cheat + description:P1 is Billy Kane + code:CB85-E40F+D685-E46F+DD85-E4AF + cheat + description:P1 is Axel Hawk + code:DB85-E46F+CB85-E40F+DD85-E4AF + cheat + description:P1 is Lawrence B + code:CB85-E40F+DD85-E4AF+DC85-E46F + cheat + description:P1 is Wolfgang Krauser + code:D885-E46F+CB85-E40F+DD85-E4AF + cheat + description:P2 is Billy Kane + code:CB82-E40F+D682-E46F+DD82-E4AF + cheat + description:P2 is Axel Hawk + code:DB82-E46F+CB82-E40F+DD82-E4AF + cheat + description:P2 is Lawrence B + code:DC82-E46F+CB82-E40F+DD82-E4AF + cheat + description:P2 is Wolfgang Krauser + code:D882-E46F+CB82-E40F+DD82-E4AF + cheat + description:Super vertical jump - P1 + code:FDD5-EFCB + cheat + description:Bogus vertical jump - P1 + code:EED5-EFCB + cheat + description:Start with 1/2 health + code:7D78-770D + +cartridge sha256:410e90db3d38507ccc85ad3bca6b27a080123fd5160e82b5de4d914d4b6d6e61 + name:Fatal Fury Special (USA) + cheat + description:Instant win - P1 + code:7FF9FD:00 + cheat + description:Almost infinite time + code:7FFCC1:63 + cheat + description:Win 1 round to win the match - P1 + code:7FFC49:02 + cheat + description:Play as Ryo Sakazaki + code:7FF703:0F + +cartridge sha256:b9594d588816ae570ea5fea14577ed47de4db9ac9a40a116c84e0ad7a2ce58f8 + name:Fighter's History (USA) (Rev 1) + cheat + description:Infinite health - P1 + code:7E0A56:C8 + cheat + description:Enable Clown and Karnov + code:7E09A4:01 + +cartridge sha256:f71817f55febd32fd1dce617a326a77b6b062dd0d4058ecd289f64af1b7a1d05 + name:Final Fantasy - Mystic Quest (USA) (Rev 1) + cheat + description:Infinite cure potions + code:83AF-D40D + cheat + description:Use a cure, gain a cure + code:E3AF-D40D + cheat + description:Gain 198 cures after one is used + code:03AF-D40D + cheat + description:Cure restores life points to maximum + code:DDA4-D40D + cheat + description:Infinite life points - can make enemies invincible + code:C96B-64AB + cheat + description:Infinite ninja stars + code:C9B8-D4A6 + cheat + description:Infinite bombs in battle + code:C9B0-D7A6 + cheat + description:Quick level gain + code:6D2A-DD8D + cheat + description:Infinite Cure potions + code:7E0E9E:10+7E0E9F:62 + cheat + description:Infinite Heal potions + code:7E0EA0:10+7E0EA1:62 + cheat + description:Infinite Seeds + code:7E0EA2:10+7E0EA3:62 + cheat + description:Infinite GP + code:7E0E86:97 + cheat + description:Have most items + code:7E0EA6:FE+7E0EA7:7F + cheat + description:Have all weapons + code:7E1032:FF+7E1033:FF + cheat + description:Have all spells + code:7E1038:FF+7E1039:FF + cheat + description:Cure potions restore full health + code:00A040:44+15C049:D5 + cheat + description:99 items in row 1 slot 1 + code:7E0E9F:63 + cheat + description:99 items in row 1 slot 2 + code:7E0E91:63 + cheat + description:99 items in row 1 slot 3 + code:7E0E93:63 + cheat + description:Character 1 - 9999 HP + code:7E1014:0F+7E1015:27 + cheat + description:Character 1 - 9999 maximum HP + code:7E1016:0F+7E1017:27 + cheat + description:Character 1 - max level + code:7E1010:29 + cheat + description:Character 1 - max experience + code:7E1011:7F+7E1012:96+7E1013:98 + cheat + description:Character 1 - 99 White MP + code:7E1018:63 + cheat + description:Character 1 - 99 maximum White MP + code:7E101B:63 + cheat + description:Character 1 - 99 Black MP + code:7E1019:63 + cheat + description:Character 1 - 99 maximum Black MP + code:7E101C:63 + cheat + description:Character 1 - 99 Wizard MP + code:7E101A:63 + cheat + description:Character 1 - 99 maximum Wizard MP + code:7E101D:63 + cheat + description:Character 1 - Infinite Bombs + code:7E1030:63 + cheat + description:Character 1 - Have Sword level 3 + code:7E1031:22 + cheat + description:Character 1 - Have Axe level 3 + code:7E1031:25 + cheat + description:Character 1 - Have Claw level 3 + code:7E1031:28 + cheat + description:Character 1 - Have Bombs level 3 + code:7E1031:2B + cheat + description:Character 2 - 9999 HP + code:7E1096:0F+7E1097:27 + cheat + description:Character 2 - 99 White MP + code:7E1098:63 + cheat + description:Character 2 - 99 maximum White MP + code:7E109B:63 + cheat + description:Character 2 - 99 Black MP + code:7E1099:63 + cheat + description:Character 2 - 99 maximum Black MP + code:7E109C:63 + cheat + description:Character 2 - 99 Wizard MP + code:7E109A:63 + cheat + description:Character 2 - 99 maximum Wizard MP + code:7E109D:63 + cheat + description:Character 2 - Infinite weapon + code:7E10B0:62 + cheat + description:Character 2 - Have Sword level 3 + code:7E10B1:22 + cheat + description:Character 2 - Have Axe level 3 + code:7E10B1:25 + cheat + description:Character 2 - Have Claw level 3 + code:7E10B1:28 + cheat + description:Character 2 - Have Bombs level 3 + code:7E10B1:2B + cheat + description:Character 2 - Have Bow And Arrows + code:7E10B1:2D + cheat + description:Character 2 - Have Throwing Star + code:7E10B1:2E + +cartridge sha256:6151389f33ce2e53db3cd99592440c0020f5f4668f581ce3bd615bc92077f255 + name:Final Fantasy - Mystic Quest (USA) + cheat + description:Infinite life points (can make enemies invincible, disable to defeat them) + code:C96B-64AB + cheat + description:Infinite cure potions + code:83AF-D40D + cheat + description:Infinite ninja stars + code:C9B8-D4A6 + cheat + description:Infinite bombs in battle + code:C9B0-D7A6 + cheat + description:Use a cure, gain a cure + code:E3AF-D40D + cheat + description:Gain 198 cures after one is used + code:03AF-D40D + cheat + description:Cure restores life points to maximum + code:DDA4-D40D + cheat + description:Quick level gain + code:6D2A-DD8D + cheat + description:Infinite Cure potions + code:7E0E9E:10+7E0E9F:62 + cheat + description:Infinite Heal potions + code:7E0EA0:10+7E0EA1:62 + cheat + description:Infinite Seeds + code:7E0EA2:10+7E0EA3:62 + cheat + description:Infinite GP + code:7E0E86:97 + cheat + description:Have most items + code:7E0EA6:FE+7E0EA7:7F + cheat + description:Have all weapons + code:7E1032:FF+7E1033:FF + cheat + description:Have all spells + code:7E1038:FF+7E1039:FF + cheat + description:Cure potions restore full health + code:00A040:44+15C049:D5 + cheat + description:99 items in row 1 slot 1 + code:7E0E9F:63 + cheat + description:99 items in row 1 slot 2 + code:7E0E91:63 + cheat + description:99 items in row 1 slot 3 + code:7E0E93:63 + cheat + description:Character 1 - 9999 HP + code:7E1014:0F+7E1015:27 + cheat + description:Character 1 - 9999 maximum HP + code:7E1016:0F+7E1017:27 + cheat + description:Character 1 - max level + code:7E1010:29 + cheat + description:Character 1 - max experience + code:7E1011:7F+7E1012:96+7E1013:98 + cheat + description:Character 1 - 99 White MP + code:7E1018:63 + cheat + description:Character 1 - 99 maximum White MP + code:7E101B:63 + cheat + description:Character 1 - 99 Black MP + code:7E1019:63 + cheat + description:Character 1 - 99 maximum Black MP + code:7E101C:63 + cheat + description:Character 1 - 99 Wizard MP + code:7E101A:63 + cheat + description:Character 1 - 99 maximum Wizard MP + code:7E101D:63 + cheat + description:Character 1 - Infinite Bombs + code:7E1030:63 + cheat + description:Character 1 - Have Sword level 3 + code:7E1031:22 + cheat + description:Character 1 - Have Axe level 3 + code:7E1031:25 + cheat + description:Character 1 - Have Claw level 3 + code:7E1031:28 + cheat + description:Character 1 - Have Bombs level 3 + code:7E1031:2B + cheat + description:Character 2 - 9999 HP + code:7E1096:0F+7E1097:27 + cheat + description:Character 2 - 99 White MP + code:7E1098:63 + cheat + description:Character 2 - 99 maximum White MP + code:7E109B:63 + cheat + description:Character 2 - 99 Black MP + code:7E1099:63 + cheat + description:Character 2 - 99 maximum Black MP + code:7E109C:63 + cheat + description:Character 2 - 99 Wizard MP + code:7E109A:63 + cheat + description:Character 2 - 99 maximum Wizard MP + code:7E109D:63 + cheat + description:Character 2 - Infinite weapon + code:7E10B0:62 + cheat + description:Character 2 - Have Sword level 3 + code:7E10B1:22 + cheat + description:Character 2 - Have Axe level 3 + code:7E10B1:25 + cheat + description:Character 2 - Have Claw level 3 + code:7E10B1:28 + cheat + description:Character 2 - Have Bombs level 3 + code:7E10B1:2B + cheat + description:Character 2 - Have Bow And Arrows + code:7E10B1:2D + cheat + description:Character 2 - Have Throwing Star + code:7E10B1:2E + +cartridge sha256:414bacc05a18a6137c0de060b4094ab6d1b75105342b0bb36a42e45d945a0e4d + name:Final Fantasy II (USA) (Rev 1) + cheat + description:Almost infinite HP (can make big and sometimes normal monsters invincible, disable to defeat them) + code:82AE-6F63 + cheat + description:Infinite MP during battles, doesn't work on twin attacks + code:8267-0D62 + cheat + description:Infinite items outside of battle except for the Whistle + code:C3CE-6F09 + cheat + description:Infinite Whistles + code:C3C4-A4D0 + cheat + description:Money doesn't decrease if you run away from a battle + code:C262-DF03+C262-D763 + cheat + description:Money doesn't decrease in shops + code:C2AD-AD69+C3AD-AFA9 + cheat + description:No random battles + code:DDD6-B28B + cheat + description:No random battles (alt) + code:1D60-0704 + cheat + description:Always fight the rarest enemy in that area + code:DA6E-6FD4 + cheat + description:Always get a treasure from each enemy defeated + code:6D3E-DD0E + cheat + description:When treasures are awarded after battle, receive 5 instead of 1 + code:D926-D4D9 + cheat + description:When arrows are awarded after battle, receive 50 instead of 10 + code:7425-D769 + cheat + description:When treasures are awarded after battle, receive the rarest + code:D737-0F0E + cheat + description:Sumon the Big Chocobo anywhere by using a Carrot instead of the Whistle + code:38C4-AF00 + cheat + description:The quantity of items don't decrease when selling them + code:82A9-6FD1 + cheat + description:No music while traveling or in a town + code:1D67-A7A4 + cheat + description:Gunslinger code + code:00CE-6D69 + cheat + description:Save anywhere + code:CBBA-07A4 + cheat + description:Get at least 150 GP after each battle + code:1B35-0D6E+B135-0DAE+3C35-0FDE + cheat + description:Get at least 255 GP after each battle + code:3335-076E + cheat + description:Get at least 65,536 GP after each battle + code:3336-0FAE + cheat + description:Get 99 of items that you are given or find in a pot, treasure chest, ect + code:17BF-D404 + cheat + description:Get 99 arrows when you find them in a pot or treasure chest + code:17B4-D4D4 + cheat + description:Cure2 is ultra strong + code:A6B7-A4E2 + cheat + description:Cure2 restores HP to all members in the party during battle + code:0DB7-A482 + cheat + description:Cure2 restores all HP/MP during battle + code:F1B7-A752 + cheat + description:Fire1 spell is ultra strong + code:A6B0-D7E3 + cheat + description:Fire1 spell hits every enemy + code:AFB0-D783 + cheat + description:Ice1 spell is ultra strong + code:A6B1-DD53 + cheat + description:Ice1 spell hits every enemy + code:AFB1-DD73 + cheat + description:Lit1 spell is ultra strong + code:A6B5-DDE3 + cheat + description:Lit1 spell hits every enemy + code:AFB5-DD83 + cheat + description:Automatically win battles (no EXP or gold gained) + code:7E1801:02+7E1800:08 + cheat + description:65,000+ exp points after each battle + code:7E3592:FF+7E359E:FF + cheat + description:Character 1 - Max HP + code:7E1047:0F+7E1048:27+7E1049:0F+7E104A:27 + cheat + description:Character 1 - Max MP + code:7E104B:0F+7E104C:27+7E104D:0F+7E104E:27 + cheat + description:Character 1 - Max Agility + code:7E1050:63+7E1055:63 + cheat + description:Character 1 - Max Strength + code:7E104F:63+7E1054:63 + cheat + description:Character 1 - Max Vitality + code:7E1051:63+7E1056:63 + cheat + description:Character 1 - Max Will + code:7E1053:63+7E1058:63 + cheat + description:Character 1 - Max Wisdom + code:7E1052:63+7E1057:63 + cheat + description:Character 2 - Max HP + code:7E10C7:0F+7E10C8:27+7E10C9:0F+7E10CA:27 + cheat + description:Character 2 - Max MP + code:7E10CB:0F+7E10CC:27+7E10CD:0F+7E10CE:27 + cheat + description:Character 2 - Max Agility + code:7E10D0:63+7E10D5:63 + cheat + description:Character 2 - Max Strength + code:7E10CF:63+7E10D4:63 + cheat + description:Character 2 - Max Vitality + code:7E10D1:63+7E10D6:63 + cheat + description:Character 2 - Max Will + code:7E10D3:63+7E10D8:63 + cheat + description:Character 2 - Max Wisdom + code:7E10D2:63+7E10D7:63 + cheat + description:Character 3 - Max HP + code:7E1007:0F+7E1008:27+7E1009:0F+7E100A:27 + cheat + description:Character 3 - Max MP + code:7E100B:0F+7E100C:27+7E100D:0F+7E100E:27 + cheat + description:Character 3 - Max Agility + code:7E1010:63+7E1015:63 + cheat + description:Character 3 - Max Strength + code:7E100F:63+7E1014:63 + cheat + description:Character 3 - Max Vitality + code:7E1011:63+7E1016:63 + cheat + description:Character 3 - Max Will + code:7E1013:63+7E1018:63 + cheat + description:Character 3 - Max Wisdom + code:7E1012:63+7E1017:63 + cheat + description:Character 4 - Max HP + code:7E1107:0F+7E1108:27+7E1109:0F+7E110A:27 + cheat + description:Character 4 - Max MP + code:7E110B:0F+7E110C:27+7E110D:0F+7E110E:27 + cheat + description:Character 4 - Max Agility + code:7E1110:63+7E1115:63 + cheat + description:Character 4 - Max Strength + code:7E110F:63+7E1114:63 + cheat + description:Character 4 - Max Vitality + code:7E1111:63+7E1116:63 + cheat + description:Character 4 - Max Will + code:7E1113:63+7E1118:63 + cheat + description:Character 4 - Max Wisdom + code:7E1112:63+7E1117:63 + cheat + description:Character 5 - Max HP + code:7E1087:0F+7E1088:27+7E1089:0F+7E108A:27 + cheat + description:Character 5 - Max MP + code:7E108B:0F+7E108C:27+7E108D:0F+7E108E:27 + cheat + description:Character 5 - Max Agility + code:7E1090:63+7E1095:63 + cheat + description:Character 5 - Max Strength + code:7E108F:63+7E1094:63 + cheat + description:Character 5 - Max Vitality + code:7E1091:63+7E1096:63 + cheat + description:Character 5 - Max Will + code:7E1093:63+7E1098:63 + cheat + description:Character 5 - Max Wisdom + code:7E1092:63+7E1097:63 + cheat + description:Have 99 of slot 1 + code:7E1441:63 + cheat + description:Have 99 of slot 2 + code:7E1443:63 + cheat + description:Have 99 of slot 3 + code:7E1445:63 + cheat + description:Have 99 of slot 4 + code:7E1447:63 + cheat + description:Have 99 of slot 5 + code:7E1449:63 + cheat + description:Have 99 of slot 6 + code:7E144B:63 + cheat + description:Have 99 of slot 7 + code:7E144D:63 + cheat + description:Have 99 of slot 8 + code:7E144F:63 + cheat + description:Have 99 of slot 9 + code:7E1451:63 + cheat + description:Have 99 of slot 10 + code:7E1453:63 + cheat + description:Have Cure3 in slot 1 + code:7E1440:D0 + cheat + description:Have Cure3 in slot 2 + code:7E1442:D0 + cheat + description:Have Ether2 in slot 3 + code:7E1444:D2 + cheat + description:Have Elixer in slot 4 + code:7E1446:D3 + cheat + description:Have Life in slot 5 + code:7E1448:D4 + cheat + description:Have Cabin in slot 6 + code:7E144A:E3 + cheat + description:Have Spoon in slot 7 + code:7E144C:3E + cheat + description:Have Adamant Armor in slot 8 + code:7E144E:9A + +cartridge sha256:680535dc1c4196c53b40dc9c2c9bc159a77802ab8d4b474bef5dc0281c15ad06 + name:Final Fantasy II (USA) + cheat + description:Almost infinite HP (can make big and sometimes normal monsters invincible, disable to defeat them) + code:82A3-6F63 + cheat + description:Infinite MP during battles, doesn't work on twin attacks + code:8267-0D62 + cheat + description:Infinite items outside of battle except for the Whistle + code:C3CE-6F09 + cheat + description:Infinite Whistles + code:C3C4-A4D0 + cheat + description:Money doesn't decrease if you run away from a battle + code:C262-DF03+C262-D763 + cheat + description:Money doesn't decrease in shops + code:C2AD-AD69+C3AD-AFA9 + cheat + description:No random battles + code:DDD6-B28B + cheat + description:No random battles (alt) + code:1D60-0704 + cheat + description:Always fight the rarest enemy in that area + code:DA6E-6FD4 + cheat + description:Always get a treasure from each enemy defeated + code:6D32-D7DE + cheat + description:When treasures are awarded after battle, receive 5 instead of 1 + code:D926-D4D9 + cheat + description:When arrows are awarded after battle, receive 50 instead of 10 + code:7425-D769 + cheat + description:When treasures are awarded after battle, receive the rarest + code:D734-0DDE + cheat + description:Sumon the Big Chocobo anywhere by using a Carrot instead of the Whistle + code:38C4-AF00 + cheat + description:The quantity of items don't decrease when selling them + code:82A9-6FD1 + cheat + description:No music while traveling or in a town + code:1D67-A7A4 + cheat + description:Gunslinger code + code:00CE-6D69 + cheat + description:Save anywhere + code:CBBA-07A4 + cheat + description:Get at least 150 GP after each battle + code:1B39-070E+B139-076E+3C39-07AE + cheat + description:Get at least 255 GP after each battle + code:1B39-070E+EE39-076E+3C39-07AE + cheat + description:Get at least 65,536 GP after each battle + code:3335-0D6E + cheat + description:Get 99 of items that you are given or find in a pot, treasure chest, ect + code:17BF-D404 + cheat + description:Get 99 arrows when you find them in a pot or treasure chest + code:17B4-D4D4 + cheat + description:Cure2 is ultra strong + code:A6B7-A4E2 + cheat + description:Cure2 restores HP to all members in the party during battle + code:0DB7-A482 + cheat + description:Cure2 restores all HP/MP during battle + code:F1B7-A752 + cheat + description:Fire1 spell is ultra strong + code:A6B0-D7E3 + cheat + description:Fire1 spell hits every enemy + code:AFB0-D783 + cheat + description:Ice1 spell is ultra strong + code:A6B1-DD53 + cheat + description:Ice1 spell hits every enemy + code:AFB1-DD73 + cheat + description:Lit1 spell is ultra strong + code:A6B5-DDE3 + cheat + description:Lit1 spell hits every enemy + code:AFB5-DD83 + cheat + description:Infinite HP + code:03CAE6:BD + cheat + description:Automatically win battles (no EXP or gold gained) + code:7E1801:02+7E1800:08 + cheat + description:65,000+ exp points after each battle + code:7E3592:FF+7E359E:FF + cheat + description:Character 1 - Max HP + code:7E1047:0F+7E1048:27+7E1049:0F+7E104A:27 + cheat + description:Character 1 - Max MP + code:7E104B:0F+7E104C:27+7E104D:0F+7E104E:27 + cheat + description:Character 1 - Max Agility + code:7E1050:63+7E1055:63 + cheat + description:Character 1 - Max Strength + code:7E104F:63+7E1054:63 + cheat + description:Character 1 - Max Vitality + code:7E1051:63+7E1056:63 + cheat + description:Character 1 - Max Will + code:7E1053:63+7E1058:63 + cheat + description:Character 1 - Max Wisdom + code:7E1052:63+7E1057:63 + cheat + description:Character 2 - Max HP + code:7E10C7:0F+7E10C8:27+7E10C9:0F+7E10CA:27 + cheat + description:Character 2 - Max MP + code:7E10CB:0F+7E10CC:27+7E10CD:0F+7E10CE:27 + cheat + description:Character 2 - Max Agility + code:7E10D0:63+7E10D5:63 + cheat + description:Character 2 - Max Strength + code:7E10CF:63+7E10D4:63 + cheat + description:Character 2 - Max Vitality + code:7E10D1:63+7E10D6:63 + cheat + description:Character 2 - Max Will + code:7E10D3:63+7E10D8:63 + cheat + description:Character 2 - Max Wisdom + code:7E10D2:63+7E10D7:63 + cheat + description:Character 3 - Max HP + code:7E1007:0F+7E1008:27+7E1009:0F+7E100A:27 + cheat + description:Character 3 - Max MP + code:7E100B:0F+7E100C:27+7E100D:0F+7E100E:27 + cheat + description:Character 3 - Max Agility + code:7E1010:63+7E1015:63 + cheat + description:Character 3 - Max Strength + code:7E100F:63+7E1014:63 + cheat + description:Character 3 - Max Vitality + code:7E1011:63+7E1016:63 + cheat + description:Character 3 - Max Will + code:7E1013:63+7E1018:63 + cheat + description:Character 3 - Max Wisdom + code:7E1012:63+7E1017:63 + cheat + description:Character 4 - Max HP + code:7E1107:0F+7E1108:27+7E1109:0F+7E110A:27 + cheat + description:Character 4 - Max MP + code:7E110B:0F+7E110C:27+7E110D:0F+7E110E:27 + cheat + description:Character 4 - Max Agility + code:7E1110:63+7E1115:63 + cheat + description:Character 4 - Max Strength + code:7E110F:63+7E1114:63 + cheat + description:Character 4 - Max Vitality + code:7E1111:63+7E1116:63 + cheat + description:Character 4 - Max Will + code:7E1113:63+7E1118:63 + cheat + description:Character 4 - Max Wisdom + code:7E1112:63+7E1117:63 + cheat + description:Character 5 - Max HP + code:7E1087:0F+7E1088:27+7E1089:0F+7E108A:27 + cheat + description:Character 5 - Max MP + code:7E108B:0F+7E108C:27+7E108D:0F+7E108E:27 + cheat + description:Character 5 - Max Agility + code:7E1090:63+7E1095:63 + cheat + description:Character 5 - Max Strength + code:7E108F:63+7E1094:63 + cheat + description:Character 5 - Max Vitality + code:7E1091:63+7E1096:63 + cheat + description:Character 5 - Max Will + code:7E1093:63+7E1098:63 + cheat + description:Character 5 - Max Wisdom + code:7E1092:63+7E1097:63 + cheat + description:Have 99 of slot 1 + code:7E1441:63 + cheat + description:Have 99 of slot 2 + code:7E1443:63 + cheat + description:Have 99 of slot 3 + code:7E1445:63 + cheat + description:Have 99 of slot 4 + code:7E1447:63 + cheat + description:Have 99 of slot 5 + code:7E1449:63 + cheat + description:Have 99 of slot 6 + code:7E144B:63 + cheat + description:Have 99 of slot 7 + code:7E144D:63 + cheat + description:Have 99 of slot 8 + code:7E144F:63 + cheat + description:Have 99 of slot 9 + code:7E1451:63 + cheat + description:Have 99 of slot 10 + code:7E1453:63 + cheat + description:Have Cure3 in slot 1 + code:7E1440:D0 + cheat + description:Have Cure3 in slot 2 + code:7E1442:D0 + cheat + description:Have Ether2 in slot 3 + code:7E1444:D2 + cheat + description:Have Elixer in slot 4 + code:7E1446:D3 + cheat + description:Have Life in slot 5 + code:7E1448:D4 + cheat + description:Have Cabin in slot 6 + code:7E144A:E3 + cheat + description:Have Spoon in slot 7 + code:7E144C:3E + cheat + description:Have Adamant Armor in slot 8 + code:7E144E:9A + +cartridge sha256:10eccc5d2fab81346dd759f6be478dcb682eef981e8d3d662da176e1f9a996bc + name:Final Fantasy III (USA) (Rev 1) + cheat + description:Party has almost max HP and MP + code:EEDB-EDA8 + cheat + description:Activate Terra's Morph command + code:DAF2-9A58 + cheat + description:Infinite Morph time out of battle + code:EEFE-F288 + cheat + description:Infinite Morph time in battle + code:EE77-2A58 + cheat + description:All items in shops are free (disable to sell items) + code:108C-EF03+108C-E4A3 + cheat + description:Infinite item use + code:3CB8-5DAE + cheat + description:Infinite item use (alt) + code:3CBC-576E + cheat + description:Protect from all status ailments + code:3513-5147+E613-5117 + cheat + description:Learn all spells after one battle + code:8D17-54A6 + cheat + description:Earn 65,000+ exp points after each battle + code:0793-54D8 + cheat + description:Earn tons of EXP after a battle (level 99 takes two battles) + code:0493-54D8 + cheat + description:Auto cast Float, Regen, Haste, Shell, Safe and Rflect + code:3813-51C7 + cheat + description:Remove curse from Cursed Shield after only 1 battle + code:DD1D-7D66 + cheat + description:Steal command always gets the more rare item an enemy has + code:DD72-57AC + cheat + description:Mog never stumbles when he dances + code:DDFC-ED0B + cheat + description:Party has Sprint Shoes and Moogle Charm effect + code:AADC-EF08 + cheat + description:Party has Sprint Shoes and Moogle Charm effect (alt) + code:AADC-EDA8 + cheat + description:Party has Offering effect + code:FC47-570C+3C47-576C + cheat + description:Party has Merit Award effect + code:DDB9-746E + cheat + description:Party has Economizer effect + code:DD97-5FDA+DD90-EFDB + cheat + description:Offering gives character instant kill attacks + code:7EF4-8F0B + cheat + description:Enable all characters (once you are able to switch) + code:EEF2-BE88+EEF2-BEE8 + cheat + description:Have 94 of all items when arrange is used + code:CB48-8462+6C48-87D2+CE44-E7A2+2347-ED62 + cheat + description:Have all Blitz's + code:EEF4-9378 + cheat + description:Have all Dance's + code:EEF0-9E78 + cheat + description:Have all Lore's + code:EEF4-9358+EEF4-9388+EEF4-93E8 + cheat + description:Have all SwdTech's + code:EEFE-F2E8 + cheat + description:Have all Espers + code:EEF1-B35C+EEF1-B38C+EEF1-B3EC+EEF1-BE7C + cheat + description:Enemy 1 has 0 HP + code:DD7E-2E7C+DD7E-2E5C + cheat + description:Enemy 2 has 0 HP + code:DD7E-2E8C+DD7E-2EEC + cheat + description:Enemy 3 has 0 HP + code:DD7D-FA78+DD7D-FA58 + cheat + description:Enemy 4 has 0 HP + code:DD7D-FA88+DD7D-FAE8 + cheat + description:Enemy 5 has 0 HP + code:DD7D-F278+DD7D-F258 + cheat + description:Enemy 6 has 0 HP + code:DD7D-F288+DD7D-F2E8 + cheat + description:Faster up/down movement on world map + code:4DFB-EB88+3DF3-E6E8 + cheat + description:Faster left/right movement on world map + code:4DFE-8C88+3DF0-EC78 + cheat + description:Save anywhere + code:6DDD-BA56 + cheat + description:Start Terra with Man-eater equipped + code:D15C-78E5 + cheat + description:Start Terra with Excalibur equipped + code:F65C-78E5 + cheat + description:Start Terra with Illumina equipped + code:FC5C-78E5 + cheat + description:Start Terra with Atma equipped + code:FA5C-78E5 + cheat + description:Start Terra with Tempest equipped + code:435C-78E5 + cheat + description:Start Terra with Blizzard equipped + code:D35C-78E5 + cheat + description:Start Terra with Enhancer equipped + code:F75C-78E5 + cheat + description:Start Terra with Mithril shield equipped + code:9A58-7675 + cheat + description:Start Terra with Gold shield equipped + code:9258-7675 + cheat + description:Start Terra with Ice shield equipped + code:1F58-7675 + cheat + description:Start Terra with Fire shield equipped + code:1D58-7675 + cheat + description:Start Terra with Hairband equipped + code:1C58-7655 + cheat + description:Start Terra with Leather hat equipped + code:1B58-7655 + cheat + description:Start Terra with Circlet equipped + code:5C58-7655 + cheat + description:Start Terra with Mystery veil equipped + code:5B58-7655 + cheat + description:Start Terra with Red cap equipped + code:5658-7655 + cheat + description:Start Terra with Silk robe equipped + code:6658-7685 + cheat + description:Start Terra with Mithril vest equipped + code:6B58-7685 + cheat + description:Start Terra with White dress equipped + code:6858-7685 + cheat + description:Start Terra with Genji armor equipped + code:BC58-7685 + cheat + description:Start Terra with Force armor equipped + code:B058-7685 + cheat + description:Party has Sprint Shoes and Moogle Charm effect (alt 2) + code:7E11DF:22 + cheat + description:Have 99 Sprint Shoes in slot 10 + code:7E1872:E6+7E1972:63 + cheat + description:Enemy 1 has 0 HP (alt) + code:7E3BFC:00+7E3BFD:00 + cheat + description:Enemy 2 has 0 HP (alt) + code:7E3BFE:00+7E3BFF:00 + cheat + description:Enemy 3 has 0 HP (alt) + code:7E3C00:00+7E3C01:00 + cheat + description:Enemy 4 has 0 HP (alt) + code:7E3C02:00+7E3C03:00 + cheat + description:Enemy 5 has 0 HP (alt) + code:7E3C04:00+7E3C05:00 + cheat + description:Enemy 6 has 0 HP (alt) + code:7E3C06:00+7E3C07:00 + cheat + description:Save anywhere (alt) + code:7E0201:80 + cheat + description:Have all Rage's + code:7E1D49:FF+7E1D42:FF+7E1D3B:FF+7E1D3E:FF+7E1D4A:FF+7E1D46:FF+7E1D43:FF+7E1D47:FF+7E1D3C:FF+7E1D32:FF+7E1D48:FF+7E1D4B:FF+7E1D33:FF+7E1D2C:FF+7E1D44:FF+7E1D34:FF+7E1D2D:FF+7E1D3D:FF+7E1D2E:FF+7E1D45:FF+7E1D2F:FF+7E1D30:FF+7E1D31:FF+7E1D35:FF+7E1D36:FF+7E1D37:FF+7E1D3F:FF+7E1D38:FF+7E1D40:FF+7E1D39:FF+7E1D41:FF+7E1D3A:FF + cheat + description:Celes - Level 99 + code:7E16E6:63 + cheat + description:Celes - 9999 HP + code:7E16E7:0F+7E16E8:27 + cheat + description:Celes - 9999 Max HP + code:7E16E9:0F+7E16EA:27 + cheat + description:Celes - 9999 MP + code:7E16EB:0F+7E16EC:27 + cheat + description:Celes - 9999 Max MP + code:7E16ED:0F+7E16EE:27 + cheat + description:Celes - No Ailments + code:7E16F2:00 + cheat + description:Celes - Float always on + code:7E16F3:FF + cheat + description:Celes - 255 Vigor + code:7E16F8:FF + cheat + description:Celes - 255 Speed + code:7E16F9:FF + cheat + description:Celes - 255 Stamina + code:7E16FA:FF + cheat + description:Celes - 255 Magic Power + code:7E16FB:FF + cheat + description:Cyan - Level 99 + code:7E1652:63 + cheat + description:Cyan - 9999 HP + code:7E1653:0F+7E1654:27 + cheat + description:Cyan - 9999 Max HP + code:7E1655:0F+7E1656:27 + cheat + description:Cyan - 9999 MP + code:7E1657:0F+7E1658:27 + cheat + description:Cyan - 9999 Max MP + code:7E1659:0F+7E165A:27 + cheat + description:Cyan - No Ailments + code:7E165E:00 + cheat + description:Cyan - Float always on + code:7E165F:FF + cheat + description:Cyan - 255 Vigor + code:7E1664:FF + cheat + description:Cyan - 255 Speed + code:7E1665:FF + cheat + description:Cyan - 255 Stamina + code:7E1666:FF + cheat + description:Cyan - 255 Magic Power + code:7E1667:FF + cheat + description:Edgar - Level 99 + code:7E169C:63 + cheat + description:Edgar - 9999 HP + code:7E169D:0F+7E169E:27 + cheat + description:Edgar - 9999 Max HP + code:7E169F:0F+7E16A0:27 + cheat + description:Edgar - 9999 MP + code:7E16A1:0F+7E16A2:27 + cheat + description:Edgar - 9999 Max MP + code:7E16A3:0F+7E16A4:27 + cheat + description:Edgar - No Ailments + code:7E16A8:00 + cheat + description:Edgar - Float always on + code:7E16A9:FF + cheat + description:Edgar - 255 Vigor + code:7E16AE:FF + cheat + description:Edgar - 255 Speed + code:7E16AF:FF + cheat + description:Edgar - 255 Stamina + code:7E16B0:FF + cheat + description:Edgar - 255 Magic Power + code:7E16B1:FF + cheat + description:Gau - Level 99 + code:7E179F:63 + cheat + description:Gau - 9999 HP + code:7E17A0:0F+7E17A1:27 + cheat + description:Gau - 9999 Max HP + code:7E17A2:0F+7E17A3:27 + cheat + description:Gau - 9999 MP + code:7E17A4:0F+7E17A5:27 + cheat + description:Gau - 9999 Max MP + code:7E17A6:0F+7E17A7:27 + cheat + description:Gau - No Ailments + code:7E17AB:00 + cheat + description:Gau - Float always on + code:7E17AC:FF + cheat + description:Gau - 255 Vigor + code:7E17B1:FF + cheat + description:Gau - 255 Speed + code:7E17B2:FF + cheat + description:Gau - 255 Stamina + code:7E17B3:FF + cheat + description:Gau - 255 Magic Power + code:7E17B4:FF + cheat + description:Gogo - Level 99 + code:7E17C4:63 + cheat + description:Gogo - 9999 HP + code:7E17C5:0F+7E17C6:27 + cheat + description:Gogo - 9999 Max HP + code:7E17C7:0F+7E17C8:27 + cheat + description:Gogo - 9999 MP + code:7E17C9:0F+7E17CA:27 + cheat + description:Gogo - 9999 Max MP + code:7E17CB:0F+7E17CC:27 + cheat + description:Gogo - No Ailments + code:7E17D0:00 + cheat + description:Gogo - Float always on + code:7E17D1:FF + cheat + description:Gogo - 255 Vigor + code:7E17D6:FF + cheat + description:Gogo - 255 Speed + code:7E17D7:FF + cheat + description:Gogo - 255 Stamina + code:7E17D8:FF + cheat + description:Gogo - 255 Magic Power + code:7E17D9:FF + cheat + description:Locke - Level 99 + code:7E162D:63 + cheat + description:Locke - 9999 HP + code:7E162E:0F+7E162F:27 + cheat + description:Locke - 9999 Max HP + code:7E1630:0F+7E1631:27 + cheat + description:Locke - 9999 MP + code:7E1632:0F+7E1633:27 + cheat + description:Locke - 9999 Max MP + code:7E1634:0F+7E1635:27 + cheat + description:Locke - No Ailments + code:7E1639:00 + cheat + description:Locke - Float always on + code:7E163A:FF + cheat + description:Locke - 255 Vigor + code:7E163F:FF + cheat + description:Locke - 255 Speed + code:7E1640:FF + cheat + description:Locke - 255 Stamina + code:7E1641:FF + cheat + description:Locke - 255 Magic Power + code:7E1642:FF + cheat + description:Mog - Level 99 + code:7E177A:63 + cheat + description:Mog - 9999 HP + code:7E177B:0F+7E177C:27 + cheat + description:Mog - 9999 Max HP + code:7E177D:0F+7E177E:27 + cheat + description:Mog - 9999 MP + code:7E177F:0F+7E1780:27 + cheat + description:Mog - 9999 Max MP + code:7E1781:0F+7E1782:27 + cheat + description:Mog - No Ailments + code:7E1786:00 + cheat + description:Mog - Float always on + code:7E1787:FF + cheat + description:Mog - 255 Vigor + code:7E178C:FF + cheat + description:Mog - 255 Speed + code:7E178D:FF + cheat + description:Mog - 255 Stamina + code:7E178E:FF + cheat + description:Mog - 255 Magic Power + code:7E178F:FF + cheat + description:Relm - Level 99 + code:7E1730:63 + cheat + description:Relm - 9999 HP + code:7E1731:0F+7E1732:27 + cheat + description:Relm - 9999 Max HP + code:7E1733:0F+7E1734:27 + cheat + description:Relm - 9999 MP + code:7E1735:0F+7E1736:27 + cheat + description:Relm - 9999 Max MP + code:7E1737:0F+7E1738:27 + cheat + description:Relm - No Ailments + code:7E173C:00 + cheat + description:Relm - Float always on + code:7E173D:FF + cheat + description:Relm - 255 Vigor + code:7E1742:FF + cheat + description:Relm - 255 Speed + code:7E1743:FF + cheat + description:Relm - 255 Stamina + code:7E1744:FF + cheat + description:Relm - 255 Magic Power + code:7E1745:FF + cheat + description:Sabin - Level 99 + code:7E16C1:63 + cheat + description:Sabin - 9999 HP + code:7E16C2:0F+7E16C3:27 + cheat + description:Sabin - 9999 Max HP + code:7E16C4:0F+7E16C5:27 + cheat + description:Sabin - 9999 MP + code:7E16C6:0F+7E16C7:27 + cheat + description:Sabin - 9999 Max MP + code:7E16C8:0F+7E16C9:27 + cheat + description:Sabin - No Ailments + code:7E16CD:00 + cheat + description:Sabin - Float always on + code:7E16CE:FF + cheat + description:Sabin - 255 Vigor + code:7E16D3:FF + cheat + description:Sabin - 255 Speed + code:7E16D4:FF + cheat + description:Sabin - 255 Stamina + code:7E16D5:FF + cheat + description:Sabin - 255 Magic Power + code:7E16D6:FF + cheat + description:Setzer - Level 99 + code:7E1755:63 + cheat + description:Setzer - 9999 HP + code:7E1756:0F+7E1757:27 + cheat + description:Setzer - 9999 Max HP + code:7E1758:0F+7E1759:27 + cheat + description:Setzer - 9999 MP + code:7E175A:0F+7E175B:27 + cheat + description:Setzer - 9999 Max MP + code:7E175C:0F+7E175D:27 + cheat + description:Setzer - No Ailments + code:7E1761:00 + cheat + description:Setzer - Float always on + code:7E1762:FF + cheat + description:Setzer - 255 Vigor + code:7E1767:FF + cheat + description:Setzer - 255 Speed + code:7E1768:FF + cheat + description:Setzer - 255 Stamina + code:7E1769:FF + cheat + description:Setzer - 255 Magic Power + code:7E176A:FF + cheat + description:Shadow - Level 99 + code:7E1677:63 + cheat + description:Shadow - 9999 HP + code:7E1678:0F+7E1679:27 + cheat + description:Shadow - 9999 Max HP + code:7E167A:0F+7E167B:27 + cheat + description:Shadow - 9999 MP + code:7E167C:0F+7E167D:27 + cheat + description:Shadow - 9999 Max MP + code:7E167E:0F+7E167F:27 + cheat + description:Shadow - No Ailments + code:7E1683:00 + cheat + description:Shadow - Float always on + code:7E1684:FF + cheat + description:Shadow - 255 Vigor + code:7E1689:FF + cheat + description:Shadow - 255 Speed + code:7E168A:FF + cheat + description:Shadow - 255 Stamina + code:7E168B:FF + cheat + description:Shadow - 255 Magic Power + code:7E168C:FF + cheat + description:Strago - Level 99 + code:7E170B:63 + cheat + description:Strago - 9999 HP + code:7E170C:0F+7E170D:27 + cheat + description:Strago - 9999 Max HP + code:7E170E:0F+7E170F:27 + cheat + description:Strago - 9999 MP + code:7E1710:0F+7E1711:27 + cheat + description:Strago - 9999 Max MP + code:7E1712:0F+7E1713:27 + cheat + description:Strago - No Ailments + code:7E1717:00 + cheat + description:Strago - Float always on + code:7E1718:FF + cheat + description:Strago - 255 Vigor + code:7E171D:FF + cheat + description:Strago - 255 Speed + code:7E171E:FF + cheat + description:Strago - 255 Stamina + code:7E171F:FF + cheat + description:Strago - 255 Magic Power + code:7E1720:FF + cheat + description:Terra - Level 99 + code:7E1608:63 + cheat + description:Terra - 9999 HP + code:7E1609:0F+7E160A:27 + cheat + description:Terra - 9999 Max HP + code:7E160B:0F+7E160C:27 + cheat + description:Terra - 9999 MP + code:7E160D:0F+7E160E:27 + cheat + description:Terra - 9999 Max MP + code:7E160F:0F+7E1610:27 + cheat + description:Terra - No ailments + code:7E1614:00 + cheat + description:Terra - Float always on + code:7E1615:FF + cheat + description:Terra - 255 Vigor + code:7E161A:FF + cheat + description:Terra - 255 Speed + code:7E161B:FF + cheat + description:Terra - 255 Stamina + code:7E161C:FF + cheat + description:Terra - 255 Magic Power + code:7E161D:FF + cheat + description:Umaro - Level 99 + code:7E17E9:63 + cheat + description:Umaro - 9999 HP + code:7E17EA:0F+7E17EB:27 + cheat + description:Umaro - 9999 Max HP + code:7E17EC:0F+7E17ED:27 + cheat + description:Umaro - 9999 MP + code:7E17EE:0F+7E17EF:27 + cheat + description:Umaro - 9999 Max MP + code:7E17F0:0F+7E17F1:27 + cheat + description:Umaro - No Ailments + code:7E17F5:00 + cheat + description:Umaro - Float always on + code:7E17F6:FF + cheat + description:Umaro - 255 Vigor + code:7E17FB:FF + cheat + description:Umaro - 255 Speed + code:7E17FC:FF + cheat + description:Umaro - 255 Stamina + code:7E17FD:FF + cheat + description:Umaro - 255 Magic Power + code:7E17FE:FF + +cartridge sha256:0f51b4fca41b7fd509e4b8f9d543151f68efa5e97b08493e4b2a0c06f5d8d5e2 + name:Final Fantasy III (USA) + cheat + description:Party has almost max HP and MP + code:EEDB-EDA8 + cheat + description:Activate Terra's Morph command + code:DAF2-9A58 + cheat + description:Infinite Morph time out of battle + code:EEFE-F288 + cheat + description:Infinite Morph time in battle + code:EE77-2A58 + cheat + description:All items in shops are free (disable to sell items) + code:108C-EF03+108C-E4A3 + cheat + description:Infinite item use + code:3CB8-5DAE + cheat + description:Protect from all status ailments + code:3513-5147+E613-5117 + cheat + description:Learn all spells after one battle + code:8D17-54A6 + cheat + description:Earn 65,000+ exp points after each battle + code:0793-54D8 + cheat + description:Earn tons of EXP after a battle (level 99 takes two battles) + code:0493-54D8 + cheat + description:Auto Cast Float, Regen, Haste, Shell, Safe and Rflect + code:3813-51C7 + cheat + description:Vigor/Speed/Stamina/MagPwr becomes 255 + code:D762-EF68 + cheat + description:Remove curse from Cursed Shield after only 1 battle + code:DD1D-7D66 + cheat + description:Steal command always gets the more rare item an enemy has + code:DD72-57AC + cheat + description:Mog never stumbles when he dances + code:DDFC-ED0B + cheat + description:Party has Sprint Shoes and Moogle Charm effect + code:44F2-9EE6 + cheat + description:Party has Offering effect + code:FC47-570C+3C47-576C + cheat + description:Party has Merit Award effect + code:DDB9-746E + cheat + description:Party has Economizer effect + code:DD97-5FDA+DD90-EFDB + cheat + description:Offering gives character instant kill attacks + code:7EF4-8F0B + cheat + description:Enemy 1 has 0 HP + code:DD7E-2E7C+DD7E-2E5C + cheat + description:Enemy 2 has 0 HP + code:DD7E-2E8C+DD7E-2EEC + cheat + description:Enemy 3 has 0 HP + code:DD7D-FA78+DD7D-FA58 + cheat + description:Enemy 4 has 0 HP + code:DD7D-FA88+DD7D-FAE8 + cheat + description:Enemy 5 has 0 HP + code:DD7D-F278+DD7D-F258 + cheat + description:Enemy 6 has 0 HP + code:DD7D-F288+DD7D-F2E8 + cheat + description:Have 94 of all items when arrange is used + code:CB48-8462+6C48-87D2+CE44-E7A2+2347-ED62 + cheat + description:Have all Blitz's + code:EEF4-9378 + cheat + description:Have all Dance's + code:EEF0-9E78 + cheat + description:Have all Lore's + code:EEF4-9358+EEF4-9388+EEF4-93E8 + cheat + description:Have all SwdTech's + code:EEFE-F2E8 + cheat + description:Have all Espers + code:EEF1-B35C+EEF1-B38C+EEF1-B3EC+EEF1-BE7C + cheat + description:Faster up/down movement on world map + code:4DFB-EB88+3DF3-E6E8 + cheat + description:Faster left/right movement on world map + code:4DFE-8C88+3DF0-EC78 + cheat + description:Enable all characters (once you are able to switch) + code:EEF2-BE88+EEF2-BEE8 + cheat + description:Save anywhere + code:6DDD-BA56 + cheat + description:Start Terra with Man-eater equipped + code:D15C-78E5 + cheat + description:Start Terra with Excalibur equipped + code:F65C-78E5 + cheat + description:Start Terra with Illumina equipped + code:FC5C-78E5 + cheat + description:Start Terra with Atma equipped + code:FA5C-78E5 + cheat + description:Start Terra with Tempest equipped + code:435C-78E5 + cheat + description:Start Terra with Blizzard equipped + code:D35C-78E5 + cheat + description:Start Terra with Enhancer equipped + code:F75C-78E5 + cheat + description:Start Terra with Mithril shield equipped + code:9A58-7675 + cheat + description:Start Terra with Gold shield equipped + code:9258-7675 + cheat + description:Start Terra with Ice shield equipped + code:1F58-7675 + cheat + description:Start Terra with Fire shield equipped + code:1D58-7675 + cheat + description:Start Terra with Hairband equipped + code:1C58-7655 + cheat + description:Start Terra with Leather hat equipped + code:1B58-7655 + cheat + description:Start Terra with Circlet equipped + code:5C58-7655 + cheat + description:Start Terra with Mystery veil equipped + code:5B58-7655 + cheat + description:Start Terra with Red cap equipped + code:5658-7655 + cheat + description:Start Terra with Silk robe equipped + code:6658-7685 + cheat + description:Start Terra with Mithril vest equipped + code:6B58-7685 + cheat + description:Start Terra with White dress equipped + code:6858-7685 + cheat + description:Start Terra with Genji armor equipped + code:BC58-7685 + cheat + description:Start Terra with Force armor equipped + code:B058-7685 + cheat + description:Party has Sprint Shoes and Moogle Charm effect (alt) + code:7E11DF:22 + cheat + description:Have 99 Sprint Shoes in slot 10 + code:7E1872:E6+7E1972:63 + cheat + description:Enemy 1 has 0 HP (alt) + code:7E3BFC:00+7E3BFD:00 + cheat + description:Enemy 2 has 0 HP (alt) + code:7E3BFE:00+7E3BFF:00 + cheat + description:Enemy 3 has 0 HP (alt) + code:7E3C00:00+7E3C01:00 + cheat + description:Enemy 4 has 0 HP (alt) + code:7E3C02:00+7E3C03:00 + cheat + description:Enemy 5 has 0 HP (alt) + code:7E3C04:00+7E3C05:00 + cheat + description:Enemy 6 has 0 HP (alt) + code:7E3C06:00+7E3C07:00 + cheat + description:Have all Rage's + code:7E1D49:FF+7E1D42:FF+7E1D3B:FF+7E1D3E:FF+7E1D4A:FF+7E1D46:FF+7E1D43:FF+7E1D47:FF+7E1D3C:FF+7E1D32:FF+7E1D48:FF+7E1D4B:FF+7E1D33:FF+7E1D2C:FF+7E1D44:FF+7E1D34:FF+7E1D2D:FF+7E1D3D:FF+7E1D2E:FF+7E1D45:FF+7E1D2F:FF+7E1D30:FF+7E1D31:FF+7E1D35:FF+7E1D36:FF+7E1D37:FF+7E1D3F:FF+7E1D38:FF+7E1D40:FF+7E1D39:FF+7E1D41:FF+7E1D3A:FF + cheat + description:Celes - Level 99 + code:7E16E6:63 + cheat + description:Celes - 9999 HP + code:7E16E7:0F+7E16E8:27 + cheat + description:Celes - 9999 Max HP + code:7E16E9:0F+7E16EA:27 + cheat + description:Celes - 9999 MP + code:7E16EB:0F+7E16EC:27 + cheat + description:Celes - 9999 Max MP + code:7E16ED:0F+7E16EE:27 + cheat + description:Celes - No Ailments + code:7E16F2:00 + cheat + description:Celes - Float always on + code:7E16F3:FF + cheat + description:Celes - 255 Vigor + code:7E16F8:FF + cheat + description:Celes - 255 Speed + code:7E16F9:FF + cheat + description:Celes - 255 Stamina + code:7E16FA:FF + cheat + description:Celes - 255 Magic Power + code:7E16FB:FF + cheat + description:Cyan - Level 99 + code:7E1652:63 + cheat + description:Cyan - 9999 HP + code:7E1653:0F+7E1654:27 + cheat + description:Cyan - 9999 Max HP + code:7E1655:0F+7E1656:27 + cheat + description:Cyan - 9999 MP + code:7E1657:0F+7E1658:27 + cheat + description:Cyan - 9999 Max MP + code:7E1659:0F+7E165A:27 + cheat + description:Cyan - No Ailments + code:7E165E:00 + cheat + description:Cyan - Float always on + code:7E165F:FF + cheat + description:Cyan - 255 Vigor + code:7E1664:FF + cheat + description:Cyan - 255 Speed + code:7E1665:FF + cheat + description:Cyan - 255 Stamina + code:7E1666:FF + cheat + description:Cyan - 255 Magic Power + code:7E1667:FF + cheat + description:Edgar - Level 99 + code:7E169C:63 + cheat + description:Edgar - 9999 HP + code:7E169D:0F+7E169E:27 + cheat + description:Edgar - 9999 Max HP + code:7E169F:0F+7E16A0:27 + cheat + description:Edgar - 9999 MP + code:7E16A1:0F+7E16A2:27 + cheat + description:Edgar - 9999 Max MP + code:7E16A3:0F+7E16A4:27 + cheat + description:Edgar - No Ailments + code:7E16A8:00 + cheat + description:Edgar - Float always on + code:7E16A9:FF + cheat + description:Edgar - 255 Vigor + code:7E16AE:FF + cheat + description:Edgar - 255 Speed + code:7E16AF:FF + cheat + description:Edgar - 255 Stamina + code:7E16B0:FF + cheat + description:Edgar - 255 Magic Power + code:7E16B1:FF + cheat + description:Gau - Level 99 + code:7E179F:63 + cheat + description:Gau - 9999 HP + code:7E17A0:0F+7E17A1:27 + cheat + description:Gau - 9999 Max HP + code:7E17A2:0F+7E17A3:27 + cheat + description:Gau - 9999 MP + code:7E17A4:0F+7E17A5:27 + cheat + description:Gau - 9999 Max MP + code:7E17A6:0F+7E17A7:27 + cheat + description:Gau - No Ailments + code:7E17AB:00 + cheat + description:Gau - Float always on + code:7E17AC:FF + cheat + description:Gau - 255 Vigor + code:7E17B1:FF + cheat + description:Gau - 255 Speed + code:7E17B2:FF + cheat + description:Gau - 255 Stamina + code:7E17B3:FF + cheat + description:Gau - 255 Magic Power + code:7E17B4:FF + cheat + description:Gogo - Level 99 + code:7E17C4:63 + cheat + description:Gogo - 9999 HP + code:7E17C5:0F+7E17C6:27 + cheat + description:Gogo - 9999 Max HP + code:7E17C7:0F+7E17C8:27 + cheat + description:Gogo - 9999 MP + code:7E17C9:0F+7E17CA:27 + cheat + description:Gogo - 9999 Max MP + code:7E17CB:0F+7E17CC:27 + cheat + description:Gogo - No Ailments + code:7E17D0:00 + cheat + description:Gogo - Float always on + code:7E17D1:FF + cheat + description:Gogo - 255 Vigor + code:7E17D6:FF + cheat + description:Gogo - 255 Speed + code:7E17D7:FF + cheat + description:Gogo - 255 Stamina + code:7E17D8:FF + cheat + description:Gogo - 255 Magic Power + code:7E17D9:FF + cheat + description:Locke - Level 99 + code:7E162D:63 + cheat + description:Locke - 9999 HP + code:7E162E:0F+7E162F:27 + cheat + description:Locke - 9999 Max HP + code:7E1630:0F+7E1631:27 + cheat + description:Locke - 9999 MP + code:7E1632:0F+7E1633:27 + cheat + description:Locke - 9999 Max MP + code:7E1634:0F+7E1635:27 + cheat + description:Locke - No Ailments + code:7E1639:00 + cheat + description:Locke - Float always on + code:7E163A:FF + cheat + description:Locke - 255 Vigor + code:7E163F:FF + cheat + description:Locke - 255 Speed + code:7E1640:FF + cheat + description:Locke - 255 Stamina + code:7E1641:FF + cheat + description:Locke - 255 Magic Power + code:7E1642:FF + cheat + description:Mog - Level 99 + code:7E177A:63 + cheat + description:Mog - 9999 HP + code:7E177B:0F+7E177C:27 + cheat + description:Mog - 9999 Max HP + code:7E177D:0F+7E177E:27 + cheat + description:Mog - 9999 MP + code:7E177F:0F+7E1780:27 + cheat + description:Mog - 9999 Max MP + code:7E1781:0F+7E1782:27 + cheat + description:Mog - No Ailments + code:7E1786:00 + cheat + description:Mog - Float always on + code:7E1787:FF + cheat + description:Mog - 255 Vigor + code:7E178C:FF + cheat + description:Mog - 255 Speed + code:7E178D:FF + cheat + description:Mog - 255 Stamina + code:7E178E:FF + cheat + description:Mog - 255 Magic Power + code:7E178F:FF + cheat + description:Relm - Level 99 + code:7E1730:63 + cheat + description:Relm - 9999 HP + code:7E1731:0F+7E1732:27 + cheat + description:Relm - 9999 Max HP + code:7E1733:0F+7E1734:27 + cheat + description:Relm - 9999 MP + code:7E1735:0F+7E1736:27 + cheat + description:Relm - 9999 Max MP + code:7E1737:0F+7E1738:27 + cheat + description:Relm - No Ailments + code:7E173C:00 + cheat + description:Relm - Float always on + code:7E173D:FF + cheat + description:Relm - 255 Vigor + code:7E1742:FF + cheat + description:Relm - 255 Speed + code:7E1743:FF + cheat + description:Relm - 255 Stamina + code:7E1744:FF + cheat + description:Relm - 255 Magic Power + code:7E1745:FF + cheat + description:Sabin - Level 99 + code:7E16C1:63 + cheat + description:Sabin - 9999 HP + code:7E16C2:0F+7E16C3:27 + cheat + description:Sabin - 9999 Max HP + code:7E16C4:0F+7E16C5:27 + cheat + description:Sabin - 9999 MP + code:7E16C6:0F+7E16C7:27 + cheat + description:Sabin - 9999 Max MP + code:7E16C8:0F+7E16C9:27 + cheat + description:Sabin - No Ailments + code:7E16CD:00 + cheat + description:Sabin - Float always on + code:7E16CE:FF + cheat + description:Sabin - 255 Vigor + code:7E16D3:FF + cheat + description:Sabin - 255 Speed + code:7E16D4:FF + cheat + description:Sabin - 255 Stamina + code:7E16D5:FF + cheat + description:Sabin - 255 Magic Power + code:7E16D6:FF + cheat + description:Setzer - Level 99 + code:7E1755:63 + cheat + description:Setzer - 9999 HP + code:7E1756:0F+7E1757:27 + cheat + description:Setzer - 9999 Max HP + code:7E1758:0F+7E1759:27 + cheat + description:Setzer - 9999 MP + code:7E175A:0F+7E175B:27 + cheat + description:Setzer - 9999 Max MP + code:7E175C:0F+7E175D:27 + cheat + description:Setzer - No Ailments + code:7E1761:00 + cheat + description:Setzer - Float always on + code:7E1762:FF + cheat + description:Setzer - 255 Vigor + code:7E1767:FF + cheat + description:Setzer - 255 Speed + code:7E1768:FF + cheat + description:Setzer - 255 Stamina + code:7E1769:FF + cheat + description:Setzer - 255 Magic Power + code:7E176A:FF + cheat + description:Shadow - Level 99 + code:7E1677:63 + cheat + description:Shadow - 9999 HP + code:7E1678:0F+7E1679:27 + cheat + description:Shadow - 9999 Max HP + code:7E167A:0F+7E167B:27 + cheat + description:Shadow - 9999 MP + code:7E167C:0F+7E167D:27 + cheat + description:Shadow - 9999 Max MP + code:7E167E:0F+7E167F:27 + cheat + description:Shadow - No Ailments + code:7E1683:00 + cheat + description:Shadow - Float always on + code:7E1684:FF + cheat + description:Shadow - 255 Vigor + code:7E1689:FF + cheat + description:Shadow - 255 Speed + code:7E168A:FF + cheat + description:Shadow - 255 Stamina + code:7E168B:FF + cheat + description:Shadow - 255 Magic Power + code:7E168C:FF + cheat + description:Strago - Level 99 + code:7E170B:63 + cheat + description:Strago - 9999 HP + code:7E170C:0F+7E170D:27 + cheat + description:Strago - 9999 Max HP + code:7E170E:0F+7E170F:27 + cheat + description:Strago - 9999 MP + code:7E1710:0F+7E1711:27 + cheat + description:Strago - 9999 Max MP + code:7E1712:0F+7E1713:27 + cheat + description:Strago - No Ailments + code:7E1717:00 + cheat + description:Strago - Float always on + code:7E1718:FF + cheat + description:Strago - 255 Vigor + code:7E171D:FF + cheat + description:Strago - 255 Speed + code:7E171E:FF + cheat + description:Strago - 255 Stamina + code:7E171F:FF + cheat + description:Strago - 255 Magic Power + code:7E1720:FF + cheat + description:Terra - Level 99 + code:7E1608:63 + cheat + description:Terra - 9999 HP + code:7E1609:0F+7E160A:27 + cheat + description:Terra - 9999 Max HP + code:7E160B:0F+7E160C:27 + cheat + description:Terra - 9999 MP + code:7E160D:0F+7E160E:27 + cheat + description:Terra - 9999 Max MP + code:7E160F:0F+7E1610:27 + cheat + description:Terra - No ailments + code:7E1614:00 + cheat + description:Terra - Float always on + code:7E1615:FF + cheat + description:Terra - 255 Vigor + code:7E161A:FF + cheat + description:Terra - 255 Speed + code:7E161B:FF + cheat + description:Terra - 255 Stamina + code:7E161C:FF + cheat + description:Terra - 255 Magic Power + code:7E161D:FF + cheat + description:Umaro - Level 99 + code:7E17E9:63 + cheat + description:Umaro - 9999 HP + code:7E17EA:0F+7E17EB:27 + cheat + description:Umaro - 9999 Max HP + code:7E17EC:0F+7E17ED:27 + cheat + description:Umaro - 9999 MP + code:7E17EE:0F+7E17EF:27 + cheat + description:Umaro - 9999 Max MP + code:7E17F0:0F+7E17F1:27 + cheat + description:Umaro - No Ailments + code:7E17F5:00 + cheat + description:Umaro - Float always on + code:7E17F6:FF + cheat + description:Umaro - 255 Vigor + code:7E17FB:FF + cheat + description:Umaro - 255 Speed + code:7E17FC:FF + cheat + description:Umaro - 255 Stamina + code:7E17FD:FF + cheat + description:Umaro - 255 Magic Power + code:7E17FE:FF + +cartridge sha256:60cca2592d0756b8c4c7a0a254fafa5ac47aa752521fd1f77dcbf4b6ee1bee90 + name:Final Fight (USA) + cheat + description:Invincibility + code:2DCD-AF6B + cheat + description:Infinite health + code:89A1-0DA1+C9C4-AD6C + cheat + description:Infinite health (alt) + code:9DDF-9278 + cheat + description:Infinite lives + code:A9C3-6F66+D433-0D6F + cheat + description:Infinite lives (alt) + code:CE33-076F + cheat + description:Infinite time + code:A2C0-A7D0 + cheat + description:Hit anywhere + code:3CA4-0FD0+40AD-04A0+7DA4-0F00+89A4-0D60+F9A4-0DA0 + cheat + description:Slower timer + code:D4C9-AFD0 + cheat + description:Faster timer + code:DDC9-AFD0 + cheat + description:Any food restores all health + code:DD8D-6F06 + cheat + description:Attack speed greatly increased + code:DFDF-9E88 + cheat + description:Start with 2 credits + code:DFC8-D4A1 + cheat + description:Start with 6 credits + code:D9C8-D4A1 + cheat + description:Start with 10 credits + code:DBC8-D4A1 + cheat + description:Start on stage 2 - Subway + code:DFEE-2E88 + cheat + description:Start on stage 3 - West Side + code:D4EE-2E88 + cheat + description:Start on stage 4 - Bay Area + code:D0EE-2E88 + cheat + description:Start on stage 5 - Uptown + code:D9EE-2E88 + cheat + description:Start on bonus stage - Car + code:D1EE-2E88 + cheat + description:Start on bonus stage - Glass + code:D5EE-2E88 + cheat + description:Enemies never get knocked down, attack until they die + code:7E0D70:00 + cheat + description:Enemy 1 has no health + code:7E1014:00 + cheat + description:Enemy 2 has no health + code:7E10B4:00 + cheat + description:Enemy 3 has no health + code:7E1154:00 + cheat + description:Bosses have no health + code:7E11F4:00+7E11F5:00 + cheat + description:Always get Knife + code:7E1C11:00 + cheat + description:Always get Sword + code:7E1C11:02 + cheat + description:Always get Pipe + code:7E1C11:04 + +cartridge sha256:744d1a16c3f99970283597ae8f43b7c3621c5f995c4566ef24b8d70b0692007b + name:Final Fight 2 (USA) + cheat + description:Invincibility + code:2D65-3706 + cheat + description:Infinite health + code:C9E1-446F+C9C8-CFDB + cheat + description:Infinite lives + code:C9CE-1DAB + cheat + description:Infinite lives (alt) + code:DDCE-1D6B + cheat + description:Infinite time + code:C2A0-1F0C + cheat + description:Infinite time (alt) + code:DDA0-1DDC + cheat + description:One hit kills + code:CBE8-47AF+EEEA-4DDF + cheat + description:Hit anywhere - both players + code:4062-1DA6+4062-14D6+406C-1DA6 + cheat + description:Faster timer + code:D4A0-1DDC + cheat + description:Barbecue restores vitality 50% instead of 95% + code:0DED-1DAC + cheat + description:Barbecue worth nothing + code:DDED-1DAC + cheat + description:Soft drink restores vitality 95% + code:6DEE-470C + cheat + description:Soft drink worth nothing + code:DDEE-470C + cheat + description:Both players can select same character + code:33C5-1404 + cheat + description:P1 and P2 can't harm each other in a 2P game + code:DDB4-4708 + cheat + description:Slow motion (disable until play begins) + code:D46A-14AF + cheat + description:Hitting someone with your super move makes you invincible + code:DFCC-C4DB + cheat + description:Hitting someone with your super move uses all your health + code:0DCC-C4DB + cheat + description:Start with 1 life + code:DDCF-C7D6 + cheat + description:Start with 3 lives + code:D4CF-C7D6 + cheat + description:Start with 7 lives + code:D1CF-C7D6 + cheat + description:Start with 10 lives + code:DBCF-C7D6 + +cartridge sha256:f9dac709b2c2859f828103a0dd980716817e2bde3b9d7e2fdea36e9bb9bed7f2 + name:Final Fight 3 (USA) + cheat + description:Infinite time + code:C2F9-84DF + cheat + description:Instant super energy + code:CBB5-5D07+46B5-5D67+DDB5-5DA7+4BB5-5F07 + cheat + description:Infinite lives + code:3C6C-84AF + cheat + description:Hit anywhere - both players + code:3DA7-E76D+D5A0-EDDD+DDA7-E7AD + cheat + description:Invincibility (blinking) - P1 + code:7E0520:02 + cheat + description:Invincibility (blinking) - P2 + code:7E0620:02 + cheat + description:Infinite health - P1 + code:7E0558:47 + cheat + description:Infinite health - P2 + code:7E0658:47 + cheat + description:Infinite lives - P1 + code:7E0515:05 + cheat + description:Infinite lives - P2 + code:7E0615:05 + cheat + description:Infinite super energy - P1 + code:7E0516:63 + cheat + description:Infinite super energy - P2 + code:7E0616:63 + cheat + description:Infinite throw time - P1 + code:7E0580:10 + cheat + description:Infinite throw time - P2 + code:7E0680:10 + cheat + description:Have the Pipe - P1 + code:7E0514:01 + cheat + description:Have the Pipe - P2 + code:7E0614:01 + cheat + description:Have the Nunchaku - P1 + code:7E0514:02 + cheat + description:Have the Nunchaku - P2 + code:7E0614:02 + cheat + description:Have the Club - P1 + code:7E0514:03 + cheat + description:Have the Club - P2 + code:7E0614:03 + cheat + description:Have the Hammer - P1 + code:7E0514:04 + cheat + description:Have the Hammer - P2 + code:7E0614:04 + +cartridge sha256:8c47f9dc79748c0ae6c648f8480614d22eaefade065612ad1fe749fc3db4d1bc + name:Final Fight Guy (USA) + cheat + description:Infinite health + code:89AF-0401 + cheat + description:Infinite health (alt) + code:9DDF-9278 + cheat + description:Infinite time + code:1DC3-6409 + cheat + description:Infinite time (alt) + code:DBD8-FE78 + cheat + description:Hit anywhere + code:40A3-DD00+40AA-DFA0 + cheat + description:Gain 9 lives every time you die + code:DDC0-ADA6 + cheat + description:No energy lost from spin kick + code:89CB-AD0C + cheat + description:Attack speed greatly increased + code:DFDF-9E88 + cheat + description:Any food restores all health + code:DDBD-6F06 + cheat + description:Enemies never get knocked down, hit them until they die + code:7E0D70:00 + cheat + description:Enemy 1 has no health + code:7E1014:00 + cheat + description:Enemy 2 has no health + code:7E10B4:00 + cheat + description:Enemy 3 has no health + code:7E1154:00 + cheat + description:Bosses have no health + code:7E11F4:00+7E11F5:00 + cheat + description:Always get Knife + code:7E1C11:00 + cheat + description:Always get Sword + code:7E1C11:02 + cheat + description:Always get Pipe + code:7E1C11:04 + cheat + description:Start on stage 2 - Subway + code:7EFFFE:01 + cheat + description:Start on stage 3 - West Side + code:7EFFFE:02 + cheat + description:Start on stage 4 - Bay Area + code:7EFFFE:04 + cheat + description:Start on stage 5 - Uptown + code:7EFFFE:05 + cheat + description:Start on bonus stage - Car + code:7EFFFE:06 + cheat + description:Start on bonus stage - Glass + code:7EFFFE:07 + +cartridge sha256:6f32355bef68d4ad58822f50074b46bcc9a68357cd2c6a5470c96bf5344f84d8 + name:FireStriker (USA) + cheat + description:Infinite health + code:7E1333:07 + cheat + description:Infinite Power + code:7E1335:03 + cheat + description:Infinite Rest + code:7E152D:03 + +cartridge sha256:a0106f9cff7abbf25e081e2531f6d4b4aedf6f0dc8d155a66506817bff267d12 + name:Firemen, The (Europe) (En,Fr,De) + cheat + description:Infinite life + code:7E15C7:31 + cheat + description:Infinite time + code:7E1980:09 + cheat + description:Infinite Water Bombs + code:7E091A:03 + +cartridge sha256:003dba0193acc5336840307194643ca3b1f848dcfc77580b4e17c605105b27f5 + name:Firepower 2000 (USA) + cheat + description:Infinite lives + code:8263-4DDF + cheat + description:Loss of vehicle does not reduce bullet strength + code:8267-170F + cheat + description:Loss of vehicle does not reduce flame strength + code:826E-470F + cheat + description:Loss of vehicle does not reduce plasma strength + code:826D-170F + cheat + description:Loss of vehicle does not reduce laser strength + code:826F-170F + cheat + description:Loss of vehicle does not reduce ionic strength + code:8264-170F + cheat + description:Bubble shield lasts for 4 seconds instead of 12 + code:DF8B-CD07 + cheat + description:Bubble shield lasts for 8 seconds + code:D48B-CD07 + cheat + description:Bubble shield lasts for 16 seconds + code:D08B-CD07 + cheat + description:Bubble shield lasts for 32 seconds + code:D68B-CD07 + cheat + description:Bubble shield lasts for 64 seconds + code:FD8B-CD07 + cheat + description:Bubble shield on jeep lasts until end of level + code:C2CB-3FD4 + cheat + description:Bubble shield on helicopter lasts until end of level + code:C2CF-1464 + cheat + description:Start with bullet strength at 3 instead of 1 + code:D765-146F + cheat + description:Start with bullet strength at 6 + code:D165-146F + cheat + description:Start with flame strength at 3 instead of 1 + code:D761-14DF + cheat + description:Start with flame strength at 6 + code:D161-14DF + cheat + description:Start with flame strength at 0 + code:DD61-14DF + cheat + description:Start with plasma strength at 3 instead of 1 + code:D761-176F + cheat + description:Start with plasma strength at 6 + code:D161-176F + cheat + description:Start with plasma strength at 0 + code:DD61-176F + cheat + description:Start with laser strength at 1 instead of 0 + code:DF65-1FDF + cheat + description:Start with laser strength at 3 + code:D765-1FDF + cheat + description:Start with laser strength at 6 + code:D165-1FDF + cheat + description:Start with ionic strength at 1 instead of 0 + code:DF66-1DDF + cheat + description:Start with ionic strength at 3 + code:D766-1DDF + cheat + description:Start with ionic strength at 6 + code:D166-1DDF + cheat + description:Start with 1 life instead of 4 + code:DF69-1DAF + cheat + description:Start with 2 lives + code:D469-1DAF + cheat + description:Start with 3 lives + code:D769-1DAF + cheat + description:Start with 5 lives + code:D969-1DAF + cheat + description:Start with 7 lives + code:D569-1DAF + cheat + description:Start with 10 lives + code:DC69-1DAF + cheat + description:Start with 15 lives + code:DE69-1DAF + cheat + description:Start with 25 lives + code:FB69-1DAF + cheat + description:Start with 50 lives + code:7469-1DAF + cheat + description:Start with 75 lives + code:0869-1DAF + cheat + description:Start with 100 lives + code:1069-1DAF + cheat + description:Start at level 2 + code:D4B3-1764 + cheat + description:Start at level 3 + code:D7B3-1764 + cheat + description:Start at level 4 + code:D0B3-1764 + cheat + description:Start at level 5 + code:D9B3-1764 + cheat + description:Start at level 6 + code:D1B3-1764 + +cartridge sha256:4c1354337efa788169387458fa6bdbcf4be0c98369920af2bd876ad98d29070f + name:First Samurai (USA) + cheat + description:Infinite life and force + code:C9BF-D4D1 + cheat + description:Infinite lives + code:406E-D461 + cheat + description:Infinite Axe, Dagger, Grendade (slot 2 item) + code:C9B6-6700+C9BE-6D00 + cheat + description:Infinite Warp Lanterns + code:C96D-04A5 + cheat + description:Collect items from anywhere + code:4086-0F09 + cheat + description:Hit anywhere Sword/Punch/Kick + code:40B9-AD00 + cheat + description:Hit anywhere Axe/Tri-blades + code:4088-D760 + cheat + description:Hit anywhere Knife/Dual Knives + code:408F-DD60 + cheat + description:Full weapon power for Dagger on pick-up + code:D783-0F09 + cheat + description:Less force picked up from enemies + code:D4C5-AFA5 + cheat + description:More force picked up from enemies + code:D6C5-AFA5 + cheat + description:Lots more power picked up from enemies + code:F9C5-AFA5 + cheat + description:Less life force from food + code:D789-AFA9 + cheat + description:More life force from food + code:FD89-AFA9 + cheat + description:Start with 9 lives + code:DB6A-676F + cheat + description:Start with 2 lives + code:D46A-676F + cheat + description:Infinite life and force (alt) + code:7E006E:3F+7E006F:3F + cheat + description:Infinite lives (alt) + code:7E0072:09 + cheat + description:Infinite Axe, Dagger, Grendade (slot 2 item) (alt) + code:7E0073:99 + cheat + description:Infinite Warp Lanterns (alt) + code:7E0078:05 + cheat + description:Infinite Bells (slot 1 item) + code:7E0074:09 + cheat + description:Have all Rune Stones + code:7E0075:05 + +cartridge sha256:064a880a8dfcf576f74ae8a17c3ec7b0a27e8cb0300a5e5959452fcc30422f14 + name:Flashback - The Quest for Identity (USA) (En,Fr,De) + cheat + description:Never lose a shield when shot (disable to kill enemies) + code:3C1F-EDAC + cheat + description:Don't die from most falls + code:8511-ED6C + cheat + description:Start with 1 shield + code:D4D4-5F78 + cheat + description:Start with 2 shields + code:D7D4-5F78 + cheat + description:Start with 3 shields + code:D0D4-5F78 + cheat + description:Start with 5 shields + code:D1D4-5F78 + cheat + description:Start with 10 shields + code:D8D4-5F78 + cheat + description:Start with 20 shields + code:F9D4-5F78 + cheat + description:Start with 50 shields + code:77D4-5F78 + cheat + description:Start with 100 shields + code:19D4-5F78 + cheat + description:Start with 50 credits + code:74F0-5F7B + cheat + description:Start with 100 credits + code:10F0-5F7B + cheat + description:Start with 250 credits + code:ECF0-5F7B + cheat + description:Start with 512 credits + code:D4F0-5DEB + cheat + description:Start with 1024 credits + code:D0F0-5DEB + +cartridge sha256:ff09d72d6241b331dc429d1cf27c04c26546f23312a22c7a14e6a4bf41ed1069 + name:Flintstones, The (USA) (En,Fr,De,Es,It) + cheat + description:Invincibility + code:2DB9-3D62+2DB3-CD02 + cheat + description:Infinite health + code:82BB-C402+C9B9-37D2 + cheat + description:Infinite lives + code:226A-ADDD + cheat + description:Infinite time + code:A2EE-CFD6 + cheat + description:Hit anywhere + code:418E-3DD2+6D83-37A2 + cheat + description:Get items from anywhere + code:DDB3-C4D0+DDB4-1760+DDC4-CFD9 + cheat + description:Multi-jump + code:DDB4-1F0E + +cartridge sha256:3d5bbc06e7e9797d937c803610c40b262c14c3f0a39e8048dd6b0b052a040fc1 + name:Flintstones, The - The Treasure of Sierra Madrock (USA) + cheat + description:Invincibility + code:DDCF-1DB7 + cheat + description:Infinite stamina + code:C28D-44FD + cheat + description:Infinite time - 1P game + code:C2A9-3D64 + cheat + description:Infinite lives - 1P game + code:C2CF-17A4 + cheat + description:Hit anywhere + code:3DBD-CFA7+74BD-C4A7+76BD-C4D7+DDBD-C407+EDBD-C467 + cheat + description:Get items from anywhere + code:6DE3-179F+6DE7-C7BD + cheat + description:Multi-jump + code:C2A9-C72F + +cartridge sha256:204ecb9b809408c23d5f5772026fc248c70612d9bf6952e6b952ed7a85640867 + name:Flying Hero - Bugyuru no Daibouken (Japan) + cheat + description:Invincibility + code:FCC4-D4D0+62C4-D400+7EC4-D460+FDC4-D4A0 + cheat + description:Hit anywhere + code:4064-67A9+4064-64D9+4067-6F69+4067-6709+6D61-64D9 + cheat + description:Hit anywhere continually + code:4064-64D9+4067-6F69+6D61-64D9+6D6F-64D9 + cheat + description:One hit kills + code:6D61-64D9+DDE3-0FAC + +cartridge sha256:bc6b0344a434644c391ac69a53c7720c51e2d3c5c082b8d78598ae4df100c464 + name:Foreman for Real (USA) + cheat + description:Infinite stamina - P1 + code:7E11AE:64+7E1072:27+7E043A:78+7E045A:64 + +cartridge sha256:25b380f529f5a9295df7c0adcc5213d67f131f552d078a3d8f545f988047c90a + name:Frantic Flea (USA) + cheat + description:Invincibility + code:7E1E92:1E + +cartridge sha256:1ce72767795f41049a1f4d2829e837a8885eb91e1c14faf1ca62d05839ebe3c9 + name:Frogger (USA) + cheat + description:Invincibility + code:7E17F4:00 + cheat + description:Infinite lives + code:7E183D:04 + cheat + description:Infinite time + code:7E078C:95 + cheat + description:Cars don't move + code:7E1886:00+7E1887:00+7E1888:00+7E1889:00+7E188A:00 + cheat + description:River objects don't move + code:7E1880:04+7E1881:04+7E1882:04+7E1883:04+7E1884:04 + +cartridge sha256:dcceb5be536c9b91bf34f65e7fcec4b55a78af0192323cf86f3b9555072037ee + name:Fun 'n Games (USA) + cheat + description:Style mode - nude legs + code:7E0F80:FE + cheat + description:Style mode - nude top + code:7E0FA3:FF + cheat + description:Style mode - nude feet + code:7E0FC6:63 + cheat + description:Style mode - nude head + code:7E0F5D:05 + +cartridge sha256:37fe99a0da8c2ca2296c35e6a08e48b9195074b2aa1955c1eed715d12196001b + name:Fushigi no Dungeon 2 - Fuurai no Shiren (Japan) + cheat + description:Gain any EXP for maximum + code:DD79-5F0B + cheat + description:Enemies start with 1 HP (If enabled when starting a new game, die, you'll restart with 1 HP, when you gain a level it should correct itself) + code:DD7D-770C+CE7D-776C+FF7D-77AC + cheat + description:Collect any Gitan for maximum + code:DD9F-7FA8 + cheat + description:Never lose Satiation + code:DD72-ED66 + cheat + description:One Arrow gains 99 + code:DD75-EFD3 + cheat + description:Smith a weapon to make it +99 + code:CBD1-8FD2+14D1-8F02 + cheat + description:Items from bartender get +99 Refinement + code:CBD8-840A+17D8-846A + +cartridge sha256:bf16c3c867c58e2ab061c70de9295b6930d63f29f81cc986f5ecae03e0ad18d2 + name:F-Zero (USA) + cheat + description:Always rank 1st + code:CB3C-0FA4+DF3C-04D4 + cheat + description:Infinite turbos + code:D484-D404 + cheat + description:Infinite spare machines + code:A96E-A4A4 + cheat + description:Start with 1 spare machine + code:DF6C-0F0A + cheat + description:Start with 5 spare machines + code:D96C-0F0A + cheat + description:Start with 9 spare machines + code:DB6C-0F0A + cheat + description:Infinite power + code:7E00C9:00+7E00CA:08 + cheat + description:Infinite turbos (alt) + code:7E0CF3:03 + cheat + description:Always rank 1st (alt) + code:7E1150:00 + cheat + description:Always boosted + code:7E0D51:08 + cheat + description:Low timer + code:7E00C1:00 + +cartridge sha256:17b24fbda9103cd8cb6f31bd6beccb4a7dfff87c8aef5e79bcc9c7d3a27623fc + name:Galaxy Wars (Japan) + cheat + description:Infinite lives + code:7E0630:05 + +cartridge sha256:ca3dd4620c692b2b8d3dd49b7dbdb1daa251ee0f7943050cc8a036e209cd7a07 + name:Ganpuru - Gunman's Proof (Japan) + cheat + description:Infinite health vs enemies/bullets + code:C266-3FBA + cheat + description:Infinite ammo for picked up guns + code:C281-4DAC + cheat + description:Infinite ammo for picked up hand weapons + code:C286-4FAC + cheat + description:Always have stronger attacks + code:DD66-14B2 + cheat + description:Always have super strong attacks + code:CB66-1FB2+7E66-14F2+6966-1422 + cheat + description:Easily get max money + code:DD68-4422 + cheat + description:Easily get max score + code:DD6D-1FB2 + cheat + description:Always have Starmine Bombs (if you have none, fire 3 off) + code:DDB5-3FFD+D42F-1F47 + cheat + description:Always get Rank S for dungeons, regardless of time taken + code:BA2B-3FC4 + +cartridge sha256:b87874a2292fe045385a2888e33009d5d2eabf55e379059aa5ef6c73b0475ff2 + name:Gekitotsu Dangan Jidousha Kessen - Battle Mobile (Japan) + cheat + description:Invincibility + code:B989-04A9+898B-AFD5+8988-AFA5 + cheat + description:Infinite health + code:898B-AFD5+8988-AFA5 + cheat + description:Infinite lives + code:C282-AF65 + cheat + description:Infinite Shields + code:8BBF-A7A5 + +cartridge sha256:fdafaa77f01a9a692411e27b3fb6045b247e5d625679b941d317a7b105f437d2 + name:George Foreman's KO Boxing (USA) (Rev 1) + cheat + description:Infinite time + code:CB62-040F+5662-046F + cheat + description:Infinite super punch after obtaining it + code:6D25-A464 + cheat + description:Time goes slower + code:566D-07DD + cheat + description:Time speeds up + code:DC6D-07DD + cheat + description:Damage inflicted by your opponent affects him (your health may slightly decrease) + code:C228-A764+5728-A7A4+622A-AFA4+572A-A4D4 + cheat + description:Start with 1/2x health - both players + code:4D6C-D70D + +cartridge sha256:b248b2122a0caf99298ebd9a4f66ad8047dbfce1e4bbac8219ba3ea9fb7488b5 + name:Ghost Chaser Densei (Japan) + cheat + description:Invincibility + code:2D83-14AD + cheat + description:Infinite health + code:82A9-3D6F + cheat + description:Infinite time + code:C2A4-47D1 + cheat + description:Hit anywhere + code:3D87-CFA4+7D87-C464+7D87-C4A4+D487-C404 + cheat + description:99 hits in bonus round + code:7E0516:63 + +cartridge sha256:a4ceb31b82ea532e6eb640fa2eda61625758e72251efa5f0ae9a984f4a98a8a0 + name:Ghoul Patrol (USA) + cheat + description:Invincibility + code:1DC0-1461+1DCC-1401 + cheat + description:Infinite lives + code:C2BD-3DD9 + cheat + description:Super powered normal arrows + code:EE61-C4A3 + cheat + description:Infinite health + code:7E1D09:0A + cheat + description:Infinite lives (alt) + code:7E1DA1:63 + cheat + description:Always have weapon + code:7E1CFE:01 + cheat + description:Infinite Keys + code:7E1D5D:63 + cheat + description:Infinite Shot 1 + code:7E1D21:63 + cheat + description:Infinite Shot 2 + code:7E1D29:63 + cheat + description:Infinite Shot 3 + code:7E1D23:63 + cheat + description:Infinite Shot 4 + code:7E1D1F:63 + cheat + description:Infinite Blue Potions + code:7E1D63:63 + cheat + description:Infinite Red Potions + code:7E1D61:63 + cheat + description:Infinite Green Potions + code:7E1D65:63 + cheat + description:Infinite Medipaks + code:7E1D71:63 + cheat + description:Infinite ? Potions + code:7E1D69:63 + cheat + description:Infinite Vials + code:7E1D67:63 + cheat + description:All victims already rescued + code:7E1E05:00 + +cartridge sha256:8796ca4de3aeffd3a494fe28e7d7e2aeb220ca652b43684f29e2cc94f02c20c4 + name:Gods (USA) + cheat + description:Invincibility + code:C268-3576 + cheat + description:Continually hit anywhere + code:40A2-49E8+40A3-4988+40AF-1188+6DAD-1988 + cheat + description:Shields last until at least end of the world (disable if you get stuck) + code:1DE7-31E8 + cheat + description:Infinite lives + code:C269-C1EB + cheat + description:Items you can afford in the shops are free + code:A284-35EC + cheat + description:Start with 2 lives + code:DF3C-4073 + cheat + description:Start with 6 lives + code:D93C-4073 + cheat + description:Start with 10 lives + code:DB3C-4073 + +cartridge sha256:2bb368c47189ce813ad716eef16c01cd47685cb98e2c1cb35fa6f0173c97dd7c + name:Goof Troop (USA) + cheat + description:Infinite health + code:692F-1FA7 + cheat + description:Infinite lives + code:C96F-3F6C + cheat + description:Hit anywhere + code:DD23-3FDF+DD2F-176F + cheat + description:Get fruits and gems from anywhere + code:DDCD-CF06+DDCF-CD06 + cheat + description:Walk through walls + code:6D61-146B+6D66-CF06 + cheat + description:4 hearts give you a life + code:D0C0-3FA8+B3C9-3DD8 + cheat + description:2 hearts give you a life + code:D4C0-3FA8+B3C9-3DD8 + cheat + description:2 hearts from cherries + code:D4A8-4762 + cheat + description:4 hearts from bananas + code:D0A8-47A2 + cheat + description:1 heart from bananas + code:DFA8-47A2 + cheat + description:Goofy has quicker left-right movement + code:D46F-C70E+E264-C70E + cheat + description:Max has quicker left-right movement + code:D46E-170E+E26D-C70E + cheat + description:Start with 9 lives + code:DBCD-146D + cheat + description:Start with 6 lives + code:D1CD-146D + cheat + description:Start with 1 life + code:DFCD-146D + +cartridge sha256:93da752a0c76167d0907efa832367e5d14aab8e835b864f345c386071a9af718 + name:Gradius III (USA) + cheat + description:Invincibility + code:6D2D-D464 + cheat + description:Infinite Konami code use (up, up, down, down, left, right, left, right, B, A) + code:C2A9-0DDD + cheat + description:Infinite lives + code:3C8E-DDD7+3C8E-DD07 + cheat + description:Infinite credits + code:C227-6DDD + cheat + description:Hit anywhere + code:4034-A704 + cheat + description:Makes Earwig Scorpion (Stage 1 mayor) much easier to defeat + code:DFBB-A766 + cheat + description:Makes Bubble Brain (Stage 2 mayor) easier to defeat + code:DFB1-6F6C + cheat + description:Weapons status gauge remains at current level after a weapon is selected + code:3C29-0704+3C29-0764 + cheat + description:Enemies shoot at you more + code:CBAF-D7AD+DFA4-DDDD + cheat + description:Enables Arcade option in options menu + code:D78F-D4AF + cheat + description:Start with 1 life + code:DD8B-6DA4 + cheat + description:Start with 2 lives + code:DF8B-6DA4 + cheat + description:Start with 4 lives + code:D78B-6DA4 + cheat + description:Start with 5 lives + code:D08B-6DA4 + cheat + description:Start with 9 lives + code:D68B-6DA4 + cheat + description:Start with 16 lives + code:DE8B-6DA4 + cheat + description:Start with 31 lives + code:F38B-6DA4 + cheat + description:Start with 1 credit (1P game) + code:DFC3-DF0D + cheat + description:Start with 2 credits + code:D4C3-DF0D + cheat + description:Start with 6 credits + code:D1C3-DF0D + cheat + description:Start with 7 credits + code:D5C3-DF0D + cheat + description:Start with 8 credits + code:D6C3-DF0D + cheat + description:Start with 9 credits + code:DBC3-DF0D + cheat + description:Infinite credits (alt) + code:00D230:AD + cheat + description:Infinite continues + code:7E1E06:03 + cheat + description:Infinite Forcefield + code:7E0346:02+7E0350:02 + cheat + description:Weapons status gauge remains at current level after a weapon is selected (alt) + code:00D95D:EA+00D95E:EA + cheat + description:Enemies die automatically + code:7E00DC:0B + cheat + description:Have Mega Crush + code:7E00B0:07 + cheat + description:Have Max Speed + code:7E00B2:05 + cheat + description:Have support upgrade - Missile + code:7E00B4:0B + cheat + description:Have support upgrade - Spread Bomb + code:7E00B4:0C + cheat + description:Have support upgrade - 2-Way Missile + code:7E00B4:0D + cheat + description:Have gun - Double + code:7E00B6:02 + cheat + description:Have gun - Tailgun + code:7E00B6:03 + cheat + description:Have gun - Back Double + code:7E00B6:04 + cheat + description:Have gun - Verticle + code:7E00B6:05 + cheat + description:Have gun - Twin Laser + code:7E00B6:06 + cheat + description:Have gun - Laser + code:7E00B6:07 + cheat + description:Have gun - Charged Laser + code:7E00B6:09 + cheat + description:Have gun - Laser (2nd) + code:7E00B6:0A + cheat + description:Have 99 million points - P1 + code:7E1F47:99 + cheat + description:Have 99 million points - P2 + code:7E1F4B:99 + +cartridge sha256:f8c02a0b996d33c0a64c30fb76b80f8e441d67b8ecebb6940bb1171760aa444c + name:Great Battle II, The - Last Fighter Twin (Japan) + cheat + description:Invincibility + code:CB30-07AD+DF39-0DDD+6239-0D0D+9839-0D6D+D039-0DAD + cheat + description:Infinite health + code:89BB-AFAF + cheat + description:Infinite lives + code:29C8-670D + cheat + description:One hit kills + code:6D88-04DF + cheat + description:Invincibility (alt) + code:7E045B:01 + cheat + description:Infinite health (alt) + code:7E0454:60 + cheat + description:Infinite lives (alt) + code:7E00D4:03 + +cartridge sha256:10a8d4a4eeefb124693ea72d4613cfd210a332d8ec2fdfcd64695427bf2f65d0 + name:Great Battle III, The (Japan) + cheat + description:Invincibility + code:2D80-0DDF+2D80-0F0F + cheat + description:Infinite health + code:8985-D76D + cheat + description:Infinite lives + code:2981-04A7 + cheat + description:One hit kills + code:6DAC-DDA7 + cheat + description:Invincibility (alt) + code:7E00D4:03 + cheat + description:Infinite health (alt) + code:7E0464:48 + cheat + description:Infinite lives (alt) + code:7E00E4:03 + +cartridge sha256:b5492aea296ee4bfcd2c677fbec5153fd4c4db758c835b372ef750cf2399649b + name:Great Circus Mystery Starring Mickey & Minnie, The (USA) + cheat + description:Invincibility against enemies + code:6D94-E764 + cheat + description:Invincibility against ground hazards + code:6DF3-5FA0 + cheat + description:Infinite Vacuum + code:C9FB-5769 + cheat + description:Infinite Bullets + code:C9FB-8FA9 + cheat + description:Collect one coin for 999 + code:DD9D-5D07 + +cartridge sha256:f921297c361f16ad3f1257e91829638fc795f9323172015d7237ed648c8f7515 + name:GunForce (USA) + cheat + description:Invincibility + code:69BD-A4A1+CBBD-A401 + cheat + description:Infinite ammo + code:C2E7-AFAF + cheat + description:Hit anywhere + code:C2B7-AFD4+DDB8-070F+DDB8-0F6F+DDBB-04AF+DDBC-0D0F + cheat + description:Invincibility (alt) + code:7E0055:B1 + cheat + description:Infinite time (enable during gameplay) + code:7E0028:09+7E0029:09 + cheat + description:Infinite lives - P1 + code:7E0051:09 + cheat + description:Infinite lives - P2 + code:7E0052:09 + cheat + description:Infinite continues - P1 + code:7E0053:09 + cheat + description:Infinite continues - P2 + code:7E0054:09 + cheat + description:Have Rapid Fire + code:7E0057:FF + cheat + description:Have regular gun + code:7E9015:01 + cheat + description:Have Laser gun + code:7E9015:04 + cheat + description:Have Bazooka + code:7E9015:07 + cheat + description:Have Flamethrower + code:7E9015:0E + +cartridge sha256:5a6deb5617e86a9f4b981031e939510e30c5c8ad047f5f012e40442113fd28c2 + name:Hagane - The Final Conflict (USA) + cheat + description:Invincibility + code:1D0B-576D + cheat + description:Infinite time + code:6D6F-8D0F + cheat + description:Infinite Bombs + code:3CBF-8FDD + cheat + description:Infinite Daggers + code:3CB9-5F6D + cheat + description:Infinite special attacks + code:3C68-EDD4 + cheat + description:Infinite lives + code:3C62-540F + cheat + description:Hit anywhere + code:DD76-E407+DD76-ED67+DD7B-EDD7+DD7B-EFA7 + cheat + description:One hit kills + code:DD0D-770D + cheat + description:Jump higher + code:E29D-8DD4 + cheat + description:Start with 9 lives + code:DB63-57DD + cheat + description:Start with 9 special attack points + code:DB6E-5DDD + cheat + description:Start with maximum health points + code:D963-5FDD + cheat + description:Start on stage 2 - Fortress Of Doom + code:CB6A-5D0D+DF6A-5D6D + cheat + description:Start on stage 3 - Violated Heavens + code:CB6A-5D0D+D46A-5D6D + cheat + description:Start on stage 4 - Cry Of The Spirits + code:CB6A-5D0D+D76A-5D6D + cheat + description:Start on stage 5 - Into The Darkness + code:CB6A-5D0D+D06A-5D6D + +cartridge sha256:de1cf1512e48473b03adb87b7504f394e8b330b346bac24044f833d83609799a + name:HAL's Hole in One Golf (USA) + cheat + description:No penalty if you land in water or out of bounds + code:4A6C-6D69 + cheat + description:Always start hole with 1-shot penalty + code:DF6F-0D00 + cheat + description:Max 7 strokes per hole + code:D56C-A401 + cheat + description:Max 5 strokes per hole + code:D96C-A401 + +cartridge sha256:6e2a02a8944c19db3da76d2646f232fbe3ed039bc7d44cc03910814fa77a7acf + name:Harley's Humongous Adventure (USA) + cheat + description:Protection against some hazards + code:C2C0-0DB5 + cheat + description:Infinite ammo + code:DD87-A4B0 + cheat + description:Infinite lives + code:C2C8-07B5 + cheat + description:Infinite Jet Fuel on pick-up + code:DDCD-6DF5 + cheat + description:Infinite time on Vent level + code:3C83-ADA4 + cheat + description:Any fuel power-up gives maximum amount + code:DDC4-6495 + cheat + description:Press X on the title screen with the house to get level select menu + code:D43E-046F + cheat + description:Get only 5 ammo from a weapon power-up + code:D98D-DDB9 + cheat + description:Get 20 ammo from a weapon power-up + code:4D8D-DDB9 + cheat + description:Get 30 ammo from a weapon power-up + code:7D8D-DDB9 + cheat + description:Get 40 ammo from a weapon power-up + code:0D8D-DDB9 + cheat + description:Get 50 ammo from a weapon power-up + code:9D8D-DDB9 + cheat + description:20 seconds to collect power-ups on level 1 + code:F08C-A704 + cheat + description:60 seconds to collect power-ups on level 1 + code:7A8C-A704 + cheat + description:90 seconds to collect power-ups on level 1 + code:9C8C-A704 + cheat + description:60 seconds to complete the Vent level + code:7A88-A7D4 + cheat + description:Start with maximum fuel on every level + code:6DCF-04B1 + cheat + description:Start with 4 hearts + code:D6CF-ADB1 + cheat + description:Start with 5 hearts + code:DCCF-ADB1 + cheat + description:Start with 10 of every weapon + code:FD22-6415 + cheat + description:Start with 25 of every weapon + code:4922-6415 + cheat + description:Start with 50 of every weapon + code:9D22-6415 + cheat + description:Start with 99 of every weapon + code:BB22-6415 + cheat + description:Start with 2 lives + code:DFCF-A7F1 + cheat + description:Start with 6 lives + code:D9CF-A7F1 + cheat + description:Start with 11 lives + code:FDCF-A7F1 + cheat + description:Start with 26 lives + code:49CF-A7F1 + cheat + description:Start with 51 lives + code:9DCF-A7F1 + cheat + description:Start with 100 lives + code:BBCF-A7F1 + cheat + description:Infinite health against most enemies + code:7EAB45:32 + cheat + description:Start with all weapons + code:09DED9:FF + cheat + description:Infinite weapons on pick-up + code:7EAB54:9A + cheat + description:Infinite Air + code:7E24B2:FF + cheat + description:Infinite Fuel on pick-up (disable to complete level) + code:7E24BC:FF + cheat + description:Infinte Nuts + code:7E24AC:99 + cheat + description:Infinite Invincibility Spray + code:7EAB44:84 + cheat + description:Infinite time + code:7E1C3B:64 + cheat + description:Moon-jump + code:7E0283:02 + +cartridge sha256:73a3aa87ddd5ce5df5ba51292316f42b6e128280179b0a1b11b4dcddc17d4163 + name:Harvest Moon (USA) + cheat + description:Can access all items temporarily + code:C980-3460 + cheat + description:Don't lose stamina + code:C22E-4DD0 + cheat + description:Go to bed to get 200 stamina + code:CB68-34A6+A668-37D6+3C68-3706 + cheat + description:With 1 or more wood, take some to get 999 + code:6D87-CFDA + cheat + description:With 0 wood, take some to get 999 + code:F987-CDDA + cheat + description:Fencing doesn't break when it storms + code:6DC5-3DAB + cheat + description:Go to sleep to put a bell plant next to the stable + code:FD69-47DB + cheat + description:Go to sleep to enable the egg festival prize + code:DB6B-3F6B+DD6B-3FAB+FD6B-34DB + cheat + description:Town always performs Flower Festival + code:DD2D-37AA+242F-3D0A + +cartridge sha256:7c34908526db2a634216fab0276c42a8e4e22d59c728cd586200142a12dd2c2c + name:Home Alone (USA) + cheat + description:Infinite power + code:C220-D464 + cheat + description:Infinite lives + code:DD21-DFD4 + cheat + description:Infinite Baseballs, Slingshot and Rifle ammo + code:DD2A-A76F + cheat + description:Power boost on jumps + code:3DB1-07D5 + cheat + description:Super power boost on jumps + code:ADB1-07D5 + cheat + description:Need 1 item (instead of 24) to complete level 1 + code:DF23-A764 + cheat + description:Need 5 items to complete level 1 + code:D923-A764 + cheat + description:Need 10 items to complete level 1 + code:FD23-A764 + cheat + description:Need 15 items to complete level 1 + code:F923-A764 + cheat + description:Need 20 items to complete level 1 + code:4D23-A764 + cheat + description:Need 1 item (instead of 30) to complete level 2 + code:DF23-A7A4 + cheat + description:Need 5 items to complete level 2 + code:D923-A7A4 + cheat + description:Need 10 items to complete level 2 + code:FD23-A7A4 + cheat + description:Need 15 items to complete level 2 + code:F923-A7A4 + cheat + description:Need 20 items to complete level 2 + code:4D23-A7A4 + cheat + description:Need 25 items to complete level 2 + code:4923-A7A4 + cheat + description:Need 1 item (instead of 35) to complete level 3 + code:DF2E-ADD4 + cheat + description:Need 5 items to complete level 3 + code:D92E-ADD4 + cheat + description:Need 10 items to complete level 3 + code:FD2E-ADD4 + cheat + description:Need 15 items to complete level 3 + code:F92E-ADD4 + cheat + description:Need 20 items to complete level 3 + code:4D2E-ADD4 + cheat + description:Need 25 items to complete level 3 + code:492E-ADD4 + cheat + description:Need 1 item (instead of 35) to complete level 4 + code:DF2E-AD04 + cheat + description:Need 5 items to complete level 4 + code:D92E-AD04 + cheat + description:Need 10 items to complete level 4 + code:FD2E-AD04 + cheat + description:Need 15 items to complete level 4 + code:F92E-AD04 + cheat + description:Need 20 items to complete level 4 + code:4D2E-AD04 + cheat + description:Need 25 items to complete level 4 + code:492E-AD04 + cheat + description:Extra life with 1 pizza slice instead of 8 + code:DF66-04A7 + cheat + description:Extra life with 2 pizza slices + code:D466-04A7 + cheat + description:Extra life with 3 pizza slices + code:D766-04A7 + cheat + description:Extra life with 4 pizza slices + code:D066-04A7 + cheat + description:Extra life with 5 pizza slices + code:D966-04A7 + cheat + description:Extra life with 6 pizza slices + code:D166-04A7 + cheat + description:Extra life with 7 pizza slices + code:D566-04A7 + cheat + description:Start with 1 life instead of 3 + code:DF2B-AFD4 + cheat + description:Start with 2 lives + code:D42B-AFD4 + cheat + description:Start with 5 lives + code:D92B-AFD4 + cheat + description:Start with 9 lives + code:DB2B-AFD4 + cheat + description:Start with 25 lives + code:492B-AFD4 + cheat + description:Start with 50 lives + code:9D2B-AFD4 + cheat + description:Start with 99 lives + code:BB2B-AFD4 + cheat + description:Start on level 2 + code:DF69-DFAD+AB69-D40D+D769-D46D + cheat + description:Start on level 3 + code:D469-DFAD+AB69-D40D+D769-D46D + cheat + description:Start on level 4 + code:D769-DFAD+AB69-D40D+D769-D46D + +cartridge sha256:27eaccb4eea93832639565a664bf3561ed5a11ac025d377a3f33262d851c1b2b + name:Home Alone 2 - Lost in New York (USA) + cheat + description:Infinite power (some things can still kill you) + code:C22E-AF9D + cheat + description:Infinite ammo + code:3CB7-6DA4 + cheat + description:Infinite lives + code:C264-D464 + cheat + description:Dart guns have 50 shots + code:7427-AF2F+7429-AD9F + cheat + description:Extra life from 1 pizza slice instead of 6 + code:DF2B-AFBF + cheat + description:Extra life from 2 pizza slices + code:D42B-AFBF + cheat + description:Extra life from 3 pizza slices + code:D72B-AFBF + cheat + description:Extra life from 4 pizza slices + code:D02B-AFBF + cheat + description:Extra life from 5 pizza slices + code:D92B-AFBF + cheat + description:Start with 1 life instead of 3 + code:DFB5-6FA7 + cheat + description:Start with 5 lives + code:D9B5-6FA7 + cheat + description:Start with 9 lives + code:DBB5-6FA7 + cheat + description:Start with 25 lives + code:FBB5-6FA7 + cheat + description:Start with 50 lives + code:74B5-6FA7 + cheat + description:Start with 99 lives + code:17B5-6FA7 + +cartridge sha256:48a3ac52e2c9128abc2dc60e07817a51898e8a93be0d51d6f541a8635263a089 + name:Home Improvement - Power Tool Pursuit! (USA) + cheat + description:Invincibility + code:6D62-4B82+6D69-1CEA + cheat + description:Infinite lives + code:CB69-1FDE + cheat + description:Infinite Nut Bolts + code:C9BC-3673+C9C4-4683+C26F-468A + +cartridge sha256:acad4c594f156e0f30dec2532b35fcb3bab800e08263377634e2d96dfd055f3e + name:Hook (USA) + cheat + description:Infinite power (disable if you get stuck) + code:3CA5-D70F + cheat + description:Infinite time + code:A268-6F03 + cheat + description:Time starts at 7 min - stage 1 + code:D56B-ADA2 + cheat + description:Time starts at 3 min - stage 1 + code:D76B-ADA2 + cheat + description:Start with 3 power leaves + code:D066-0FDD + cheat + description:Start with 1 leaf (shows 2, but you can only fill 1) + code:D466-0FDD + cheat + description:Infinite power (alt) + code:7EF7C1:03 + cheat + description:Infinite lives + code:7E1F00:03 + cheat + description:Infinite flying + code:7E1F07:80+7E1F08:01 + cheat + description:Infinite time (alt) + code:7E1F14:59 + +cartridge sha256:ba6cb0d64cef410c5dd517ce0424fc0942a15b0df0274903939c043f3ac79d39 + name:Humans, The (Europe) + cheat + description:Infinite lives + code:7E010B:0C + cheat + description:Infinite time (disable at end of level) + code:7E0122:78+7E0123:00 + +cartridge sha256:a03528344d40bf800cdbde2dd240b30442cec7aea6026fbbe312a7c36bf0f74a + name:Hunt for Red October, The (USA) + cheat + description:Infinite Bombs + code:C2AE-1404 + cheat + description:Infinite ECMs + code:C2AC-34D4 + cheat + description:Infinite SAMs + code:C2AB-CFD4 + cheat + description:Infinite SSMs + code:C2A7-3D64 + cheat + description:Infinite Torpedoes + code:C2A0-1D64 + cheat + description:Start with 0 Bombs instead of 40 + code:DD34-4761 + cheat + description:Start with 99 Bombs + code:1734-4761 + cheat + description:Start with 0 Torpedoes instead of 60 + code:DD3F-47D1 + cheat + description:Start with 99 Torpedoes + code:173F-47D1 + cheat + description:Start with 0 Surface-to-Air Missiles (SAMs) instead of 25 + code:DD34-44D1 + cheat + description:Start with 50 SAMs + code:7434-44D1 + cheat + description:Start with 99 SAMs + code:1734-44D1 + cheat + description:Start with 0 Surface-to-Surface Missiles (SSMs) instead of 25 + code:DD34-4D61 + cheat + description:Start with 50 SSMs + code:7434-4D61 + cheat + description:Start with 99 SSMs + code:1734-4D61 + cheat + description:Start with 0 Electronic Countermeasures (ECMs) instead of 2 + code:DD3F-4F61 + cheat + description:Start with 50 ECMs + code:743F-4F61 + cheat + description:Start with 99 ECMs + code:173F-4F61 + cheat + description:Start in theatre I - Caribbean + code:D4BA-1F64 + cheat + description:Start in theatre II - North Pacifi + code:D1BA-1F64 + cheat + description:Start in theatre III - Mediterranean + code:DABA-1F64 + cheat + description:Start on the final mission - Return to the USSR + code:FDBA-1F64 + +cartridge sha256:41cc900d2461a8dc4706640e493885ddf85db04d8dffceebf7a0ed89cc983d8d + name:Hurricanes (USA) + cheat + description:Invincibility + code:7E0CA2:FF + cheat + description:Infinite health + code:7E0D0E:2C + cheat + description:Infinite time + code:7E1252:09 + cheat + description:Infinite lives + code:7E0D16:09 + +cartridge sha256:f57c49cc3e4c5e34929e12658db0de8794265c517e42f3c518bb1466ba46f14a + name:HyperZone (USA) + cheat + description:Infinite power + code:4A8A-DFD1 + cheat + description:Restore energy more quickly + code:D76A-D7D5 + cheat + description:Restore energy more slowly + code:DD6A-D7D5 + cheat + description:Start with 8 lives + code:D5C4-DFD1 + cheat + description:Start with 1 life + code:DDC4-DFD1 + +cartridge sha256:fa143784fd20721d61101920e6aae9b7f5012b8157b1ce0c7ea83ea6c875d84d + name:Ignition Factor, The (USA) + cheat + description:Infinite health + code:7E0669:F9 + cheat + description:Max health + code:7E069A:F9 + cheat + description:Always have full abilities regardless of how many items you carry + code:7E0698:00 + cheat + description:Infinite Air Tank + code:7E0690:B4 + cheat + description:Infinite CO2 Bombs + code:7E0695:B4 + cheat + description:Infinite Fire Trucks + code:7E0697:03 + cheat + description:Infinite Blue (electrical) Extinguisher + code:7E068F:B4 + cheat + description:Infinite Green (chemical) Extinguisher + code:7E068E:B4 + cheat + description:Infinite Red Extinguisher + code:7E068D:B4 + cheat + description:Infinite Plastic Explosives + code:7E0696:B4 + cheat + description:Infinite time - minutes + code:7E1CBA:00 + cheat + description:Infinite time - seconds + code:7E1CB9:00 + cheat + description:Infinite time - milliseconds + code:7E1CB8:00 + cheat + description:Have Green (chemical) Extinguisher in slot 1 + code:7E14C2:02 + cheat + description:Have Blue (electrical) Extinguisher in slot 2 + code:7E14C6:04 + cheat + description:Have Oxygen Tank and Mask in slot 3 + code:7E14CA:06 + cheat + description:Have Chainsaw in slot 4 + code:7E14CE:08 + cheat + description:Have Rope in slot 4 + code:7E14CE:0A + cheat + description:Have Axe in slot 4 + code:7E14CE:0C + cheat + description:Have Pole in slot 4 + code:7E14CE:0E + cheat + description:Have CO2 Bombs in slot 4 + code:7E14CE:10 + cheat + description:Have Plastic Explosives in slot 4 + code:7E14CE:12 + cheat + description:Haev Fossile in slot 4 + code:7E14CE:14 + cheat + description:Have First Aid Kit in slot 4 + code:7E14CE:26 + +cartridge sha256:32adc048fd89228a4310c03df243e83de7d436cdb2460b4cc83ade20d359b2bd + name:Illusion of Gaia (USA) + cheat + description:Infinite HP + code:C2A5-44A2 + cheat + description:Less charge time for psycho dash + code:D98F-4F0C + cheat + description:Less charge time for dark friar + code:D98B-4DDC + cheat + description:Super run left/right only + code:D9AA-1F0B+E8A5-14AB + cheat + description:Super run up/down only + code:EAA7-1D6B+D0A3-446B + cheat + description:Get 2x the energy from herbs + code:FD6B-47A3 + cheat + description:Get 3x the energy from herbs + code:F66B-47A3 + cheat + description:Red Jewel 50 check passes + code:DDA0-3D37 + cheat + description:Red Jewel 30 check passes + code:DDA7-3447 + cheat + description:Red Jewel 20 check passes + code:DDA4-3F37 + cheat + description:Red Jewel 12 check passes + code:DDAF-3FC7 + cheat + description:Red Jewel 08 check passes + code:DDAD-3F17 + cheat + description:Red Jewel 05 check passes + code:DDAE-CF47 + cheat + description:Red Jewel 03 check passes + code:DDA3-CD37 + cheat + description:Start with max HP + code:EE61-440D + cheat + description:Start with a lot more energy + code:F061-44DD + cheat + description:Start with 20 strength points + code:F065-4D0D + cheat + description:Start with 50 strength points + code:7465-4D0D + cheat + description:Start with 80 strength points + code:9D65-4D0D + cheat + description:Infinite HP + code:7E0ACD:32+7E0ACE:32 + cheat + description:Max HP + code:7E0ACA:32+7E0ACB:03 + cheat + description:Max Strength + code:7E0ADE:63 + cheat + description:Max Defense + code:7E0ADC:63 + cheat + description:Can always attack + code:7E09AE:00 + cheat + description:One hit kills + code:7E0ADE:FF+7E0ADF:FF + cheat + description:Play as Will + code:7E0AD4:00 + cheat + description:Play as Knight + code:7E0AD4:01 + cheat + description:Play as Shade + code:7E0AD4:02 + cheat + description:Walk through walls + code:82E301:AF+82E304:9B + cheat + description:Can always attack + code:7E09AE:00 + cheat + description:Have all Statues + code:7E0A1F:BF + cheat + description:Have Red Jewel - slot 1 + code:7E0AB4:01 + cheat + description:Have Red Jewel - slot 16 + code:7E0AC3:01 + cheat + description:Have Prison Key - slot 1 + code:7E0AB4:02 + cheat + description:Have Prison Key - slot 16 + code:7E0AC3:02 + cheat + description:Have Incan Statue A - slot 1 + code:7E0AB4:03 + cheat + description:Have Incan Statue A - slot 16 + code:7E0AC3:03 + cheat + description:Have Incan Statue B - slot 1 + code:7E0AB4:04 + cheat + description:Have Incan Statue B - slot 16 + code:7E0AC3:04 + cheat + description:Have Incan Melody - slot 1 + code:7E0AB4:05 + cheat + description:Have Incan Melody - slot 16 + code:7E0AC3:05 + cheat + description:Have Herb - slot 1 + code:7E0AB4:06 + cheat + description:Have Herb - slot 16 + code:7E0AC3:06 + cheat + description:Have Blue Block - slot 1 + code:7E0AB4:07 + cheat + description:Have Blue Block - slot 16 + code:7E0AC3:07 + cheat + description:Have Wind Melody - slot 1 + code:7E0AB4:08 + cheat + description:Have Wind Melody - slot 16 + code:7E0AC3:08 + cheat + description:Have Lola's Melody - slot 1 + code:7E0AB4:09 + cheat + description:Have Lola's Melody - slot 16 + code:7E0AC3:09 + cheat + description:Have Meat - slot 1 + code:7E0AB4:0A + cheat + description:Have Meat - slot 16 + code:7E0AC3:0A + cheat + description:Have Mine Key A - slot 1 + code:7E0AB4:0B + cheat + description:Have Mine Key A - slot 16 + code:7E0AC3:0B + cheat + description:Have Mine Key B - slot 1 + code:7E0AB4:0C + cheat + description:Have Mine Key B - slot 16 + code:7E0AC3:0C + cheat + description:Have Memory Melody - slot 1 + code:7E0AB4:0D + cheat + description:Have Memory Melody - slot 16 + code:7E0AC3:0D + cheat + description:Have Crystal Ball - slot 1 + code:7E0AB4:0E + cheat + description:Have Crystal Ball - slot 16 + code:7E0AC3:0E + cheat + description:Have Elevator Key - slot 1 + code:7E0AB4:0F + cheat + description:Have Elevator Key - slot 16 + code:7E0AC3:0F + cheat + description:Have Palace Key - slot 1 + code:7E0AB4:10 + cheat + description:Have Palace Key - slot 16 + code:7E0AC3:10 + cheat + description:Have Purify Stone - slot 1 + code:7E0AB4:11 + cheat + description:Have Purify Stone - slot 16 + code:7E0AC3:11 + cheat + description:Have Statue of Hope - slot 1 + code:7E0AB4:12 + cheat + description:Have Statue of Hope - slot 16 + code:7E0AC3:12 + cheat + description:Have Rama Statue - slot 1 + code:7E0AB4:13 + cheat + description:Have Rama Statue - slot 16 + code:7E0AC3:13 + cheat + description:Have Magic Dust - slot 1 + code:7E0AB4:14 + cheat + description:Have Magic Dust - slot 16 + code:7E0AC3:14 + cheat + description:Have Blue Journal - slot 1 + code:7E0AB4:15 + cheat + description:Have Blue Journal - slot 16 + code:7E0AC3:15 + cheat + description:Have Lance's Leter - slot 1 + code:7E0AB4:16 + cheat + description:Have Lance's Leter - slot 16 + code:7E0AC3:16 + cheat + description:Have Necklace Stone - slot 1 + code:7E0AB4:17 + cheat + description:Have Necklace Stone - slot 16 + code:7E0AC3:17 + cheat + description:Have Will - slot 1 + code:7E0AB4:18 + cheat + description:Have Will - slot 16 + code:7E0AC3:18 + cheat + description:Have Tea Pot - slot 1 + code:7E0AB4:19 + cheat + description:Have Tea Pot - slot 16 + code:7E0AC3:19 + cheat + description:Have Mushroom Drop - slot 1 + code:7E0AB4:1A + cheat + description:Have Mushroom Drop - slot 16 + code:7E0AC3:1A + cheat + description:Have Bag of Gold - slot 1 + code:7E0AB4:1B + cheat + description:Have Bag of Gold - slot 16 + code:7E0AC3:1B + cheat + description:Have Black Glasses - slot 1 + code:7E0AB4:1C + cheat + description:Have Black Glasses - slot 16 + code:7E0AC3:1C + cheat + description:Have Gorgon Flower - slot 1 + code:7E0AB4:1D + cheat + description:Have Gorgon Flower - slot 16 + code:7E0AC3:1D + cheat + description:Have Heiroglyph 1 - slot 1 + code:7E0AB4:1E + cheat + description:Have Heiroglyph 1 - slot 16 + code:7E0AC3:1E + cheat + description:Have Heiroglyph 2 - slot 1 + code:7E0AB4:1F + cheat + description:Have Heiroglyph 2 - slot 16 + code:7E0AC3:1F + cheat + description:Have Heiroglyph 3 - slot 1 + code:7E0AB4:20 + cheat + description:Have Heiroglyph 3 - slot 16 + code:7E0AC3:20 + cheat + description:Have Heiroglyph 4 - slot 1 + code:7E0AB4:21 + cheat + description:Have Heiroglyph 4 - slot 16 + code:7E0AC3:21 + cheat + description:Have Heiroglyph 5 - slot 1 + code:7E0AB4:22 + cheat + description:Have Heiroglyph 5 - slot 16 + code:7E0AC3:22 + cheat + description:Have Heiroglyph 6 - slot 1 + code:7E0AB4:23 + cheat + description:Have Heiroglyph 6 - slot 16 + code:7E0AC3:23 + cheat + description:Have Aura - slot 1 + code:7E0AB4:24 + cheat + description:Have Aura - slot 16 + code:7E0AC3:24 + cheat + description:Have Lola's Letter - slot 1 + code:7E0AB4:25 + cheat + description:Have Lola's Letter - slot 16 + code:7E0AC3:25 + cheat + description:Have Father's Journal - slot 1 + code:7E0AB4:26 + cheat + description:Have Father's Journal - slot 16 + code:7E0AC3:26 + cheat + description:Have Crystal Ring - slot 1 + code:7E0AB4:27 + cheat + description:Have Crystal Ring - slot 16 + code:7E0AC3:27 + cheat + description:Have Red Apple - slot 1 + code:7E0AB4:28 + cheat + description:Have Red Apple - slot 16 + code:7E0AC3:28 + +cartridge sha256:4dc2b5de98e9109583d9b61b38d26a8216af4dba246ef71350122213630562d0 + name:Imperium (USA) + cheat + description:Invincibility + code:6DCC-DD27+DD38-AFA9 + cheat + description:Hit anywhere + code:6D31-DDA1+C236-DD01 + cheat + description:Infinite bombs + code:C2A9-D46F + cheat + description:Start with 1 life point + code:DFA2-D4A4 + cheat + description:Start with 3 life points + code:D7A2-D4A4 + cheat + description:Start with 5 bombs + code:D9BD-64D7 + cheat + description:Start with 9 bombs + code:DBBD-64D7 + +cartridge sha256:c41150c0e84055801377fb7cb273cc51ca442b269ca6287cadf514f553e34750 + name:Incantation (USA) + cheat + description:Infinite energy + code:C234-CFD7 + cheat + description:Infinite lives + code:C2A0-3FD7 + cheat + description:Invincibility (blinking) + code:7E07FC:5F + cheat + description:Infinite energy (alt) + code:7E1115:30 + cheat + description:Infinite lives (alt) + code:7E0846:64 + cheat + description:Super-jump with lunar descent + code:7E163D:00 + cheat + description:3 wheat for toll + code:7E0E69:03 + cheat + description:Max bonus + code:7E083C:5A+7E083E:63 + cheat + description:Have larger shot + code:7E07E8:D4+7E07EA:1A + +cartridge sha256:0415adfe80977485f84cdffaaa79f18c91c004c7dba202b4cf9a94eb11adeada + name:Incredible Crash Dummies, The (USA) + cheat + description:Invincibility (blinking) + code:7E1338:37 + cheat + description:Infinite health + code:7E03B6:05 + cheat + description:Infinite lives + code:7E03B5:05 + cheat + description:Infinite time (disable at end of level) + code:7E04A6:3B + cheat + description:Infinite spanners + code:7E04A0:0A + cheat + description:Infinite wrenches (disable at end of level) + code:7E04A0:05 + cheat + description:Infinite airbag once obtained + code:7E0492:C7 + cheat + description:Infinite lightning once obtained + code:7E0490:C7 + cheat + description:Start at Parking Level 1 + code:7E03B9:01 + cheat + description:Start at Crash Center + code:7E03B9:02 + cheat + description:Start at Crash Center Boss + code:7E03B9:03 + cheat + description:Start at Construction Site 1 + code:7E03B9:04 + cheat + description:Start at Construction Site 2 + code:7E03B9:05 + cheat + description:Start at Construction Site Boss + code:7E03B9:06 + cheat + description:Start at Artillery Range 1 + code:7E03B9:07 + cheat + description:Start at Military Complex + code:7E03B9:08 + cheat + description:Start at Military Complex Boss + code:7E03B9:09 + cheat + description:Start at Junk Kastle + code:7E03B9:0A + cheat + description:Start at Junk Kastle Boss + code:7E03B9:0B + cheat + description:Start at Title Screen + code:7E03B9:0C + cheat + description:Start at Credits + code:7E03B9:0D + cheat + description:Start at Parking Level 2 + code:7E03B9:0E + cheat + description:Start at Vehicle Crash Test 1 'car' + code:7E03B9:0F + cheat + description:Start at Vehicle Crash Test 2 'bulldozer' + code:7E03B9:10 + cheat + description:Start at Artillery Range 2 + code:7E03B9:11 + cheat + description:Start at Vehicle Crash Test 3 'tank' + code:7E03B9:12 + +cartridge sha256:8d170628d2d2fdf142bb82ad80e908bba54c45fa33241c779b8eafaf1b21171f + name:Incredible Hulk, The (USA) + cheat + description:Infinite health + code:8260-1465+C2E9-44DF + cheat + description:Infinite transformation capsules on pick-up + code:C96D-CDC6 + cheat + description:Health doesn't decrease when Hulked-out + code:C260-4746 + cheat + description:Hit anywhere + code:0AB3-4D00+2DB3-4DD0+3DB2-4700+DDB2-4760+DDB2-47A0 + cheat + description:One hit kills + code:DDBF-47D0 + cheat + description:Get items from anywhere + code:6DBF-17CB + cheat + description:Get 4 shots from gun + code:D0BC-173B + cheat + description:Get 9 shots from gun + code:DBBC-173B + cheat + description:Get 20 shots from gun + code:F0BC-173B + cheat + description:Get 20 seconds from time icon + code:4DB0-1F4B + cheat + description:Get 40 seconds from time icon + code:0DB0-1F4B + cheat + description:2x energy from gamma capsules + code:F3BE-144B + cheat + description:Gamma capsules act as mega-gamma capsules + code:DDB8-171B + cheat + description:Super-jump (sometimes) + code:DA25-34A7+DA34-47AD + cheat + description:Mega-jump (sometimes) + code:FB25-34A7+FB34-47AD + cheat + description:Mega damage from Hulk's uppercut + code:DCB7-44D0 + cheat + description:Mega damage from Hulk's head butt + code:DCB1-4FD0 + cheat + description:4x damage from Hulk's uppercut + code:D0B7-44D0 + cheat + description:4x damage from Hulk's head-butt + code:D0B1-4FD0 + cheat + description:Start with 1 life + code:DFBD-CD6F + cheat + description:Start with 6 lives + code:D1BD-CD6F + cheat + description:Start with 9 lives + code:DBBD-CD6F + cheat + description:Start on level 2 + code:DDB2-1F0F + cheat + description:Start on level 3 + code:4DB2-1F0F + cheat + description:Start on level 4 + code:0DB2-1F0F + cheat + description:Start on level 5 + code:6DB2-1F0F + cheat + description:Infinite and max health + code:7E0718:63 + cheat + description:Infinite lives + code:7E00C0:09 + +cartridge sha256:cf611b40f9570e8fcfdc21db623965da62561e8ca82ded59e432ba6fb0bfb562 + name:Indiana Jones' Greatest Adventures (USA) + cheat + description:Invincibility + code:62A7-1764+2D80-CDDF + cheat + description:Infinite lives + code:C2C2-37A4 + cheat + description:Infinite Bombs + code:C2B6-370F + cheat + description:Infinite Grenades + code:C2B6-370F + cheat + description:Infinite continues + code:3CAB-CE82+F0BC-173B + cheat + description:Hearts don't restore health + code:C2B6-440F + cheat + description:Can't collect Grenades + code:C2B9-37DF + cheat + description:Start with very little health + code:DFC1-3707 + cheat + description:Start with about 1/2 health + code:D7C1-3707 + cheat + description:Start with more health (ignore health meter) + code:DEC1-3701 + cheat + description:Start with 5 Grenades + code:D9C7-CF0F + cheat + description:Start with 9 Grenades + code:DBC7-CF0F + cheat + description:Start with 15 Grenades + code:DEC7-CF0F + cheat + description:Start with 2 lives + code:DFCC-1E83 + cheat + description:Start with 5 lives + code:D0CC-1E83 + cheat + description:Start with 10 lives + code:DBCC-1E83 + cheat + description:Start with no continues + code:D1C8-13E3 + cheat + description:Infinite health + code:7E0120:06 + +cartridge sha256:5e5cac64fdcf09a52a9c0ab1ebc8bd309dcb1256faf1405284443569b5284fe5 + name:Inindo - Way of the Ninja (USA) + cheat + description:Max defend + code:7EF0C8:FF + cheat + description:Max intelligence + code:7EF0C3:FF + cheat + description:Max luck + code:7EF0C5:FF + cheat + description:Max power + code:7EF0CA:FF + cheat + description:Max resist + code:7EF0C9:FF + cheat + description:Max speed + code:7EF0C4:FF + cheat + description:Start with 50,000 gold + code:A0ED-D460 + cheat + description:Start with 250 health after the first battle + code:ECEC-DFD0 + cheat + description:Start with 100 energy after the first level up + code:10EC-D4D0 + cheat + description:Infinite HP in battle + code:7E9606:E7+7E9607:03 + cheat + description:Max HP + code:7EF0B6:E7+7EF0B7:03 + cheat + description:Infinite energy + code:7EF0BC:E7+7EF0BD:03 + cheat + description:Max energy + code:7EF0BA:E7+7EF0BB:03 + cheat + description:Infinite chips + code:7EF076:FF+7EF077:FF + +cartridge sha256:c7b1706a0ee96f3e0d65cd043c05966bfe3d5c57d08bbd2df3118817424adf82 + name:Inspector Gadget (USA) + cheat + description:Invincibility (keep coat in collisions) + code:C269-5D0D + cheat + description:Infinite time + code:C297-8F0F + cheat + description:Infinite lives + code:C216-5DD4 + cheat + description:Start with 3 plungers + code:D74B-E7D7 + +cartridge sha256:8e0d620a307a225a757bbc9ef2a2a666792e5d533aa0279d3c0060a1b93ead82 + name:Iron Commando - Koutetsu no Senshi (Japan) + cheat + description:Invincibility - Bicycle stages + code:18EA-CDA1 + cheat + description:Infinite ammo + code:C2A1-4D61 + cheat + description:One hit kills (most enemies) + code:40EF-4461+B3C9-4406+BAC9-47D6 + +cartridge sha256:39bfe828571cdb23e7c85c23cf5b175979dcc2042c5841add58f5ae6492168a9 + name:Itchy & Scratchy Game, The (USA) + cheat + description:Infinite health + code:C2E1-402E + cheat + description:Infinite lives + code:C2BB-CDD4 + cheat + description:Infinite time + code:C28A-CD55 + cheat + description:Infinite Bones + code:C28A-3DDF + cheat + description:Infinite health - P1 + code:7E022B:46 + cheat + description:Infinite lives (alt) + code:7E023A:03 + cheat + description:Infinite Cheese speed boost + code:7E023B:03 + cheat + description:Infinite Boss weapons + code:7E023C:0F + +cartridge sha256:183af7d642b55d52cd594786ec2f031d033cc6c8c1a2a84a834e4ada04301b26 + name:Izzy's Quest for the Olympic Rings (USA) + cheat + description:Infinite health (disable then enable when bored in sub games) + code:7E9EB0:03 + cheat + description:Infinite lives + code:7E9E90:0A + cheat + description:Start on Greek Village I + code:7E0394:05+7E0398:05 + cheat + description:Start on Rocket Ride I + code:7E0394:06+7E0398:06 + cheat + description:Start on Greek Village II + code:7E0394:07+7E0398:07 + cheat + description:Start on Space Walk I + code:7E0394:08+7E0398:08 + cheat + description:Start on Greek Village III + code:7E0394:09+7E0398:09 + cheat + description:Start on Rocket Ride II + code:7E0394:0A+7E0398:0A + cheat + description:Start on Lava Dome I + code:7E0394:0B+7E0398:0B + cheat + description:Start on Space Walk II + code:7E0394:0C+7E0398:0C + cheat + description:Start on Lava Dome II + code:7E0394:0D+7E0398:0D + cheat + description:Start on Rocket Ride III + code:7E0394:0E+7E0398:0E + cheat + description:Start on Lava Dome III + code:7E0394:0F+7E0398:0F + cheat + description:Start on Space Walk III + code:7E0394:10+7E0398:10 + cheat + description:Start on Exit to Atlanta I + code:7E0394:11+7E0398:11 + cheat + description:Start on Exit to Atlanta II + code:7E0394:12+7E0398:12 + cheat + description:Start on Round Ends + code:7E0394:13+7E0398:13 + cheat + description:Start on Game Ending + code:7E0394:14+7E0398:14 + +cartridge sha256:62557ee2a3fc3b5a3f59431f966eb61bb380ba983ef6c7742cb55cf075f15f6c + name:J.R.R. Tolkien's The Lord of the Rings - Volume 1 (USA) + cheat + description:Invincibility - all characters + code:82A2-CF6D + cheat + description:Start with 908 HP + code:DBCE-C360+DBCE-C4A0 + cheat + description:Start with 9908 HP + code:BBCE-C360+BBCE-C4A0 + cheat + description:Start the game with more strength + code:62CD-34D0 + cheat + description:9999 HP - character 1 + code:7E0224:99+7E0225:99 + cheat + description:9999 max HP - character 1 + code:7E0236:99+7E0237:99 + cheat + description:9999 EXP - character 1 + code:7E0246:99+7E0247:99 + cheat + description:Level 98 - character 1 + code:7E0256:98 + cheat + description:9999 HP - character 2 + code:7E0226:99+7E0227:99 + cheat + description:9999 max HP - character 2 + code:7E0238:99+7E0239:99 + cheat + description:9999 EXP - character 2 + code:7E0248:99+7E0249:99 + cheat + description:Level 98 - character 2 + code:7E0258:98 + cheat + description:Have all items + code:7E02B0:FF+7E02B1:FF+7E02B2:FF+7E02B3:FF+7E02B4:FF+7E02B5:01+7E02AA:FF+7E02AB:FF+7E02AC:FF+7E02AD:FF+7E02AE:FF+7E02AF:FF + +cartridge sha256:3ffbb6e0ccf8e9f5e4c72d9fe526a16371e562b71a91d6430e562bf358a5126b + name:Jack Nicklaus Golf (USA) + cheat + description:Infinite mulligans + code:82BF-6707 + cheat + description:Mulligan can be taken after any stroke + code:6DB2-0D07 + cheat + description:No mulligans allowed + code:DDBA-0467 + cheat + description:Each round ends after hole 1 + code:DF33-076F+DDEB-D40A + cheat + description:Each round ends after hole 2 + code:D433-076F+DFEB-D40A + cheat + description:Each round ends after hole 3 + code:D733-076F+D4EB-D40A + cheat + description:Each round ends after hole 4 + code:D033-076F+D7EB-D40A + cheat + description:Each round ends after hole 5 + code:D933-076F+D0EB-D40A + cheat + description:Each round ends after hole 6 + code:D133-076F+D9EB-D40A + cheat + description:Each round ends after hole 7 + code:D533-076F+D1EB-D40A + cheat + description:Each round ends after hole 8 + code:D633-076F+D5EB-D40A + cheat + description:Each round ends after hole 9 + code:DB33-076F+D6EB-D40A + cheat + description:Each round ends after hole 10 + code:DC33-076F+DBEB-D40A + cheat + description:Each round ends after hole 11 + code:D833-076F+DCEB-D40A + cheat + description:Each round ends after hole 12 + code:DA33-076F+D8EB-D40A + cheat + description:Each round ends after hole 13 + code:D233-076F+DAEB-D40A + cheat + description:Each round ends after hole 14 + code:D333-076F+D2EB-D40A + cheat + description:Each round ends after hole 15 + code:DE33-076F+D3EB-D40A + cheat + description:Each round ends after hole 16 + code:FD33-076F+DEEB-D40A + cheat + description:Each round ends after hole 17 + code:FF33-076F+FDEB-D40A + +cartridge sha256:9cf82dd9a851cdc38bf2afc286c077ff18a0a5d3bb301eba606cc52db62f8965 + name:James Bond Jr (USA) + cheat + description:Infinite health (can still be hurt by some things) + code:CE2B-D4B6 + cheat + description:Infinite Grenades + code:C22A-6FBC + cheat + description:Infinite Darts + code:C227-DDF8 + cheat + description:Infinite lives on the ground + code:C2E0-6F0D + cheat + description:Infinite lives in the air + code:C26C-6F08 + cheat + description:Hearts worth 0 + code:C23D-6FBC + cheat + description:Large red Grenade worth 0 instead of 5 + code:DD34-679C + cheat + description:Large red Grenade worth 10 + code:DC34-679C + cheat + description:Large red Grenade worth 20 + code:F034-679C + cheat + description:Large red Grenade worth 30 + code:F334-679C + cheat + description:Large red Grenade worth 40 + code:4634-679C + cheat + description:Small silver Grenade worth 0 instead of 1 + code:3C3A-ADFC + cheat + description:Start with 1 life on the ground instead of 5 + code:DFA0-670D + cheat + description:Start with 3 lives on the ground + code:D7A0-670D + cheat + description:Start with 7 lives on the ground + code:D5A0-670D + cheat + description:Start with 9 lives on the ground + code:DBA0-670D + cheat + description:Start with 1 life in the air instead of 5 + code:DF68-DDAD + cheat + description:Start with 3 lives in the air + code:D768-DDAD + cheat + description:Start with 7 lives in the air + code:D568-DDAD + cheat + description:Start with 9 lives in the air + code:DB68-DDAD + cheat + description:Start with 0 Grenades and Darts instead of 10 + code:DDE7-6F6D + cheat + description:Start with 5 Grenades and Darts + code:D9E7-6F6D + cheat + description:Start with 25 Grenades and Darts + code:FBE7-6F6D + cheat + description:Start with 50 Grenades and Darts + code:74E7-6F6D + cheat + description:Start with 99 Grenades and Darts + code:17E7-6F6D + cheat + description:Start with 0 Darts instead of 10 + code:DDA9-640D+CEE7-64AD + cheat + description:Start with 5 Darts + code:D9A9-640D+CEE7-64AD + cheat + description:Start with 25 Darts + code:FBA9-640D+CEE7-64AD + cheat + description:Start with 50 Darts + code:74A9-640D+CEE7-64AD + cheat + description:Start with 99 Darts + code:17A9-640D+CEE7-64AD + cheat + description:Start on level 3 + code:CBAC-6D0D+DFAC-6D6D + cheat + description:Start on level 5 + code:CBAC-6D0D+D4AC-6D6D + cheat + description:Start on level 7 + code:CBAC-6D0D+D7AC-6D6D + cheat + description:Start on level 3, part 2 + code:CBAB-67AD+D0AC-6DDD+6DAC-6D0D + cheat + description:Start on level 3, part 3 + code:CBAB-67AD+D5AC-6DDD+6DAC-6D0D + cheat + description:Start on level 5, part 2 + code:CBAB-67AD+D9AC-6DDD+6DAC-6D0D + cheat + description:Start on level 5, part 3 + code:CBAB-67AD+D6AC-6DDD+6DAC-6D0D + cheat + description:Start on level 7, part 2 + code:CBAB-67AD+D1AC-6DDD+6DAC-6D0D + cheat + description:Start on level 7, part 3 + code:CBAB-67AD+DBAC-6DDD+6DAC-6D0D + +cartridge sha256:f5e74f09c485d58b444ef2b168d041a1d451056b5feb295901974ca73190dbdb + name:Jelly Boy (Europe) + cheat + description:Infinite lives + code:C228-3FD4 + cheat + description:Infinite time + code:C2E3-1D05 + cheat + description:Don't lose Music Notes when hit (can get stuck) + code:C226-4FA7 + +cartridge sha256:bc09f97cb988f6e445fc92e438fff4bf97aa56cb7bbecaa234ffe93bb285d915 + name:Jelly Boy 2 (Japan) (Proto) + cheat + description:Invincibility + code:7E026B:03 + cheat + description:Infinite lives + code:7E0269:03 + +cartridge sha256:85e5f6fedc420925557092d728e1dc6b4e2042368fb78bf93c0df447f8c9c0c0 + name:Jeopardy! (USA) + cheat + description:Always get the correct answer + code:6DC8-6D67+6DCE-64A7 + +cartridge sha256:ee7a29eb9c302ea2bb235ef990fd8344a6beb9817499941c40a8a94ad5f7c964 + name:Jetsons, The - Invasion of the Planet Pirates (USA) + cheat + description:Invincibility + code:3C62-1761 + cheat + description:Infinite lives + code:C26D-4767 + cheat + description:Infinite time + code:C2AD-4D6F + cheat + description:Maximum vacuum power + code:D0BB-146D + +cartridge sha256:6a2f280ed1ef5166d95e3b0eb1a6665564f7ddcfd3feaf53344a1268b54b85c6 + name:Jikkyou Oshaberi Parodius (Japan) + cheat + description:Infinite lives + code:7E00AC:04 + +cartridge sha256:a314583b11d594b8245b5177aa64a4d3b7497d096edabbea7c1842c57aa2ad2b + name:Jim Lee's WildC.A.T.S - Covert-Action-Teams (USA) + cheat + description:Invincibility + code:C2C5-CDCB + cheat + description:Infinite health + code:826C-C7C6 + cheat + description:Infinite lives + code:3CB7-1F1C + cheat + description:Infinite health (alt) + code:7E401E:48 + cheat + description:Infinite lives (alt) + code:7E1F93:03 + cheat + description:Infinite bombs + code:7E1F95:09 + +cartridge sha256:6f0bec87ece503b0fbe108cd159ed6f5fa7711b1c4fe31e982af41ad5c638093 + name:Jim Power - The Lost Dimension in 3D (USA) + cheat + description:Invincibility + code:CEAB-1D0D + cheat + description:Infinite lives + code:C9AD-CF0D + cheat + description:Infinite time + code:C920-3FA5 + cheat + description:Infinite SB + code:C93F-4764 + cheat + description:Invincibility (alt) + code:7E074E:39 + cheat + description:Infinite lives (alt) + code:7E003F:09 + cheat + description:Infinite time (alt) + code:7E0043:FF + cheat + description:Infinite SB (alt) + code:7E0041:09 + cheat + description:Jump as high as you want and jump through walls (disable to come back down) + code:7E077E:10 + +cartridge sha256:3b2b8b813b58049a4a86ce1c42d2a651f19fd9bbab2407a494e20cf343d3c1a4 + name:Joe & Mac (USA) + cheat + description:Invincibility after one hit + code:892C-64D4 + cheat + description:Infinite health + code:2BBA-64D7 + cheat + description:Infinite health (alt) + code:8BBA-64D7 + cheat + description:Infinite lives + code:DD36-D40D + cheat + description:Infinite lives (alt) + code:8936-D46D + cheat + description:Infinite Keys + code:C936-D708 + cheat + description:All food fully restores health + code:DDE0-0F6F + cheat + description:Hit anywhere + code:6DC3-0DAD+C9E5-DDDD+DDC4-076D + cheat + description:One hit kills + code:40CC-07DD + cheat + description:Start with 2 lives + code:CBC8-6404+DFC8-6464 + cheat + description:Start with 6 lives + code:CBC8-6404+D9C8-6464 + cheat + description:Start with 10 lives + code:CBC8-6404+DBC8-6464 + cheat + description:Infinite health - P1 + code:7E081C:14 + cheat + description:Infinite health - P2 + code:7E085C:0F + cheat + description:Infinite lives - P1 + code:7E0822:05 + cheat + description:Infinite lives - P2 + code:7E0862:05 + cheat + description:Have no weapon - P1 + code:7E081A:B8 + cheat + description:Have no weapon - P2 + code:7E085A:B8 + cheat + description:Have Bone - P1 + code:7E081A:B9 + cheat + description:Have Bone - P2 + code:7E085A:B9 + cheat + description:Have Boomerang - P1 + code:7E081A:BA + cheat + description:Have Boomerang - P2 + code:7E085A:BA + cheat + description:Have Fire - P1 + code:7E081A:BB + cheat + description:Have Fire - P2 + code:7E085A:BB + cheat + description:Have Wheel - P1 + code:7E081A:BC + cheat + description:Have Wheel - P2 + code:7E085A:BC + +cartridge sha256:38451dcbbcd7069ba232e704dcb747a1438bab0a9508218611a027a7f8dfd547 + name:Joe & Mac 2 - Lost in the Tropics (USA) (Beta) + cheat + description:Infinite health + code:B982-176D + cheat + description:Infinite lives + code:893D-3FAD + cheat + description:Start with $2020 + code:A73B-370D + +cartridge sha256:c9889799a9ae8558f26d66ae546db930c99acb78d921b4395afbbc38da6272aa + name:Joe & Mac 2 - Lost in the Tropics (USA) + cheat + description:Infinite health + code:B987-CD6D + cheat + description:Infinite lives + code:B9C1-3467 + cheat + description:Hit anywhere (disable to enter stores and houses) + code:DD33-1707+DD34-3DA7+DD66-C7AC + cheat + description:Start with $2020 + code:A73F-47AF + +cartridge sha256:5a76347672ea7d27bb334b1e30bbc73e06f92373883bed499245377327a8f0cf + name:John Madden Football (USA) + cheat + description:Always 1st down + code:C2AB-64A4 + cheat + description:Infinite time-outs + code:3C24-A70D + cheat + description:Play clock is 20 seconds instead of 45 + code:F0A2-A4DD + cheat + description:Play clock is 30 seconds + code:F3A2-A4DD + cheat + description:Play clock is 60 seconds (CPU will run down the play clock) + code:7AA2-A4DD + cheat + description:Play clock is 90 seconds (CPU will run down the play clock) + code:9CA2-A4DD + cheat + description:Only have 3 plays to get a first down or TD (down counter starts at 2) + code:D4A3-6D04 + cheat + description:Only have 2 plays to get a first down or TD (down counter starts at 3) + code:D7A3-6D04 + cheat + description:Only have 1 play to get a first down or TD (down counter starts at 4) + code:D0A3-6D04 + cheat + description:No time-outs instead of 3 - P1 + code:DD69-A407 + cheat + description:6 time-outs - P1 + code:D169-A407 + cheat + description:9 time-outs - P1 + code:DB69-A407 + cheat + description:No time-outs - P2 + code:DD69-A467 + cheat + description:6 time-outs - P2 + code:D169-A467 + cheat + description:9 time-outs - P2 + code:DB69-A467 + cheat + description:Safeties worth 1 point instead of 2 + code:82A6-AF64 + cheat + description:Safeties worth 0 points + code:82A6-AF64+82A6-A404 + cheat + description:Touchdowns worth 0 points instead of 6 + code:DDA4-0767 + cheat + description:Touchdowns worth 1 point + code:DFA4-0767 + cheat + description:Touchdowns worth 2 points + code:D4A4-0767 + cheat + description:Touchdowns worth 3 points + code:D7A4-0767 + cheat + description:Touchdowns worth 4 points + code:D0A4-0767 + cheat + description:Touchdowns worth 5 points + code:D9A4-0767 + cheat + description:Touchdowns worth 7 points + code:D5A4-0767 + cheat + description:Touchdowns worth 8 points + code:D6A4-0767 + cheat + description:Touchdowns worth 9 points + code:DBA4-0767 + cheat + description:Extra points and field goals worth 0 + code:3CA7-A707+3CA7-A767 + cheat + description:Extra point or field goal resets score to 0 + code:B3A7-A7A7 + cheat + description:Start with 3 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+D76C-6D67 + cheat + description:Start with 5 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467 + cheat + description:Start with 9 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DB6C-6D67 + cheat + description:Start with 12 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DA6C-6D67 + cheat + description:Start with 15 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DE6C-6D67 + cheat + description:Start with 20 points - P1 + code:CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+F06C-6D67 + cheat + description:Start with 3 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+D76C-6D67 + cheat + description:Start with 5 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467 + cheat + description:Start with 9 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DB6C-6D67 + cheat + description:Start with 12 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DA6C-6D67 + cheat + description:Start with 15 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DE6C-6D67 + cheat + description:Start with 20 points - P2 + code:CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+F06C-6D67 + +cartridge sha256:3e62872bf69ea90dd7093608268f8defa2c6016adb1011745dab3c2af45d69b7 + name:John Madden Football '93 (USA) + cheat + description:Infinite timeouts - both players + code:3C3A-0FAD + cheat + description:9 timeouts - P1 + code:DB30-D43A + cheat + description:6 timeouts - P1 + code:D130-D43A + cheat + description:1 timeout - P1 + code:DF30-D43A + cheat + description:9 timeouts - P2 + code:DB30-D74A + cheat + description:6 timeouts - P2 + code:D130-D74A + cheat + description:1 timeout - P2 + code:DF30-D74A + +cartridge sha256:67fa7115eb6bf292c024c3a8b06ce9bd457c4d46de182a06a573afff968cc0f1 + name:Judge Dredd (USA) + cheat + description:Invincible after first hit + code:C22C-1B2D + cheat + description:Almost infinite health + code:C2A9-1627 + cheat + description:Almost infinite ammo + code:C2BE-4A4B + cheat + description:Don't flash after getting hit + code:DDA9-1CB7 + cheat + description:Don't flash as long after getting hit + code:74A9-1CB7 + cheat + description:Flash longer after getting hit + code:EEA9-1CB7 + cheat + description:Start with all weapons and almost infinite ammo + code:EE63-1318 + cheat + description:Start with very little energy on your first life + code:DE6D-C338 + cheat + description:Start with half energy on your first life + code:6D6D-C338 + cheat + description:Start with about 3/4 energy on your first life + code:A16D-C338 + cheat + description:Start with very little energy after first life + code:DE3A-48B7 + cheat + description:Start with half energy after first life + code:6D3A-48B7 + cheat + description:Start with about 3/4 energy after first life + code:A13A-48B7 + cheat + description:Start with 1 life + code:DF62-1A38 + cheat + description:Start with 5 lives + code:D962-1A38 + cheat + description:Start with 9 lives + code:DB62-1A38 + cheat + description:Invincibility + code:7E1A91:01 + cheat + description:Infinite health + code:7E1B11:FF + cheat + description:Infinite lives + code:7E1AF7:09 + cheat + description:Infinte Grenades + code:7E1B01:99 + cheat + description:Infinite Boing + code:7E1B0D:99 + cheat + description:Infinite Richochet + code:7E1AFF:99 + cheat + description:Infinite Seeker + code:7E1B09:99 + cheat + description:Infinite Double Whammie + code:7E1B0B:99 + cheat + description:Infinite Incindiary + code:7E1B05:99 + cheat + description:Infinte High Explosive + code:7E1B03:99 + cheat + description:Infinte Armor Piercing + code:7E1B07:99 + cheat + description:Infinite Flare + code:7E1B0F:99 + cheat + description:Infinite Hover Board and Hover Boots + code:7E1AA5:F9 + +cartridge sha256:02cb423199be3368fc2b40148f83b7a48900394983e04d43f94bb7d76ce44e94 + name:Judge Dredd (Europe) + cheat + description:Invincibility + code:7E1A91:01 + cheat + description:Infinite health + code:7E1B11:FF + cheat + description:Infinite lives + code:7E1AF7:09 + cheat + description:Infinte Grenades + code:7E1B01:99 + cheat + description:Infinite Boing + code:7E1B0D:99 + cheat + description:Infinite Richochet + code:7E1AFF:99 + cheat + description:Infinite Seeker + code:7E1B09:99 + cheat + description:Infinite Double Whammie + code:7E1B0B:99 + cheat + description:Infinite Incindiary + code:7E1B05:99 + cheat + description:Infinte High Explosive + code:7E1B03:99 + cheat + description:Infinte Armor Piercing + code:7E1B07:99 + cheat + description:Infinite Flare + code:7E1B0F:99 + cheat + description:Infinite Hover Board and Hover Boots + code:7E1AA5:F9 + +cartridge sha256:771a0322d9f5f8e13a52d01e80257a1f75cc693cf4abf74793520eb5f8b5580e + name:Jungle Book, The (USA) + cheat + description:Infinite weapons + code:DD6F-4DD4 + cheat + description:Infinite lives + code:C2CC-4704 + cheat + description:Hearts from big jungle fruit restore all energy + code:DDCF-3F6D + cheat + description:Super-jump - Mowgli + code:E8CA-3DA4 + cheat + description:Mega-jump - Mowgli + code:ECCA-3DA4 + cheat + description:20 seconds from hourglass + code:D4C0-1FAF + cheat + description:30 seconds from hourglass + code:D7C0-1FAF + cheat + description:Bonus gems worth 2 (don't collect over 100) + code:D4CA-4DDF + cheat + description:Bonus gems worth 3 (don't collect over 100) + code:D7CA-4DDF + cheat + description:Bonus gems worth 4 (don't collect over 100) + code:D0CA-4DDF + cheat + description:Red gems worth 2 (don't collect over 100) + code:D4C2-4FAF + cheat + description:Red gems worth 3 (don't collect over 100) + code:D7C2-4FAF + cheat + description:Red gems worth 4 (don't collect over 100) + code:D0C2-4FAF + cheat + description:The amazing rock (just for fun) + code:DD65-47AD + cheat + description:Start with 9 hearts (normal game) + code:DBEF-1F67 + cheat + description:Start with 6 hearts (normal game) + code:D1EF-1F67 + cheat + description:Start with 1 heart (normal game) + code:DFEF-1F67 + cheat + description:Start with 10 lives (normal game) + code:DBEF-1DD7 + cheat + description:Start with 2 lives (normal game) + code:DFEF-1DD7 + cheat + description:Invincibility + code:7E068C:31 + cheat + description:Infinite health + code:7E010B:04 + cheat + description:Have 99 green gems + code:7E015D:99 + cheat + description:Have 99 red gems + code:7E015E:99 + +cartridge sha256:8d812ea4fa897274116f7f43bc689e110f1cfbd3f7eb3a1737c2a85d36369159 + name:Jungle Strike (USA) + cheat + description:Infinite ammo + code:C2A5-476F + cheat + description:Infinite armor + code:C2A9-4FA7 + cheat + description:Infinite lives + code:CEBE-C4D4 + cheat + description:Start with less fuel + code:7485-C7D1 + cheat + description:Start with more fuel + code:7485-C7D1 + cheat + description:Start with mega fuel + code:7485-C701 + cheat + description:Start with 0 hellfires + code:DD86-C761 + cheat + description:Start with more hellfires + code:B186-C761 + cheat + description:Start with mega hellfires + code:B186-C7A1 + cheat + description:Start with less gun ammo + code:DD8B-C4A1 + cheat + description:Start with more gun ammo + code:F18B-C4A1 + cheat + description:Start with mega gun ammo + code:748B-C4A1 + cheat + description:Start with less hydras + code:FB8B-CFD1 + cheat + description:Start with more hydras + code:EE8B-CFD1 + cheat + description:Start with mega hydras + code:748B-CF01 + +cartridge sha256:0a4e9d6fa2ac16aa51da5538d93280734de480e44c430173ed14826c84553c7d + name:Jurassic Park (USA) (Rev 1) + cheat + description:Infinite lives + code:C26A-4700 + cheat + description:Cattle Prod energy recharges to about 3/4 full when outside + code:F682-CFAD + cheat + description:Cattle Prod energy recharges to about 1/2 full when outside + code:FD82-CFAD + cheat + description:Cattle Prod energy recharges to about 1/4 full when outside + code:D682-CFAD + cheat + description:Infinite Cattle Prod energy when outside + code:C285-C76D + cheat + description:Infinite 1st weapons when outside + code:C2CB-3407 + cheat + description:Infinite 2nd weapons when outside (except gas grenade) + code:8289-4DAD + cheat + description:Cattle Prod energy recharges to 1/2 full when inside + code:EDEA-4767 + cheat + description:Infinite Cattle Prod energy when inside + code:C282-4B65 + cheat + description:Infinite 1st weapons when inside + code:3CC4-3C65+3CCA-36D5 + cheat + description:Infinite 2nd weapons when inside (except gas grenade) + code:C2C6-3BD1 + cheat + description:Infinite continues with 4 lives + code:C2B8-C4D0 + cheat + description:Continue 1st time with 5 lives + code:D0BC-CDA0 + cheat + description:Continue with 5 lives after 1st continue + code:D0BC-C7D0 + cheat + description:Start with 1 egg needed + code:DF23-3469 + cheat + description:Start with 2 lives + code:DF2E-3DD9 + cheat + description:Start with 4 lives + code:D72E-3DD9 + cheat + description:Infinite health + code:7E02EB:03 + cheat + description:Infinite lives (alt) + code:7E02A3:03 + cheat + description:Infinite ammo - all weapons + code:7E028B:20+7E0295:20+7E029F:20 + cheat + description:Generator on + code:7E00F0:EF + cheat + description:Have level 1 security card + code:7E0265:01 + cheat + description:Have level 2 security card + code:7E0267:01 + cheat + description:Have all 18 Eggs + code:7E0E0F:00+7E0E10:00 + cheat + description:Have John Hammond ID Card + code:7E0253:01 + cheat + description:Have Dr. Ellie Sattler ID Card + code:7E0255:01 + cheat + description:Have Robert Muldoon ID Card + code:7E0257:01 + cheat + description:Have Dr. Allen Grant ID Card + code:7E0259:01 + cheat + description:Have Donald Gennaro ID Card + code:7E025B:01 + cheat + description:Have Ray Arnold ID Card + code:7E025E:01 + cheat + description:Have Dennis Nedry ID Card + code:7E0260:01 + cheat + description:Have Dr. Henry Wu ID Card + code:7E0261:01 + cheat + description:Have Dr. Ian Malcolm ID Card + code:7E0263:01 + +cartridge sha256:fe91d45201753ae9655d5ce38838e352f478b26b2d933c1bcb5bd8330121f9ff + name:Jurassic Park (USA) + cheat + description:Infinite lives + code:C26A-4700 + cheat + description:Cattle Prod energy recharges to about 3/4 full when outside + code:F682-CFAD + cheat + description:Cattle Prod energy recharges to about 1/2 full when outside + code:FD82-CFAD + cheat + description:Cattle Prod energy recharges to about 1/4 full when outside + code:D682-CFAD + cheat + description:Infinite Cattle Prod energy when outside + code:C285-C76D + cheat + description:Infinite 1st weapons when outside + code:C2CB-3407 + cheat + description:Infinite 2nd weapons when outside (except gas grenade) + code:8289-4DAD + cheat + description:Cattle Prod energy recharges to 1/2 full when inside + code:EDEA-4767 + cheat + description:Infinite Cattle Prod energy when inside + code:C282-4B65 + cheat + description:Infinite 1st weapons when inside + code:3CC4-3C65+3CCA-36D5 + cheat + description:Infinite 2nd weapons when inside (except gas grenade) + code:C2C6-3BD1 + cheat + description:Infinite continues with 4 lives + code:C2B8-C4D0 + cheat + description:Continue 1st time with 5 lives + code:D0BC-CDA0 + cheat + description:Continue with 5 lives after 1st continue + code:D0BC-C7D0 + cheat + description:Start with 1 egg needed + code:DF23-3469 + cheat + description:Start with 2 lives + code:DF2E-3DD9 + cheat + description:Start with 4 lives + code:D72E-3DD9 + cheat + description:Infinite health + code:7E02EB:03 + cheat + description:Infinite lives (alt) + code:7E02A3:03 + cheat + description:Infinite ammo - all weapons + code:7E028B:20+7E0295:20+7E029F:20 + cheat + description:Generator on + code:7E00F0:EF + cheat + description:Have level 1 security card + code:7E0265:01 + cheat + description:Have level 2 security card + code:7E0267:01 + cheat + description:Have all 18 Eggs + code:7E0E0F:00+7E0E10:00 + cheat + description:Have John Hammond ID Card + code:7E0253:01 + cheat + description:Have Dr. Ellie Sattler ID Card + code:7E0255:01 + cheat + description:Have Robert Muldoon ID Card + code:7E0257:01 + cheat + description:Have Dr. Allen Grant ID Card + code:7E0259:01 + cheat + description:Have Donald Gennaro ID Card + code:7E025B:01 + cheat + description:Have Ray Arnold ID Card + code:7E025E:01 + cheat + description:Have Dennis Nedry ID Card + code:7E0260:01 + cheat + description:Have Dr. Henry Wu ID Card + code:7E0261:01 + cheat + description:Have Dr. Ian Malcolm ID Card + code:7E0263:01 + +cartridge sha256:5eff7c27f69b3ebc1ec1294ffcd1debf3512bc3e6c1c75fbdc5e778dcaaba1c9 + name:Jurassic Park Part 2 - The Chaos Continues (USA) (En,Fr,De,It) + cheat + description:Almost invincible + code:8BEB-C22D+8B65-1C67 + cheat + description:Invincibility after one hit until you enter a new screen + code:82B6-C704 + cheat + description:Infinite health against some larger dinosaurs + code:6DED-3A9D + cheat + description:One hit kills on some dinosaurs + code:D462-48DD + cheat + description:Regular Gun is super strong + code:0D6A-106E + cheat + description:Flash longer after getting hit + code:EE30-1DAF + cheat + description:Don't flash after getting hit + code:DD30-1DAF + cheat + description:Velociraptor takes more damage + code:4DC5-C67C + cheat + description:Start with less Machine Gun ammo + code:DEC0-397D + cheat + description:Start with more Shotgun ammo + code:10C0-31ED + cheat + description:Start with less Tranquilizer Gun ammo + code:FDC9-315D + cheat + description:Start with more Tranquilizer Missiles + code:10C1-307D + cheat + description:Invincibility - P1 + code:7EB04A:0E + cheat + description:Infinite health - P1 + code:7EB032:28 + cheat + description:Infinite Machine Gun ammo + code:7EA9B0:FF + cheat + description:Infinite Shotgun ammo + code:7EA9B2:FF + cheat + description:Infinite Grenade Launcher + code:7EA9B6:FF + cheat + description:Infinite Dino stock + code:7E0008:64 + cheat + description:Have Rifle + code:7EB040:00 + cheat + description:Have Machine Gun + code:7EB040:01 + cheat + description:Have Shotgun + code:7EB040:02 + cheat + description:Have Charge Gun + code:7EB040:03 + cheat + description:Have Tranquilizer Gun + code:7EB040:04 + cheat + description:Have Big Bomb Gun + code:7EB040:05 + cheat + description:Have Big Bomb Gun with Dinosaur icon + code:7EB040:07 + cheat + description:Have Needle Gun with clock icon + code:7EB040:08 + +cartridge sha256:7f05959f423bc656091ea3bddfbc89c877ae243dca346f63233e27973f34e0eb + name:Justice League Task Force (USA) + cheat + description:Infinite health - P1 + code:7E0CF7:60 + cheat + description:No health - P2 + code:7E0CF9:00 + cheat + description:Infinite time + code:7E0335:99 + cheat + description:Win match after one round + code:7E0547:02+7E0EFB:02 + +cartridge sha256:05152bcf9bf086e7bcdbfa7dd8edfe2085f1339c4d7e193e0071c49a10471ef4 + name:Ka-blooey (USA) + cheat + description:Infinite lives + code:C261-0F0D + cheat + description:Bonus timer doesn't count down + code:3C27-6D0D + cheat + description:Level is completed after only one bomb goes off + code:BAC8-07D4 + cheat + description:Start with 1 life instead of 5 + code:DF6B-D76D + cheat + description:Start with 3 lives + code:D76B-D76D + cheat + description:Start with 10 lives + code:DC6B-D76D + cheat + description:Start with 25 lives + code:FB6B-D76D + cheat + description:Start with 50 lives + code:746B-D76D + cheat + description:Start with 75 lives + code:086B-D76D + cheat + description:Start with 98 lives + code:146B-D76D + cheat + description:Start on level 2 + code:BA25-07D7+DF25-04D7 + cheat + description:Start on level 3 + code:BA25-07D7+D425-04D7 + cheat + description:Start on level 4 + code:BA25-07D7+D725-04D7 + cheat + description:Start on level 5 + code:BA25-07D7+D025-04D7 + cheat + description:Start on level 6 + code:BA25-07D7+D925-04D7 + cheat + description:Start on level 7 + code:BA25-07D7+D125-04D7 + cheat + description:Start on level 8 + code:BA25-07D7+D525-04D7 + cheat + description:Start on level 9 + code:BA25-07D7+D625-04D7 + cheat + description:Start on level 10 + code:BA25-07D7+DB25-04D7 + cheat + description:Start on level 11 + code:BA25-07D7+DC25-04D7 + cheat + description:Start on level 12 + code:BA25-07D7+D825-04D7 + cheat + description:Start on level 13 + code:BA25-07D7+DA25-04D7 + cheat + description:Start on level 14 + code:BA25-07D7+D225-04D7 + cheat + description:Start on level 15 + code:BA25-07D7+D325-04D7 + cheat + description:Start on level 16 + code:BA25-07D7+DE25-04D7 + cheat + description:Start on level 17 + code:BA25-07D7+FD25-04D7 + cheat + description:Start on level 18 + code:BA25-07D7+FF25-04D7 + cheat + description:Start on level 19 + code:BA25-07D7+F425-04D7 + cheat + description:Start on level 20 + code:BA25-07D7+F725-04D7 + cheat + description:Start on level 21 + code:BA25-07D7+F025-04D7 + cheat + description:Start on level 22 + code:BA25-07D7+F925-04D7 + cheat + description:Start on level 23 + code:BA25-07D7+F125-04D7 + cheat + description:Start on level 24 + code:BA25-07D7+F525-04D7 + cheat + description:Start on level 25 + code:BA25-07D7+F625-04D7 + cheat + description:Start on level 26 + code:BA25-07D7+FB25-04D7 + cheat + description:Start on level 27 + code:BA25-07D7+FC25-04D7 + cheat + description:Start on level 28 + code:BA25-07D7+F825-04D7 + cheat + description:Start on level 29 + code:BA25-07D7+FA25-04D7 + cheat + description:Start on level 30 + code:BA25-07D7+F225-04D7 + cheat + description:Start on level 31 + code:BA25-07D7+F325-04D7 + cheat + description:Start on level 32 + code:BA25-07D7+FE25-04D7 + cheat + description:Start on level 33 + code:BA25-07D7+4D25-04D7 + cheat + description:Start on level 34 + code:BA25-07D7+4F25-04D7 + cheat + description:Start on level 35 + code:BA25-07D7+4425-04D7 + cheat + description:Start on level 36 + code:BA25-07D7+4725-04D7 + cheat + description:Start on level 37 + code:BA25-07D7+4025-04D7 + cheat + description:Start on level 38 + code:BA25-07D7+4925-04D7 + cheat + description:Start on level 39 + code:BA25-07D7+4125-04D7 + cheat + description:Start on level 40 + code:BA25-07D7+4525-04D7 + cheat + description:Start on level 41 + code:BA25-07D7+4625-04D7 + cheat + description:Start on level 42 + code:BA25-07D7+4B25-04D7 + cheat + description:Start on level 43 + code:BA25-07D7+4C25-04D7 + cheat + description:Start on level 44 + code:BA25-07D7+4825-04D7 + cheat + description:Start on level 45 + code:BA25-07D7+4A25-04D7 + cheat + description:Start on level 46 + code:BA25-07D7+4225-04D7 + cheat + description:Start on level 47 + code:BA25-07D7+4325-04D7 + cheat + description:Start on level 48 + code:BA25-07D7+4E25-04D7 + cheat + description:Start on level 49 + code:BA25-07D7+7D25-04D7 + cheat + description:Start on level 50 + code:BA25-07D7+7F25-04D7 + cheat + description:Start on level 51 + code:BA25-07D7+7425-04D7 + cheat + description:Start on level 52 + code:BA25-07D7+7725-04D7 + cheat + description:Start on level 53 + code:BA25-07D7+7025-04D7 + cheat + description:Start on level 54 + code:BA25-07D7+7925-04D7 + cheat + description:Start on level 55 + code:BA25-07D7+7125-04D7 + cheat + description:Start on level 56 + code:BA25-07D7+7525-04D7 + cheat + description:Start on level 57 + code:BA25-07D7+7625-04D7 + cheat + description:Start on level 58 + code:BA25-07D7+7B25-04D7 + cheat + description:Start on level 59 + code:BA25-07D7+7C25-04D7 + cheat + description:Start on level 60 + code:BA25-07D7+7825-04D7 + cheat + description:Start on level 61 + code:BA25-07D7+7A25-04D7 + cheat + description:Start on level 62 + code:BA25-07D7+7225-04D7 + cheat + description:Start on level 63 + code:BA25-07D7+7325-04D7 + cheat + description:Start on level 64 + code:BA25-07D7+7E25-04D7 + cheat + description:Start on level 65 + code:BA25-07D7+0D25-04D7 + cheat + description:Start on level 66 + code:BA25-07D7+0F25-04D7 + cheat + description:Start on level 67 + code:BA25-07D7+0425-04D7 + cheat + description:Start on level 68 + code:BA25-07D7+0725-04D7 + cheat + description:Start on level 69 + code:BA25-07D7+0025-04D7 + cheat + description:Start on level 70 + code:BA25-07D7+0925-04D7 + cheat + description:Start on level 71 + code:BA25-07D7+0125-04D7 + cheat + description:Start on level 72 + code:BA25-07D7+0525-04D7 + cheat + description:Start on level 73 + code:BA25-07D7+0625-04D7 + cheat + description:Start on level 74 + code:BA25-07D7+0B25-04D7 + cheat + description:Start on level 75 + code:BA25-07D7+0C25-04D7 + cheat + description:Start on level 76 + code:BA25-07D7+0825-04D7 + cheat + description:Start on level 77 + code:BA25-07D7+0A25-04D7 + cheat + description:Start on level 78 + code:BA25-07D7+0225-04D7 + cheat + description:Start on level 79 + code:BA25-07D7+0325-04D7 + cheat + description:Start on level 80 + code:BA25-07D7+0E25-04D7 + cheat + description:Start on level 81 + code:BA25-07D7+9D25-04D7 + cheat + description:Start on level 82 + code:BA25-07D7+9F25-04D7 + cheat + description:Start on level 83 + code:BA25-07D7+9425-04D7 + cheat + description:Start on level 84 + code:BA25-07D7+9725-04D7 + cheat + description:Start on level 85 + code:BA25-07D7+9025-04D7 + cheat + description:Start on level 86 + code:BA25-07D7+9925-04D7 + cheat + description:Start on level 87 + code:BA25-07D7+9125-04D7 + cheat + description:Start on level 88 + code:BA25-07D7+9525-04D7 + cheat + description:Start on level 89 + code:BA25-07D7+9625-04D7 + cheat + description:Start on level 90 + code:BA25-07D7+9B25-04D7 + cheat + description:Start on level 91 + code:BA25-07D7+9C25-04D7 + cheat + description:Start on level 92 + code:BA25-07D7+9825-04D7 + cheat + description:Start on level 93 + code:BA25-07D7+9A25-04D7 + cheat + description:Start on level 94 + code:BA25-07D7+9225-04D7 + cheat + description:Start on level 95 + code:BA25-07D7+9325-04D7 + cheat + description:Start on level 96 + code:BA25-07D7+9E25-04D7 + cheat + description:Start on level 97 + code:BA25-07D7+1D25-04D7 + cheat + description:Start on level 98 + code:BA25-07D7+1F25-04D7 + cheat + description:Start on level 99 + code:BA25-07D7+1425-04D7 + cheat + description:Start on level 100 + code:BA25-07D7+1725-04D7 + cheat + description:Start on level 101 + code:BA25-07D7+1025-04D7 + cheat + description:Start on level 102 + code:BA25-07D7+1925-04D7 + cheat + description:Start on level 103 + code:BA25-07D7+1125-04D7 + cheat + description:Start on level 104 + code:BA25-07D7+1525-04D7 + cheat + description:Start on level 105 + code:BA25-07D7+1625-04D7 + cheat + description:Start on level 106 + code:BA25-07D7+1B25-04D7 + cheat + description:Start on level 107 + code:BA25-07D7+1C25-04D7 + cheat + description:Start on level 108 + code:BA25-07D7+1825-04D7 + cheat + description:Start on level 109 + code:BA25-07D7+1A25-04D7 + cheat + description:Start on level 110 + code:BA25-07D7+1225-04D7 + cheat + description:Start on level 111 + code:BA25-07D7+1325-04D7 + cheat + description:Start on level 112 + code:BA25-07D7+1E25-04D7 + cheat + description:Start on level 113 + code:BA25-07D7+5D25-04D7 + cheat + description:Start on level 114 + code:BA25-07D7+5F25-04D7 + cheat + description:Start on level 115 + code:BA25-07D7+5425-04D7 + cheat + description:Start on level 116 + code:BA25-07D7+5725-04D7 + cheat + description:Start on level 117 + code:BA25-07D7+5025-04D7 + cheat + description:Start on level 118 + code:BA25-07D7+5925-04D7 + cheat + description:Start on level 119 + code:BA25-07D7+5125-04D7 + cheat + description:Start on level 120 + code:BA25-07D7+5525-04D7 + cheat + description:Start on level 121 + code:BA25-07D7+5625-04D7 + cheat + description:Start on level 122 + code:BA25-07D7+5B25-04D7 + cheat + description:Start on level 123 + code:BA25-07D7+5C25-04D7 + cheat + description:Start on level 124 + code:BA25-07D7+5825-04D7 + cheat + description:Start on level 125 + code:BA25-07D7+5A25-04D7 + cheat + description:Start on level 126 + code:BA25-07D7+5225-04D7 + cheat + description:Start on level 127 + code:BA25-07D7+5325-04D7 + cheat + description:Start on level 128 + code:BA25-07D7+5E25-04D7 + cheat + description:Start on level 129 + code:BA25-07D7+6D25-04D7 + cheat + description:Start on level 130 + code:BA25-07D7+6F25-04D7 + +cartridge sha256:6f2dc2486d680fe557ed6e2e7082480aad6537c6a04845bb6a6b8ef5e3d698ef + name:Kamen Rider (Japan) + cheat + description:Invincibility + code:C268-3DD4 + cheat + description:Infinite health + code:0D68-34D4+6E68-3464+1C68-34A4+DA68-37D4+5368-3704 + cheat + description:Infinite lives + code:A2EF-1FD5 + cheat + description:Infinite health (alt) + code:7E0C6A:40 + cheat + description:Infinite lives (alt) + code:7E0038:02 + +cartridge sha256:f9ec39546e18b15b8f6a738204d0227c1542cd8157e3e0ea16934e76f39e288c + name:Karura Ou (Japan) + cheat + description:Invincibility + code:7E0065:9E + cheat + description:Infinite health + code:7EF801:04 + cheat + description:Infinite special power + code:7E1F0D:08 + cheat + description:Infinite Warrior Force + code:7E0089:FF + cheat + description:Have 99 gems + code:7E1F0E:63 + cheat + description:Have Aura Attack + code:7E1F0B:01 + cheat + description:Have Comet Flash + code:7E1F0B:02 + cheat + description:Have Lightning Strike + code:7E1F0B:03 + cheat + description:Have Time Stop + code:7E1F0B:04 + cheat + description:Have Star Fire + code:7E1F0B:05 + cheat + description:Have Warrior Force + code:7E1F0B:06 + cheat + description:Have Heal + code:7E1F0B:07 + cheat + description:Have Fiery Phoenix + code:7E1F0B:08 + cheat + description:All enemies frozen + code:7EFA69:8D+7EFA6A:8D+7EFA6B:8D+7EFA73:8D+7EFA6C:8D+7EFA74:8D+7EFA6D:8D+7EFA75:8D+7EFA6E:8D+7EFA7D:8D+7EFA76:8D+7EFA6F:8D+7EFA7E:8D+7EFA77:8D+7EFA70:8D+7EFA7F:8D+7EFA78:8D+7EFA71:8D+7EFA79:8D+7EFA72:8D+7EFA7A:8D+7EFA7B:8D+7EFA7C:8D+7EFA60:8D+7EFA61:8D+7EFA62:8D+7EFA63:8D+7EFA64:8D+7EFA65:8D+7EFA66:8D+7EFA67:8D+7EFA68:8D + +cartridge sha256:7cc3693cc5e1e834d57795f04b048fab27864a898a9507e7ca383771e2035414 + name:Kawasaki Caribbean Challenge (USA) + cheat + description:Only 1 lap required to qualify instead of 2 + code:DF6F-64AD + cheat + description:Races are 1 lap instead of 5 + code:DF67-676D + cheat + description:Races are 2 laps + code:D467-676D + cheat + description:Races are 3 laps + code:D767-676D + cheat + description:Races are 4 laps + code:D067-676D + cheat + description:Coming in first is worth 9 points instead of 5 + code:DB82-0DD7 + cheat + description:Coming in last is worth 5 points instead of 0 + code:D982-0FD7 + cheat + description:Coming in last is worth 9 points + code:DB82-0FD7 + cheat + description:Always advance to the next island regardless of points + code:6D80-DD04 + cheat + description:Each island requires 3 points instead of 5 + code:D7C2-0F04 + cheat + description:Each island requires 4 points + code:D0C2-0F04 + cheat + description:Each island requires 6 points + code:D1C2-0F04 + cheat + description:Each island requires 7 points + code:D5C2-0F04 + cheat + description:Opponents drive erratically - player is guaranteed 1st place + code:6967-07AD + cheat + description:Start the Challenge with the 2nd motorcycle and jet ski + code:6967-070D + +cartridge sha256:3104d6c06c8909c56f6adb2faecf1b4382f2490370798b605631da926c5306d8 + name:Ken Griffey Jr. Presents Major League Baseball (USA) + cheat + description:Can't strike out + code:C2BE-179D + cheat + description:No outs except strike outs + code:C2A2-4D94+C2AA-47B4 + cheat + description:Can't walk a player + code:CBB3-1D2D + cheat + description:Invisible baserunners + code:DF27-CFA4 + cheat + description:2 outs and whole team is out + code:D4C3-170F + cheat + description:1 ball and you walk + code:DFC3-170F + cheat + description:2 balls and you walk + code:D4C3-170F + cheat + description:1 strike and you're out + code:DFCE-1F0F + cheat + description:2 strikes and you're out + code:D4CE-1F0F + cheat + description:Computer can't score + code:C28A-3FA7 + cheat + description:Computer can't score + code:CBB0-4797 + cheat + description:Computer can't score + code:C283-34D7 + +cartridge sha256:b16661d5151d73cea5ac46d7c899531c7b2cdee2558092c23a5460c8092b80b8 + name:Kendo Rage (USA) + cheat + description:Invincibility + code:7E1476:03 + cheat + description:Infinite HP + code:7E148E:40 + cheat + description:Infinite lives + code:7E0CE2:03 + cheat + description:Infinite PSY power + code:7E148A:40 + cheat + description:Have 9 Yellow Balls + code:7E1494:09 + cheat + description:Have Triple Shot + code:7E1492:00 + cheat + description:Have Multi-Attack + code:7E1492:08 + cheat + description:Have Flame Shot + code:7E1492:10 + cheat + description:Start on round 1 - Cliff Hanger + code:7E0CE4:00 + cheat + description:Start on round 2 - Ice Queen + code:7E0CE4:01 + cheat + description:Start on round 3 - The Pond + code:7E0CE4:02 + cheat + description:Start on round 4 - Technodvne + code:7E0CE4:03 + cheat + description:Start on round 5 - The Commute + code:7E0CE4:04 + cheat + description:Start on round 6 - Triathalon + code:7E0CE4:05 + cheat + description:Start on round 7 - School Daze + code:7E0CE4:06 + +cartridge sha256:914652f72d6ceb83b8b43414d6c42581ec12e9b3f45259b8b2768d26b8d4f073 + name:Kid Klown in Crazy Chase (USA) + cheat + description:Infinite health + code:C229-1D67 + cheat + description:Infinite continues + code:C238-1F27 + +cartridge sha256:317e25d731bbfec30bfdc5fbe4ed825cd08613a4d62d98247bae5ec85783074c + name:Kidou Butouden G Gundam (Japan) + cheat + description:Infinite health + code:7E07D4:80 + +cartridge sha256:1b50f8aa5ae75c4b01e237b29b0a1ec1f1f809bdbe76a23d9c204541ccbf403d + name:Kidou Senshi V Gundam (Japan) + cheat + description:Infinite health + code:7E0522:69 + cheat + description:One hit kills + code:7E06A2:00+7E0822:00 + cheat + description:Infinite lives + code:7E0306:63 + +cartridge sha256:a1c04fc26c65a6ae3c3a496410290e7f437d19ac24a930286521ce04c887212a + name:Kidou Soukou Dion (Japan) + cheat + description:Invincibility (blinking) + code:7E0A50:4C + cheat + description:Infinite health + code:7E0B48:05 + cheat + description:Infinite bombs + code:7E0B14:09 + +cartridge sha256:2b27e9bceb646a300566248fcdcbd582435f50bd6132b0f0025cc146a9d62bd9 + name:Kikou Keisatsu Metal Jack (Japan) + cheat + description:Invincibility + code:ED88-A467 + cheat + description:Infinite health + code:C983-A9CF + cheat + description:Infinite lives + code:C9A7-A76D + cheat + description:Infinite health (alt) + code:7E0060:31 + cheat + description:Infinite lives (alt) + code:7E0061:09 + cheat + description:Infinite time + code:7E0031:06+7E0032:00 + cheat + description:Infinite ammo + code:7E006B:63 + cheat + description:Moon-jump + code:7E005F:01 + cheat + description:Moon-jump when attacking + code:7E0072:20 + cheat + description:Can't walk + code:7E006C:03 + +cartridge sha256:7a5261f1a5e84b67483c79fb002ce1539f2360f88333bda60f12e617d86e0def + name:Killer Instinct (USA) (Rev 1) + cheat + description:Invincibility - P1 + code:3DBB-3F07+A7BB-3407+DDBB-3F67+EDBB-34D7 + cheat + description:Hit anywhere - P1 + code:0AB6-3D67+CAB6-3DA7+CFB6-3FD7+D2B6-3D07+EDB6-3DD7 + cheat + description:Infinite health - P1 + code:7E0D24:78+7E0D26:78 + cheat + description:Infinite health - P2 + code:7E0D28:78+7E0D2A:78 + cheat + description:No health - P1 + code:7E0D24:00+7E0D26:00 + cheat + description:No health - P2 + code:7E0D28:00+7E0D2A:00 + cheat + description:CPU cannot move from starting position + code:7E0E08:01 + cheat + description:CPU cannot perform special or danger moves + code:CB2A-170F+DD2A-176F + cheat + description:Play as Eyedol + code:7E024E:0A + +cartridge sha256:618a23636e07110e094277ec1d1e60c3620a6e9a5f386292808267593fa803ad + name:Killer Instinct (USA) + cheat + description:Master code - must be entered + code:3C61-D4DF + cheat + description:Invincibility - P1 + code:3DB6-3467+A7B6-3767+DDB6-34A7+EDB6-3707 + cheat + description:Hit anywhere - P1 + code:0AB5-3FA7+CFB5-3407+CFB5-34D7+D2B5-3F67+EDB5-3F07 + cheat + description:CPU cannot perform special or danger moves + code:CB24-CFDF+DD24-CF0F + cheat + description:P1 takes all damage + code:EEC1-34AF + cheat + description:Always fight Jago + code:C265-1467+60E6-47D2 + cheat + description:Always fight Combo + code:C265-1467+6EE6-47D2 + cheat + description:Always fight Thunder + code:C265-1467+6BE6-47D2 + cheat + description:Always fight Glacius + code:C265-1467+6FE6-47D2 + cheat + description:Always fight Cinder + code:C265-1467+6DE6-47D2 + cheat + description:Always fight Orchid + code:C265-1467+64E6-47D2 + cheat + description:Always Fight Riptor + code:C265-1467+B0E6-47D2 + cheat + description:Always fight Sabrewulf + code:C265-1467+CBE6-4702 + cheat + description:Always fight Spinal + code:C265-1467+CBEC-4702 + cheat + description:Always fight Fulgore + code:C265-1467+CBE8-4D62 + cheat + description:Always fight Eyedol + code:C265-1467+CBE8-4FA2 + cheat + description:Infinite health - P1 + code:7E0D24:78+7E0D26:78 + cheat + description:Infinite health - P2 + code:7E0D28:78+7E0D2A:78 + cheat + description:No health - P1 + code:7E0D24:00+7E0D26:00 + cheat + description:No health - P2 + code:7E0D28:00+7E0D2A:00 + cheat + description:CPU cannot move from starting position + code:7E0E08:01 + cheat + description:Play as Eyedol + code:7E024E:0A + +cartridge sha256:1b58d0aed4510811c73d267244a7e915aa0b334c86e68f3fa5883f5cb534e4d7 + name:King Arthur & The Knights of Justice (USA) + cheat + description:Infinite health + code:8B6B-14F4 + cheat + description:Infinite attack power + code:33BD-14AF+33B9-176F + cheat + description:Infinite healing herbs + code:C28A-4DAC + cheat + description:Start with 99 healing herbs + code:14E6-37D4 + cheat + description:Start with 99 shield attacks + code:14EB-3764 + +cartridge sha256:aca9eb59d6783e2cae3787c69053888fea98f5dfe4c8af8b5a6360e0afb3b5d7 + name:King Arthur's World (USA) + cheat + description:Infinite men - if you have at least one of that type + code:8EA8-642F+8EAC-6F2F + cheat + description:Infinite spells - must have at least one to use + code:8EBC-6DEC + cheat + description:Start with 4 of each type of spell + code:C4EE-6D79+7DEE-6D59+D4EE-6D89 + cheat + description:Start with many men + code:CBEB-6405+F0EB-6465+DDEB-64A5 + cheat + description:Start on training level 2 + code:F561-DD86 + cheat + description:Start on training level 3 + code:FB61-DD86 + cheat + description:Start on training level 4 + code:F161-DD86 + cheat + description:Start on training level 5 + code:F261-DD86 + cheat + description:Start on training level 6 + code:F361-DD86 + cheat + description:Start on training level 7 + code:FE61-DD86 + cheat + description:Start on training level 8 + code:4D61-DD86 + cheat + description:Start on training level 9 + code:FC61-DD86 + cheat + description:Start on real world level 1 + code:DF61-DD86 + cheat + description:Start on real world level 2 + code:D461-DD86 + cheat + description:Start on real world level 3 + code:D761-DD86 + cheat + description:Start on real world level 4 + code:D061-DD86 + cheat + description:Start on goblin underworld level 1 + code:D961-DD86 + cheat + description:Start on goblin underworld level 2 + code:D161-DD86 + cheat + description:Start on goblin underworld level 3 + code:D561-DD86 + cheat + description:Start on goblin underworld level 4 + code:D661-DD86 + cheat + description:Start on cloud world level 1 + code:DA61-DD86 + cheat + description:Start on cloud world level 2 + code:D261-DD86 + cheat + description:Start on cloud world level 3 + code:D361-DD86 + cheat + description:Start on cloud world level 4 + code:DE61-DD86 + cheat + description:Start on cloud world level 5 + code:FD61-DD86 + cheat + description:Start on cloud world level 6 + code:FF61-DD86 + cheat + description:Start on cloud world level 7 + code:F461-DD86 + +cartridge sha256:6638b5541059814d4c34574e5e277ef613aebf81c91d3def557a7642fb5840e1 + name:King of Dragons (USA) + cheat + description:Invincibility - both players + code:ED76-E4AF + cheat + description:Infinite health - both players + code:C9B5-7FDD + cheat + description:Infinite time + code:DD0E-EF0D + cheat + description:Infinite credits + code:CE05-8F0D + cheat + description:One hit kills + code:4069-EF64+4069-E4D4 + cheat + description:Hit anywhere + code:6D61-8DA4+6D64-87A4+6D66-87A4+6D6E-54D4+6D6E-5D04 + cheat + description:Start with level 6 Sword + code:6351-E40D+6955-EDDD + cheat + description:Start with level 6 Shield + code:6355-E7AD+6956-EF6D + cheat + description:Invincibility (blinking) - P1 + code:7E0BB4:FF + cheat + description:Invincibility (blinking) - P2 + code:7E0CB4:FF + cheat + description:Infinite health - P1 + code:7E0B9A:09 + cheat + description:Infinite health - P2 + code:7E0C9A:09 + cheat + description:Max attack - P1 + code:7E0BEE:07 + cheat + description:Max attack - P2 + code:7E0CEE:07 + cheat + description:Max defense - P1 + code:7E0BF0:07 + cheat + description:Max defense - P2 + code:7E0CF0:07 + cheat + description:Infinite lives - P1 + code:7E0BEC:09 + cheat + description:Infinite lives - P2 + code:7E0CEC:09 + cheat + description:Infinite time (alt) + code:7E1F94:98 + cheat + description:Infinite time for player select screen + code:7E5C24:0A + cheat + description:Start on stage 2 - Treasure In An Old Castle + code:7E0658:01 + cheat + description:Start on stage 3 - Battle On Mountain Peak + code:7E0658:02 + cheat + description:Start on stage 4 - Cave Of Hydra + code:7E0658:03 + cheat + description:Start on stage 5 - To The Norde Isle + code:7E0658:04 + cheat + description:Start on stage 6 - The Giant In The Shrine + code:7E0658:05 + cheat + description:Start on stage 7 - Trent Woods + code:7E0658:06 + cheat + description:Start on stage 8 - To The Castle + code:7E0658:07 + cheat + description:Start on stage 9 - In The Castle + code:7E0658:08 + cheat + description:Start on stage 10 - Underpass + code:7E0658:09 + cheat + description:Start on stage 11 - Battle In The Front + code:7E0658:0A + cheat + description:Start on stage 12 - Castle Garenos + code:7E0658:0B + cheat + description:Start on stage 13 - Dark Wizard + code:7E0658:0C + cheat + description:Start on stage 14 - A Cave In The Woods + code:7E0658:0D + cheat + description:Start on stage 15 - Underground Labyrinth + code:7E0658:0E + cheat + description:Start on stage 16 - Golden Limestone Cave + code:7E0658:0F + +cartridge sha256:1135858a1ce686a0a163bb0e6f3a4d7cd71c0cd56efbc79677372f2624cf2306 + name:King of the Monsters (USA) + cheat + description:Faster timer + code:F5AF-D5A1 + cheat + description:Slower timer + code:1DAF-DFA1 + cheat + description:3 power points needed to get to next power level + code:D7A1-0DA1 + cheat + description:Start with less health - P1 + code:6DB2-AF67 + cheat + description:Start with less health - P2 + code:6DC4-D764 + cheat + description:Infinite health - P1 + code:7E0A50:FF + cheat + description:No health - P2 + code:7E0B40:00 + cheat + description:Infinite time - minutes + code:7E29F3:09 + cheat + description:Infinite time - seconds + code:7E29F2:54 + +cartridge sha256:a9729d049ce580839bbfef1836a13dc16f2fc934d203ebf7390e0b1c47ea9a2d + name:King of the Monsters 2 (USA) + cheat + description:Infinite health + code:7E1A3A:18 + cheat + description:Infinite lives + code:7E09CC:03 + cheat + description:Infinite time + code:7E0942:69 + cheat + description:Always have 2 power-ups + code:7E1CB4:02 + +cartridge sha256:4e095fbbdec4a16b075d7140385ff68b259870ca9e3357f076dfff7f3d1c4a62 + name:Kirby Super Star (USA) + cheat + description:Infinite health + code:62E2-AD61 + cheat + description:Infinite lives + code:C263-AF02 + cheat + description:Always have invincibility + code:3035F1:0A + cheat + description:Infinite health (friend) + code:40137E:30 + +cartridge sha256:67937dd7a29a93b1aaabb6df89f0748369ff47f3f6c655a402c00d5657973140 + name:Kirby's Avalanche (USA) + cheat + description:Boulder warnings don't appear + code:80A8-C4CD + cheat + description:Only red blobs fall + code:CB60-C737+DD69-CD47+DD69-CD17 + cheat + description:Only yellow blobs fall + code:CB60-C737+DF69-CD47+DF69-CD17 + cheat + description:Only green blobs fall + code:CB60-C737+D769-CD47+D769-CD17 + cheat + description:Only purple blobs fall + code:CB60-C737+D069-CD47+D069-CD17 + cheat + description:Only blue blobs fall + code:CB60-C737+D969-CD47+D969-CD17 + cheat + description:Only red and yellow blobs fall + code:CB60-C737+DD69-CD47+DF69-CD17 + cheat + description:Only red and green blobs fall + code:CB60-C737+DD69-CD47+D769-CD17 + cheat + description:Only red and purple blobs fall + code:CB60-C737+DD69-CD47+D069-CD17 + cheat + description:Only red and blue blobs fall + code:CB60-C737+DD69-CD47+D969-CD17 + cheat + description:Only red blobs with a boulder fall + code:CB60-C737+DD69-CD47+D169-CD17 + cheat + description:Only yellow and red blobs fall + code:CB60-C737+DF69-CD47+DD69-CD17 + cheat + description:Only yellow and green blobs fall + code:CB60-C737+DF69-CD47+D769-CD17 + cheat + description:Only yellow and purple blobs fall + code:CB60-C737+DF69-CD47+D069-CD17 + cheat + description:Only yellow and blue blobs fall + code:CB60-C737+DF69-CD47+D969-CD17 + cheat + description:Only yellow blobs with a boulder fall + code:CB60-C737+DF69-CD47+D169-CD17 + cheat + description:Only green and yellow blobs fall + code:CB60-C737+D769-CD47+DF69-CD17 + cheat + description:Only green and red blobs fall + code:CB60-C737+D769-CD47+DD69-CD17 + cheat + description:Only green and purple blobs fall + code:CB60-C737+D769-CD47+D069-CD17 + cheat + description:Only green and blue blobs fall + code:CB60-C737+D769-CD47+D969-CD17 + cheat + description:Only green blobs with a boulder fall + code:CB60-C737+D769-CD47+D169-CD17 + cheat + description:Only purple and yellow blobs fall + code:CB60-C737+D069-CD47+DF69-CD17 + cheat + description:Only purple and green blobs fall + code:CB60-C737+D069-CD47+D769-CD17 + cheat + description:Only purple and red blobs fall + code:CB60-C737+D069-CD47+DD69-CD17 + cheat + description:Only purple and blue blobs fall + code:CB60-C737+D069-CD47+D969-CD17 + cheat + description:Only purple blobs with a boulder fall + code:CB60-C737+D069-CD47+D169-CD17 + cheat + description:Only blue and yellow blobs fall + code:CB60-C737+D969-CD47+DF69-CD17 + cheat + description:Only blue and green blobs fall + code:CB60-C737+D969-CD47+D769-CD17 + cheat + description:Only blue and purple blobs fall + code:CB60-C737+D969-CD47+D069-CD17 + cheat + description:Only blue and red blobs fall + code:CB60-C737+D969-CD47+DD69-CD17 + cheat + description:Only blue blobs with a boulder fall + code:CB60-C737+D969-CD47+D169-CD17 + cheat + description:Only a boulder and yellow blobs fall + code:CB60-C737+D169-CD47+DF69-CD17 + cheat + description:Only a boulder and green blobs fall + code:CB60-C737+D169-CD47+D769-CD17 + cheat + description:Only a boulder and purple blobs fall + code:CB60-C737+D169-CD47+D069-CD17 + cheat + description:Only a boulder and blue blobs fall + code:CB60-C737+D169-CD47+D969-CD17 + cheat + description:Only a boulder and red blobs fall + code:CB60-C737+D169-CD47+DD69-CD17 + cheat + description:Only boulders fall + code:CB60-C737+D169-CD47+D169-CD17 + cheat + description:Disable the next box + code:CBB7-4D4D+3CB7-4DCD+CBB7-4F1D+3CB7-4F3D + +cartridge sha256:0f984dc5fe8293f75e3b8fad98b0cb564706d9b1e3902b56415aa399c2d4df2b + name:Kirby's Dream Course (USA) + cheat + description:Infinite Strawberries + code:82CF-4D6E + cheat + description:Don't lose a life from falling out of bounds + code:82E2-4DD4 + cheat + description:Don't ever gain any Strawberries + code:82CD-4D0E + cheat + description:Start with 5 lives + code:D0A9-4F6D + cheat + description:Start with 7 lives + code:D1A9-4F6D + cheat + description:Start with 9 lives + code:D6A9-4F6D + cheat + description:Start with 1 Strawberry + code:DFAD-1F0D + cheat + description:Start with 2 Strawberries + code:D4AD-1F0D + cheat + description:Start with 3 Strawberries + code:D7AD-1F0D + cheat + description:Infinite Tomatoes + code:83AC12:BD + +cartridge sha256:b50bf9d95485e8aeb7a6730e9f9f9c9c4ec23a85b336a4fb2e3b63034531e36f + name:Kirby's Dream Land 3 (USA) + cheat + description:Always have Invincibility - Kirby + code:4054B2:01 + cheat + description:Infinite life - Kirby + code:4039D1:0A + cheat + description:Infinite life - Partner + code:4039D3:08 + cheat + description:Infinite lives + code:4039CF:0A + cheat + description:Infinite Mouth Shot + code:4054ED:02 + cheat + description:Always have No Mouth power + code:4054A9:00 + cheat + description:Always have Fireball Mouth power + code:4054A9:01 + cheat + description:Always have Stone Mouth power + code:4054A9:02 + cheat + description:Always have Ice Mouth power + code:4054A9:03 + cheat + description:Always have Needle Mouth power + code:4054A9:04 + cheat + description:Always have Broom Mouth power + code:4054A9:05 + cheat + description:Always have Parasol Mouth power + code:4054A9:06 + cheat + description:Always have Spark Mouth power + code:4054A9:07 + cheat + description:Always have Boomerang Mouth power + code:4054A9:08 + cheat + description:Have all level 1 Stars + code:4053A7:01+4053A8:01+4053A9:01+4053AA:01+4053AB:01+4053AC:01 + cheat + description:Have all level 2 Stars + code:4053AE:01+4053AF:01+4053B0:01+4053B1:01+4053B2:01+4053B3:01 + cheat + description:Have all level 3 Stars + code:4053B5:01+4053B6:01+4053B7:01+4053B8:01+4053B9:01+4053BA:01 + cheat + description:Have all level 4 Stars + code:4053BC:01+4053BD:01+4053BE:01+4053BF:01+4053C0:01+4053C1:01 + cheat + description:Have all level 5 Stars + code:4053C3:01+4053C4:01+4053C5:01+4053C6:01+4053C7:01+4053C8:01 + cheat + description:Start a new game with 9 lives + code:DC85-64D4 + cheat + description:Start a new game with 25 lives + code:FC85-64D4 + cheat + description:Start a new game with 98 lives + code:1785-64D4 + +cartridge sha256:fb601ead645edce139b0483d3155b4e3d7ab245bf87a3a66cb88c0a617c0a526 + name:Knights of the Round (USA) + cheat + description:Invincibility + code:ED2F-3FD9 + cheat + description:More invincibility time after successful block + code:EE2C-C7DC + cheat + description:Infinite health + code:8B29-4D65 + cheat + description:Almost infinite health + code:4029-4DD5+4022-1DD5 + cheat + description:Maximum health from most food + code:DDAD-17BF + cheat + description:Infinite lives + code:8B27-4F68 + cheat + description:Infinite time + code:C26C-47AF + cheat + description:One hit kills + code:4027-37A5+4038-C760+4033-4760 + cheat + description:No health lost from special move + code:DD2A-3406 + cheat + description:No health lost from special move (alt) + code:8B2A-34A6 + cheat + description:Less health lost from special move + code:D12A-3406 + cheat + description:More health lost from special move + code:F02A-3406 + cheat + description:Super-jump - Arthur + code:DAC9-1DDB + cheat + description:Super-jump - Lancelot + code:DAC0-17DB + cheat + description:Super-jump - Percival + code:DAC9-1FDB + cheat + description:Slower timer + code:1D6B-47AF + cheat + description:Faster timer + code:F36B-47AF + cheat + description:Enable hidden options screen in the options menu + code:4DA1-14DD+84A1-140D+ABA1-146D+1DA8-14D4 + cheat + description:Start on stage 2 + code:3C81-4461+CB81-44A1+DF81-47D1 + cheat + description:Start on stage 3 + code:3C81-4461+CB81-44A1+D481-47D1 + cheat + description:Start on stage 4 + code:3C81-4461+CB81-44A1+D781-47D1 + cheat + description:Start on stage 5 + code:3C81-4461+CB81-44A1+D081-47D1 + cheat + description:Start on stage 6 + code:3C81-4461+CB81-44A1+D981-47D1 + cheat + description:Invincibility (blinking) - P1 + code:7E4136:02 + cheat + description:Invincibility (blinking) - P2 + code:7E4336:02 + cheat + description:Infinite health (alt) + code:7E4008:50 + cheat + description:Infinite time (alt) + code:7E0C4A:59 + cheat + description:Quick level gain - P1 + code:7E4149:00+7E414A:00+7E414B:00+7E414C:00 + cheat + description:Quick level gain - P2 + code:7E4349:00+7E434A:00+7E434B:00+7E434C:00 + +cartridge sha256:6a37a20a4880b9ec38b1b7e17e42ea93a1bf826630ccbe5f8257f0d928f13953 + name:Kouryuu no Mimi (Japan) + cheat + description:Infinite health + code:CB6D-1F24+0D6D-14F4+DD6D-1494+626D-17F4 + cheat + description:Infinite health (alt) + code:7E09C0:40 + cheat + description:Infinite Ring power + code:7E008C:20 + +cartridge sha256:e36322697c48baae6492db91e6cbf3844a420f6e0cc8a75f3a73556026ddbbb8 + name:Krusty's Super Fun House (USA) (Rev 1) + cheat + description:Infinite lives + code:7E11A3:03 + cheat + description:Infinite weapons + code:7E032C:0A + +cartridge sha256:bed18c968aee0eb0c866c1964c28135364cd6d65fff7bcb5873342c04e63750d + name:Krusty's Super Fun House (USA) + cheat + description:Invincibility - Krusty + code:8725-0D64 + cheat + description:Infinite Custard Pies + code:C1E1-D7DD + cheat + description:Infinite Superballs + code:C1E2-D76D + cheat + description:Infinite lives + code:C265-0FA7 + cheat + description:Custard Pie bonus worth 2 pies instead of 10 + code:D43D-67D7 + cheat + description:Custard Pie bonus worth 5 pies + code:D93D-67D7 + cheat + description:Custard Pie bonus same as Superball bonus (disable is game freezes) + code:D03D-6767 + cheat + description:Superball bonus worth 2 balls instead of 5 (disable is game freezes) + code:D43F-6F67 + cheat + description:Superball bonus worth 10 balls (disable is game freezes) + code:DC3F-6F67 + cheat + description:Superball bonus same as Custard Pie bonus (disable is game freezes) + code:6D3F-6DA7+E03F-6FD7 + cheat + description:Food bonuses restore less strength + code:D53E-0407 + cheat + description:Food bonuses restore more strength + code:F33E-0407 + cheat + description:Food bonuses restore Krusty to full strength + code:173E-0407 + cheat + description:Food bonuses also get Custard Pie bonus + code:D03D-6FD7 + cheat + description:Food bonuses also get Superball bonus + code:D33D-6FD7 + cheat + description:Doll bonus same as Custard Pie bonus + code:3134-6D67+6D34-6D07 + cheat + description:Doll bonus same as Superball bonus + code:ED34-6D67+6D34-6D07 + cheat + description:Doll bonus same as food bonus + code:2F34-6D67+6D34-6D07 + cheat + description:Jump higher - Krusty + code:FD3C-D704 + cheat + description:Jump much higher - Krusty + code:D63C-D704 + cheat + description:Start with section 1 finished + code:DD65-67DF+6D65-670F+D965-676F + cheat + description:Start with section 2 finished + code:DF65-67DF+6D65-670F+D965-676F + cheat + description:Start with section 3 finished + code:D465-67DF+6D65-670F+D965-676F + cheat + description:Start with section 4 finished + code:D765-67DF+6D65-670F+D965-676F + cheat + description:Start with access to all sections + code:D065-67DF+6D65-670F+D965-676F + cheat + description:Start with 1 life instead of 3 + code:DF6C-D704 + cheat + description:Start with 2 lives + code:D46C-D704 + cheat + description:Start with 5 lives + code:D96C-D704 + cheat + description:Start with 7 lives + code:D56C-D704 + cheat + description:Start with 9 lives + code:DB6C-D704 + cheat + description:Start with 0 Custard Pies + code:DD6B-D764 + cheat + description:Start with 2 Custard Pies + code:D46B-D764 + cheat + description:Start with 5 Custard Pies + code:D96B-D764 + cheat + description:Start with 2 Superballs instead of 10 Custard Pies + code:D46B-D764+DF6C-DDA4 + cheat + description:Start with 5 Superballs + code:D96B-D764+DF6C-DDA4 + cheat + description:Start with 10 Superballs + code:DF6C-DDA4 + +cartridge sha256:46c811f0cacffe8f20e1d63072d25d7c47e9bb3fd5124851fd05aca9884d21fb + name:Lagoon (USA) + cheat + description:HP always recovers instantly + code:CBB0-0FA0+EEB0-04D0 + cheat + description:MP always recovers instantly + code:CBB0-07A0+EEB9-0DD0 + cheat + description:Save always available + code:6D8A-6FA8+F78A-64D8 + cheat + description:Pit death disabled + code:1DA9-04D1 + +cartridge sha256:Get 1 gold for each creature killed + name:1BB5-D769+DFB5-D7A9+3CB6-DDD9 + cheat + description:Get 100 gold for each creature killed + code:1BB5-D769+10B5-D7A9+3CB6-DDD9 + cheat + description:Get 200 gold for each creature killed + code:1BB5-D769+A6B5-D7A9+3CB6-DDD9 + cheat + description:Start with 0 STR + code:DD23-07DC + cheat + description:Start with 100 STR + code:1023-07DC + cheat + description:Start with 255 STR + code:EE23-07DC + cheat + description:Start with 0 DEF + code:DD2E-04AC + cheat + description:Start with 100 DEF + code:102E-04AC + cheat + description:Start with 255 DEF + code:EE2E-04AC + cheat + description:Start with 999 DEF + code:E12E-07DC+F52E-04AC + cheat + description:Start with 612 gold + code:D42D-6D6C + cheat + description:Start with 1,380 gold + code:D92D-6D6C + cheat + description:Start with 2,148 gold + code:D62D-6D6C + cheat + description:Start with 8,292 gold + code:4D2D-6D6C + cheat + description:Start with 22,116 gold + code:912D-6D6C + cheat + description:Start with 65,380 gold + code:EE2D-6D6C + cheat + description:Start on level 2, MP = 8/8, HP = 17/17, EXP = 0/40 + code:D422-040C + cheat + description:Start on level 3, MP = 10/10, HP = 23/23, EXP = 0/90 + code:D722-040C + cheat + description:Start on level 4, MP = 12/12, HP = 28/28, EXP = 0/170 + code:D022-040C + cheat + description:Start on level 5, MP = 19/19, HP =36/36, EXP = 0/280 + code:D922-040C + cheat + description:Start on level 241, HP = 255, MP = 255, EXP = 22859, walk at a regular speed + code:EF22-040C + cheat + description:Start on level 242, HP = 220, MP = 221, EXP = 30560, walk at a medium speed + code:E422-040C + cheat + description:Infinite HP + code:7E0520:FF + cheat + description:Infinite MP + code:7E0522:FF + cheat + description:Have all equipment and magic + code:7E04D0:FF+7E04D1:FF+7E04D2:FF+7E04D3:F8 + cheat + description:Have all items + code:7E04D4:FF+7E04D5:FF+7E04D6:FF+7E04D7:80 + cheat + description:Shop item 1 free + code:7E045C:00+7E045D:00 + cheat + description:Shop item 2 free + code:7E045E:00+7E045F:00 + cheat + description:Shop item 3 free + code:7E0460:00+7E0461:00 + cheat + description:Max EXP + code:7E052A:FF+7E052B:FF + cheat + description:Max level (level 35) + code:7E052C:23 + cheat + description:Max STR + code:7E0525:02 + cheat + description:Max DEF + code:7E0527:02 + cheat + description:Max Gold + code:7E0529:FF + +cartridge sha256:48cd9476fef1ed685b9c30dd1669b46048f7295cbbb2abcfa5b1a48699346ea3 + name:Lamborghini American Challenge (USA) + cheat + description:Always finish first + code:58E6-CF18+6D60-C71C+ADE6-CD48+BBE6-CF38+DDE6-CD18+DDE6-CDC8+D4E6-CF48+E360-C7CC+F1E6-C418+FCE6-CFC8+1DE6-C4C8+2DE6-CD38+4D60-C74C+53E6-C448 + cheat + description:Don't take damage in races + code:8B81-34D7 + cheat + description:Free turbos + code:C22A-377D + cheat + description:Repair 10% of car for $100 + code:C224-CF8F + cheat + description:Repair 10% of car for free + code:3324-C45F + cheat + description:Turbos for $1000 + code:DC28-348D+DD28-34ED + cheat + description:Turbos for $2000 + code:F028-348D+DD28-34ED + cheat + description:Start with 6-speed transmission + code:D169-443B + cheat + description:Start with $128,000 + code:DD6E-440D+D96E-446D + cheat + description:Start with $88,000 + code:5D6E-440D+D76E-446D + cheat + description:Start with $12,800 + code:6D6E-440D + cheat + description:Always finish first (alt) + code:7E167E:01 + cheat + description:Infinite money + code:7E0D21:FF+7E0D22:FF + cheat + description:Infinite Boost + code:7E0DDD:09 + +cartridge sha256:314d53f409b66ba3f4426a6f1bb7c69f6779aeed277ce2e19535f94d7c8ca586 + name:Last Action Hero (USA) + cheat + description:Invincibility + code:62AF-140D + cheat + description:Infinite health + code:C2A0-1D6D + cheat + description:Infinite time + code:C2BF-1FAF + cheat + description:Infinite lives + code:A2CB-4FAF + cheat + description:Invincibility (blinking) + code:7E03B7:FF + cheat + description:Infinite health (alt) + code:7E031F:FF + cheat + description:Infinite time (alt) + code:7E0315:99 + cheat + description:Infinite lives (alt) + code:7E0316:04 + cheat + description:Hit anywhere continually + code:4022-440F+4023-470F + cheat + description:One hit kills - enemy 1 + code:7E0822:00 + cheat + description:One hit kills - enemy 2 + code:7E0880:00 + cheat + description:One hit kills - enemy 3 + code:7E08DE:00 + cheat + description:Start on stage 2 + code:7E030F:02 + cheat + description:Start on stage 3 + code:7E030F:03 + cheat + description:Start on stage 4 + code:7E030F:04 + cheat + description:Start on stage 5 + code:7E030F:05 + +cartridge sha256:a179a1188220b59787c49a78a0dde79b89380e3a8a8a0ab558f0102c5796f873 + name:Lawnmower Man, The (USA) + cheat + description:Invincible in Cyber Run level + code:C268-17AC + cheat + description:Invincible in Cyber Tube level + code:C26A-CD6C + cheat + description:Invincible in Cyber Jobe level + code:C223-1DD5 + cheat + description:Invincible in Cyber Space level + code:C2A2-479C + cheat + description:Infinite lives + code:40BE-1DAD + cheat + description:After you die, your main weapon is fully powered up from then on + code:D0B5-CDAD+CBB5-CD6D + cheat + description:Super-jump + code:ECB6-4FD7 + cheat + description:Energize icon effect lasts 2x longer + code:D785-376F + cheat + description:Energize icon effect lasts 4x longer + code:D985-376F + cheat + description:Bitstream powers up instantly (don't shoot too many bitstreams at once) + code:D1BB-4F64 + cheat + description:Keep weapon power ups once gained + code:DDB5-CDAD + cheat + description:Never lose homing bullets once gained + code:CEB7-CFAD + cheat + description:Never lose rear bullets once gained + code:CEB7-CDAD + +cartridge sha256:c7814cee0fc95d6422cf19a3dc8c9a65b60f6f56da75f09cebea02cc5f99261b + name:Legend (USA) + cheat + description:Invincibility + code:62A6-3FAD+29A6-34DD+F7A6-340D + cheat + description:Infinite health + code:C2EB-1709 + cheat + description:Infinite time + code:C23F-1DDD + cheat + description:Infinite lives + code:C289-1DD7 + cheat + description:One hit kills + code:40C6-C469+4081-1F69 + cheat + description:Hit anywhere + code:40E4-37A0+40ED-37D0+40E0-3DD0+40E0-3FA0+6DED-3FD0+6DEF-3DA0 + cheat + description:Infinite health - P1 + code:7E130D:08 + cheat + description:Infinite magic - P1 + code:7E1315:09 + cheat + description:Infinite lives - P1 + code:7E1309:09 + cheat + description:Infinite time (alt) + code:7E15EF:09 + cheat + description:Infinite Keys - P1 + code:7E12F1:63 + +cartridge sha256:c865fb17e8c59a21d32b9a605319241fa74ec732e3f0ee58f5d7fcbd8ee57c6b + name:Legend of the Mystical Ninja, The (USA) + cheat + description:Invincibility + code:4081-AFAF + cheat + description:Infinite health + code:89CF-0729 + cheat + description:Infinite lives - top-view + code:3CA6-A764 + cheat + description:Hit anywhere - top view + code:4086-0D02+408D-670A + cheat + description:Hit anywhere - side view + code:4081-070A+4089-0D62 + cheat + description:Collect items from anywhere - top view + code:408D-0F02 + cheat + description:Don't lose most weapons when hit + code:40C0-04F9 + cheat + description:Pick-up more coins from enemies + code:9DAF-DD6E + cheat + description:No coins used up when thrown + code:DDED-D4D4 + cheat + description:Faster timer + code:F0BE-AF20 + cheat + description:Slower timer + code:1DBE-AF20 + cheat + description:Die after one hit + code:DDCF-0429 + cheat + description:Start with 6 lives + code:D927-A464 + cheat + description:Start with 9 lives + code:D627-A464 + cheat + description:Invincibility - P1 + code:7E0592:02 + cheat + description:Infinite health - P1 + code:7E1AB2:10 + cheat + description:Infinite money - P1 + code:7E1AAC:99+7E1AAD:99+7E1AAE:09 + cheat + description:Infinite lives - P1 + code:7E1AB0:04 + cheat + description:Have Jutsu technique 1 + code:7E1AD6:01 + cheat + description:Have Jutsu technique 2 + code:7E1AD8:01 + cheat + description:Have Jutsu technique 3 + code:7E1ADA:01 + cheat + description:Have Jutsu technique 4 + code:7E1ADC:01 + cheat + description:Have 1st upgraded weapon + code:7E1AB6:01+7E1AB8:01 + cheat + description:Have 2nd upgraded weapon + code:7E1AB6:02+7E1AB8:02 + cheat + description:Infinite Bombs + code:7E1ABA:30 + cheat + description:Have Gold Helmet + code:7E1AE0:08 + cheat + description:Have Iron Helmet + code:7E1AE2:06 + cheat + description:Have Straw Hat + code:7E1AE4:04 + cheat + description:Have Gold Armor + code:7E1AF0:08 + cheat + description:Have Chain Armor + code:7E1AF2:06 + cheat + description:Have Straw Coat + code:7E1AF4:04 + cheat + description:Have whole Pizza + code:7E1B10:01 + cheat + description:Have slice of Pizza + code:7E1B12:01 + cheat + description:Have Burger + code:7E1B14:01 + cheat + description:Have Pass + code:7E1B20:01 + cheat + description:Have Text + code:7E1B22:01 + cheat + description:Max walking speed + code:7E1AC2:02+7E1B00:03 + +cartridge sha256:66871d66be19ad2c34c927d6b14cd8eb6fc3181965b6e517cb361f7316009cfb + name:Legend of Zelda, The - A Link to the Past (USA) + cheat + description:Invincibility + code:1CDF-2EE6 + cheat + description:Infinite rupees + code:35E1-2A76 + cheat + description:Infinite health and all heart containers + code:CDE1-2E56 + cheat + description:Almost infinite health + code:AE6E-DF2A + cheat + description:Infinite magic + code:6DE1-2E86 + cheat + description:Almost infinite magic + code:AE8A-D4FA+AE8D-0D9A + cheat + description:Max heart containers + code:CDEE-DDBF + cheat + description:Infinite Bombs + code:AE67-0D30 + cheat + description:Infinite Bombs (alt) + code:17E0-2AE6 + cheat + description:Infinite Arrows + code:17E5-22E6 + cheat + description:Hit anywhere (disable before fighting Ganon, use the Boomerang instead of Sword to hit switches) + code:40E2-6D96+6D3E-A7FC+403F-DD28+40EC-AF26+6D34-D7F8+4068-A0E6 + cheat + description:Get items from anywhere + code:402F-07B6 + cheat + description:Regular sword is very strong (100 damage instead of 2) + code:108E-D481 + cheat + description:Blue Boomerang has much longer reach + code:82BD-6F4D + cheat + description:Enemies frozen by Boomerang or Hookshot stay frozen + code:8234-AD96 + cheat + description:Sword can destroy solid objects in Overworld + code:6D87-611E + cheat + description:Objects that you can pick up and throw never break away + code:FD37-6FF6 + cheat + description:Dash without having the Pegasus Boots + code:EEE5-2356 + cheat + description:Dash without charge up + code:45B8-D49A + cheat + description:Use the Magic Mirror to warp between the Light and Dark Worlds freely + code:6DC9-0D23 + cheat + description:Some shops don't take your money + code:AEEC-A586 + cheat + description:Spin attack needs nearly no time to charge + code:D6B5-049E + cheat + description:Spin attack needs no time at all to charge + code:DDB5-049E + cheat + description:100% enemy drop rate (from enemies that normally drop items) + code:DDE8-142C + cheat + description:No enemies in dungeons + code:D9D7-9A78+D9D7-9A58+D9D7-9A88 + cheat + description:Dark rooms are fully lit + code:D7D9-F38B + cheat + description:Trigger doors are open (works with most dungeon doors, some that even look closed) + code:EED6-BE5B + cheat + description:Have Bombos Medallion + code:DFE0-22E6 + cheat + description:Have Book Of Mudora + code:DFE0-2E86 + cheat + description:Have Bug-Catching Net + code:DFE0-2E56 + cheat + description:Have Cane Of Byrna + code:DFE9-2A56 + cheat + description:Have Cane Of Somaria + code:DFE9-2A76 + cheat + description:Have Ether Medallion + code:DFE0-2376 + cheat + description:Have Fire Rod + code:DFE0-2256 + cheat + description:Have Flute + code:D4E0-2E76 + cheat + description:Have Flute with Duck + code:D7E0-2E76 + cheat + description:Have Golden Sword (level 4) + code:D0E9-2356 + cheat + description:Have Hookshot + code:DFE0-2A86 + cheat + description:Have Ice Rod + code:DFE0-2286 + cheat + description:Have Lamp + code:DFE0-2386 + cheat + description:Have Magic Boomerang + code:D4E0-2A56 + cheat + description:Have Magic Cape + code:DFE9-2A86 + cheat + description:Have Magic Hammer + code:DFE0-23E6 + cheat + description:Have Magic Mirror + code:D4E9-2AE6 + cheat + description:Have Magic Powder + code:D4E0-2276 + cheat + description:Have Mirror Shield + code:D7E9-2386 + cheat + description:Have Moon Pearl + code:DFE9-22E6 + cheat + description:Have Pegasus Boots + code:D4E9-2256 + cheat + description:Have Quake Medallion + code:DFE0-2356 + cheat + description:Have Red Mail + code:D4E9-23E6 + cheat + description:Have Shovel + code:DFE0-2E76 + cheat + description:Have Titan's Mitten + code:D4E9-2276 + cheat + description:Have Zora's Flippers + code:DFE9-2286 + cheat + description:Have 1/2 Magic curse + code:DFE5-23E6 + cheat + description:Have all abilities except Lift + code:1EE5-2356 + cheat + description:Have all Maps, Compasses and Big Keys + code:EEE1-2276+EEE1-2256+EEE1-2286+EEE1-22E6+EEE1-2376+EEE1-2356 + cheat + description:Invincibility (alt) + code:7E031F:10 + cheat + description:Invincibility (alt 2) + code:7E031F:01 + cheat + description:Infinite rupees (alt) + code:7EF360:E7+7EF361:03 + cheat + description:Infinite Keys + code:7EF36F:09 + cheat + description:Bombs full + code:7EF375:01 + cheat + description:Play chest game for free and able to open all chests + code:7E04C4:01 + cheat + description:Infinite time for digging game in the Dark World + code:7E04B4:1E + cheat + description:Always get Faerie at the Pond Of Happiness (as if you threw in 100 rupees) + code:7EF36A:64 + cheat + description:Luck modifier - Great + code:7E0CF9:01 + cheat + description:Luck modifier - Big Trouble + code:7E0CF9:02 + cheat + description:Turn rain on + code:7E001D:01 + cheat + description:Turn rain off + code:7E001D:00 + cheat + description:Walk through walls + code:07CB9A:EA+07CB9B:EA+07C1FA:EA+07C1FB:EA + cheat + description:Walk faster + code:7E005E:16 + cheat + description:Walk much faster + code:7E005E:10 + cheat + description:Have 20 Heart Containers and infinite health + code:7EF36D:A0 + cheat + description:Have Blue Mail + code:7EF35B:02 + cheat + description:Have Boomerang + code:7EF341:01 + cheat + description:Have Bow + code:7EF340:01 + cheat + description:Have Bow with Arrows + code:7EF340:02 + cheat + description:Have Bow with Silver Arrows + code:7EF340:04 + cheat + description:Have all Lift abilities + code:D7E9-2276 + cheat + description:Have all Crystals + code:7EF37A:7F + cheat + description:Have all Pendants + code:7EF374:47 + cheat + description:Have Small Key In dungeons + code:7EF36F:09 + cheat + description:Have Big Key in dungeons + code:7EF366:FF+7EF367:FF + cheat + description:Have Compass in dungeons + code:7EF365:FF + cheat + description:Have bottle 1 + code:7EF35C:02 + cheat + description:Have bottle 1 with infinite Mushrooms + code:7EF35C:01 + cheat + description:Have bottle 1 with infinite Red Medicine (life) + code:7EF35C:03 + cheat + description:Have bottle 1 with infinite Green Medicine (magic) + code:7EF35C:04 + cheat + description:Have bottle 1 with infinite Blue Medicine (cure all) + code:7EF35C:05 + cheat + description:Have bottle 1 with infinite Faeries + code:7EF35C:06 + cheat + description:Have bottle 1 with infinite Bees + code:7EF35C:07 + cheat + description:Have bottle 1 with infinite Good Bees + code:7EF35C:08 + cheat + description:Have bottle 2 + code:7EF35D:02 + cheat + description:Have bottle 2 with infinite Mushrooms + code:7EF35D:01 + cheat + description:Have bottle 2 with infinite Red Medicine (life) + code:7EF35D:03 + cheat + description:Have bottle 2 with infinite Green Medicine (magic) + code:7EF35D:04 + cheat + description:Have bottle 2 with infinite Blue Medicine (cure all) + code:7EF35D:05 + cheat + description:Have bottle 2 with infinite Faeries + code:7EF35D:06 + cheat + description:Have bottle 2 with infinite Bees + code:7EF35D:07 + cheat + description:Have bottle 2 with infinite Good Bees + code:7EF35D:08 + cheat + description:Have bottle 3 + code:7EF35E:02 + cheat + description:Have bottle 3 with infinite Mushrooms + code:7EF35E:01 + cheat + description:Have bottle 3 with infinite Red Medicine (life) + code:7EF35E:03 + cheat + description:Have bottle 3 with infinite Green Medicine (magic) + code:7EF35E:04 + cheat + description:Have bottle 3 with infinite Blue Medicine (cure all) + code:7EF35E:05 + cheat + description:Have bottle 3 with infinite Faeries + code:7EF35E:06 + cheat + description:Have bottle 3 with infinite Bees + code:7EF35E:07 + cheat + description:Have bottle 3 with infinite Good Bees + code:7EF35E:08 + cheat + description:Have bottle 4 + code:7EF35F:02 + cheat + description:Have bottle 4 with infinite Mushrooms + code:7EF35F:01 + cheat + description:Have bottle 4 with infinite Red Medicine (life) + code:7EF35F:03 + cheat + description:Have bottle 4 with infinite Green Medicine (magic) + code:7EF35F:04 + cheat + description:Have bottle 4 with infinite Blue Medicine (cure all) + code:7EF35F:05 + cheat + description:Have bottle 4 with infinite Faeries + code:7EF35F:06 + cheat + description:Have bottle 4 with infinite Bees + code:7EF35F:07 + cheat + description:Have bottle 4 with infinite Good Bees + code:7EF35F:08 + +cartridge sha256:cd016c41c7ef9f4f243d57c2b1564b4ceb3b4c38cc165cd02ab6c8e35c93aa2e + name:Lemmings (USA) (Rev 1) + cheat + description:Infinite climbers if you start with at least 1 + code:C984-A467 + cheat + description:Infinite floaters if you start with at least 1 + code:C98F-AD07 + cheat + description:Infinite bombers if you start with at least 1 + code:C987-A407 + cheat + description:Infinite blockers if you start with at least 1 + code:C984-6DA7 + cheat + description:Infinite builders if you start with at least 1 + code:C98E-6D07 + cheat + description:Infinite bashers if you start with at least 1 + code:C982-6FD7 + cheat + description:Infinite miners if you start with at least 1 + code:C981-67D7 + cheat + description:Infinite diggers if you start with at least 1 + code:C98B-64A7 + cheat + description:Each saved lemming counts as two + code:31B6-6FAF+18B6-64DF + cheat + description:Start on Level 2; rating: Fun + code:CBCC-DD05+DFCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 3; rating: Fun + code:CBCC-DD05+D4CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 4; rating: Fun + code:CBCC-DD05+D7CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 5; rating: Fun + code:CBCC-DD05+D0CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 6; rating: Fun + code:CBCC-DD05+D9CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 7; rating: Fun + code:CBCC-DD05+D1CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 8; rating: Fun + code:CBCC-DD05+D5CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 9; rating: Fun + code:CBCC-DD05+D6CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 10; rating: Fun + code:CBCC-DD05+DBCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 11; rating: Fun + code:CBCC-DD05+DCCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 12; rating: Fun + code:CBCC-DD05+D8CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 13; rating: Fun + code:CBCC-DD05+DACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 14; rating: Fun + code:CBCC-DD05+D2CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 15; rating: Fun + code:CBCC-DD05+D3CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 16; rating: Fun + code:CBCC-DD05+DECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 17; rating: Fun + code:CBCC-DD05+FDCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 18; rating: Fun + code:CBCC-DD05+FFCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 19; rating: Fun + code:CBCC-DD05+F4CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 20; rating: Fun + code:CBCC-DD05+F7CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 21; rating: Fun + code:CBCC-DD05+F0CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 22; rating: Fun + code:CBCC-DD05+F9CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 23; rating: Fun + code:CBCC-DD05+F1CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 24; rating: Fun + code:CBCC-DD05+F5CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 25; rating: Fun + code:CBCC-DD05+F6CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 26; rating: Fun + code:CBCC-DD05+FBCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 27; rating: Fun + code:CBCC-DD05+FCCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 28; rating: Fun + code:CBCC-DD05+F8CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 29; rating: Fun + code:CBCC-DD05+FACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 30; rating: Fun + code:CBCC-DD05+F2CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 1; rating: Tricky + code:CBCC-DD05+F3CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 2; rating: Tricky + code:CBCC-DD05+FECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 3; rating: Tricky + code:CBCC-DD05+4DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 4; rating: Tricky + code:CBCC-DD05+4FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 5; rating: Tricky + code:CBCC-DD05+44CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 6; rating: Tricky + code:CBCC-DD05+47CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 7; rating: Tricky + code:CBCC-DD05+40CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 8; rating: Tricky + code:CBCC-DD05+49CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 9; rating: Tricky + code:CBCC-DD05+41CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 10; rating: Tricky + code:CBCC-DD05+45CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 11; rating: Tricky + code:CBCC-DD05+46CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 12; rating: Tricky + code:CBCC-DD05+4BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 13; rating: Tricky + code:CBCC-DD05+4CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 14; rating: Tricky + code:CBCC-DD05+48CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 15; rating: Tricky + code:CBCC-DD05+4ACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 16; rating: Tricky + code:CBCC-DD05+42CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 17; rating: Tricky + code:CBCC-DD05+43CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 18; rating: Tricky + code:CBCC-DD05+4ECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 19; rating: Tricky + code:CBCC-DD05+7DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 20; rating: Tricky + code:CBCC-DD05+7FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 21; rating: Tricky + code:CBCC-DD05+74CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 22; rating: Tricky + code:CBCC-DD05+77CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 23; rating: Tricky + code:CBCC-DD05+70CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 24; rating: Tricky + code:CBCC-DD05+79CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 25; rating: Tricky + code:CBCC-DD05+71CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 26; rating: Tricky + code:CBCC-DD05+75CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 27; rating: Tricky + code:CBCC-DD05+76CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 28; rating: Tricky + code:CBCC-DD05+7BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 29; rating: Tricky + code:CBCC-DD05+7CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 30; rating: Tricky + code:CBCC-DD05+78CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 1; rating: Taxing + code:CBCC-DD05+7ACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 2; rating: Taxing + code:CBCC-DD05+72CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 3; rating: Taxing + code:CBCC-DD05+73CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 4; rating: Taxing + code:CBCC-DD05+7ECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 5; rating: Taxing + code:CBCC-DD05+0DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 6; rating: Taxing + code:CBCC-DD05+0FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 7; rating: Taxing + code:CBCC-DD05+04CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 8; rating: Taxing + code:CBCC-DD05+07CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 9; rating: Taxing + code:CBCC-DD05+00CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 10; rating: Taxing + code:CBCC-DD05+09CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 11; rating: Taxing + code:CBCC-DD05+01CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 12; rating: Taxing + code:CBCC-DD05+05CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 13; rating: Taxing + code:CBCC-DD05+06CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 14; rating: Taxing + code:CBCC-DD05+0BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 15; rating: Taxing + code:CBCC-DD05+0CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 16; rating: Taxing + code:CBCC-DD05+08CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 17; rating: Taxing + code:CBCC-DD05+0ACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 18; rating: Taxing + code:CBCC-DD05+02CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 19; rating: Taxing + code:CBCC-DD05+03CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 20; rating: Taxing + code:CBCC-DD05+0ECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 21; rating: Taxing + code:CBCC-DD05+9DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 22; rating: Taxing + code:CBCC-DD05+9FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 23; rating: Taxing + code:CBCC-DD05+94CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 24; rating: Taxing + code:CBCC-DD05+97CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 25; rating: Taxing + code:CBCC-DD05+90CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 26; rating: Taxing + code:CBCC-DD05+99CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 27; rating: Taxing + code:CBCC-DD05+91CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 28; rating: Taxing + code:CBCC-DD05+95CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 29; rating: Taxing + code:CBCC-DD05+96CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 30; rating: Taxing + code:CBCC-DD05+9BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 1; rating: Mayhem + code:CBCC-DD05+9CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 2; rating: Mayhem + code:CBCC-DD05+98CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 3; rating: Mayhem + code:CBCC-DD05+9ACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 4; rating: Mayhem + code:CBCC-DD05+92CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 5; rating: Mayhem + code:CBCC-DD05+93CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 6; rating: Mayhem + code:CBCC-DD05+9ECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 7; rating: Mayhem + code:CBCC-DD05+1DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 8; rating: Mayhem + code:CBCC-DD05+1FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 9; rating: Mayhem + code:CBCC-DD05+14CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 10; rating: Mayhem + code:CBCC-DD05+17CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 11; rating: Mayhem + code:CBCC-DD05+10CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 12; rating: Mayhem + code:CBCC-DD05+19CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 13; rating: Mayhem + code:CBCC-DD05+11CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 14; rating: Mayhem + code:CBCC-DD05+15CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 15; rating: Mayhem + code:CBCC-DD05+16CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 16; rating: Mayhem + code:CBCC-DD05+1BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 17; rating: Mayhem + code:CBCC-DD05+1CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 18; rating: Mayhem + code:CBCC-DD05+18CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 19; rating: Mayhem + code:CBCC-DD05+1ACC-DD65+C9C8-0FD5 + cheat + description:Start on Level 20; rating: Mayhem + code:CBCC-DD05+12CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 21; rating: Mayhem + code:CBCC-DD05+13CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 22; rating: Mayhem + code:CBCC-DD05+1ECC-DD65+C9C8-0FD5 + cheat + description:Start on Level 23; rating: Mayhem + code:CBCC-DD05+5DCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 24; rating: Mayhem + code:CBCC-DD05+5FCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 25; rating: Mayhem + code:CBCC-DD05+54CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 26; rating: Mayhem + code:CBCC-DD05+57CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 27; rating: Mayhem + code:CBCC-DD05+50CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 28; rating: Mayhem + code:CBCC-DD05+59CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 29; rating: Mayhem + code:CBCC-DD05+51CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 30; rating: Mayhem + code:CBCC-DD05+55CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 1; rating: Sunsoft + code:CBCC-DD05+56CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 2; rating: Sunsoft + code:CBCC-DD05+5BCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 3; rating: Sunsoft + code:CBCC-DD05+5CCC-DD65+C9C8-0FD5 + cheat + description:Start on Level 4; rating: Sunsoft + code:CBCC-DD05+58CC-DD65+C9C8-0FD5 + cheat + description:Start on Level 5; rating: Sunsoft + code:CBCC-DD05+5ACC-DD65+C9C8-0FD5 + cheat + description:Have a lot of time + code:7E0094:FF + cheat + description:Open all 'Fun' levels + code:7FFFC0:1E + cheat + description:Open all 'Tricky' levels + code:7FFFC1:1E + cheat + description:Open all 'Taxing' levels + code:7FFFC2:1E + cheat + description:Open all 'Mayhem' levels + code:7FFFC3:1E + cheat + description:Open all 'SUNSOFT' levels + code:7FFFC4:05 + cheat + description:Instantly win levels + code:7E0091:00 + cheat + description:0% Lemmings needed + code:7E0092:00 + cheat + description:Have 99 Climbers left + code:7E0095:63 + cheat + description:Have 99 Floaters left + code:7E0096:63 + cheat + description:Have 99 Exploders left + code:7E0097:63 + cheat + description:Have 99 Blockers left + code:7E0098:63 + cheat + description:Have 99 Builders left + code:7E0099:63 + cheat + description:Have 99 Bashers left + code:7E009A:63 + cheat + description:Have 99 Miners left + code:7E009B:63 + cheat + description:Have 99 Diggers left + code:7E009C:63 + cheat + description:Have 0 Lemmings left in level + code:7E0069:00 + cheat + description:Have 0 Lemmings left to enter level + code:7E006A:00 + cheat + description:Always rescued 100% of Lemmings + code:7E006B:64 + +cartridge sha256:a2c1970670e2831e47e24ced01bf4ba5aba05cac3773bf524c62d689c35687e1 + name:Lester the Unlikely (USA) + cheat + description:Infinite health against most enemies + code:C2C2-8DEB + cheat + description:Infinite lives + code:C2C6-7F58 + cheat + description:Flashing lasts a long time after getting hit + code:D0C2-848B + cheat + description:Flashing lasts a really long time after getting hit + code:DAC2-848B + cheat + description:Lighter gravity effect (disable right after pressing start, donï¾’t enable until first game play screen) + code:0DCA-5D5B + cheat + description:Even lighter gravity effect + code:49CA-5D5B + cheat + description:Amazingly lighter gravity effect + code:F9CA-5D5B + cheat + description:Infinite health + code:7E859B:03 + +cartridge sha256:3bc5f296c3dbee012e93a5cf25568f9288ce87b34d74085401a560350eaca03f + name:Lethal Enforcers (USA) + cheat + description:Invincibility - both players + code:6DC2-CF24 + cheat + description:Infinite ammo + code:3CCE-C4AB + cheat + description:Infinite health - both players + code:3CB5-140C + cheat + description:No health loss when you hit civilians + code:3CB2-446C + cheat + description:Hit anywhere - both players + code:6D23-47BD+6DBA-446C+6D67-472F+7925-1FFD + cheat + description:1/2 health lost when you hit civilians + code:3CB2-446C + cheat + description:Play with more health + code:F365-CF64+F362-CD64 + cheat + description:Keep weapon until you die + code:6DBF-1FAC + cheat + description:Magnum - more shots per round + code:DAA3-4F60 + cheat + description:Normal gun - more shots per round + code:DAA3-4D60 + cheat + description:Shotgun - more shots per round + code:DAA3-4460 + cheat + description:Invincibility - P1 + code:7E00B2:07 + cheat + description:Invincibility - P2 + code:7E00B4:07 + cheat + description:Infinite ammo for all guns - P1 + code:7E1FC0:06 + cheat + description:Infinite ammo for all guns - P2 + code:7E1FC2:06 + cheat + description:Have Grenade Launcher - P1 + code:7E1FBC:02 + cheat + description:Have Grenade Launcher - P2 + code:7E1FBE:02 + cheat + description:Have Magnum - P1 + code:7E1FBC:04 + cheat + description:Have Magnum - P2 + code:7E1FBE:04 + cheat + description:Have Shotgun - P1 + code:7E1FBC:06 + cheat + description:Have Shotgun - P2 + code:7E1FBE:06 + cheat + description:Have Automatic - P1 + code:7E1FBC:08 + cheat + description:Have Automatic - P2 + code:7E1FBE:08 + cheat + description:Have Glock 45 - P1 + code:7E1FBC:0A + cheat + description:Have Glock 45 - P2 + code:7E1FBE:0A + cheat + description:Have Uzi - P1 + code:7E1FBC:0C + cheat + description:Have Uzi - P2 + code:7E1FBE:0C + +cartridge sha256:80c22cc92d51a54de9cd9fd00db5ff58a35fff35e822169c94e445d50834fba3 + name:Lethal Weapon (USA) + cheat + description:Infinite health + code:4ABE-AFD7 + cheat + description:Infinite ammo + code:DD8D-D7A4 + cheat + description:Infinite time + code:C285-670F + cheat + description:More bullets in magazine + code:DB8F-DF64 + cheat + description:2 magazines on pick-up + code:D4CA-A7AF + cheat + description:4 magazines on pick-up + code:D0CA-A7AF + cheat + description:Slower timer + code:148B-6F0F + cheat + description:Faster timer + code:FE8B-6F0F + cheat + description:Super-jump (can get stuck) + code:3CBD-04DF + cheat + description:Start with more badges + code:D162-A7DF + cheat + description:Start with fewer badges + code:DD62-A7DF + cheat + description:Start with more magazine clips + code:DB6A-AF6F + cheat + description:Start with fewer magazine clips + code:DF6A-AF6F + cheat + description:Invincibility (blinking) + code:7E025E:50 + cheat + description:Infinite health (alt) + code:7E0226:06 + cheat + description:Infinite ammo (alt) + code:7E021E:07 + cheat + description:Infinite time (alt) + code:7E0D28:99+7E0D29:09 + cheat + description:Play as Riggs + code:7E0246:00 + cheat + description:Play as Murtaugh + code:7E0246:01 + +cartridge sha256:457abe634e0a8be03e29513a3dca8f3e9d0ddc6bf97d8931f2316094260f3712 + name:Lion King, The (USA) + cheat + description:Almost infinite health + code:C298-7DDE + cheat + description:Infinite lives + code:CE6E-8464 + cheat + description:Roaring doesn't decrease your roar meter + code:C291-5763 + cheat + description:Roar meter doesn't fill up with time + code:C289-5D6F + cheat + description:Don't lose roar power when you get hit + code:C293-E703 + cheat + description:higher-jump + code:CBF9-5D6A+E1F9-5DAA+EEF9-5FDA + cheat + description:Mega-jump + code:CBF9-5D6A+E0F9-5DAA+EEF9-5FDA + cheat + description:Walk through walls + code:6D6C-5D2D+DD67-5FBD+DDA2-EDAF + cheat + description:Invincibility (blinking) + code:7EB259:3D + cheat + description:Infinite health + code:7E2004:04 + cheat + description:Infinite Roar meter + code:7E2002:10 + cheat + description:Infinite lives (alt) + code:7FFFAA:09 + cheat + description:Infinite continues + code:7FFFA8:09 + cheat + description:Infinite time - Bug Hunt I + code:7EC0C1:28 + cheat + description:Infinite time - Bug Hunt II + code:7ECB41:28 + cheat + description:Infinite time - Bug Hunt III + code:7EBBC1:28 + cheat + description:Play as young Simba + code:7E2000:00 + cheat + description:Play as adult Simba + code:7E2001:FF + cheat + description:Start on The Pride Lands + code:7FFF9E:00 + cheat + description:Start on Roar At Monkeys + code:7FFF9E:01 + cheat + description:Start on The Elephant Graveyard + code:7FFF9E:02 + cheat + description:Start on The Stampede + code:7FFF9E:03 + cheat + description:Start on Simba's Exile + code:7FFF9E:04 + cheat + description:Start on Hakuna Matata + code:7FFF9E:05 + cheat + description:Start on Simba's Destiny + code:7FFF9E:06 + cheat + description:Start on Be Prepared + code:7FFF9E:07 + cheat + description:Start on Simba's Return + code:7FFF9E:08 + cheat + description:Start on Pride Rock + code:7FFF9E:09 + cheat + description:Start on Bug Toss + code:7FFF9E:0A + cheat + description:Start on Bug Hunt I + code:7FFF9E:0B + cheat + description:Start on Bug Hunt II + code:7FFF9E:0C + cheat + description:Start on Bug Hunt III + code:7FFF9E:0D + cheat + description:Start on Game Begins + code:7FFF9E:0E + cheat + description:Start on Kill Him + code:7FFF9E:0F + +cartridge sha256:52dbfdaca87debdf181b87d55192b0f8dd07e8aeb43afa4b04df16d44ec998e5 + name:Little Magic (Japan) + cheat + description:Infinite Mays / Retries + code:7E0059:09 + +cartridge sha256:7e1d6242ae2ec2c23afb876becdcf778098edd4d853234222dc16471cb51df9e + name:Lock On (USA) + cheat + description:Infinite Flares + code:7E1113:46 + cheat + description:Infinite Missile A + code:7E1115:46 + cheat + description:Infinite Missile B + code:7E1116:46 + cheat + description:Infinite lives + code:7E1106:0A + +cartridge sha256:9f7782a92fda789f9d119b1f0a2f7da0f35606357556a48eca9487797ee1a888 + name:Lost Vikings, The (USA) + cheat + description:Start with infinite health - all Vikings + code:7E0FE9:08 + +cartridge sha256:ab3d97c1a3a979e1680a428ec65df54cfb72997bbfe2173292248a4fa8c51ba1 + name:Lost Vikings 2 (USA) + cheat + description:Infinite health - 1st viking + code:7E1037:06 + cheat + description:Infinite health - 2nd viking + code:7E1039:06 + cheat + description:Infinite health - 3rd viking + code:7E103B:06 + +cartridge sha256:8510491f99400115ccf33570269bc4e484fb56370f7ac36f12e73eec19d342da + name:Lucky Luke (Europe) (En,Fr,De,Es) + cheat + description:Invincibility + code:7E0526:48 + cheat + description:Infinite health + code:7E059F:04 + cheat + description:Infinite lives + code:7E05A0:09 + cheat + description:Infinite rounds + code:7E05A2:09 + cheat + description:Infinite bombs + code:7E05A3:09 + +cartridge sha256:73731a5a7932965de02a9e98055dcf88b4d17b8f710a6ecfde3e36a1f248773b + name:Lufia & The Fortress of Doom (USA) + cheat + description:Move around caves and world map quicker (except when leaving a vehicle) + code:4DB4-D401 + cheat + description:Infinite HP (hit points) + code:8236-0F34 + cheat + description:Infinite magic points in battle mode + code:823A-0FC4 + cheat + description:No HP lost when walking over swamp ground + code:DDB8-6FD9 + cheat + description:More HP lost when walking over swamp ground + code:D0B8-6FD9 + cheat + description:Cheap bombs - 1 gold each + code:DF30-A718 + cheat + description:Cheap smokeballs - 1 gold each + code:DF3C-0D18 + cheat + description:Immune to all petrifying effects (stone, poison, confused, etc.) + code:6D8F-0DC4 + cheat + description:Shopkeepers don't charge for purchases - some shops only + code:95A8-67A4 + cheat + description:More agility points from speed potion + code:FD34-0448 + cheat + description:More intelligence points from mind potion + code:FD30-0438 + cheat + description:More strength points from great potion + code:FD31-07C8 + cheat + description:Higher max level of magic points from spell potion + code:FD3D-0F18 + cheat + description:Higher max level of hit points from power potion + code:FD33-DDC8 + cheat + description:99 of item in slot 1 + code:7E14F8:63 + cheat + description:99 of item in slot 2 + code:7E14FA:63 + cheat + description:99 of item in slot 3 + code:7E14FC:63 + cheat + description:No random battles + code:7E149E:00 + cheat + description:Slot 1 - Nothing + code:7E14F7:00 + cheat + description:Slot 1 - Knife + code:7E14F7:01 + cheat + description:Slot 1 - Club + code:7E14F7:02 + cheat + description:Slot 1 - Mace + code:7E14F7:03 + cheat + description:Slot 1 - Dagger + code:7E14F7:04 + cheat + description:Slot 1 - Long Knife + code:7E14F7:05 + cheat + description:Slot 1 - Short Sword + code:7E14F7:06 + cheat + description:Slot 1 - Rod + code:7E14F7:07 + cheat + description:Slot 1 - Gladius + code:7E14F7:08 + cheat + description:Slot 1 - Glass Robe + code:7E14F7:09 + cheat + description:Slot 1 - Brone Sword + code:7E14F7:0A + cheat + description:Slot 1 - Staff + code:7E14F7:0B + cheat + description:Slot 1 - Scimitar + code:7E14F7:0C + cheat + description:Slot 1 - Rapier + code:7E14F7:0D + cheat + description:Slot 1 - Long Sword + code:7E14F7:0E + cheat + description:Slot 1 - Long Staff + code:7E14F7:0F + cheat + description:Slot 1 - Axe + code:7E14F7:10 + cheat + description:Slot 1 - Spear + code:7E14F7:11 + cheat + description:Slot 1 - Morning Star + code:7E14F7:12 + cheat + description:Slot 1 - Catwhip + code:7E14F7:13 + cheat + description:Slot 1 - Battle Axe + code:7E14F7:14 + cheat + description:Slot 1 - Hammer Rod + code:7E14F7:15 + cheat + description:Slot 1 - Trident + code:7E14F7:16 + cheat + description:Slot 1 - Silver Rod + code:7E14F7:17 + cheat + description:Slot 1 - Silver Sword + code:7E14F7:18 + cheat + description:Slot 1 - Buster Sword + code:7E14F7:19 + cheat + description:Slot 1 - Zircon Rod + code:7E14F7:1A + cheat + description:Slot 1 - Great Axe + code:7E14F7:1B + cheat + description:Slot 1 - Great Blade + code:7E14F7:1C + cheat + description:Slot 1 - Zircon Axe + code:7E14F7:1D + cheat + description:Slot 1 - Zircon Sword + code:7E14F7:1E + cheat + description:Slot 1 - Broad Sword + code:7E14F7:1F + cheat + description:Slot 1 - Broad Rod + code:7E14F7:20 + cheat + description:Slot 1 - Luck Blade + code:7E14F7:21 + cheat + description:Slot 1 - Gloom Pick + code:7E14F7:22 + cheat + description:Slot 1 - Dual Blade + code:7E14F7:23 + cheat + description:Slot 1 - Dress + code:7E14F7:24 + cheat + description:Slot 1 - Cloth + code:7E14F7:25 + cheat + description:Slot 1 - Cloth Armor + code:7E14F7:26 + cheat + description:Slot 1 - Robe + code:7E14F7:27 + cheat + description:Slot 1 - Tan Armor + code:7E14F7:28 + cheat + description:Slot 1 - Tan Robe + code:7E14F7:29 + cheat + description:Slot 1 - Light Armor + code:7E14F7:2A + cheat + description:Slot 1 - Light Robe + code:7E14F7:2B + cheat + description:Slot 1 - Chain Mail + code:7E14F7:2C + cheat + description:Slot 1 - Chain Cloth + code:7E14F7:2D + cheat + description:Slot 1 - Plate Cloth + code:7E14F7:2E + cheat + description:Slot 1 - Brone Armor + code:7E14F7:2F + cheat + description:Slot 1 - Quilted Silk + code:7E14F7:30 + cheat + description:Slot 1 - Half Mail + code:7E14F7:31 + cheat + description:Slot 1 - Brone Robe + code:7E14F7:32 + cheat + description:Slot 1 - Silver Armor + code:7E14F7:33 + cheat + description:Slot 1 - Silver Robe + code:7E14F7:34 + cheat + description:Slot 1 - Plate Mail + code:7E14F7:35 + cheat + description:Slot 1 - Zircon Robe + code:7E14F7:36 + cheat + description:Slot 1 - Zircon Armor + code:7E14F7:37 + cheat + description:Slot 1 - Clear Silk + code:7E14F7:38 + cheat + description:Slot 1 - Bracelet + code:7E14F7:39 + cheat + description:Slot 1 - Tan Shield + code:7E14F7:3A + cheat + description:Slot 1 - Wood Shield + code:7E14F7:3B + cheat + description:Slot 1 - Buckler + code:7E14F7:3C + cheat + description:Slot 1 - Wood Wrist + code:7E14F7:3D + cheat + description:Slot 1 - Kite Shield + code:7E14F7:3E + cheat + description:Slot 1 - Round Shield + code:7E14F7:3F + cheat + description:Slot 1 - Round Wrist + code:7E14F7:40 + cheat + description:Slot 1 - Brone Shield + code:7E14F7:41 + cheat + description:Slot 1 - Tower Shield + code:7E14F7:42 + cheat + description:Slot 1 - Large Shield + code:7E14F7:43 + cheat + description:Slot 1 - Silver Wrist + code:7E14F7:44 + cheat + description:Slot 1 - Silver Plate + code:7E14F7:45 + cheat + description:Slot 1 - Zircon Wrist + code:7E14F7:46 + cheat + description:Slot 1 - Zircon Plate + code:7E14F7:47 + cheat + description:Slot 1 - Cloth Helm + code:7E14F7:48 + cheat + description:Slot 1 - Tan Helm + code:7E14F7:49 + cheat + description:Slot 1 - Hair Band + code:7E14F7:4A + cheat + description:Slot 1 - Wood Helm + code:7E14F7:4B + cheat + description:Slot 1 - Glass Cap + code:7E14F7:4C + cheat + description:Slot 1 - Brone Helm + code:7E14F7:4D + cheat + description:Slot 1 - Red Beret + code:7E14F7:4E + cheat + description:Slot 1 - Iron Helm + code:7E14F7:4F + cheat + description:Slot 1 - Plate Cap + code:7E14F7:50 + cheat + description:Slot 1 - Plate Helm + code:7E14F7:51 + cheat + description:Slot 1 - Glass Beret + code:7E14F7:52 + cheat + description:Slot 1 - Silver Helm + code:7E14F7:53 + cheat + description:Slot 1 - Sakret + code:7E14F7:54 + cheat + description:Slot 1 - Zircon Beret + code:7E14F7:55 + cheat + description:Slot 1 - Zircon Helm + code:7E14F7:56 + cheat + description:Slot 1 - Sandal + code:7E14F7:57 + cheat + description:Slot 1 - Cloth Shoes + code:7E14F7:58 + cheat + description:Slot 1 - Tan Shoes + code:7E14F7:59 + cheat + description:Slot 1 - Spike Shoes + code:7E14F7:5A + cheat + description:Slot 1 - Heeled Shoes + code:7E14F7:5B + cheat + description:Slot 1 - Wind Shoes + code:7E14F7:5C + cheat + description:Slot 1 - Wind Heels + code:7E14F7:5D + cheat + description:Slot 1 - Knife Shoes + code:7E14F7:5E + cheat + description:Slot 1 - Needle Heels + code:7E14F7:5F + cheat + description:Slot 1 - Sonic Shoes + code:7E14F7:60 + cheat + description:Slot 1 - Sonic Heels + code:7E14F7:61 + cheat + description:Slot 1 - Sword Shoes + code:7E14F7:62 + cheat + description:Slot 1 - Cat Heels + code:7E14F7:63 + cheat + description:Slot 1 - Mach Shoes + code:7E14F7:64 + cheat + description:Slot 1 - Mach Heels + code:7E14F7:65 + cheat + description:Slot 1 - Power Ring + code:7E14F7:66 + cheat + description:Slot 1 - HiPower Ring + code:7E14F7:67 + cheat + description:Slot 1 - Daze Ring + code:7E14F7:68 + cheat + description:Slot 1 - Hi Daze Ring + code:7E14F7:69 + cheat + description:Slot 1 - Mind Ring + code:7E14F7:6A + cheat + description:Slot 1 - Sonic Ring + code:7E14F7:6B + cheat + description:Slot 1 - Mach Ring + code:7E14F7:6C + cheat + description:Slot 1 - Undead Ring + code:7E14F7:6D + cheat + description:Slot 1 - Ghost Ring + code:7E14F7:6E + cheat + description:Slot 1 - Dragon Ring + code:7E14F7:6F + cheat + description:Slot 1 - Sea Ring + code:7E14F7:70 + cheat + description:Slot 1 - Fly Ring + code:7E14F7:71 + cheat + description:Slot 1 - Water Ring + code:7E14F7:72 + cheat + description:Slot 1 - Fire Ring + code:7E14F7:73 + cheat + description:Slot 1 - Ice Ring + code:7E14F7:74 + cheat + description:Slot 1 - Electro Ring + code:7E14F7:75 + cheat + description:Slot 1 - Flash Ring + code:7E14F7:76 + cheat + description:Slot 1 - Flame Ring + code:7E14F7:77 + cheat + description:Slot 1 - Water Ring + code:7E14F7:78 + cheat + description:Slot 1 - Blast Ring + code:7E14F7:79 + cheat + description:Slot 1 - Frost Ring + code:7E14F7:7A + cheat + description:Slot 1 - Might Armor + code:7E14F7:7B + cheat + description:Slot 1 - Might Shield + code:7E14F7:7C + cheat + description:Slot 1 - Might Helmet + code:7E14F7:7D + cheat + description:Slot 1 - Gloom Ring + code:7E14F7:7E + cheat + description:Slot 1 - Gloom Voice + code:7E14F7:7F + cheat + description:Slot 1 - Dummy (?) + code:7E14F7:80 + cheat + description:Slot 1 - Brone Breast + code:7E14F7:81 + cheat + description:Slot 1 - Carbo Sword + code:7E14F7:82 + cheat + description:Slot 1 - Carbo Plate + code:7E14F7:83 + cheat + description:Slot 1 - Carbo Shield + code:7E14F7:84 + cheat + description:Slot 1 - Carbo Helm + code:7E14F7:85 + cheat + description:Slot 1 - Carbo Cap + code:7E14F7:86 + cheat + description:Slot 1 - Gloom Guard + code:7E14F7:87 + cheat + description:Slot 1 - Diamond Ring + code:7E14F7:88 + cheat + description:Slot 1 - Engage Ring + code:7E14F7:89 + cheat + description:Slot 1 - Monster Ring + code:7E14F7:8A + cheat + description:Slot 1 - Blue Ring + code:7E14F7:8B + cheat + description:Slot 1 - Yellow Ring + code:7E14F7:8C + cheat + description:Slot 1 - Red Ring + code:7E14F7:8D + cheat + description:Slot 1 - Purple Ring + code:7E14F7:8E + cheat + description:Slot 1 - Green Ring + code:7E14F7:8F + cheat + description:Slot 1 - White Ring + code:7E14F7:90 + cheat + description:Slot 1 - Black Ring + code:7E14F7:91 + cheat + description:Slot 1 - Heavy Ring + code:7E14F7:92 + cheat + description:Slot 1 - Wave Ring + code:7E14F7:93 + cheat + description:Slot 1 - Potion + code:7E14F7:94 + cheat + description:Slot 1 - Hi Potion + code:7E14F7:95 + cheat + description:Slot 1 - Ex Potion + code:7E14F7:96 + cheat + description:Slot 1 - Hi Magic + code:7E14F7:97 + cheat + description:Slot 1 - Ex Magic + code:7E14F7:98 + cheat + description:Slot 1 - Antidote + code:7E14F7:99 + cheat + description:Slot 1 - Sweet Water + code:7E14F7:9A + cheat + description:Slot 1 - Foul Water + code:7E14F7:9B + cheat + description:Slot 1 - Awaken + code:7E14F7:9C + cheat + description:Slot 1 - Stone Cure + code:7E14F7:9D + cheat + description:Slot 1 - Mystery Pin + code:7E14F7:9E + cheat + description:Slot 1 - Shriek + code:7E14F7:9F + cheat + description:Slot 1 - Swing Wing + code:7E14F7:A0 + cheat + description:Slot 1 - Magic Guard + code:7E14F7:A1 + cheat + description:Slot 1 - Power Gourd + code:7E14F7:A2 + cheat + description:Slot 1 - Mind Gourd + code:7E14F7:A3 + cheat + description:Slot 1 - Power Potion + code:7E14F7:A4 + cheat + description:Slot 1 - Spell Potion + code:7E14F7:A5 + cheat + description:Slot 1 - Speed Potion + code:7E14F7:A6 + cheat + description:Slot 1 - Mind Potion + code:7E14F7:A7 + cheat + description:Slot 1 - Great Potion + code:7E14F7:A8 + cheat + description:Slot 1 - Float + code:7E14F7:A9 + cheat + description:Slot 1 - Smoke Ball + code:7E14F7:AA + cheat + description:Slot 1 - Arrow + code:7E14F7:AB + cheat + description:Slot 1 - Mid Arrow + code:7E14F7:AC + cheat + description:Slot 1 - Big Arrow + code:7E14F7:AD + cheat + description:Slot 1 - Arrows + code:7E14F7:AE + cheat + description:Slot 1 - Hi Arrows + code:7E14F7:AF + cheat + description:Slot 1 - Ex Arrows + code:7E14F7:B0 + cheat + description:Slot 1 - Dragon Arrow + code:7E14F7:B1 + cheat + description:Slot 1 - Sleep Arrow + code:7E14F7:B2 + cheat + description:Slot 1 - Puzzle Arrow + code:7E14F7:B3 + cheat + description:Slot 1 - Stun Arrow + code:7E14F7:B4 + cheat + description:Slot 1 - Gloom Arrow + code:7E14F7:B5 + cheat + description:Slot 1 - Bomb + code:7E14F7:B6 + cheat + description:Slot 1 - Hi Bomb + code:7E14F7:B7 + cheat + description:Slot 1 - Ex Bomb + code:7E14F7:B8 + cheat + description:Slot 1 - Miracle + code:7E14F7:B9 + cheat + description:Slot 1 - Revive + code:7E14F7:BA + cheat + description:Slot 1 - Pear Cider + code:7E14F7:BB + cheat + description:Slot 1 - Sour Cider + code:7E14F7:BC + cheat + description:Slot 1 - Lime Cider + code:7E14F7:BD + cheat + description:Slot 1 - Plum Cider + code:7E14F7:BE + cheat + description:Slot 1 - Apple Cider + code:7E14F7:BF + cheat + description:Slot 1 - Hair Band + code:7E14F7:C0 + cheat + description:Slot 1 - Brooch + code:7E14F7:C1 + cheat + description:Slot 1 - Earring + code:7E14F7:C2 + cheat + description:Slot 1 - Necklace + code:7E14F7:C3 + cheat + description:Slot 1 - Stuffed Bear + code:7E14F7:C4 + cheat + description:Slot 1 - Stuffed Dog + code:7E14F7:C5 + cheat + description:Slot 1 - Stuffed Pig + code:7E14F7:C6 + cheat + description:Slot 1 - Emerald + code:7E14F7:C7 + cheat + description:Slot 1 - Opal + code:7E14F7:C8 + cheat + description:Slot 1 - Goblet + code:7E14F7:C9 + cheat + description:Slot 1 - Ear Tip + code:7E14F7:CA + cheat + description:Slot 1 - Empty Bottle + code:7E14F7:CB + cheat + description:Slot 1 - Gown + code:7E14F7:CC + cheat + description:Slot 1 - Ribbon + code:7E14F7:CD + cheat + description:Slot 1 - Fry Pan + code:7E14F7:CE + cheat + description:Slot 1 - Small Knife + code:7E14F7:CF + cheat + description:Slot 1 - Pot + code:7E14F7:D0 + cheat + description:Slot 1 - Chop Block + code:7E14F7:D1 + cheat + description:Slot 1 - Apron + code:7E14F7:D2 + cheat + description:Slot 1 - Dragon Egg + code:7E14F7:D3 + cheat + description:Slot 1 - Crown + code:7E14F7:D4 + cheat + description:Slot 1 - Secret Map + code:7E14F7:D5 + cheat + description:Slot 1 - Miracle Gem + code:7E14F7:D6 + cheat + description:Slot 1 - Silver Wick + code:7E14F7:D7 + cheat + description:Slot 1 - Royal Statue + code:7E14F7:D8 + cheat + description:Slot 1 - Silver Tarot + code:7E14F7:D9 + cheat + description:Slot 1 - Golden Pawn + code:7E14F7:DA + cheat + description:Slot 1 - Crown Jewels + code:7E14F7:DB + cheat + description:Slot 1 - Wind Flute + code:7E14F7:DC + cheat + description:Slot 1 - Escape + code:7E14F7:DD + cheat + description:Slot 1 - Magic Jar + code:7E14F7:DE + cheat + description:Slot 1 - Dragon Tooth + code:7E14F7:DF + cheat + description:Slot 1 - Grilled Newt + code:7E14F7:E0 + cheat + description:Slot 1 - Poison Pin + code:7E14F7:E1 + cheat + description:Slot 1 - Might Sword + code:7E14F7:E2 + cheat + description:Slot 1 - Straw Doll + code:7E14F7:E3 + cheat + description:Slot 1 - Long Nail + code:7E14F7:E4 + cheat + description:Slot 1 - Bomb + code:7E14F7:E5 + cheat + description:Slot 1 - Alumina + code:7E14F7:E6 + cheat + description:Slot 1 - Power Oil + code:7E14F7:E7 + cheat + description:Slot 1 - Elven Bow + code:7E14F7:E8 + cheat + description:Slot 1 - Artea's Bow + code:7E14F7:E9 + cheat + description:Slot 1 - Might Bow + code:7E14F7:EA + cheat + description:Slot 1 - Dummy (?) + code:7E14F7:EB + cheat + description:Slot 1 - Dummy (?) + code:7E14F7:EC + cheat + description:Slot 1 - Dummy (?) + code:7E14F7:ED + cheat + description:Slot 1 - Dummy (?) + code:7E14F7:EE + cheat + description:Slot 1 - Free Door + code:7E14F7:EF + cheat + description:Slot 1 - Sheran Key + code:7E14F7:F0 + cheat + description:Slot 1 - Letter + code:7E14F7:F1 + cheat + description:Slot 1 - Dais Key + code:7E14F7:F2 + cheat + description:Slot 1 - Shrine Key + code:7E14F7:F3 + cheat + description:Slot 1 - Pirate Key + code:7E14F7:F4 + cheat + description:Slot 1 - Light Key + code:7E14F7:F5 + cheat + description:Slot 1 - Oil Key + code:7E14F7:F6 + cheat + description:Slot 1 - Green Jade + code:7E14F7:F7 + cheat + description:Slot 1 - Red Sapphire + code:7E14F7:F8 + cheat + description:Slot 1 - Blue Jade + code:7E14F7:F9 + cheat + description:Slot 1 - Purple Newt + code:7E14F7:FA + cheat + description:Slot 1 - Glasdar Key + code:7E14F7:FB + cheat + description:Slot 1 - Magic Flavor + code:7E14F7:FC + cheat + description:Slot 1 - Fairy Kiss + code:7E14F7:FD + cheat + description:Slot 2 - Nothing + code:7E14F9:00 + cheat + description:Slot 2 - Knife + code:7E14F9:01 + cheat + description:Slot 2 - Club + code:7E14F9:02 + cheat + description:Slot 2 - Mace + code:7E14F9:03 + cheat + description:Slot 2 - Dagger + code:7E14F9:04 + cheat + description:Slot 2 - Long Knife + code:7E14F9:05 + cheat + description:Slot 2 - Short Sword + code:7E14F9:06 + cheat + description:Slot 2 - Rod + code:7E14F9:07 + cheat + description:Slot 2 - Gladius + code:7E14F9:08 + cheat + description:Slot 2 - Glass Robe + code:7E14F9:09 + cheat + description:Slot 2 - Brone Sword + code:7E14F9:0A + cheat + description:Slot 2 - Staff + code:7E14F9:0B + cheat + description:Slot 2 - Scimitar + code:7E14F9:0C + cheat + description:Slot 2 - Rapier + code:7E14F9:0D + cheat + description:Slot 2 - Long Sword + code:7E14F9:0E + cheat + description:Slot 2 - Long Staff + code:7E14F9:0F + cheat + description:Slot 2 - Axe + code:7E14F9:10 + cheat + description:Slot 2 - Spear + code:7E14F9:11 + cheat + description:Slot 2 - Morning Star + code:7E14F9:12 + cheat + description:Slot 2 - Catwhip + code:7E14F9:13 + cheat + description:Slot 2 - Battle Axe + code:7E14F9:14 + cheat + description:Slot 2 - Hammer Rod + code:7E14F9:15 + cheat + description:Slot 2 - Trident + code:7E14F9:16 + cheat + description:Slot 2 - Silver Rod + code:7E14F9:17 + cheat + description:Slot 2 - Silver Sword + code:7E14F9:18 + cheat + description:Slot 2 - Buster Sword + code:7E14F9:19 + cheat + description:Slot 2 - Zircon Rod + code:7E14F9:1A + cheat + description:Slot 2 - Great Axe + code:7E14F9:1B + cheat + description:Slot 2 - Great Blade + code:7E14F9:1C + cheat + description:Slot 2 - Zircon Axe + code:7E14F9:1D + cheat + description:Slot 2 - Zircon Sword + code:7E14F9:1E + cheat + description:Slot 2 - Broad Sword + code:7E14F9:1F + cheat + description:Slot 2 - Broad Rod + code:7E14F9:20 + cheat + description:Slot 2 - Luck Blade + code:7E14F9:21 + cheat + description:Slot 2 - Gloom Pick + code:7E14F9:22 + cheat + description:Slot 2 - Dual Blade + code:7E14F9:23 + cheat + description:Slot 2 - Dress + code:7E14F9:24 + cheat + description:Slot 2 - Cloth + code:7E14F9:25 + cheat + description:Slot 2 - Cloth Armor + code:7E14F9:26 + cheat + description:Slot 2 - Robe + code:7E14F9:27 + cheat + description:Slot 2 - Tan Armor + code:7E14F9:28 + cheat + description:Slot 2 - Tan Robe + code:7E14F9:29 + cheat + description:Slot 2 - Light Armor + code:7E14F9:2A + cheat + description:Slot 2 - Light Robe + code:7E14F9:2B + cheat + description:Slot 2 - Chain Mail + code:7E14F9:2C + cheat + description:Slot 2 - Chain Cloth + code:7E14F9:2D + cheat + description:Slot 2 - Plate Cloth + code:7E14F9:2E + cheat + description:Slot 2 - Brone Armor + code:7E14F9:2F + cheat + description:Slot 2 - Quilted Silk + code:7E14F9:30 + cheat + description:Slot 2 - Half Mail + code:7E14F9:31 + cheat + description:Slot 2 - Brone Robe + code:7E14F9:32 + cheat + description:Slot 2 - Silver Armor + code:7E14F9:33 + cheat + description:Slot 2 - Silver Robe + code:7E14F9:34 + cheat + description:Slot 2 - Plate Mail + code:7E14F9:35 + cheat + description:Slot 2 - Zircon Robe + code:7E14F9:36 + cheat + description:Slot 2 - Zircon Armor + code:7E14F9:37 + cheat + description:Slot 2 - Clear Silk + code:7E14F9:38 + cheat + description:Slot 2 - Bracelet + code:7E14F9:39 + cheat + description:Slot 2 - Tan Shield + code:7E14F9:3A + cheat + description:Slot 2 - Wood Shield + code:7E14F9:3B + cheat + description:Slot 2 - Buckler + code:7E14F9:3C + cheat + description:Slot 2 - Wood Wrist + code:7E14F9:3D + cheat + description:Slot 2 - Kite Shield + code:7E14F9:3E + cheat + description:Slot 2 - Round Shield + code:7E14F9:3F + cheat + description:Slot 2 - Round Wrist + code:7E14F9:40 + cheat + description:Slot 2 - Brone Shield + code:7E14F9:41 + cheat + description:Slot 2 - Tower Shield + code:7E14F9:42 + cheat + description:Slot 2 - Large Shield + code:7E14F9:43 + cheat + description:Slot 2 - Silver Wrist + code:7E14F9:44 + cheat + description:Slot 2 - Silver Plate + code:7E14F9:45 + cheat + description:Slot 2 - Zircon Wrist + code:7E14F9:46 + cheat + description:Slot 2 - Zircon Plate + code:7E14F9:47 + cheat + description:Slot 2 - Cloth Helm + code:7E14F9:48 + cheat + description:Slot 2 - Tan Helm + code:7E14F9:49 + cheat + description:Slot 2 - Hair Band + code:7E14F9:4A + cheat + description:Slot 2 - Wood Helm + code:7E14F9:4B + cheat + description:Slot 2 - Glass Cap + code:7E14F9:4C + cheat + description:Slot 2 - Brone Helm + code:7E14F9:4D + cheat + description:Slot 2 - Red Beret + code:7E14F9:4E + cheat + description:Slot 2 - Iron Helm + code:7E14F9:4F + cheat + description:Slot 2 - Plate Cap + code:7E14F9:50 + cheat + description:Slot 2 - Plate Helm + code:7E14F9:51 + cheat + description:Slot 2 - Glass Beret + code:7E14F9:52 + cheat + description:Slot 2 - Silver Helm + code:7E14F9:53 + cheat + description:Slot 2 - Sakret + code:7E14F9:54 + cheat + description:Slot 2 - Zircon Beret + code:7E14F9:55 + cheat + description:Slot 2 - Zircon Helm + code:7E14F9:56 + cheat + description:Slot 2 - Sandal + code:7E14F9:57 + cheat + description:Slot 2 - Cloth Shoes + code:7E14F9:58 + cheat + description:Slot 2 - Tan Shoes + code:7E14F9:59 + cheat + description:Slot 2 - Spike Shoes + code:7E14F9:5A + cheat + description:Slot 2 - Heeled Shoes + code:7E14F9:5B + cheat + description:Slot 2 - Wind Shoes + code:7E14F9:5C + cheat + description:Slot 2 - Wind Heels + code:7E14F9:5D + cheat + description:Slot 2 - Knife Shoes + code:7E14F9:5E + cheat + description:Slot 2 - Needle Heels + code:7E14F9:5F + cheat + description:Slot 2 - Sonic Shoes + code:7E14F9:60 + cheat + description:Slot 2 - Sonic Heels + code:7E14F9:61 + cheat + description:Slot 2 - Sword Shoes + code:7E14F9:62 + cheat + description:Slot 2 - Cat Heels + code:7E14F9:63 + cheat + description:Slot 2 - Mach Shoes + code:7E14F9:64 + cheat + description:Slot 2 - Mach Heels + code:7E14F9:65 + cheat + description:Slot 2 - Power Ring + code:7E14F9:66 + cheat + description:Slot 2 - HiPower Ring + code:7E14F9:67 + cheat + description:Slot 2 - Daze Ring + code:7E14F9:68 + cheat + description:Slot 2 - Hi Daze Ring + code:7E14F9:69 + cheat + description:Slot 2 - Mind Ring + code:7E14F9:6A + cheat + description:Slot 2 - Sonic Ring + code:7E14F9:6B + cheat + description:Slot 2 - Mach Ring + code:7E14F9:6C + cheat + description:Slot 2 - Undead Ring + code:7E14F9:6D + cheat + description:Slot 2 - Ghost Ring + code:7E14F9:6E + cheat + description:Slot 2 - Dragon Ring + code:7E14F9:6F + cheat + description:Slot 2 - Sea Ring + code:7E14F9:70 + cheat + description:Slot 2 - Fly Ring + code:7E14F9:71 + cheat + description:Slot 2 - Water Ring + code:7E14F9:72 + cheat + description:Slot 2 - Fire Ring + code:7E14F9:73 + cheat + description:Slot 2 - Ice Ring + code:7E14F9:74 + cheat + description:Slot 2 - Electro Ring + code:7E14F9:75 + cheat + description:Slot 2 - Flash Ring + code:7E14F9:76 + cheat + description:Slot 2 - Flame Ring + code:7E14F9:77 + cheat + description:Slot 2 - Water Ring + code:7E14F9:78 + cheat + description:Slot 2 - Blast Ring + code:7E14F9:79 + cheat + description:Slot 2 - Frost Ring + code:7E14F9:7A + cheat + description:Slot 2 - Might Armor + code:7E14F9:7B + cheat + description:Slot 2 - Might Shield + code:7E14F9:7C + cheat + description:Slot 2 - Might Helmet + code:7E14F9:7D + cheat + description:Slot 2 - Gloom Ring + code:7E14F9:7E + cheat + description:Slot 2 - Gloom Voice + code:7E14F9:7F + cheat + description:Slot 2 - Dummy (?) + code:7E14F9:80 + cheat + description:Slot 2 - Brone Breast + code:7E14F9:81 + cheat + description:Slot 2 - Carbo Sword + code:7E14F9:82 + cheat + description:Slot 2 - Carbo Plate + code:7E14F9:83 + cheat + description:Slot 2 - Carbo Shield + code:7E14F9:84 + cheat + description:Slot 2 - Carbo Helm + code:7E14F9:85 + cheat + description:Slot 2 - Carbo Cap + code:7E14F9:86 + cheat + description:Slot 2 - Gloom Guard + code:7E14F9:87 + cheat + description:Slot 2 - Diamond Ring + code:7E14F9:88 + cheat + description:Slot 2 - Engage Ring + code:7E14F9:89 + cheat + description:Slot 2 - Monster Ring + code:7E14F9:8A + cheat + description:Slot 2 - Blue Ring + code:7E14F9:8B + cheat + description:Slot 2 - Yellow Ring + code:7E14F9:8C + cheat + description:Slot 2 - Red Ring + code:7E14F9:8D + cheat + description:Slot 2 - Purple Ring + code:7E14F9:8E + cheat + description:Slot 2 - Green Ring + code:7E14F9:8F + cheat + description:Slot 2 - White Ring + code:7E14F9:90 + cheat + description:Slot 2 - Black Ring + code:7E14F9:91 + cheat + description:Slot 2 - Heavy Ring + code:7E14F9:92 + cheat + description:Slot 2 - Wave Ring + code:7E14F9:93 + cheat + description:Slot 2 - Potion + code:7E14F9:94 + cheat + description:Slot 2 - Hi Potion + code:7E14F9:95 + cheat + description:Slot 2 - Ex Potion + code:7E14F9:96 + cheat + description:Slot 2 - Hi Magic + code:7E14F9:97 + cheat + description:Slot 2 - Ex Magic + code:7E14F9:98 + cheat + description:Slot 2 - Antidote + code:7E14F9:99 + cheat + description:Slot 2 - Sweet Water + code:7E14F9:9A + cheat + description:Slot 2 - Foul Water + code:7E14F9:9B + cheat + description:Slot 2 - Awaken + code:7E14F9:9C + cheat + description:Slot 2 - Stone Cure + code:7E14F9:9D + cheat + description:Slot 2 - Mystery Pin + code:7E14F9:9E + cheat + description:Slot 2 - Shriek + code:7E14F9:9F + cheat + description:Slot 2 - Swing Wing + code:7E14F9:A0 + cheat + description:Slot 2 - Magic Guard + code:7E14F9:A1 + cheat + description:Slot 2 - Power Gourd + code:7E14F9:A2 + cheat + description:Slot 2 - Mind Gourd + code:7E14F9:A3 + cheat + description:Slot 2 - Power Potion + code:7E14F9:A4 + cheat + description:Slot 2 - Spell Potion + code:7E14F9:A5 + cheat + description:Slot 2 - Speed Potion + code:7E14F9:A6 + cheat + description:Slot 2 - Mind Potion + code:7E14F9:A7 + cheat + description:Slot 2 - Great Potion + code:7E14F9:A8 + cheat + description:Slot 2 - Float + code:7E14F9:A9 + cheat + description:Slot 2 - Smoke Ball + code:7E14F9:AA + cheat + description:Slot 2 - Arrow + code:7E14F9:AB + cheat + description:Slot 2 - Mid Arrow + code:7E14F9:AC + cheat + description:Slot 2 - Big Arrow + code:7E14F9:AD + cheat + description:Slot 2 - Arrows + code:7E14F9:AE + cheat + description:Slot 2 - Hi Arrows + code:7E14F9:AF + cheat + description:Slot 2 - Ex Arrows + code:7E14F9:B0 + cheat + description:Slot 2 - Dragon Arrow + code:7E14F9:B1 + cheat + description:Slot 2 - Sleep Arrow + code:7E14F9:B2 + cheat + description:Slot 2 - Puzzle Arrow + code:7E14F9:B3 + cheat + description:Slot 2 - Stun Arrow + code:7E14F9:B4 + cheat + description:Slot 2 - Gloom Arrow + code:7E14F9:B5 + cheat + description:Slot 2 - Bomb + code:7E14F9:B6 + cheat + description:Slot 2 - Hi Bomb + code:7E14F9:B7 + cheat + description:Slot 2 - Ex Bomb + code:7E14F9:B8 + cheat + description:Slot 2 - Miracle + code:7E14F9:B9 + cheat + description:Slot 2 - Revive + code:7E14F9:BA + cheat + description:Slot 2 - Pear Cider + code:7E14F9:BB + cheat + description:Slot 2 - Sour Cider + code:7E14F9:BC + cheat + description:Slot 2 - Lime Cider + code:7E14F9:BD + cheat + description:Slot 2 - Plum Cider + code:7E14F9:BE + cheat + description:Slot 2 - Apple Cider + code:7E14F9:BF + cheat + description:Slot 2 - Hair Band + code:7E14F9:C0 + cheat + description:Slot 2 - Brooch + code:7E14F9:C1 + cheat + description:Slot 2 - Earring + code:7E14F9:C2 + cheat + description:Slot 2 - Necklace + code:7E14F9:C3 + cheat + description:Slot 2 - Stuffed Bear + code:7E14F9:C4 + cheat + description:Slot 2 - Stuffed Dog + code:7E14F9:C5 + cheat + description:Slot 2 - Stuffed Pig + code:7E14F9:C6 + cheat + description:Slot 2 - Emerald + code:7E14F9:C7 + cheat + description:Slot 2 - Opal + code:7E14F9:C8 + cheat + description:Slot 2 - Goblet + code:7E14F9:C9 + cheat + description:Slot 2 - Ear Tip + code:7E14F9:CA + cheat + description:Slot 2 - Empty Bottle + code:7E14F9:CB + cheat + description:Slot 2 - Gown + code:7E14F9:CC + cheat + description:Slot 2 - Ribbon + code:7E14F9:CD + cheat + description:Slot 2 - Fry Pan + code:7E14F9:CE + cheat + description:Slot 2 - Small Knife + code:7E14F9:CF + cheat + description:Slot 2 - Pot + code:7E14F9:D0 + cheat + description:Slot 2 - Chop Block + code:7E14F9:D1 + cheat + description:Slot 2 - Apron + code:7E14F9:D2 + cheat + description:Slot 2 - Dragon Egg + code:7E14F9:D3 + cheat + description:Slot 2 - Crown + code:7E14F9:D4 + cheat + description:Slot 2 - Secret Map + code:7E14F9:D5 + cheat + description:Slot 2 - Miracle Gem + code:7E14F9:D6 + cheat + description:Slot 2 - Silver Wick + code:7E14F9:D7 + cheat + description:Slot 2 - Royal Statue + code:7E14F9:D8 + cheat + description:Slot 2 - Silver Tarot + code:7E14F9:D9 + cheat + description:Slot 2 - Golden Pawn + code:7E14F9:DA + cheat + description:Slot 2 - Crown Jewels + code:7E14F9:DB + cheat + description:Slot 2 - Wind Flute + code:7E14F9:DC + cheat + description:Slot 2 - Escape + code:7E14F9:DD + cheat + description:Slot 2 - Magic Jar + code:7E14F9:DE + cheat + description:Slot 2 - Dragon Tooth + code:7E14F9:DF + cheat + description:Slot 2 - Grilled Newt + code:7E14F9:E0 + cheat + description:Slot 2 - Poison Pin + code:7E14F9:E1 + cheat + description:Slot 2 - Might Sword + code:7E14F9:E2 + cheat + description:Slot 2 - Straw Doll + code:7E14F9:E3 + cheat + description:Slot 2 - Long Nail + code:7E14F9:E4 + cheat + description:Slot 2 - Bomb + code:7E14F9:E5 + cheat + description:Slot 2 - Alumina + code:7E14F9:E6 + cheat + description:Slot 2 - Power Oil + code:7E14F9:E7 + cheat + description:Slot 2 - Elven Bow + code:7E14F9:E8 + cheat + description:Slot 2 - Artea's Bow + code:7E14F9:E9 + cheat + description:Slot 2 - Might Bow + code:7E14F9:EA + cheat + description:Slot 2 - Dummy (?) + code:7E14F9:EB + cheat + description:Slot 2 - Dummy (?) + code:7E14F9:EC + cheat + description:Slot 2 - Dummy (?) + code:7E14F9:ED + cheat + description:Slot 2 - Dummy (?) + code:7E14F9:EE + cheat + description:Slot 2 - Free Door + code:7E14F9:EF + cheat + description:Slot 2 - Sheran Key + code:7E14F9:F0 + cheat + description:Slot 2 - Letter + code:7E14F9:F1 + cheat + description:Slot 2 - Dais Key + code:7E14F9:F2 + cheat + description:Slot 2 - Shrine Key + code:7E14F9:F3 + cheat + description:Slot 2 - Pirate Key + code:7E14F9:F4 + cheat + description:Slot 2 - Light Key + code:7E14F9:F5 + cheat + description:Slot 2 - Oil Key + code:7E14F9:F6 + cheat + description:Slot 2 - Green Jade + code:7E14F9:F9 + cheat + description:Slot 2 - Red Sapphire + code:7E14F9:F8 + cheat + description:Slot 2 - Blue Jade + code:7E14F9:F9 + cheat + description:Slot 2 - Purple Newt + code:7E14F9:FA + cheat + description:Slot 2 - Glasdar Key + code:7E14F9:FB + cheat + description:Slot 2 - Magic Flavor + code:7E14F9:FC + cheat + description:Slot 2 - Fairy Kiss + code:7E14F9:FD + cheat + description:Slot 3 - Nothing + code:7E14FB:00 + cheat + description:Slot 3 - Knife + code:7E14FB:01 + cheat + description:Slot 3 - Club + code:7E14FB:02 + cheat + description:Slot 3 - Mace + code:7E14FB:03 + cheat + description:Slot 3 - Dagger + code:7E14FB:04 + cheat + description:Slot 3 - Long Knife + code:7E14FB:05 + cheat + description:Slot 3 - Short Sword + code:7E14FB:06 + cheat + description:Slot 3 - Rod + code:7E14FB:07 + cheat + description:Slot 3 - Gladius + code:7E14FB:08 + cheat + description:Slot 3 - Glass Robe + code:7E14FB:09 + cheat + description:Slot 3 - Brone Sword + code:7E14FB:0A + cheat + description:Slot 3 - Staff + code:7E14FB:0B + cheat + description:Slot 3 - Scimitar + code:7E14FB:0C + cheat + description:Slot 3 - Rapier + code:7E14FB:0D + cheat + description:Slot 3 - Long Sword + code:7E14FB:0E + cheat + description:Slot 3 - Long Staff + code:7E14FB:0F + cheat + description:Slot 3 - Axe + code:7E14FB:10 + cheat + description:Slot 3 - Spear + code:7E14FB:11 + cheat + description:Slot 3 - Morning Star + code:7E14FB:12 + cheat + description:Slot 3 - Catwhip + code:7E14FB:13 + cheat + description:Slot 3 - Battle Axe + code:7E14FB:14 + cheat + description:Slot 3 - Hammer Rod + code:7E14FB:15 + cheat + description:Slot 3 - Trident + code:7E14FB:16 + cheat + description:Slot 3 - Silver Rod + code:7E14FB:17 + cheat + description:Slot 3 - Silver Sword + code:7E14FB:18 + cheat + description:Slot 3 - Buster Sword + code:7E14FB:19 + cheat + description:Slot 3 - Zircon Rod + code:7E14FB:1A + cheat + description:Slot 3 - Great Axe + code:7E14FB:1B + cheat + description:Slot 3 - Great Blade + code:7E14FB:1C + cheat + description:Slot 3 - Zircon Axe + code:7E14FB:1D + cheat + description:Slot 3 - Zircon Sword + code:7E14FB:1E + cheat + description:Slot 3 - Broad Sword + code:7E14FB:1F + cheat + description:Slot 3 - Broad Rod + code:7E14FB:20 + cheat + description:Slot 3 - Luck Blade + code:7E14FB:21 + cheat + description:Slot 3 - Gloom Pick + code:7E14FB:22 + cheat + description:Slot 3 - Dual Blade + code:7E14FB:23 + cheat + description:Slot 3 - Dress + code:7E14FB:24 + cheat + description:Slot 3 - Cloth + code:7E14FB:25 + cheat + description:Slot 3 - Cloth Armor + code:7E14FB:26 + cheat + description:Slot 3 - Robe + code:7E14FB:27 + cheat + description:Slot 3 - Tan Armor + code:7E14FB:28 + cheat + description:Slot 3 - Tan Robe + code:7E14FB:29 + cheat + description:Slot 3 - Light Armor + code:7E14FB:2A + cheat + description:Slot 3 - Light Robe + code:7E14FB:2B + cheat + description:Slot 3 - Chain Mail + code:7E14FB:2C + cheat + description:Slot 3 - Chain Cloth + code:7E14FB:2D + cheat + description:Slot 3 - Plate Cloth + code:7E14FB:2E + cheat + description:Slot 3 - Brone Armor + code:7E14FB:2F + cheat + description:Slot 3 - Quilted Silk + code:7E14FB:30 + cheat + description:Slot 3 - Half Mail + code:7E14FB:31 + cheat + description:Slot 3 - Brone Robe + code:7E14FB:32 + cheat + description:Slot 3 - Silver Armor + code:7E14FB:33 + cheat + description:Slot 3 - Silver Robe + code:7E14FB:34 + cheat + description:Slot 3 - Plate Mail + code:7E14FB:35 + cheat + description:Slot 3 - Zircon Robe + code:7E14FB:36 + cheat + description:Slot 3 - Zircon Armor + code:7E14FB:37 + cheat + description:Slot 3 - Clear Silk + code:7E14FB:38 + cheat + description:Slot 3 - Bracelet + code:7E14FB:39 + cheat + description:Slot 3 - Tan Shield + code:7E14FB:3A + cheat + description:Slot 3 - Wood Shield + code:7E14FB:3B + cheat + description:Slot 3 - Buckler + code:7E14FB:3C + cheat + description:Slot 3 - Wood Wrist + code:7E14FB:3D + cheat + description:Slot 3 - Kite Shield + code:7E14FB:3E + cheat + description:Slot 3 - Round Shield + code:7E14FB:3F + cheat + description:Slot 3 - Round Wrist + code:7E14FB:40 + cheat + description:Slot 3 - Brone Shield + code:7E14FB:41 + cheat + description:Slot 3 - Tower Shield + code:7E14FB:42 + cheat + description:Slot 3 - Large Shield + code:7E14FB:43 + cheat + description:Slot 3 - Silver Wrist + code:7E14FB:44 + cheat + description:Slot 3 - Silver Plate + code:7E14FB:45 + cheat + description:Slot 3 - Zircon Wrist + code:7E14FB:46 + cheat + description:Slot 3 - Zircon Plate + code:7E14FB:47 + cheat + description:Slot 3 - Cloth Helm + code:7E14FB:48 + cheat + description:Slot 3 - Tan Helm + code:7E14FB:49 + cheat + description:Slot 3 - Hair Band + code:7E14FB:4A + cheat + description:Slot 3 - Wood Helm + code:7E14FB:4B + cheat + description:Slot 3 - Glass Cap + code:7E14FB:4C + cheat + description:Slot 3 - Brone Helm + code:7E14FB:4D + cheat + description:Slot 3 - Red Beret + code:7E14FB:4E + cheat + description:Slot 3 - Iron Helm + code:7E14FB:4F + cheat + description:Slot 3 - Plate Cap + code:7E14FB:50 + cheat + description:Slot 3 - Plate Helm + code:7E14FB:51 + cheat + description:Slot 3 - Glass Beret + code:7E14FB:52 + cheat + description:Slot 3 - Silver Helm + code:7E14FB:53 + cheat + description:Slot 3 - Sakret + code:7E14FB:54 + cheat + description:Slot 3 - Zircon Beret + code:7E14FB:55 + cheat + description:Slot 3 - Zircon Helm + code:7E14FB:56 + cheat + description:Slot 3 - Sandal + code:7E14FB:57 + cheat + description:Slot 3 - Cloth Shoes + code:7E14FB:58 + cheat + description:Slot 3 - Tan Shoes + code:7E14FB:59 + cheat + description:Slot 3 - Spike Shoes + code:7E14FB:5A + cheat + description:Slot 3 - Heeled Shoes + code:7E14FB:5B + cheat + description:Slot 3 - Wind Shoes + code:7E14FB:5C + cheat + description:Slot 3 - Wind Heels + code:7E14FB:5D + cheat + description:Slot 3 - Knife Shoes + code:7E14FB:5E + cheat + description:Slot 3 - Needle Heels + code:7E14FB:5F + cheat + description:Slot 3 - Sonic Shoes + code:7E14FB:60 + cheat + description:Slot 3 - Sonic Heels + code:7E14FB:61 + cheat + description:Slot 3 - Sword Shoes + code:7E14FB:62 + cheat + description:Slot 3 - Cat Heels + code:7E14FB:63 + cheat + description:Slot 3 - Mach Shoes + code:7E14FB:64 + cheat + description:Slot 3 - Mach Heels + code:7E14FB:65 + cheat + description:Slot 3 - Power Ring + code:7E14FB:66 + cheat + description:Slot 3 - HiPower Ring + code:7E14FB:67 + cheat + description:Slot 3 - Daze Ring + code:7E14FB:68 + cheat + description:Slot 3 - Hi Daze Ring + code:7E14FB:69 + cheat + description:Slot 3 - Mind Ring + code:7E14FB:6A + cheat + description:Slot 3 - Sonic Ring + code:7E14FB:6B + cheat + description:Slot 3 - Mach Ring + code:7E14FB:6C + cheat + description:Slot 3 - Undead Ring + code:7E14FB:6D + cheat + description:Slot 3 - Ghost Ring + code:7E14FB:6E + cheat + description:Slot 3 - Dragon Ring + code:7E14FB:6F + cheat + description:Slot 3 - Sea Ring + code:7E14FB:70 + cheat + description:Slot 3 - Fly Ring + code:7E14FB:71 + cheat + description:Slot 3 - Water Ring + code:7E14FB:72 + cheat + description:Slot 3 - Fire Ring + code:7E14FB:73 + cheat + description:Slot 3 - Ice Ring + code:7E14FB:74 + cheat + description:Slot 3 - Electro Ring + code:7E14FB:75 + cheat + description:Slot 3 - Flash Ring + code:7E14FB:76 + cheat + description:Slot 3 - Flame Ring + code:7E14FB:77 + cheat + description:Slot 3 - Water Ring + code:7E14FB:78 + cheat + description:Slot 3 - Blast Ring + code:7E14FB:79 + cheat + description:Slot 3 - Frost Ring + code:7E14FB:7A + cheat + description:Slot 3 - Might Armor + code:7E14FB:7B + cheat + description:Slot 3 - Might Shield + code:7E14FB:7C + cheat + description:Slot 3 - Might Helmet + code:7E14FB:7D + cheat + description:Slot 3 - Gloom Ring + code:7E14FB:7E + cheat + description:Slot 3 - Gloom Voice + code:7E14FB:7F + cheat + description:Slot 3 - Dummy (?) + code:7E14FB:80 + cheat + description:Slot 3 - Brone Breast + code:7E14FB:81 + cheat + description:Slot 3 - Carbo Sword + code:7E14FB:82 + cheat + description:Slot 3 - Carbo Plate + code:7E14FB:83 + cheat + description:Slot 3 - Carbo Shield + code:7E14FB:84 + cheat + description:Slot 3 - Carbo Helm + code:7E14FB:85 + cheat + description:Slot 3 - Carbo Cap + code:7E14FB:86 + cheat + description:Slot 3 - Gloom Guard + code:7E14FB:87 + cheat + description:Slot 3 - Diamond Ring + code:7E14FB:88 + cheat + description:Slot 3 - Engage Ring + code:7E14FB:89 + cheat + description:Slot 3 - Monster Ring + code:7E14FB:8A + cheat + description:Slot 3 - Blue Ring + code:7E14FB:8B + cheat + description:Slot 3 - Yellow Ring + code:7E14FB:8C + cheat + description:Slot 3 - Red Ring + code:7E14FB:8D + cheat + description:Slot 3 - Purple Ring + code:7E14FB:8E + cheat + description:Slot 3 - Green Ring + code:7E14FB:8F + cheat + description:Slot 3 - White Ring + code:7E14FB:90 + cheat + description:Slot 3 - Black Ring + code:7E14FB:91 + cheat + description:Slot 3 - Heavy Ring + code:7E14FB:92 + cheat + description:Slot 3 - Wave Ring + code:7E14FB:93 + cheat + description:Slot 3 - Potion + code:7E14FB:94 + cheat + description:Slot 3 - Hi Potion + code:7E14FB:95 + cheat + description:Slot 3 - Ex Potion + code:7E14FB:96 + cheat + description:Slot 3 - Hi Magic + code:7E14FB:97 + cheat + description:Slot 3 - Ex Magic + code:7E14FB:98 + cheat + description:Slot 3 - Antidote + code:7E14FB:99 + cheat + description:Slot 3 - Sweet Water + code:7E14FB:9A + cheat + description:Slot 3 - Foul Water + code:7E14FB:9B + cheat + description:Slot 3 - Awaken + code:7E14FB:9C + cheat + description:Slot 3 - Stone Cure + code:7E14FB:9D + cheat + description:Slot 3 - Mystery Pin + code:7E14FB:9E + cheat + description:Slot 3 - Shriek + code:7E14FB:9F + cheat + description:Slot 3 - Swing Wing + code:7E14FB:A0 + cheat + description:Slot 3 - Magic Guard + code:7E14FB:A1 + cheat + description:Slot 3 - Power Gourd + code:7E14FB:A2 + cheat + description:Slot 3 - Mind Gourd + code:7E14FB:A3 + cheat + description:Slot 3 - Power Potion + code:7E14FB:A4 + cheat + description:Slot 3 - Spell Potion + code:7E14FB:A5 + cheat + description:Slot 3 - Speed Potion + code:7E14FB:A6 + cheat + description:Slot 3 - Mind Potion + code:7E14FB:A7 + cheat + description:Slot 3 - Great Potion + code:7E14FB:A8 + cheat + description:Slot 3 - Float + code:7E14FB:A9 + cheat + description:Slot 3 - Smoke Ball + code:7E14FB:AA + cheat + description:Slot 3 - Arrow + code:7E14FB:AB + cheat + description:Slot 3 - Mid Arrow + code:7E14FB:AC + cheat + description:Slot 3 - Big Arrow + code:7E14FB:AD + cheat + description:Slot 3 - Arrows + code:7E14FB:AE + cheat + description:Slot 3 - Hi Arrows + code:7E14FB:AF + cheat + description:Slot 3 - Ex Arrows + code:7E14FB:B0 + cheat + description:Slot 3 - Dragon Arrow + code:7E14FB:B1 + cheat + description:Slot 3 - Sleep Arrow + code:7E14FB:B2 + cheat + description:Slot 3 - Puzzle Arrow + code:7E14FB:B3 + cheat + description:Slot 3 - Stun Arrow + code:7E14FB:B4 + cheat + description:Slot 3 - Gloom Arrow + code:7E14FB:B5 + cheat + description:Slot 3 - Bomb + code:7E14FB:B6 + cheat + description:Slot 3 - Hi Bomb + code:7E14FB:B7 + cheat + description:Slot 3 - Ex Bomb + code:7E14FB:B8 + cheat + description:Slot 3 - Miracle + code:7E14FB:B9 + cheat + description:Slot 3 - Revive + code:7E14FB:BA + cheat + description:Slot 3 - Pear Cider + code:7E14FB:BB + cheat + description:Slot 3 - Sour Cider + code:7E14FB:BC + cheat + description:Slot 3 - Lime Cider + code:7E14FB:BD + cheat + description:Slot 3 - Plum Cider + code:7E14FB:BE + cheat + description:Slot 3 - Apple Cider + code:7E14FB:BF + cheat + description:Slot 3 - Hair Band + code:7E14FB:C0 + cheat + description:Slot 3 - Brooch + code:7E14FB:C1 + cheat + description:Slot 3 - Earring + code:7E14FB:C2 + cheat + description:Slot 3 - Necklace + code:7E14FB:C3 + cheat + description:Slot 3 - Stuffed Bear + code:7E14FB:C4 + cheat + description:Slot 3 - Stuffed Dog + code:7E14FB:C5 + cheat + description:Slot 3 - Stuffed Pig + code:7E14FB:C6 + cheat + description:Slot 3 - Emerald + code:7E14FB:C7 + cheat + description:Slot 3 - Opal + code:7E14FB:C8 + cheat + description:Slot 3 - Goblet + code:7E14FB:C9 + cheat + description:Slot 3 - Ear Tip + code:7E14FB:CA + cheat + description:Slot 3 - Empty Bottle + code:7E14FB:CB + cheat + description:Slot 3 - Gown + code:7E14FB:CC + cheat + description:Slot 3 - Ribbon + code:7E14FB:CD + cheat + description:Slot 3 - Fry Pan + code:7E14FB:CE + cheat + description:Slot 3 - Small Knife + code:7E14FB:CF + cheat + description:Slot 3 - Pot + code:7E14FB:D0 + cheat + description:Slot 3 - Chop Block + code:7E14FB:D1 + cheat + description:Slot 3 - Apron + code:7E14FB:D2 + cheat + description:Slot 3 - Dragon Egg + code:7E14FB:D3 + cheat + description:Slot 3 - Crown + code:7E14FB:D4 + cheat + description:Slot 3 - Secret Map + code:7E14FB:D5 + cheat + description:Slot 3 - Miracle Gem + code:7E14FB:D6 + cheat + description:Slot 3 - Silver Wick + code:7E14FB:D7 + cheat + description:Slot 3 - Royal Statue + code:7E14FB:D8 + cheat + description:Slot 3 - Silver Tarot + code:7E14FB:D9 + cheat + description:Slot 3 - Golden Pawn + code:7E14FB:DA + cheat + description:Slot 3 - Crown Jewels + code:7E14FB:DB + cheat + description:Slot 3 - Wind Flute + code:7E14FB:DC + cheat + description:Slot 3 - Escape + code:7E14FB:DD + cheat + description:Slot 3 - Magic Jar + code:7E14FB:DE + cheat + description:Slot 3 - Dragon Tooth + code:7E14FB:DF + cheat + description:Slot 3 - Grilled Newt + code:7E14FB:E0 + cheat + description:Slot 3 - Poison Pin + code:7E14FB:E1 + cheat + description:Slot 3 - Might Sword + code:7E14FB:E2 + cheat + description:Slot 3 - Straw Doll + code:7E14FB:E3 + cheat + description:Slot 3 - Long Nail + code:7E14FB:E4 + cheat + description:Slot 3 - Bomb + code:7E14FB:E5 + cheat + description:Slot 3 - Alumina + code:7E14FB:E6 + cheat + description:Slot 3 - Power Oil + code:7E14FB:E7 + cheat + description:Slot 3 - Elven Bow + code:7E14FB:E8 + cheat + description:Slot 3 - Artea's Bow + code:7E14FB:E9 + cheat + description:Slot 3 - Might Bow + code:7E14FB:EA + cheat + description:Slot 3 - Dummy (?) + code:7E14FB:EB + cheat + description:Slot 3 - Dummy (?) + code:7E14FB:EC + cheat + description:Slot 3 - Dummy (?) + code:7E14FB:ED + cheat + description:Slot 3 - Dummy (?) + code:7E14FB:EE + cheat + description:Slot 3 - Free Door + code:7E14FB:EF + cheat + description:Slot 3 - Sheran Key + code:7E14FB:F0 + cheat + description:Slot 3 - Letter + code:7E14FB:F1 + cheat + description:Slot 3 - Dais Key + code:7E14FB:F2 + cheat + description:Slot 3 - Shrine Key + code:7E14FB:F3 + cheat + description:Slot 3 - Pirate Key + code:7E14FB:F4 + cheat + description:Slot 3 - Light Key + code:7E14FB:F5 + cheat + description:Slot 3 - Oil Key + code:7E14FB:F6 + cheat + description:Slot 3 - Green Jade + code:7E14FB:FB + cheat + description:Slot 3 - Red Sapphire + code:7E14FB:F8 + cheat + description:Slot 3 - Blue Jade + code:7E14FB:F9 + cheat + description:Slot 3 - Purple Newt + code:7E14FB:FA + cheat + description:Slot 3 - Glasdar Key + code:7E14FB:FB + cheat + description:Slot 3 - Magic Flavor + code:7E14FB:FC + cheat + description:Slot 3 - Fairy Kiss + code:7E14FB:FD + +cartridge sha256:7c34ecb16c10f551120ed7b86cfbc947042f479b52ee74bb3c40e92fdd192b3a + name:Lufia II - Rise of the Sinistrals (USA) + cheat + description:Infinite 999 MP in and out of battle + code:EEEE-44D9 + cheat + description:Level 99 after one battle + code:6EEB-17A1 + cheat + description:Level 83 after one battle + code:EEEB-17A1 + cheat + description:Gain 35,000 gold after a battle + code:EEED-4F05 + cheat + description:Enemies always miss + code:EEE5-4FD5 + cheat + description:One hit kills + code:EEE7-44D5 + cheat + description:No random battles on world map + code:7E11E3:00 + cheat + description:9999999 GP + code:7E0A8A:7F+7E0A8B:96+7E0A8C:98 + cheat + description:9999999 Coins + code:7E0B55:7F+7E0B56:96+7E0B57:98 + cheat + description:All warps + code:7E098D:FF+7E098E:FF+7E098F:FF+7E0981:FF+7E0990:FF+7E0982:FF+7E097B:FF+7E0983:FF+7E097C:FF+7E097D:FF+7E097E:FF+7E097F:FF+7E0980:FF+7E0986:FF+7E0988:FF+7E0989:FF+7E0991:FF+7E098A:FF+7E0992:FF+7E098B:FF+7E0996:FF+7E098C:FF + cheat + description:P1 - 999 HP + code:7E0BBE:E7+7E0BBF:03 + cheat + description:P1 - 999 MP + code:7E0BC0:E7+7E0BC1:03 + cheat + description:P1 - 999 MAX MP + code:7E0BD4:E7+7E0BD5:03 + cheat + description:P1 - 999 STP + code:7E0BFE:E7+7E0BFF:03 + cheat + description:P1 - 999 DFP + code:7E0C00:E7+7E0C01:03 + cheat + description:P1 - 999 STR + code:7E0C02:E7+7E0C03:03 + cheat + description:P1 - 999 AGL + code:7E0C04:E7+7E0C05:03 + cheat + description:P1 - 999 INT + code:7E0C06:E7+7E0C07:03 + cheat + description:P1 - 999 GUT + code:7E0C08:E7+7E0C09:03 + cheat + description:P1 - 999 MGR + code:7E0C0A:E7+7E0C0B:03 + cheat + description:P1 - Max IP + code:7E0C69:FF + cheat + description:P2 - 999 HP + code:7E0C7C:E7+7E0C7D:03 + cheat + description:P2 - 999 MP + code:7E0C7E:E7+7E0C7F:03 + cheat + description:P2 - 999 MAX MP + code:7E0C92:E7+7E0C93:03 + cheat + description:P2 - 999 STP + code:7E0CBC:E7+7E0CBD:03 + cheat + description:P2 - 999 DFP + code:7E0CBE:E7+7E0CBF:03 + cheat + description:P2 - 999 STR + code:7E0CC0:E7+7E0CC1:03 + cheat + description:P2 - 999 AGL + code:7E0CC2:E7+7E0CC3:03 + cheat + description:P2 - 999 INT + code:7E0CC4:E7+7E0CC5:03 + cheat + description:P2 - 999 GUT + code:7E0CC6:E7+7E0CC7:03 + cheat + description:P2 - 999 MGR + code:7E0CC8:E7+7E0CC9:03 + cheat + description:P2 - Max IP + code:7E0D27:FF + cheat + description:P3 - 999 HP + code:7E0D3A:E7+7E0D3B:03 + cheat + description:P3 - 999 MP + code:7E0D3C:E7+7E0D3D:03 + cheat + description:P3 - 999 MAX MP + code:7E0D50:E7+7E0D51:03 + cheat + description:P3 - 999 STP + code:7E0D7A:E7+7E0D7B:03 + cheat + description:P3 - 999 DFP + code:7E0D7C:E7+7E0D7D:03 + cheat + description:P3 - 999 STR + code:7E0D7E:E7+7E0D7F:03 + cheat + description:P3 - 999 AGL + code:7E0D80:E7+7E0D81:03 + cheat + description:P3 - 999 INT + code:7E0D82:E7+7E0D83:03 + cheat + description:P3 - 999 GUT + code:7E0D84:E7+7E0D85:03 + cheat + description:P3 - 999 MGR + code:7E0D86:E7+7E0D87:03 + cheat + description:P3 - Max IP + code:7E0DE5:FF + cheat + description:P4 - 999 HP + code:7E0DF8:E7+7E0DF9:03 + cheat + description:P4 - 999 MP + code:7E0DFA:E7+7E0DFB:03 + cheat + description:P4 - 999 MAX MP + code:7E0E0E:E7+7E0E0F:03 + cheat + description:P4 - 999 STP + code:7E0E38:E7+7E0E39:03 + cheat + description:P4 - 999 DFP + code:7E0E3A:E7+7E0E3B:03 + cheat + description:P4 - 999 STR + code:7E0E3C:E7+7E0E3D:03 + cheat + description:P4 - 999 AGL + code:7E0E3E:E7+7E0E3F:03 + cheat + description:P4 - 999 INT + code:7E0E40:E7+7E0E41:03 + cheat + description:P4 - 999 GUT + code:7E0E42:E7+7E0E43:03 + cheat + description:P4 - 999 MGR + code:7E0E44:E7+7E0E45:03 + cheat + description:P4 - Max IP + code:7E0EA3:FF + cheat + description:P5 - 999 HP + code:7E0EB6:E7+7E0EB7:03 + cheat + description:P5 - 999 MP + code:7E0EB8:E7+7E0EB9:03 + cheat + description:P5 - 999 MAX MP + code:7E0ECC:E7+7E0ECC:03 + cheat + description:P5 - 999 STP + code:7E0EF6:E7+7E0EF7:03 + cheat + description:P5 - 999 DFP + code:7E0EF8:E7+7E0EF9:03 + cheat + description:P5 - 999 STR + code:7E0EFA:E7+7E0EFB:03 + cheat + description:P5 - 999 AGL + code:7E0EFC:E7+7E0EFD:03 + cheat + description:P5 - 999 INT + code:7E0EFE:E7+7E0EFF:03 + cheat + description:P5 - 999 GUT + code:7E0F00:E7+7E0F01:03 + cheat + description:P5 - 999 MGR + code:7E0F02:E7+7E0F03:03 + cheat + description:P5 - Max IP + code:7E0F61:FF + cheat + description:P6 - 999 HP + code:7E0F74:E7+7E0F75:03 + cheat + description:P6 - 999 MP + code:7E0F76:E7+7E0F77:03 + cheat + description:P6 - 999 MAX MP + code:7E0F8A:E7+7E0F8B:03 + cheat + description:P6 - 999 STP + code:7E0FB4:E7+7E0FB5:03 + cheat + description:P6 - 999 DFP + code:7E0FB6:E7+7E0FB7:03 + cheat + description:P6 - 999 STR + code:7E0FB8:E7+7E0FB9:03 + cheat + description:P6 - 999 AGL + code:7E0FBA:E7+7E0FBB:03 + cheat + description:P6 - 999 INT + code:7E0FBC:E7+7E0FBD:03 + cheat + description:P6 - 999 GUT + code:7E0FBE:E7+7E0FBF:03 + cheat + description:P6 - 999 MGR + code:7E0FC0:E7+7E0FC1:03 + cheat + description:P6 - Max IP + code:7E101F:FF + cheat + description:P7 - 999 HP + code:7E1032:E7+7E1033:03 + cheat + description:P7 - 999 MP + code:7E1034:E7+7E1035:03 + cheat + description:P7 - 999 MAX MP + code:7E1048:E7+7E1049:03 + cheat + description:P7 - 999 STP + code:7E1072:E7+7E1073:03 + cheat + description:P7 - 999 DFP + code:7E1074:E7+7E1075:03 + cheat + description:P7 - 999 STR + code:7E1076:E7+7E1077:03 + cheat + description:P7 - 999 AGL + code:7E1078:E7+7E1079:03 + cheat + description:P7 - 999 INT + code:7E107A:E7+7E107B:03 + cheat + description:P7 - 999 GUT + code:7E107C:E7+7E107D:03 + cheat + description:P7 - 999 MGR + code:7E107E:E7+7E107F:03 + cheat + description:P7 - Max IP + code:7E10DD:FF + +cartridge sha256:7e77e196db47e87a5b297e60f0dfa7ce41df8d2d1fdd9152e06628d0b0e586af + name:Madden NFL '94 (USA) + cheat + description:Always 1st down + code:3CAC-5DDD + cheat + description:1 play to get a 1st down + code:D4A8-54AD + cheat + description:2 plays to get a 1st down + code:D7A8-54AD + cheat + description:3 plays to get a 1st down + code:D0A8-54AD + cheat + description:5 plays to get a 1st down + code:D1A8-54AD + cheat + description:7 plays to get a 1st down + code:D6A8-54AD + cheat + description:Extra points worth 0 points + code:DDAE-ED0F + cheat + description:Extra points worth 3 points + code:D7AE-ED0F + cheat + description:Extra points worth 5 points + code:D9AE-ED0F + cheat + description:Extra points worth 7 points + code:D5AE-ED0F + cheat + description:Field goals worth 0 points + code:DDAE-E76F + cheat + description:Field goals worth 2 points + code:D4AE-E76F + cheat + description:Field goals worth 5 points + code:D9AE-E76F + cheat + description:Field goals worth 7 points + code:D5AE-E76F + cheat + description:Field goals worth 9 points + code:DBAE-E76F + cheat + description:Safeties worth 0 points + code:DDAB-8DAD + cheat + description:Safeties worth 3 points + code:D7AB-8DAD + cheat + description:Safeties worth 5 points + code:D9AB-8DAD + cheat + description:Safeties worth 7 points + code:D5AB-8DAD + cheat + description:Touchdowns worth 0 points + code:DDAA-5D0F + cheat + description:Touchdowns worth 3 points + code:D7AA-5D0F + cheat + description:Touchdowns worth 5 points + code:D9AA-5D0F + cheat + description:Touchdowns worth 9 points + code:DBAA-5D0F + cheat + description:TD, FG, PAT, S worth 1 point - home team + code:CBA2-8F6D+DFA2-8FAD + cheat + description:TD, FG, PAT, S worth 3 points - home team + code:CBA2-8F6D+D7A2-8FAD + cheat + description:TD, FG, PAT, S worth 5 points - home team + code:CBA2-8F6D+D9A2-8FAD + cheat + description:TD, FG, PAT, S worth 7 points - home team + code:CBA2-8F6D+D5A2-8FAD + cheat + description:TD, FG, PAT, S worth 14 points - home team + code:CBA2-8F6D+D3A2-8FAD + cheat + description:TD, FG, PAT, S worth 21 points - home team + code:CBA2-8F6D+F9A2-8FAD + cheat + description:TD, FG, PAT, S worth 35 points - home team + code:CBA2-8F6D+47A2-8FAD + cheat + description:TD, FG, PAT, S worth 3 points - visitor + code:CBAD-ED0D+DFAD-ED6D + cheat + description:TD, FG, PAT, S worth 5 points - visitor + code:CBAD-ED0D+D9AD-ED6D + cheat + description:TD, FG, PAT, S worth 7 points - visitor + code:CBAD-ED0D+D5AD-ED6D + cheat + description:TD, FG, PAT, S worth 14 points - visitor + code:CBAD-ED0D+D3AD-ED6D + cheat + description:TD, FG, PAT, S worth 21 points - visitor + code:CBAD-ED0D+F9AD-ED6D + cheat + description:TD, FG, PAT, S worth 35 points - visitor + code:CBAD-ED0D+47AD-ED6D + cheat + description:Home team starts with a 3-point lead + code:D73F-7D0F+DE3F-7F6F + cheat + description:Home team starts with a 7-point lead + code:D53F-7D0F+DE3F-7F6F + cheat + description:Home team starts with a 10-point lead + code:DC3F-7D0F+DE3F-7F6F + cheat + description:Home team starts with a 14-point lead + code:D33F-7D0F+DE3F-7F6F + cheat + description:Home team starts with a 35-point lead + code:473F-7D0F+DE3F-7F6F + cheat + description:Visitors start with a 5-point lead + code:D93F-7D0F+DE3F-7D6F + cheat + description:Visitors start with a 7-point lead + code:D53F-7D0F+DE3F-7D6F + cheat + description:Visitors start with a 10-point lead + code:DC3F-7D0F+DE3F-7D6F + cheat + description:Visitors start with a 14-point lead + code:D33F-7D0F+DE3F-7D6F + cheat + description:Visitors start with a 35-point lead + code:473F-7D0F+DE3F-7D6F + +cartridge sha256:0ad77ae7af231313e1369a52d1622b88e3751aa5ec774628df7071f9e4244abc + name:Madden NFL 95 (USA) + cheat + description:Always 1st down + code:C267-E46D + cheat + description:Infinite timeouts - both players (slightly glitchy) + code:8250-5700 + cheat + description:Cannot be tackled (hold X) + code:6D59-7FD7+7D59-7F67+C959-7DA7+DC59-7F07+E959-7FA7 + cheat + description:Field goals worth 0 points + code:DD6F-8404 + cheat + description:Field goals worth 1 points + code:DF6F-8404 + cheat + description:Field goals worth 5 points + code:D06F-8404 + cheat + description:Field goals worth 9 points + code:DB6F-8404 + cheat + description:Safetys worth 0 points + code:DD6F-77AF + cheat + description:Safetys worth 1 points + code:DF6F-77AF + cheat + description:Safetys worth 5 points + code:D06F-77AF + cheat + description:Safetys worth 7 points + code:D56F-77AF + cheat + description:Touchdowns worth 0 points + code:DD62-E4DF + cheat + description:Touchdowns worth 1 points + code:DF62-E4DF + cheat + description:Touchdowns worth 5 points + code:D062-E4DF + cheat + description:Touchdowns worth 9 points + code:DB62-E4DF + cheat + description:Start with 15 seconds on the play clock + code:DE55-84DF + cheat + description:Start with 1 timeout - P1 + code:DFD0-7DAD + cheat + description:Start with 1 timeout - P2 + code:DFD0-7FDD + +cartridge sha256:3059d86cdc383985c564a7a891fe18e08f5222ead7ede9fa309159d60cde13a1 + name:Madden NFL 96 (USA) + cheat + description:Infinite time (2P mode only) + code:C2D2-8F0D + cheat + description:Infinite downs + code:C26A-8767 + cheat + description:Infinite timeouts + code:8297-7F09 + cheat + description:Cannot be tackled (hold X) + code:6D6C-EFDF+7D6C-EF6F+C96C-EDAF+DC6C-EF0F+E96C-EFAF + cheat + description:Safeties are worth 0 points + code:DD62-EFA7 + cheat + description:Safeties are worth 1 point + code:DF62-EFA7 + cheat + description:Safeties are worth 3 points + code:D462-EFA7 + cheat + description:Safeties are worth 5 points + code:D962-EFA7 + cheat + description:Safeties are worth 7 points + code:D562-EFA7 + cheat + description:Safeties are worth 9 points + code:DB62-EFA7 + cheat + description:Field Goals are worth 0 points + code:DDBB-8DAF + cheat + description:Field Goals are worth 1 point + code:DFBB-8DAF + cheat + description:Field Goals are worth 2 points + code:D4BB-8DAF + cheat + description:Field Goals are worth 5 points + code:D9BB-8DAF + cheat + description:Field Goals are worth 7 points + code:D5BB-8DAF + cheat + description:Field Goals are worth 9 points + code:DBBB-8DAF + cheat + description:Start with 5 downs each possession + code:DD65-E7A7 + cheat + description:Start with 3 downs each possession + code:D765-E7A7 + cheat + description:Start with 2 downs each possession + code:D465-E7A7 + cheat + description:Start with 1 down each possession + code:DF65-E7A7 + +cartridge sha256:6874568d985f65dd817d4b03998e71c8cbacc8d8707411fde7bffee350605a88 + name:Madden NFL 97 (USA) + cheat + description:Cannot be tackled (hold X) + code:6D66-7767+7D6B-7DD7+C966-7707+DC66-77A7+E96B-7D07 + +cartridge sha256:e3c62c9fe55d2311aa6a264f41b45d6cbc7b1b069ed3aa82ee57d381c062547d + name:Madden NFL 98 (USA) + cheat + description:Cannot be tackled (hold X) + code:6D6F-5407+7D6F-54A7+C96F-54D7+DC6F-5467+E96F-57D7 + +cartridge sha256:c01fb8989d391d3e343003934937f02bd8ef9aacdad68c32c3d3f56feb72f5b0 + name:Magic Boy (USA) + cheat + description:Infinite lives + code:7E9BB6:03 + +cartridge sha256:1d3cceaa05e054b002caeb09fd5fb9e718ec446764f4169d97bc185da76fdf4d + name:Magic Sword (USA) + cheat + description:No health loss on collision with enemies + code:C2BC-D7A5+C280-D7DD + cheat + description:No health loss when magic is used + code:C2B4-6FD9 + cheat + description:No magic counter countdown + code:C2CC-0F67 + cheat + description:Hit anywhere + code:3C67-046A+C267-0FAA+D667-04DA+ED67-04AA+F167-040A + cheat + description:One hit kills + code:6D63-D40A + cheat + description:Slower magic counter countdown + code:5ECC-0D67 + cheat + description:Faster magic counter countdown + code:EECC-0D67 + cheat + description:Invincibility + code:7E831C:09 + cheat + description:Infinite continues + code:7E042D:09 + cheat + description:Infinite health + code:7E0432:09 + cheat + description:Infinite support health + code:7E0423:04 + cheat + description:Infinite magic + code:7E040C:09+7E040D:09 + cheat + description:Have powered-up attack + code:7E068A:06 + cheat + description:Infinite Silver Keys + code:7E040F:09 + cheat + description:Infinite Gold Keys + code:7E0410:09 + cheat + description:Infinite Platinum Keys + code:7E0411:09 + cheat + description:Have optimum sword + code:7E040A:06 + cheat + description:Have optimum shield + code:7E040B:04 + cheat + description:Never lose shield + code:7E0435:02 + cheat + description:Barrier Invincibility + code:7E06D6:FF + cheat + description:Set score to 90,000,000 + code:7E0448:09 + cheat + description:Support modifier - Amazon + code:7E0424:03 + cheat + description:Support modifier - Big Man + code:7E0424:07 + cheat + description:Support modifier - Wizard + code:7E0424:09 + cheat + description:Support modifier - Knight + code:7E0424:0C + cheat + description:Support modifier - Lizardman + code:7E0424:0F + cheat + description:Support modifier - Ninja + code:7E0424:12 + cheat + description:Support modifier - Thief + code:7E0424:15 + cheat + description:Support modifier - Cleric + code:7E0424:18 + cheat + description:Max power for Amazon's Crossbow + code:7E0413:07 + cheat + description:Max power for Big Man's Axe + code:7E0414:07 + cheat + description:Max power for Wizard's Magic Missile + code:7E0415:07 + cheat + description:Max power for Knight's Spear + code:7E0416:07 + cheat + description:Max power for Lizardman's Sword + code:7E0417:07 + cheat + description:Max power for Ninja's Throwing Star + code:7E0418:07 + cheat + description:Max power for Thief's Bomb + code:7E0419:07 + cheat + description:Max power for Cleric's Magic Bullet + code:7E041A:07 + +cartridge sha256:ed617ad12c865fc9c9c5c75de840d3afeded57d13ca3a3062bf8e30095629414 + name:Magical Pop'n (Japan) + cheat + description:Infinite health + code:7E051A:06 + cheat + description:Infinite lives + code:7E0516:02 + cheat + description:Infinite stars + code:7E0508:09 + +cartridge sha256:f301bb8ea867e530ecb64e8eff504ed5b9697cf076c70e2036ecf2ffbe6c487a + name:Magical Quest Starring Mickey Mouse, The (USA) + cheat + description:Protection from most hits (lose no hearts) (disable if you get stuck) + code:C2E7-D462 + cheat + description:Infinite magic - wizard's costume only + code:C23E-6405 + cheat + description:Infinite lives + code:C22B-ADA5 + cheat + description:Small heart fill health completely + code:622F-DDD6+C22F-DF06 + cheat + description:Each gold coin worth 10 (if too many are collected you may go back to 0) + code:DFE7-0708 + cheat + description:Longer invincibility after getting hit + code:C23D-6FA0 + cheat + description:No invincibility after getting hit + code:CB3D-6D60 + cheat + description:Super-jump + code:1B2D-6765+4A2D-67A5 + cheat + description:Mega-jump + code:1B2D-6765+4D2D-67A5 + cheat + description:Ultra-jump + code:1B2D-6765+F02D-67A5 + cheat + description:Items in general store are free if you can afford them + code:6DE6-04A8+48E6-07D8 + cheat + description:Start with 1 heart instead of 3 + code:DFAE-D4D7 + cheat + description:Start with 5 hearts + code:D9AE-D4D7 + cheat + description:Start with 7 hearts + code:D5AE-D4D7 + cheat + description:Start with 10 hearts + code:DCAE-D4D7 + cheat + description:Start with 1 life instead of 3 + code:DD69-07A0 + cheat + description:Start with 7 lives + code:D169-07A0 + cheat + description:Start with 10 lives + code:DB69-07A0 + cheat + description:Invincibility after first hit + code:7E033F:03 + cheat + description:Infinite health + code:7E02B1:0A + cheat + description:Infinite magic + code:7E02B7:20 + cheat + description:Infinite water for Fireman costume + code:7E02B9:17 + cheat + description:Infinite lives (alt) + code:01DF93:AD + cheat + description:Have all costumes + code:7E02C1:01+7E02C2:01+7E02C3:01 + cheat + description:Mega-jump + code:7E04B0:1A + cheat + description:Ultra-jump + code:7E04B0:06 + +cartridge sha256:78d0f6dd9ce0813e0532c7b25c7fa0b6b945d12a4ace21aa940e98babf4dacb1 + name:Majuu Ou (Japan) + cheat + description:Infinite health + code:7E009F:50 + cheat + description:Infinite lives + code:7E00A3:01 + +cartridge sha256:8267e2f092c86d5a29c9a826db82c7473638e28e2507cdaf5c86981f07cd0bef + name:Mario Is Missing! (USA) + cheat + description:Talk to someone once to learn all they know (all four checks appear on computer for that person) + code:CB8D-17DF+EE8D-170F+3C8D-176F + cheat + description:Use computer to access any facts except pamphlets (no checks appear on computer) + code:6D8D-C4AF+DD80-C70F+DD85-C4DF + cheat + description:Use computer to view pamphlets on any artifact (no checks appear on computer) + code:6D82-17AF + cheat + description:Always get Yoshi after using Globulator + code:DFED-4D04 + cheat + description:Pick up one artifact and get all three + code:CB8E-47AF+EE8D-1DDF+3C8D-1D0F + cheat + description:Have all three arifacts + code:7E050A:07 + cheat + description:Always have Yoshi (Globulator doesn't automatically pick your location) + code:7E06DB:01 + cheat + description:No waiting on wrong answer + code:7E0565:00 + +cartridge sha256:e842cac1a4301be196f1e137fbd1a16866d5c913f24dbca313f4dd8bd7472f45 + name:Mario Paint (Japan, USA) + cheat + description:Invincibility in bug swatting game + code:CBCF-0769+62C4-0DA9+EECF-07A9 + cheat + description:Infinite lives in bug swatting game + code:A2C3-6409 + cheat + description:Have all icons in bug swatting game + code:CBC4-A400 + cheat + description:Star easier to get under "P" on title screen + code:DD69-1F52+DD69-1452+DF69-1482 + cheat + description:Invincibility in bug swatting game (alt) + code:7F0040:FF + cheat + description:Infinite lives in bug swatting game (alt) + code:7F0018:63 + cheat + description:Have all icons in bug swatting game (alt) + code:7F0012:0F + cheat + description:Only need to swat once to move around and kill flies + code:7F001E:02 + cheat + description:Enable all rotate/flip options + code:7E099F:01 + cheat + description:One hit to kill boss + code:7F00C9:14 + cheat + description:Start on level 2 + code:7F0014:01 + cheat + description:Start on level 3 + code:7F0014:02 + +cartridge sha256:4b69d4958e099c3b3f6ae45e153ced9b24755d8c161dfee06c9f67886a7c0f09 + name:Mario's Time Machine (USA) + cheat + description:Bonus timer doesn't count down in the whole game + code:DD6A-1405 + cheat + description:Don't lose mushrooms in collisions + code:CB64-3FA9+DD64-34D7+DD64-3409 + cheat + description:1 wrong answer to questions allowed + code:DF24-1704 + cheat + description:255 wrong answers allowed (ignore sad face icon) + code:EE24-1704 + +cartridge sha256:49dd77b310b476c875633335243553be59ecfb0bffae62e46f2e53ff05c20fcd + name:Marvel Super Heroes in War of the Gems (USA) + cheat + description:Infinite health + code:B9D9-74D4 + cheat + description:Infinite Air + code:B9D9-74D4 + cheat + description:Infinite Air (alt) + code:E15A-5F66 + cheat + description:Infinite equipment, all Gems selectable on pick-up + code:FA85-7464+6D85-7704+FE85-7764 + cheat + description:One hit kills + code:CB1F-EF0D + cheat + description:Always have a Gem + code:B354-E4D8 + cheat + description:Always have 9 Gem power items + code:E916-740D + cheat + description:Always have 9 Revive items + code:E15A-5F66 + cheat + description:Invincibility - Boston Aquarium + code:7E042D:03+7E042F:00 + cheat + description:Invincibility - Alaska + code:7E02CD:03+7E02CF:00 + cheat + description:Invincibility - Dr. Doom's Castle + code:7E02BD:03+7E02BF:00 + cheat + description:Invincibility - Amazon + code:7E02FD:03+7E02FF:00 + cheat + description:Invincibility - Magus' Spaceship and Asteroid Belt + code:7E026D:03+7E026F:00 + cheat + description:Invincibility - Egypt + code:7E02DD:03+7E02DF:00 + cheat + description:Invincibility - Arizona Mining Facility + code:7E031D:03+7E031F:00 + cheat + description:Invincibility - Mt. Vezuvius + code:7E039D:03+7E039F:00 + cheat + description:Invincibility - Nebula's Level + code:7E033D:03+7E033F:00 + cheat + description:Invincibility - Thanos' Level + code:7E034D:03+7E034F:00 + cheat + description:Infinite health - Dr. Doom's Castle + code:7E026B:64 + cheat + description:Infinite health - Alaska + code:7E027B:64 + cheat + description:Infinite health - Mt. Vesuvius + code:7E034B:64 + cheat + description:Infinite health - Egypt + code:7E028B:64 + cheat + description:Infinite health - Arizona Mining Facility + code:7E02CB:64 + cheat + description:Always have 9 Big energy Tanks + code:7FFF1A:09 + cheat + description:Always have 9 Small energy Tanks + code:7FFF1B:09 + +cartridge sha256:2731f0bd1c87e75121f41d1ed5cc9fbf177f414b8bf831c76fd9c4b58c86ed08 + name:Mary Shelley's Frankenstein (USA) + cheat + description:Infinite health + code:C2B9-1DA4+8533-3F0D + cheat + description:Energy balls don't deplete health + code:DDE5-3FB0+DDE5-3F20 + cheat + description:Cool effects + code:??86-146D + cheat + description:Invincibility (blinking) + code:7E200D:09 + cheat + description:Infinite health (alt) + code:7E2043:1D + +cartridge sha256:44cc113ce1e7616cc737adea9e8f140436c9f1c3fba57e8e9db48025d4ace632 + name:Mask, The (USA) + cheat + description:Invincibility + code:40C0-47DF+40C9-4F6F + cheat + description:Invincibility after one hit + code:82C0-476F + cheat + description:Infinite mask power + code:C282-1F0D + cheat + description:Infinite lives + code:C961-146F + cheat + description:Hit anywhere + collect items from anywhere) + code:40C5-14A7+40C6-14A7+40C6-17A7+40C9-1467+40C9-1767 + cheat + description:Mallet doesn't use any power + code:8EBF-3DD4 + cheat + description:Walk through walls + code:C287-4DAF + cheat + description:Green hearts worth 10 + code:FDC6-3707 + cheat + description:Green hearts worth 30 + code:7DC6-3707 + cheat + description:Green hearts worth 100 + code:CDC6-3707 + cheat + description:Green hearts worth 0 + code:C2CC-3F07 + cheat + description:Flash longer + code:EE88-140D + cheat + description:Don't flash at all + code:DD88-140D + cheat + description:M's worth 0 + code:C9C4-3467 + cheat + description:M's worth 10 + code:FDCF-37A7 + cheat + description:M's worth 30 + code:7DCF-37A7 + cheat + description:M's worth 100 + code:CDCF-37A7 + cheat + description:Start with 100 mask energy + code:DF6E-44AD + cheat + description:Start with 300 mask energy + code:D76E-44AD + cheat + description:Start with 900 mask energy + code:DB6E-44AD + cheat + description:Start with 1 life + code:CB63-446D+DD63-44AD+DD63-47DD + cheat + description:Start with 5 lives + code:CB63-446D+D963-44AD+DD63-47DD + cheat + description:Start with 9 lives + code:CB63-446D+DB63-44AD+DD63-47DD + cheat + description:Infinite life + code:7E18AF:20+7E18B0:03 + cheat + description:Infinite mask power (alt) + code:7E008F:84+7E0090:03 + +cartridge sha256:2a08704748f5ef6488348c4099729feca600412d331bda3756e51efd8b94e113 + name:MechWarrior (USA) + cheat + description:Protection from most hazards + code:628C-4F20 + cheat + description:Infinite short-range missiles + code:EE2F-C7A4 + cheat + description:Infinite short-range homing missiles + code:EE24-CD04 + cheat + description:Infinite medium-range missiles + code:EE24-CDA4 + cheat + description:Infinite medium-range homing missiles + code:EE24-CF04 + cheat + description:Infinite long-range missiles + code:EE24-CFA4 + cheat + description:Infinite long-range homing missiles + code:EE24-C404 + cheat + description:Infinite machine gun ammo + code:EE24-C4A4 + cheat + description:Never run out of any ammo + code:3CCD-4404 + cheat + description:Getting any money sets money to 32 million C-bills + code:DD38-146D + cheat + description:100 ammo for short-range missiles + code:102F-C7A4 + cheat + description:100 ammo for short-range homing missiles + code:1024-CD04 + cheat + description:80 ammo for medium-range missiles + code:9D24-CDA4 + cheat + description:80 ammo for medium-range homing missiles + code:9D24-CF04 + cheat + description:40 ammo for long-range missiles + code:4624-CFA4 + cheat + description:40 ammo for long-range homing missiles + code:4624-C404 + cheat + description:200 short-range missiles + code:A62F-C7A4 + cheat + description:200 short-range homing missiles + code:A624-CD04 + cheat + description:100 medium-range missiles + code:1024-CDA4 + cheat + description:100 medium-range homing missiles + code:1024-CF04 + cheat + description:100 long-range missiles + code:1024-CFA4 + cheat + description:100 long-range homing missiles + code:1024-C404 + cheat + description:Mech isn't slowed down as much by most obstacles + code:CBED-34F7+3CED-34B7 + cheat + description:Start with 100,000 C-bills + code:103E-C4AD + cheat + description:Start with 250,000 C-bills + code:EC3E-C4AD + cheat + description:Start with 562,000 C-bills + code:D43E-C7DD + cheat + description:Start with 1,074,000 C-bills + code:D03E-C7DD + cheat + description:Start with 5,170,000 C-bills + code:F03E-C7DD + cheat + description:Start with 10,290,000 C-bills + code:463E-C7DD + +cartridge sha256:7bffa1dc31604fa3d61e06ce2c59168098cc8dd7e59998e1d5f30c49bdf8d617 + name:MechWarrior 3050 (USA) + cheat + description:Almost infinite ammo + code:C295-5FAD + cheat + description:Almost invincible (disable to kill some enemies) + code:1D9E-ED6D + cheat + description:Coolant does nothing + code:CB6B-5464+CB6B-5704 + cheat + description:Guass Rifle starts at 10 + code:DC09-7998 + cheat + description:Guass Rifle starts at 50 + code:7409-7998 + cheat + description:Guass Rifle starts at 100 + code:1009-7998 + cheat + description:Arrow VI Missiles start at 20 + code:F009-7028 + cheat + description:Arrow VI Missiles start at 50 + code:7409-7028 + cheat + description:Arrow VI Missiles start at 100 + code:1009-7028 + cheat + description:Particle Projection Cannon start at 10 + code:DC00-7528 + cheat + description:Particle Projection Cannon start at 50 + code:7400-7528 + cheat + description:Particle Projection Cannon start at 100 + code:1000-7528 + cheat + description:Machine Gun starts at 100 + code:DD00-79B8+1000-7998 + cheat + description:Machine Gun starts at 1,000 + code:D700-79B8+3600-7998 + cheat + description:Machine Gun starts at 10,000 + code:4100-79B8+FD00-7998 + cheat + description:Auto Cannon starts at 50 + code:7400-7928 + cheat + description:Auto Cannon starts at 100 + code:1000-7928 + cheat + description:Auto Cannon starts at 250 + code:EC00-7928 + cheat + description:Large Laser starts at 50 + code:7400-7128+DD00-75F8 + cheat + description:Large Laser starts at 1,000 + code:3600-7128+D700-75F8 + cheat + description:Large Laser starts at 10,000 + code:FD00-7128+4100-75F8 + cheat + description:"Inferno" Short-Range Missiles start at 10 + code:DC00-7198 + cheat + description:"Inferno" Short-Range Missiles start at 50 + code:7400-7198 + cheat + description:"Inferno" Short-Range Missiles start at 250 + code:EC00-7198 + cheat + description:"Maelstrom" Long-Range Missiles start at 20 + code:F009-7098 + cheat + description:"Maelstrom" Long-Range Missiles start at 100 + code:1009-7098 + cheat + description:"Maelstrom" Long-Range Missiles start at 250 + code:EC09-7098 + cheat + description:"Thunder" Time-Delay Mines start at 10 + code:DC00-7598 + cheat + description:"Thunder" Time-Delay Mines start at 100 + code:1000-7598 + cheat + description:"Thunder" Time-Delay Mines start at 250 + code:EC00-7598 + +cartridge sha256:ee1a030f30f3ab06361921447b3fcf84c987dd13d76e62964e44720e0ec82c56 + name:Mega lo Mania (Europe) (En,Fr,De) + cheat + description:Infinite number of people to use + code:7EE8D9:64 + +cartridge sha256:a255fec32453739903a1954149f19bc9658f4a415600b44badf1d4e5e13a16f9 + name:Mega Man 7 (USA) + cheat + description:Invincibility after first hit (blinking) + code:6D79-84A0 + cheat + description:Infinite health + code:C2DB-5F62 + cheat + description:Infinite health (alt) + code:D9DB-5DA2 + cheat + description:Infinite E-Tanks + code:C209-7DA4 + cheat + description:Infinite W-Tanks + code:C20B-7DD4 + cheat + description:Infinite S-Tanks + code:C20E-7D04 + cheat + description:Infinite Beat Whistles + code:C277-8F00 + cheat + description:Infinite weapon energy + code:FE42-E405 + cheat + description:One hit kills + code:40DE-7FD2 + cheat + description:Hit anywhere + code:6DD8-7DD2 + cheat + description:Multi-jump + code:DC51-ED65+BD51-EDA5+D751-EFD5+4D51-EF05+8551-EF65+7451-EFA5+4D51-E4D5+BC51-E405+FF51-E465+1D51-E4A5+1DFC-E400+5EFC-E460+C951-EDD5+0951-ED05 + cheat + description:Always Shoot Shots + code:FF40-E405 + cheat + description:Always shoot Freeze Cracker + code:4040-E405 + cheat + description:Always shoot Scorch Wheel + code:4140-E405 + cheat + description:Always shoot Danger Wrap Bombs + code:4340-E405 + cheat + description:Always shoot Noise Crush + code:1140-E405 + cheat + description:Always shoot Fully Charged Mega Buster Blasts + code:5240-E405 + cheat + description:Always shoot Slash Claw + code:BA40-E405 + cheat + description:Always shoot Thunder Bolt + code:8940-E405 + cheat + description:Always shoot Wild Coil + code:E740-E405 + cheat + description:Always shoot Charged Wild Coils + code:EE40-E405 + cheat + description:White Shots/Special Weapons + code:EE02-E465 + cheat + description:Infinite E-Tanks (alt) + code:7E0BA0:FF + cheat + description:Infinite W-Tanks (alt) + code:7E0BA1:FF + cheat + description:Infinite S-Tanks (alt) + code:7E0BA2:FF + cheat + description:Infinite Beat Whistles (alt) + code:7E0BA3:84 + cheat + description:Infinite Bolts + code:7E0BA6:E7+7E0BA7:03 + cheat + description:Infinite slide + code:7E0C61:FF + cheat + description:Moon-jump + code:7E0C1A:F4 + cheat + description:Have exit + code:7E0BA4:FF + cheat + description:Have S.Adapt + code:7E0B9F:FF + cheat + description:Have Super Fist upgrade for S.Adapt + code:7E0BA4:4F + cheat + description:Have Proto Shield + code:7E0B95:FF + cheat + description:Infinite Feeze Cracker + code:7E0B85:FF + cheat + description:Infinite Junk Shield + code:7E0B89:FF + cheat + description:Infinite Scorch Wheel + code:7E0B8B:FF + cheat + description:Infinite Slash Claw + code:7E0B8D:FF + cheat + description:Infinite Thunder Bolt + code:7E0B87:FF + cheat + description:Infinite Noise Crush + code:7E0B8F:FF + cheat + description:Infinite Danger Wrap + code:7E0B91:FF + cheat + description:Infinite Wild Coil + code:7E0B93:FF + cheat + description:Infinite Rush Coil + code:7E0B9B:FF + cheat + description:Infinite Rush Search + code:7E0B97:FF + cheat + description:Infinite Rush Jet + code:7E0B99:FF + +cartridge sha256:b8f70a6e7fb93819f79693578887e2c11e196bdf1ac6ddc7cb924b1ad0be2d32 + name:Mega Man X (USA) (Rev 1) + cheat + description:Infinite weapons once obtained + code:DDB3-4FA9 + cheat + description:Immune to drain attack + code:C2AD-4401 + cheat + description:One hit kills (most enemies) + code:6DB5-CD97 + cheat + description:Hit anywhere + code:40B1-34F4 + cheat + description:Multi-jump + code:4065-17A9+EA66-1409+B966-1469 + cheat + description:Enemies always drop large energy + code:C4CB-3DBD+D4CB-3D2D + cheat + description:Enemies always drop large weapon energy + code:C4CB-3DBD+D0CB-3D2D + cheat + description:Bogus jump (may go back to normal jumps) + code:D08A-1FBC + cheat + description:Super-jump (may go back to normal jumps) + code:D58A-1FBC + cheat + description:Mega-jump (may go back to normal jumps) + code:DB8A-1FBC + cheat + description:Start with less health + code:D6BE-47AF + cheat + description:Start with more health + code:4DBE-47AF + cheat + description:Start with 10 lives + code:DBBE-446F + cheat + description:Start with 7 lives + code:D1BE-446F + cheat + description:Start with 5 lives + code:D0BE-446F + cheat + description:Start with 1 life + code:DDBE-446F + cheat + description:Max health containers + code:7E1F9A:20 + cheat + description:Infinite lives + code:7E1F80:09 + cheat + description:Have all equipment + code:7E1F99:FF + cheat + description:Enable Hadoken + code:7E1F7E:85 + cheat + description:Have sub-tank 1 full + code:7E1F83:FF + cheat + description:Have sub-tank 2 full + code:7E1F84:FF + cheat + description:Have sub-tank 3 full + code:7E1F85:FF + cheat + description:Have sub-tank 4 full + code:7E1F86:FF + +cartridge sha256:3e1209f473bff8cd4bcbf71d071e7f8df17a2d564e9a5c4c427ee8198cebb615 + name:Mega Man X (USA) + cheat + description:Infinite health + code:C2B9-1FF7 + cheat + description:Infinite lives + code:C2B9-3404 + cheat + description:Infinite weapons once obtained + code:C9B3-4769 + cheat + description:One hit kills (most enemies) + code:6DB5-CD97 + cheat + description:Hit anywhere + code:40B1-34F4 + cheat + description:Weapon charges to 1st power level faster + code:DDB1-4F61 + cheat + description:Disable weapon charging + code:DDB0-4FA1 + cheat + description:Multi-jump + code:4065-1F09+E465-17A9+B966-1DD9 + cheat + description:Enemies always drop large energy + code:C4C6-379D+D4C6-37BD + cheat + description:Enemies always drop large weapon energy + code:C4C6-379D+D0C6-37BD + cheat + description:Bogus jump (may go back to normal jumps) + code:D08A-1FBC + cheat + description:Super-jump (may go back to normal jumps) + code:D58A-1FBC + cheat + description:Mega-jump (may go back to normal jumps) + code:DB8A-1FBC + cheat + description:Start with all weapons and all enemies defeated (except Sigma) + code:23BD-3F07 + cheat + description:Start with less health + code:D6BE-47AF + cheat + description:Start with more health + code:4DBE-47AF + cheat + description:Start with 10 lives + code:DBBE-446F + cheat + description:Start with 7 lives + code:D1BE-446F + cheat + description:Start with 5 lives + code:D0BE-446F + cheat + description:Start with 1 life + code:DDBE-446F + cheat + description:Max health containers + code:7E1F9A:20 + cheat + description:Infinite lives (alt) + code:7E1F80:09 + cheat + description:Have all equipment + code:7E1F99:FF + cheat + description:Have sub-tank 1 full + code:7E1F83:FF + cheat + description:Have sub-tank 2 full + code:7E1F84:FF + cheat + description:Have sub-tank 3 full + code:7E1F85:FF + cheat + description:Have sub-tank 4 full + code:7E1F86:FF + +cartridge sha256:f3246755f608a1e1dc9c848b61da3b824c7853b29b3be40df6fc7f2793a887ed + name:Mega Man X2 (USA) + cheat + description:Invincibility + code:D6B0-DD4F + cheat + description:Infinite health + code:C223-0414 + cheat + description:Infinite health (alt) + code:BA23-0FC4 + cheat + description:One hit kills + code:6D2D-AF14 + cheat + description:Hit anywhere + code:4028-A73F+C222-6734+D4E7-DDFB + cheat + description:Multi-jump + code:40BE-DD44+26BE-D4C4+8BBE-D434 + cheat + description:Infinite health (alt 2) + code:7E09FF:20 + cheat + description:Max health containers + code:7E1FD1:20 + cheat + description:Infinite lives + code:7E1FB3:09 + cheat + description:Have Shouryuken (F, D, DF + Fire) (must have max health and health containers) + code:7E1FB1:80 + cheat + description:Infinite L.Tracer + code:7E1FCD:5C + cheat + description:Infinite Bubble.S + code:7E1FBD:5C + cheat + description:Infinite Crystal.H + code:7E1FBB:5C + cheat + description:Infinite Magnet.M + code:7E1FC7:5C + cheat + description:Infinite S.Burner + code:7E1FC9:5C + cheat + description:Infinite S.Chain + code:7E1FC5:5C + cheat + description:Infinite S.Slicer + code:7E1FC3:5C + cheat + description:Infinite S.Wheel + code:7E1FC1:5C + cheat + description:Infinite Silk.S + code:7E1FBF:5C + cheat + description:Infinite G.Crush + code:7E1FCB:5C + cheat + description:Infinite Dash + code:7E0A2A:16 + cheat + description:Have all equipment + code:7E1FD0:FF + cheat + description:Have sub-tank 1 full + code:7E1FB6:FF + cheat + description:Have sub-tank 2 full + code:7E1FB7:FF + cheat + description:Have sub-tank 3 full + code:7E1FB8:FF + cheat + description:Have sub-tank 4 full + code:7E1FB9:FF + cheat + description:Have Zero's Head, Body and Legs + code:7E1FD6:80+7E1FD7:80+7E1FD8:80 + +cartridge sha256:65b03268afac296330e8ff8d60dd0825879e13ed658b37713c034a3bd074f1d7 + name:Mega Man X3 (USA) + cheat + description:Infinite health + code:C2AD-6FF7 + cheat + description:Infinite special weapons on pick-up + code:82CB-0D2F+82CA-0F2F + cheat + description:Hit anywhere + code:40AC-A7B4+6DA0-ADF7+6DAF-AD97 + cheat + description:Multi-jump + code:4064-042F+D367-0F9F+C567-0FBF + cheat + description:Enemies always drop large energy + code:C42E-0D2F+D42E-0FFF + cheat + description:Enemies always drop large weapon energy + code:C42E-0D2F+D02E-0FFF + cheat + description:Super-jump + code:D586-6F26 + cheat + description:Mega-jump + code:DB86-6F26 + cheat + description:Ultra mega-jump + code:D886-6F26 + cheat + description:Normal weapon is much more powerful + code:6DA0-ADF7 + cheat + description:Skip bosses at start of game and proceed to stage select + code:B933-DF6C + cheat + description:Start with max health bar + code:F02A-ADF4 + cheat + description:Invincibility + code:7E0A08:08 + cheat + description:Infinite lives + code:7E1FB4:09 + cheat + description:Infinite Boosts + code:7E0A9A:01 + cheat + description:Get all equipment when you enter the start menu + code:00CD80:A9+00CD81:FF+00CD82:8D+00CD83:D7 + cheat + description:Always have Super Shot + code:7E0A67:02 + cheat + description:Infinite Air Dash + code:7E0A34:78 + cheat + description:Have Zero-Saber + code:7E1FB2:FC + cheat + description:Have all upgrades + code:7E1FD1:4F + cheat + description:Invincible Ride Armor + code:7E0CF8:01 + +cartridge sha256:cf4d603dc0a3759da571224c671a9bfd29f9e52ca8dbb61bcc8ac8be5481e9b2 + name:Mega Man Soccer (USA) + cheat + description:Choose any character to play as Dr. Willy + code:CBCA-3F60+F0CA-3FA0+DDCA-34D0 + cheat + description:View ending (select Capcom Championship) + code:81829B:EE+81829C:E0 + cheat + description:Unlock Capcom Championship mode ending + code:82D1F0:EA+82D1F1:EA+82D1F2:EA+82D1F3:EA + cheat + description:Unlock Tournament mode ending + code:82D29C:EA+82D29D:EA+82D29E:EA+82D29F:EA + +cartridge sha256:d4f2cb6b209db29f7aec62e5a23846681c14665fb007e94d7bcfc7b5611e938b + name:Metal Combat - Falcon's Revenge (USA) + cheat + description:Infinite health + code:7E1968:7F + cheat + description:No time + code:7E03C5:00+7E03C7:00 + cheat + description:Infinite Bombs + code:7E03FE:08 + cheat + description:Infinite Energy Bolt charge + code:7E1B13:96 + cheat + description:Infinite Treble Energy Bolts + code:7E1B17:03 + +cartridge sha256:0a9609a505dd1555006b16f53d961b3ce50c518aa1597a77dcd46e55ecc716ff + name:Metal Marines (USA) + cheat + description:Building an ICBM only takes up one space + code:6DA1-67AD + cheat + description:Can view entire enemy map + code:6DCE-DD03 + cheat + description:Enemy has no attack phase + code:1D25-64A8 + cheat + description:Instant maximum energy + code:DD25-04AD + cheat + description:Instant maximum war funds + code:DD28-0D0D + cheat + description:Enemy always has 0 energy + code:BA21-07AD + cheat + description:Enemy always has 0 war funds + code:BA2C-0F0D + +cartridge sha256:057484558ebd18165f98e556b994080535e31cefdd98b5edb190516f7040fc9d + name:Metal Morph (USA) + cheat + description:Infinite ammo for all weapons (disable to change weapons) + code:C926-C7A1 + cheat + description:Infinite continues + code:C9A9-4F65 + cheat + description:Infinite time on continue screen + code:C2AD-4D65 + cheat + description:Hit anywhere (side-scrolling mode) + code:40E0-1F61+40E7-14D1 + cheat + description:Hit anywhere (flying mode) + code:4084-3FA0+408E-CD00 + cheat + description:Start with 255 continues + code:EE6C-1FDD + cheat + description:Invincibility + code:7E0387:03 + +cartridge sha256:0d7f875877fe856066cfb39b4ecdbbe7d48393a75770720876c94419f809bb1c + name:Metal Warriors (USA) + cheat + description:Infinite health (Mech) + code:C38F-4DD0 + cheat + description:Infinite health (Human) + code:C9A9-3D60 + cheat + description:Infinite Gun ammo on pick-up + code:306C-1D65 + cheat + description:Press L to go Hyper (Mech) + code:C168-1F05 + +cartridge sha256:1b425ea5a883b7464637b74c2937fde699ffff52b53ad6940a66285e0663194a + name:Michael Jordan - Chaos in the Windy City (USA) + cheat + description:Infinite lives + code:7E1427:05 + cheat + description:Infinite Flame Balls + code:7E594E:05 + cheat + description:Infinite Grenade(?) Balls + code:7E5948:05 + cheat + description:Infinite Homing Balls + code:7E5950:05 + cheat + description:Infinite Bounce Balls + code:7E594C:05 + cheat + description:Invincibility and hit anywhere + code:4008-57AD+4008-5FAD+400A-5FAD+6DF0-57AD + +cartridge sha256:0773eb741ce28f963f767fc7dd44678eb3d37ed4dc7fc82bb9cce7d55f1cfc64 + name:Mickey Mania - The Timeless Adventures of Mickey Mouse (USA) + cheat + description:Infinite health + code:C2B8-CAC3 + cheat + description:Infinite lives + code:C2B3-C313 + cheat + description:Infinite Marbles + code:C2A8-CA32 + cheat + description:Hit anywhere + code:2CBB-4AE7+2DBB-4257+C2BB-4A87+D1BB-4277+F1BB-4287 + cheat + description:Each Marble worth 99 + code:CB8C-C27A + cheat + description:One hit and you're dead + code:DDAA-3869 + cheat + description:Start with less health + code:D4AA-3869 + cheat + description:Start with more health + code:DBAA-3869 + cheat + description:Start with 1 life + code:DDA3-36D9 + cheat + description:Start with 7 lives + code:D1A3-36A9 + cheat + description:Start with 10 lives + code:DBA3-36A9 + cheat + description:Start on stage - the Wharf + code:DFAB-3669 + cheat + description:Start on stage - Mad Doc 1 + code:D4AB-3669 + cheat + description:Start on stage - Mad Doc 2 + code:D7AB-3669 + cheat + description:Start on stage - Ride The Gurney + code:D0AB-3669 + cheat + description:Start on stage - Mad Doc 4 + code:D9AB-3669 + cheat + description:Start on stage - Elevator + code:D1AB-3669 + cheat + description:Start on stage - Mad Doc Eol + code:D5AB-3669 + cheat + description:Start on stage - Moose Hunt + code:D6AB-3669 + cheat + description:Start on stage - Moose Chase + code:DBAB-3669 + cheat + description:Start on stage - Haunted House + code:DCAB-3669 + cheat + description:Start on stage - Haunted Basement + code:D8AB-3669 + cheat + description:Start on stage - Haunted Halls + code:DAAB-3669 + cheat + description:Start on stage - Garden + code:D2AB-3669 + cheat + description:Start on stage - Tunnel + code:D3AB-3669 + cheat + description:Start on stage - Steps + code:DEAB-3669 + cheat + description:Start on stage - Table + code:FDAB-3669 + cheat + description:Start on stage - Library + code:FFAB-3669 + cheat + description:Start on stage - Kitchen + code:F4AB-3669 + cheat + description:Start on stage - Dungeon + code:F7AB-3669 + cheat + description:Start on stage - Tower Escape + code:F0AB-3669 + cheat + description:Start on stage - Dungeon 2 + code:F9AB-3669 + +cartridge sha256:453359b20f78787fcfea0dafe715238f0ff3f1d6f4d729285dc72a8004131a3b + name:Mickey to Donald - Magical Adventure 3 (Japan) + cheat + description:Invincibility - P1 + code:7E0454:FF + cheat + description:Invincibility - P2 + code:7E0554:FF + cheat + description:Infinite health - P1 + code:7E046F:03 + cheat + description:Infinite health - P2 + code:7E056F:03 + cheat + description:Infinite lives - P1 + code:7E0486:04 + cheat + description:Infinite lives - P2 + code:7E0586:04 + cheat + description:Infinite Oxygen - P1 + code:7E0481:0F + cheat + description:Infinite Oxygen - P2 + code:7E0581:0F + cheat + description:Max power bar - P1 + code:7E048A:FF + cheat + description:Max power bar - P2 + code:7E058A:FF + +cartridge sha256:a2adeb4bf0e7cc943611ac726e5578da404373a79e91436c9bbd15480688b15c + name:Micro Machines (USA) + cheat + description:Infinite lives + code:7E0323:09 + +cartridge sha256:889beb58d2a48a05a6230cabda14555cb030e2e986c0293bdf396e85af5c6798 + name:Mighty Max (USA) + cheat + description:Invincibility + code:7E0254:A1 + cheat + description:Infinite energy + code:7E0294:03 + cheat + description:Infinite lives + code:7E028C:09 + +cartridge sha256:624a66607caef2ca34920ea15b84b28cdd1916ee089d496cec4f1d43621fdbb3 + name:Mighty Morphin Power Rangers (USA) + cheat + description:Invincibility + code:C280-AD2F + cheat + description:Infinite health + code:C286-6DF4 + cheat + description:Infinite lives + code:3CAA-DFDF + cheat + description:Infinite bombs on pick-up + code:C2B7-0FF7 + cheat + description:Collect items from anywhere + code:4084-D794+6D8A-0724+F282-0DF4 + cheat + description:Mega-jump + code:EC6A-ADF7 + cheat + description:More health from capsule + code:AD64-6465 + cheat + description:Trini moves faster before morphing + code:D468-04BF + cheat + description:Billy moves faster before morphing + code:D46C-0DBF + cheat + description:Jason moves faster before morphing + code:D46B-04BF + cheat + description:Kimberley moves faster before morphing + code:AD6C-049F + cheat + description:Zach moves faster before morphing + code:D468-0DBF + cheat + description:Trini moves faster after morphing + code:EE62-0DBF + cheat + description:Billy moves faster after morphing + code:EE6A-049F + cheat + description:Jason moves faster after morphing + code:D46A-0D9F + cheat + description:Kimberley moves faster after morphing + code:AD62-0D9F + cheat + description:Zach moves faster, but the wrong way + code:EE62-04BF + cheat + description:Start game with full health + code:AD82-64DD + cheat + description:Start with 1 life + code:DD8A-6DDD + cheat + description:Start with 6 lives + code:D98A-6DDD + cheat + description:Start with 9 lives + code:D68A-6DDD + cheat + description:Infinite health (Megazord) + code:7E04C0:71 + cheat + description:Infinite power (Megazord) + code:7E04C2:71 + +cartridge sha256:1b85c0690aa156a255c7f79e133e453345452698fa98abf8df744c262d0cf865 + name:Mighty Morphin Power Rangers - The Fighting Edition (USA) + cheat + description:Infinite health - P1 + code:7E1A22:70 + cheat + description:Infinite health - P2 + code:7E1A26:70 + cheat + description:Special maxed - P1 + code:7E06A0:30 + cheat + description:Special maxed -P2 + code:7E06A6:30 + cheat + description:Play As Ivan Ooze - P1 + code:7E1A68:10 + cheat + description:Play as Ivan Ooze - P2 + code:7E1A6C:10 + cheat + description:Infinite round time + code:7E06B8:06+7E06BA:00 + cheat + description:Infinite time + code:7E06BC:01 + cheat + description:Special 1 - P1 + code:7E1B00:07+7E1B02:0C + cheat + description:Special 2 - P1 + code:7E1B08:07+7E1B0A:0C + cheat + description:Special 3 - P1 + code:7E1B10:07+7E1B12:0C + cheat + description:Special 4 - P1 + code:7E1B18:07+7E1B1A:0C + cheat + description:Special 5 - P1 + code:7E1B20:07+7E1B22:0C + cheat + description:Special 1 - P2 + code:7E1B04:07+7E1B06:0C + cheat + description:Special 2 - P2 + code:7E1B0C:07+7E1B0E:0C + cheat + description:Special 3 - P2 + code:7E1B14:07+7E1B16:0C + cheat + description:Special 4 - P2 + code:7E1B1C:07+7E1B1E:0C + cheat + description:Special 5 - P2 + code:7E1B24:07+7E1B26:0C + cheat + description:Super move - P2 + code:7E1B34:03+7E1B36:18 + +cartridge sha256:c706b70097c679f6f0ced6f77a30620807d0b2555fc3c683c0ec2fc791176039 + name:Mighty Morphin Power Rangers - The Movie (USA) + cheat + description:Invincibility + code:6286-D46A + cheat + description:Infinite life force + code:C226-07A2 + cheat + description:Almost infinite life force + code:8B26-07A2 + cheat + description:Infinite lives + code:C229-0D6A + cheat + description:Infinite continues - 1P mode + code:C2E0-DF0A + cheat + description:Infinite continues - 2P mode + code:C2B1-AFAA + cheat + description:Large main power-up box gives max power + code:F620-0FA2 + cheat + description:Main collectable power doesn't go down after ranger powerup as fast + code:3C8D-6D67+3CA4-64DA + cheat + description:One hit kills + code:6D27-AD6A + cheat + description:No continues + code:DDA8-0DDD + cheat + description:Start with mega-points + code:D7AA-0DDD + cheat + description:Start with a lot of energy - first life only + code:DBA2-04AD + cheat + description:Start with very little energy - first life only + code:DFA2-04AD + cheat + description:Start with very little energy after first life + code:DF29-07DA + cheat + description:Start with more energy after first life + code:DB29-07DA + cheat + description:Start with 9 continues + code:DBA8-0DDD + cheat + description:Start with 9 lives + code:DB6E-0D6D + cheat + description:Start with 5 lives + code:D96E-0D6D + cheat + description:Start with 1 life + code:DF6E-0D6D + cheat + description:Invincibility - P1 + code:7E1C28:01 + cheat + description:Infinite health - P1 + code:7E0628:05 + cheat + description:Infinite power - P1 + code:7E062A:18 + cheat + description:Infinite time - P1 + code:FF4139:09 + cheat + description:Infinite lives - P1 + code:7E060A:09 + +cartridge sha256:2828e4485357585714f16f5bf96910794e22e4dfd19f2a22ce20d0a599f25878 + name:Miracle Girls (Japan) + cheat + description:Invincibility + code:1D3F-E4AD + cheat + description:Infinite lives + code:C243-7707 + +cartridge sha256:8715a641f2e4dd8b6066be7f2683d9129fff3fcccaf0a09cc8bdd2aa56460764 + name:Mohawk & Headphone Jack (USA) + cheat + description:Infinite health + code:7E0308:03 + cheat + description:Infinite lives + code:7E0306:05 + +cartridge sha256:6b0ac4d52d24536cdb7d9d0dc7d19ee30d08ac34363983290c5912ccc850fa0d + name:Monopoly (USA) (Rev 1) + cheat + description:Land, rent and some other things are free - all players + code:1D85-6FDF + cheat + description:Land, rent, and some other things are $50 - all players + code:3B85-6FDF+7485-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $100 - all players + code:3B85-6FDF+1085-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $200 - all players + code:3B85-6FDF+A685-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $500 - all players + code:3B85-6FDF+E085-6F0F+DD85-6F6F + cheat + description:Always throw double 6's + code:CBB3-AF0D+D1B3-AF6D+D1B3-AFAD + cheat + description:Always throw double 5's + code:CBB3-AF0D+D9B3-AF6D+D9B3-AFAD + cheat + description:Always throw double 4's + code:CBB3-AF0D+D0B3-AF6D+D0B3-AFAD + cheat + description:Always throw double 3's + code:CBB3-AF0D+D4B3-AF6D+D7B3-AFAD + cheat + description:Always throw double 2's + code:CBB3-AF0D+D4B3-AF6D+D4B3-AFAD + cheat + description:Always throw double 1's + code:CBB3-AF0D+DFB3-AF6D+DFB3-AFAD + cheat + description:P1 has a Get Out Of Jail card + code:7E08F2:01 + cheat + description:P2 has a Get Out Of Jail card + code:7E08F4:01 + cheat + description:P3 has a Get Out Of Jail card + code:7E08F6:01 + cheat + description:P4 has a Get Out Of Jail card + code:7E08F8:01 + cheat + description:P5 has a Get Out Of Jail card + code:7E08FA:01 + cheat + description:P6 has a Get Out Of Jail card + code:7E08FC:01 + cheat + description:P7 has a Get Out Of Jail card + code:7E08FE:01 + cheat + description:P8 has a Get Out Of Jail card + code:7E0900:01 + +cartridge sha256:480ae7186fd5b28200cd88e136b9cd3b6600d32508e280a0bc27ea0ed8d3c0bb + name:Monopoly (USA) + cheat + description:Land, rent and some other things are free - all players + code:1D85-6FDF + cheat + description:Land, rent, and some other things are $50 - all players + code:3B85-6FDF+7485-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $100 - all players + code:3B85-6FDF+1085-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $200 - all players + code:3B85-6FDF+A685-6F0F+DD85-6F6F + cheat + description:Land, rent, and some other things are $500 - all players + code:3B85-6FDF+E085-6F0F+DD85-6F6F + cheat + description:Always throw double 6's + code:CBB3-AF0D+D1B3-AF6D+D1B3-AFAD + cheat + description:Always throw double 5's + code:CBB3-AF0D+D9B3-AF6D+D9B3-AFAD + cheat + description:Always throw double 4's + code:CBB3-AF0D+D0B3-AF6D+D0B3-AFAD + cheat + description:Always throw double 3's + code:CBB3-AF0D+D4B3-AF6D+D7B3-AFAD + cheat + description:Always throw double 2's + code:CBB3-AF0D+D4B3-AF6D+D4B3-AFAD + cheat + description:Always throw double 1's + code:CBB3-AF0D+DFB3-AF6D+DFB3-AFAD + cheat + description:P1 has a Get Out Of Jail card + code:7E08F2:01 + cheat + description:P2 has a Get Out Of Jail card + code:7E08F4:01 + cheat + description:P3 has a Get Out Of Jail card + code:7E08F6:01 + cheat + description:P4 has a Get Out Of Jail card + code:7E08F8:01 + cheat + description:P5 has a Get Out Of Jail card + code:7E08FA:01 + cheat + description:P6 has a Get Out Of Jail card + code:7E08FC:01 + cheat + description:P7 has a Get Out Of Jail card + code:7E08FE:01 + cheat + description:P8 has a Get Out Of Jail card + code:7E0900:01 + +cartridge sha256:3c6d3e4a9c9af160f1c1cf11ce4ead531d9500c1f58f1cbe682c90a5eaa3efb2 + name:Mortal Kombat (USA) + cheat + description:Invincibility (except against throws) + code:40C2-4FDF+40C2-446F+3DC2-476F+55C2-47AF+F5C3-4DDF+1DB9-34AF + cheat + description:Infinite health + code:CF30-CFAF+6230-C40F+8B30-C46F + cheat + description:Infinite time + code:C9B2-17AF + cheat + description:Have much more fatality time + code:5EB5-3F64 + cheat + description:Always get Flawless Victory bonus + code:6DB8-3D67 + cheat + description:First strike of any kind wins round + code:DDBC-370F + cheat + description:Hit anywhere - P1 + code:3DBF-3D0F+27BF-3D6F+F6BF-3DAF+74BF-3F0F + cheat + description:All strikes do minimal damage (all equal to 1 hit point) (2P game only, donï¾’t choose handicap for either player) + code:DDBF-1FA4 + cheat + description:P1 nearly invincible in 2P game (go to options, move P1ï¾’s handicap bar all the way to the right) + code:D881-404F + cheat + description:All throws do more damage + code:56B9-4DAD + cheat + description:Kano's High Punch does more damage + code:F320-1914 + cheat + description:Kano's Low Punch does more damage + code:F320-15C4 + cheat + description:Kano's High Kick does more damage + code:0626-1514 + cheat + description:Kano's Low Kick does more damage + code:062B-19C4 + cheat + description:Kano's Head Blow does more damage + code:0621-1044 + cheat + description:Kano's Knee does more damage + code:0629-1934 + cheat + description:Kano's Crouched Kick does more damage + code:7A26-1944 + cheat + description:Kano's Uppercut does more damage + code:5625-1134 + cheat + description:Kano's Roundhouse Kick does more damage + code:1D27-1544 + cheat + description:Kano's Foot Sweep does more damage + code:7A25-10C4 + cheat + description:Kano's Flying Punch does more damage + code:082C-1144 + cheat + description:Kano's Knife does more damage (only at close distance) + code:0824-11C4 + cheat + description:Johnny Cage's High Punch does more damage + code:F32C-4944 + cheat + description:Johnny Cage's Low Punch does more damage + code:F32C-4514 + cheat + description:Johnny Cage's High Kick does more damage + code:062B-40C4 + cheat + description:Johnny Cage's Low Kick does more damage + code:042B-4134 + cheat + description:Johnny Cage's Head Blow does more damage + code:7A2A-4144 + cheat + description:Johnny Cage's Knee does more damage + code:0622-4014 + cheat + description:Johnny Cage's Crouched Kick does more damage + code:F628-4534 + cheat + description:Johnny Cage's Uppercut does more damage + code:5622-41C4 + cheat + description:Johnny Cage's Roundhouse Kick does more damage + code:1D26-4114 + cheat + description:Johnny Cage's Foot Sweep does more damage + code:7A28-49C4 + cheat + description:Johnny Cage's Flying Punch does more damage + code:0826-4044 + cheat + description:Johnny Cage's Shadow Kick does more damage + code:9C20-41C4 + cheat + description:Johnny Cage's Fireball does more damage (only at close distance) + code:0821-4914 + cheat + description:Johnny Cage's Split Punch does more damage + code:1129-4544 + cheat + description:Liu Kang's High Punch does more damage + code:F323-C034 + cheat + description:Liu Kang's Low Punch does more damage + code:F323-C544 + cheat + description:Liu Kang's High Kick does more damage + code:0624-30C4 + cheat + description:Liu Kang's Low Kick does more damage + code:0624-3134 + cheat + description:Liu Kang's Head Blow does more damage + code:7A28-C534 + cheat + description:Liu Kang's Knee does more damage + code:062E-C914 + cheat + description:Liu Kang's Crouched Kick does more damage + code:7A2F-3114 + cheat + description:Liu Kang's Uppercut does more damage + code:562F-3044 + cheat + description:Liu Kang's Roundhouse Kick does more damage + code:1D22-C1C4 + cheat + description:Liu Kang's Foot Sweep does more damage + code:7A2D-3934 + cheat + description:Liu Kang's Flying Punch does more damage + code:0827-3514 + cheat + description:Liu Kang's Special Flying Kick does more damage + code:9C28-C9C4 + cheat + description:Liu Kang's Fireball does more damage (only at close distance) + code:082A-C144 + cheat + description:Sonya Blade's High Punch does more damage + code:F32F-393F + cheat + description:Sonya Blade's Low Punch does more damage + code:F324-304F + cheat + description:Sonya Blade's High Kick does more damage + code:9023-C01F + cheat + description:Sonya Blade's Low Kick does more damage + code:9F23-C1CF + cheat + description:Sonya Blade's Head Blow does more damage + code:7A2E-C03F + cheat + description:Sonya Blade's Knee does more damage + code:062E-C54F + cheat + description:Sonya Blade's Crouched Kick does more damage + code:7A2D-35CF + cheat + description:Sonya Blade's Uppercut does more damage + code:5624-311F + cheat + description:Sonya Blade's Roundhouse Kick does more damage + code:1122-C14F + cheat + description:Sonya Blade's Foot Sweep does more damage + code:7A2A-C53F + cheat + description:Sonya Blade's Flying Punch does more damage + code:0827-313F + cheat + description:Sonya Blade's Leg Grab does more damage + code:5620-17A7 + cheat + description:Sonya Blade's Sonic Rings does more damage (only at close distance) + code:0822-C13F + cheat + description:Sonya Blade's Special Flying Kick does more damage + code:0827-313F + cheat + description:Rayden's High Punch does more damage + code:F324-C914 + cheat + description:Rayden's Low Punch does more damage + code:F327-C934 + cheat + description:Rayden's High Kick does more damage + code:092F-C034 + cheat + description:Rayden's Low Kick does more damage + code:042F-C544 + cheat + description:Rayden's Head Blow does more damage + code:7A29-C0C4 + cheat + description:Rayden's Knee does more damage + code:0629-C134 + cheat + description:Rayden's Crouched Kick does more damage + code:F620-C114 + cheat + description:Rayden's Uppercut does more damage + code:5621-C944 + cheat + description:Rayden's Roundhouse Kick does more damage + code:9C2D-C1C4 + cheat + description:Rayden's Foot Sweep does more damage + code:7A20-C044 + cheat + description:Rayden's Flying Punch does more damage + code:082D-C014 + cheat + description:Rayden's Flying Thunderbolt does more damage + code:9C22-1514 + cheat + description:Rayden's Lightning does more damage (only at close distance) + code:0823-19C4 + cheat + description:Scorpion's, Sub-Zero's and Reptile's High Punch do more damage + code:F328-3934 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Low Punch do more damage + code:F32A-3044 + cheat + description:Scorpion's, Sub-Zero's and Reptile's High Kick do more damage + code:062E-39C4 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Low Kick do more damage + code:062E-3534 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Head Blow do more damage + code:7A22-30C4 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Knee do more damage + code:062A-3114 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Crouched Kick do more damage + code:F62F-41C7 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Uppercut do more damage + code:562C-35C4 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Roundhouse Kick do more damage + code:1D2F-4017 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Foot Sweep do more damage + code:7A2D-4147 + cheat + description:Scorpion's, Sub-Zero's and Reptile's Flying Punch do more damage + code:0823-3944 + cheat + description:Sub-Zero's and Reptile's Deep Freeze do damage + code:462C-3914 + cheat + description:Sub-Zero's and Reptile's Slide do more damage + code:4525-3144 + cheat + description:Scorpion's and Reptile's Harpoon do more damage + code:F626-31C4 + cheat + description:Scorpion's and Reptile's Scorpion Split do more damage + code:0823-3944 + cheat + description:Each round is 199 seconds (time counts down twice) + code:D466-3D04 + cheat + description:Each round is 90 seconds + code:BF66-3DD4+DD66-3D04 + cheat + description:Each round is 80 seconds + code:6F66-3DD4+DD66-3D04 + cheat + description:Each round is 70 seconds + code:5F66-3DD4+DD66-3D04 + cheat + description:Each round is 60 seconds + code:1F66-3DD4+DD66-3D04 + cheat + description:Each round is 50 seconds + code:9F66-3DD4+DD66-3D04 + cheat + description:Each round is 40 seconds + code:0F66-3DD4+DD66-3D04 + cheat + description:Each round is 30 seconds + code:7F66-3DD4+DD66-3D04 + cheat + description:Each round is 20 seconds + code:4F66-3DD4+DD66-3D04 + cheat + description:Each round is 10 seconds + code:FF66-3DD4+DD66-3D04 + cheat + description:Always fight in the the Courtyard + code:DD6A-47AF + cheat + description:After 1st match, almost always fight at the Palace Gates + code:CB6A-44AF+DF6A-47DF + cheat + description:After 1st match, almost always fight in the Warrior Shrine + code:CB6A-44AF+D46A-47DF + cheat + description:After 1st match, almost always fight in the Pit + code:CB6A-44AF+D76A-47DF + cheat + description:After 1st match, almost always fight in the Throne Room + code:CB6A-44AF+D06A-47DF + cheat + description:After 1st match, almost always fight in Goro's Lair + code:CB6A-44AF+D96A-47DF + cheat + description:After 1st match, almost always fight in the bottom of the pit (screen says Goro's Lair) + code:CB6A-44AF+D16A-47DF + cheat + description:Almost always fight Johnny Cage + code:CBBA-394F+DDBA-391F + cheat + description:Almost always fight Kano + code:CBBA-394F+DFBA-391F + cheat + description:Almost always fight Rayden + code:CBBA-394F+D4BA-391F + cheat + description:Almost always fight Liu Kang + code:CBBA-394F+D7BA-391F + cheat + description:Almost always fight Scorpion + code:CBBA-394F+D0BA-391F + cheat + description:Almost always fight Sub-Zero + code:CBBA-394F+D9BA-391F + cheat + description:Almost always fight Sonya Blade + code:CBBA-394F+D1BA-391F + cheat + description:Almost always fight Goro (don't use Kano's or Johnny Cage's finishing move on Goro) + code:CBBA-394F+D5BA-391F + cheat + description:Start on Match 2 + code:DF61-14DD + cheat + description:Start on Match 3 + code:D461-14DD + cheat + description:Start on Match 4 + code:D761-14DD + cheat + description:Start on Match 5 + code:D061-14DD + cheat + description:Start on Match 6 + code:D961-14DD + cheat + description:Start on Mirror Match + code:D161-14DD + cheat + description:Start on Endurance 1 match + code:D561-14DD + cheat + description:Start on Endurance 2 match + code:D661-14DD + cheat + description:Start on Endurance 3 match + code:DB61-14DD + cheat + description:Start on match with Goro + code:DC61-14DD + cheat + description:Start on match with Shang Tsung + code:D861-14DD + +cartridge sha256:6caa0ab221a3e690a104baa4935fc86dbc385d4272e88afb46b999bf6c6edb36 + name:Mortal Kombat - Shinken Kourin Densetsu (Japan) + cheat + description:Infinite health + code:CF31-4F64+6231-44D4+EB31-4404+D031-4464 + cheat + description:One hit kill - P1 + code:DD3C-44D4+623C-4464+E83C-44A4+D03C-47D4 + +cartridge sha256:43e36a74fb73a7efc46b380599e269b1fff8f55ecf80f5cf50c34d02ceda041a + name:Mortal Kombat II (USA) + cheat + description:Invincibility - P1 + code:C2B1-14F7 + cheat + description:Invincibility - P2/CPU + code:C2B5-14F7 + cheat + description:Infinite health + code:CB89-4FAA+CF89-44DA+DD89-440A+EA89-44AA+4389-47DA + cheat + description:Infinite time + code:6DC7-1DAA + cheat + description:Infinite continues + code:C2C4-47AA + cheat + description:No health - P1 + code:DDB1-1FF7 + cheat + description:No health - P2/CPU + code:DDB5-1FF7 + cheat + description:Hit anywhere - P1 + code:0DB0-4F97+2DB0-4FF7+3DB0-4D97+DDB0-4DB7 + cheat + description:Have 127x more fatality time + code:5EC2-CF02 + cheat + description:Disable throws - 2P mode + code:622B-C7AC + cheat + description:Mileena's Sai Throw does massive damage + code:06E1-17D4 + cheat + description:Liu Kang's High Fireball does massive damage + code:06E9-1DD7 + cheat + description:Kung Lao's Hat Throw does massive damage + code:06E2-1767 + cheat + description:Cage's Shadow Kick does massive damage + code:06EF-4767 + cheat + description:Reptile's Force Ball does massive damage + code:06EB-17AF + cheat + description:Shang Tsung's Flaming Skull attack does massive damage + code:06E0-4FA4 + cheat + description:Kitana's Fan Throw does massive damage + code:06E9-17A4 + cheat + description:Baraka's Blade Spark does massive damage + code:06EE-C4A4 + cheat + description:Rayden's Lightning Bolt does massive damage + code:06E4-34DF + cheat + description:Enable all 2P rules/moves when fighting computer + code:6DCF-4D9D + cheat + description:Always fight Kung Lao + code:CBC6-3D6E+DDC6-3DAE + cheat + description:Always fight Liu Kang + code:CBC6-3D6E+DFC6-3DAE + cheat + description:Always fight Cage + code:CBC6-3D6E+D4C6-3DAE + cheat + description:Always fight Baraka + code:CBC6-3D6E+D7C6-3DAE + cheat + description:Always fight Kitana + code:CBC6-3D6E+D0C6-3DAE + cheat + description:Always fight Mileena + code:CBC6-3D6E+D9C6-3DAE + cheat + description:Always fight Shang Tsung + code:CBC6-3D6E+D1C6-3DAE + cheat + description:Always fight Rayden + code:CBC6-3D6E+D5C6-3DAE + cheat + description:Always fight Sub-Zero + code:CBC6-3D6E+D6C6-3DAE + cheat + description:Always fight Reptile + code:CBC6-3D6E+DBC6-3DAE + cheat + description:Always fight Scorpion + code:CBC6-3D6E+DCC6-3DAE + cheat + description:Always fight Jax + code:CBC6-3D6E+D8C6-3DAE + cheat + description:Always fight Kintaro + code:CBC6-3D6E+DAC6-3DAE + cheat + description:Always fight Shao Kahn + code:CBC6-3D6E+D2C6-3DAE + cheat + description:Always fight Smoke + code:CBC6-3D6E+D3C6-3DAE + cheat + description:Always fight Noob Saibot + code:CBC6-3D6E+DEC6-3DAE + cheat + description:Always fight Jade + code:CBC6-3D6E+FDC6-3DAE + cheat + description:Start with 0 continues + code:DF8C-CDDA + cheat + description:Start with 2 continues + code:D78C-CDDA + cheat + description:Start with 6 continues + code:D58C-CDDA + cheat + description:Start with 8 continues + code:DB8C-CDDA + cheat + description:Invincibility - P1 (alt) + code:849C68:80+849C69:09+849C7B:00+85AA52:60+85AB1C:60+85AC2A:60 + cheat + description:Invincibility - P2/CPU (alt) + code:849C68:80+849C69:06+849C76:00+85AA52:60+85AB1C:60+85AC2A:60 + +cartridge sha256:ca2f86ca77f822fcd8e86f5a287f2a76d0becbb81a7bce73ae22909beb2f834c + name:Mortal Kombat II (USA) (Rev 1) + cheat + description:P1 is killed by one hit + code:DDB1-1FF7 + cheat + description:P2/CPU is killed by one hit + code:DDB5-1FF7 + cheat + description:Have 127x more fatality time + code:5EC3-CF02 + cheat + description:Disable throws - 2P mode + code:622B-C7AC + cheat + description:Enable all 2P rules/moves when fighting computer + code:6DCF-4D9D + +cartridge sha256:417874aa57856fe93eefdb24066fa1a9ca3f23c72c09d5247ae2b3ab4b3d09d1 + name:Mortal Kombat 3 (USA) + cheat + description:Infinite health - P1 + code:C230-CD62 + cheat + description:Infinite health - P2 + code:C239-CD62 + cheat + description:P1 takes all damage + code:DD37-CF62 + cheat + description:P2 takes all damage + code:6D37-CF02 + cheat + description:Infinite continues + code:A220-3FB6 + cheat + description:Hit anywhere - P1 + code:3DE6-3DDE+6D30-1462+C4E6-3F6E+D4E6-3D0E+DDE6-3D6E+EDE6-3DAE+D7E6-3FDE+EE30-14A2+0AE6-3F0E+0AE6-340E+0AE6-34DE+39E6-346E+39E6-3FAE + cheat + description:Press A on main menu for Sound Test + code:D42E-44D8 + cheat + description:Press Up on main menu for Kool Stuff Menu + code:D424-17D8 + cheat + description:Press Select on main menu for Kooler Stuff Menu + code:D421-1DD8 + cheat + description:Press X on main menu for Scott's Menu + code:D42B-1FD8 + cheat + description:Always fight Kano in Master mode + code:CE8F-3FB7+BA23-3727+DDAE-4FFF + cheat + description:Always fight Sonya in Master mode + code:CE8F-3FB7+BA23-3727+DFAE-4FFF + cheat + description:Always fight Jax in Master mode + code:CE8F-3FB7+BA23-3727+D4AE-4FFF + cheat + description:Always fight Nightwolf in Master mode + code:CE8F-3FB7+BA23-3727+D7AE-4FFF + cheat + description:Always fight Sub-Zero in Master mode + code:CE8F-3FB7+BA23-3727+D0AE-4FFF + cheat + description:Always fight Stryker in Master mode + code:CE8F-3FB7+BA23-3727+D9AE-4FFF + cheat + description:Always fight Sindel in Master mode + code:CE8F-3FB7+BA23-3727+D1AE-4FFF + cheat + description:Always fight Sektor in Master mode + code:CE8F-3FB7+BA23-3727+D5AE-4FFF + cheat + description:Always fight Cyrax in Master mode + code:CE8F-3FB7+BA23-3727+D6AE-4FFF + cheat + description:Always fight Kung Lao in Master mode + code:CE8F-3FB7+BA23-3727+DBAE-4FFF + cheat + description:Always fight Kabal in Master mode + code:CE8F-3FB7+BA23-3727+DCAE-4FFF + cheat + description:Always fight Sheeva in Master mode + code:CE8F-3FB7+BA23-3727+D8AE-4FFF + cheat + description:Always fight Shang Tsung in Master mode + code:CE8F-3FB7+BA23-3727+DAAE-4FFF + cheat + description:Always fight Liu Kang in Master mode + code:CE8F-3FB7+BA23-3727+D2AE-4FFF + cheat + description:Always fight Smoke in Master mode + code:CE8F-3FB7+BA23-3727+D3AE-4FFF + cheat + description:Always fight Motaro in Master mode + code:CE8F-3FB7+BA23-3727+DEAE-4FFF + cheat + description:Always fight Shao Kahn in Master mode + code:CE8F-3FB7+BA23-3727+FDAE-4FFF + cheat + description:Always fight Noob-Saibot in Master mode + code:CE8F-3FB7+BA23-3727+FFAE-4FFF + cheat + description:Invincibility (except throws and uppercuts) - P1 + code:7E5447:01 + cheat + description:Invincibility (except throws and uppercuts) - P2 + code:7E5449:01 + cheat + description:First round / one button fatalities + code:7E3AF0:01 + +cartridge sha256:340293c06536d7b6981ad7c681e404f4390ff6c62340f844a4558877c1b82af0 + name:Mr. Do! (USA) + cheat + description:Infinite lives + code:7E18B2:09 + cheat + description:Two enemies on screen at most + code:7E1440:00 + cheat + description:Level modifier (level is always one less than entered) + code:7E189E:??+7E18A0:??+7E18B4:?? + +cartridge sha256:3472dd574b50aed2fa998f464398db4fbb00f5a300a672c3737ee9336a008a16 + name:Mr. Nutz (USA) (En,Fr) + cheat + description:Invincibility + code:7E008D:2D + cheat + description:Infinite Nuts + code:7E0A29:99 + cheat + description:Infinite coins + code:7E1894:99 + cheat + description:One hit kills on bosses + code:7E05D0:00 + +cartridge sha256:44f0f159e1d56a703baa08d648a0d871c037e18198ec119c07795a3757c9e163 + name:Mr. Tuff (Europe) (En,Fr,De,Es,It) (Proto) (1994-12-05) + cheat + description:Infinite time + code:7EEB1C:39 + cheat + description:Infinite time on item pick-ups and flame-thrower fuel + code:7EEB93:27 + cheat + description:Enable auto-hit + code:7EEB79:03 + cheat + description:Easy bosses (except Octopod) + code:7EF4F8:00 + cheat + description:Jump higher + code:7E0421:00 + cheat + description:Have drill + code:7EEAF4:01 + cheat + description:Have super attack + code:7EEAF4:02 + cheat + description:Have bowling ball + code:7EEAF4:03 + cheat + description:Have fire smash + code:7EEAF4:04 + cheat + description:Have regular punch + code:7EEAF4:05 + cheat + description:Have crescent blast + code:7EEAF4:06 + cheat + description:Have mace + code:7EEAF4:07 + cheat + description:Have jet pack special + code:7EEB68:01 + cheat + description:Have missiles special + code:7EEB68:02 + cheat + description:Have flame thrower special + code:7EEB68:03 + +cartridge sha256:4f172253946ae29ddbf1e8169b48d55fe1aed8d007adafc6fa3e62685ed45de0 + name:Mr. Tuff (USA) (En,Fr,De) (Proto) (1994-07-12) + cheat + description:Invincibility + code:7EEB46:FE + cheat + description:Infinite health + code:7ED580:03 + cheat + description:Infinite lives + code:7ED580:03 + cheat + description:No targets to smash + code:7EEB2E:00 + +cartridge sha256:007735e68a91cab403f1c955d9d562e9311124e660fa5b32e5c5d0a2e052160e + name:Ms. Pac-Man (USA) + cheat + description:Ghosts eatable at start and infinite power pill time + code:7E029E:03 + cheat + description:Infinite Power Pellet time + code:7E029E:01 + cheat + description:Infinite lives + code:7E028C:03 + cheat + description:Level modifier + code:7E039E:?? + +cartridge sha256:f292598ac462fdfcd32ad9b6b35ac01d4bab020391dff92bfe94780ec604289a + name:Musya - The Classic Japanese Tale of Horror (USA) + cheat + description:Invincibility (blinking) + code:7E103C:0A + cheat + description:Infinite health + code:7E101A:10 + cheat + description:Infinite lives + code:7E1033:03 + cheat + description:Infinite Fire magic + code:7E102F:04 + cheat + description:Infinite Heal magic + code:7E1032:33 + cheat + description:Infinite Help magic + code:7E1030:33 + cheat + description:Infinite Lightning magic + code:7E102E:04 + cheat + description:Infinite Web magic + code:7E1031:33 + cheat + description:Have strongest weapon + code:7E102C:06 + +cartridge sha256:a19337da953f63c806754b90af7ff9fbea1bf090618dae732ee3a546882b8700 + name:Mystic Ark (Japan) + cheat + description:999 HP for hero + code:7EB004:0F+7EB005:27 + cheat + description:999 MP for Hero + code:7EB008:E7+7EB009:03 + cheat + description:Have enough gold + code:7EB120:FF+7EB121:FF + cheat + description:Quick gain EXP + code:7E0551:FF+7E0552:FF + +cartridge sha256:c70b812a9d2df7f95b279e4050e03a4b8a68588a370816e645f378296b84e5d1 + name:NBA All-Star Challenge (USA) + cheat + description:P1 can't score in the 1-on-1, free throw or tournament stages + code:123B-3F0D + cheat + description:P2 or computer can't score in the 1-on-1, free throw or tournament events + code:A238-340D + cheat + description:P1 can't score in 3-point shootout + code:A239-1F0D+A237-176D + cheat + description:P2 or computer can't score in 3-point shootout + code:A23F-176D+A23D-1FAD + cheat + description:Stop shot clock (1-on-1 and 1-on-1 tournament modes) + code:A2C6-3F07+6DC6-3DA7 + cheat + description:12-second shot clock (1-on-1 and 1-on-1 tournament modes) + code:DFC3-34D7+D4C3-3DA7 + cheat + description:48-second shot clock - after the 1st shot (1-on-1 and 1-on-1 tournament modes) + code:D0C3-34D7+D6C3-3DA7 + +cartridge sha256:b257cffb3484e6be051a56268cb99ee888bd6d3e9c0e8d6d0779ff66c411f6ba + name:NBA Jam - Tournament Edition (USA) + cheat + description:Infinite shot clock time + code:C2C9-1467 + cheat + description:Ability to set shot clock option down to 1 + code:DF62-1B1B + cheat + description:Have almost Infinite Turbo - P1 + code:C28B-1DA5 + cheat + description:Have almost Infinite Turbo - P2 + code:C286-1B2B + cheat + description:Turbo recharges quicker - P1 + code:DF8A-1D65 + cheat + description:Turbo recharges quicker - P2 + code:DF88-1BBB + cheat + description:Twice as much turbo - P1 + code:0D8A-1FA5 + cheat + description:Twice as much turbo - P2 + code:0D88-1C2B + cheat + description:Shots worth more - P1 + code:76C2-6DDF + cheat + description:Shots worth more - P2 + code:76C3-DF04 + cheat + description:Player is On Fire after 2 baskets instead of 3 + code:D0BF-11C8 + cheat + description:No turbo (except in tournament mode) - P1 + code:CB88-1565 + cheat + description:No turbo (except in tournament mode) - P2 + code:CB88-16BB + cheat + description:Move much faster (except in tournament mode) - all players + code:DDE4-0B28+D1E4-08F8 + cheat + description:Move super fast (except in tournament mode) - all players + code:DDE4-0B28+DBE4-08F8 + cheat + description:Hot spots and Power ups are on in tournament mode automatically (don't select the special features menu) + code:D1E9-DC98 + cheat + description:Have all secret power-ups except slippery floors on - all players + code:DDE5-C74C+6DEB-CD4C+41E5-F47D + cheat + description:Have Power Push, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P1 + code:EEEA-1FDC + cheat + description:Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P2 + code:EEE1-C46C + cheat + description:Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P3 + code:EEEF-3DDC + cheat + description:Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P4 + code:EEE8-3F6C + cheat + description:Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P1 + code:EEEA-1F0C + cheat + description:Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P2 + code:EEE1-C4AC + cheat + description:Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P3 + code:EEEF-3D0C + cheat + description:Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P4 + code:EEE8-3FAC + cheat + description:Have all secret power-ups - all players + code:DDE5-C74C+6DEB-CD4C + cheat + description:Have all secret power-ups on - P1 + code:EEEA-1FDC+EEEA-1F0C + cheat + description:Have all secret power-ups on - P2 + code:EEE1-C46C+EEE1-C4AC + cheat + description:Have all secret power-ups on - P3 + code:EEEF-3DDC+EEEF-3D0C + cheat + description:Have all secret power-ups on - P4 + code:EEE8-3F6C+EEE8-3FAC + cheat + description:Have Power Push - P1 + code:DFEA-1FDC + cheat + description:Have Powered Up 3 pointers - P1 + code:D4EA-1FDC + cheat + description:Have Powered Up 3 pointers - P2 + code:D4E1-C46C + cheat + description:Have Powered Up 3 pointers - P3 + code:D4EF-3DDC + cheat + description:Have Powered Up 3 pointers - P4 + code:D4E8-3F6C + cheat + description:Have Infinite Turbo - P1 + code:D0EA-1FDC + cheat + description:Have Infinite Turbo - P2 + code:D0E1-C46C + cheat + description:Have Infinite Turbo - P3 + code:D0EF-3DDC + cheat + description:Have Infinite Turbo - P4 + code:D0E8-3F6C + cheat + description:Always On Fire - P1 + code:D6EA-1FDC + cheat + description:Always On Fire - P2 + code:D6E1-C46C + cheat + description:Always On Fire - P3 + code:D6EF-3DDC + cheat + description:Always On Fire - P4 + code:D6E8-3F6C + cheat + description:Have Super Dunks - P1 + code:FDEA-1FDC + cheat + description:Have Super Dunks - P2 + code:FDE1-C46C + cheat + description:Have Super Dunks - P3 + code:FDEF-3DDC + cheat + description:Have Super Dunks - P4 + code:FDE8-3F6C + cheat + description:Have Max Power - P1 + code:4DEA-1FDC + cheat + description:Have Max Power - P2 + code:4DE1-C46C + cheat + description:Have Max Power - P3 + code:4DEF-3DDC + cheat + description:Have Max Power - P4 + code:4DE8-3F6C + cheat + description:Have Powered Up Goal Tending - P1 + code:0DEA-1FDC + cheat + description:Have Powered Up Goal Tending - P2 + code:0DE1-C46C + cheat + description:Have Powered Up Goal Tending - P3 + code:0DEF-3DDC + cheat + description:Have Powered Up Goal Tending - P4 + code:0DE8-3F6C + cheat + description:Have Quick Hands - P1 + code:6DEA-1FDC + cheat + description:Have Quick Hands - P2 + code:6DE1-C46C + cheat + description:Have Quick Hands - P3 + code:6DEF-3DDC + cheat + description:Have Quick Hands - P4 + code:6DE8-3F6C + cheat + description:Have Powered Up Offense - P1 + code:DFEA-1F0C + cheat + description:Have Powered Up Offense - P2 + code:DFE1-C4AC + cheat + description:Have Powered Up Offense - P3 + code:DFEF-3D0C + cheat + description:Have Powered Up Offense - P4 + code:DFE8-3FAC + cheat + description:Move very quickly - P1 + code:D4EA-1F0C + cheat + description:Move very quickly - P2 + code:D4E1-C4AC + cheat + description:Move very quickly - P3 + code:D4EF-3D0C + cheat + description:Move very quickly - P4 + code:D4E8-3FAC + cheat + description:Knock down both opponents by pushing one - P1 + code:D0EA-1F0C + cheat + description:Knock down both opponents by pushing two - P2 + code:D0E1-C4AC + cheat + description:Knock down both opponents by pushing three - P3 + code:D0EF-3D0C + cheat + description:Knock down both opponents by pushing four - P4 + code:D0E8-3FAC + cheat + description:Knock down opposite opponent - P1 + code:FDEA-1F0C + cheat + description:Knock down opposite opponent - P2 + code:FDE1-C4AC + cheat + description:Knock down opposite opponent - P3 + code:FDEF-3D0C + cheat + description:Knock down opposite opponent - P4 + code:FDE8-3FAC + cheat + description:Have High Shots - P1 + code:4DEA-1F0C + cheat + description:Have High Shots - P2 + code:4DE1-C4AC + cheat + description:Have High Shots - P3 + code:4DEF-3D0C + cheat + description:Have High Shots - P4 + code:4DE8-3FAC + cheat + description:Have Power Block - P2 + code:DFE1-C46C + cheat + description:Have Power Block - P3 + code:DFEF-3DDC + cheat + description:Have Power Block - P4 + code:DFE8-3F6C + cheat + description:Have Teleport Passes - P1 + code:D6EA-1F0C + cheat + description:Have Teleport Passes - P2 + code:D6E1-C4AC + cheat + description:Have Teleport Passes - P3 + code:D6EF-3D0C + cheat + description:Have Teleport Passes - P4 + code:D6E8-3FAC + cheat + description:Start with 1 point - P1 + code:33E0-4DAC + cheat + description:Start with 1 point - P2 + code:33E0-47AC + +cartridge sha256:3ef9d4b537ea83c8ba9ec8be7aba37ddac22a71c73d0aec46fe8e5a8f5b34a7c + name:NBA Jam (USA) (Rev 1) + cheat + description:Always On Fire - all players + code:D6E2-CFC8 + cheat + description:Always On Fire (alt) - all players + code:D6E9-CD18 + cheat + description:Have Infinite Turbo - all players + code:D6E3-C748 + cheat + description:Have Infinite Turbo (alt) - all players + code:D6E1-CF38 + cheat + description:Have Super Dunk ability - all players + code:D8E8-C718 + cheat + description:Have Super Dunk ability (alt) - all players + code:D8E7-C448 + cheat + description:Have Super Interception ability - all players + code:D8E6-C7C8 + cheat + description:Have Super Interception ability (alt) - all players + code:D8ED-C418 + cheat + description:Juice mode + code:D6ED-3DC8 + cheat + description:Juice mode (alt) + code:D6E5-C718 + cheat + description:Visitor's baskets worth 1 + code:BBCC-0F6F + cheat + description:Visitor's baskets worth 2 + code:34CC-0F6F + cheat + description:Visitor's baskets worth 3 + code:30CC-0F6F + cheat + description:Visitor's baskets worth 4 + code:39CC-0F6F + cheat + description:Visitor's baskets worth 5 + code:35CC-0F6F + cheat + description:Visitor's baskets worth 6 + code:36CC-0F6F + cheat + description:Visitor's baskets worth 7 + code:3CCC-0F6F + cheat + description:Visitor's baskets worth 8 + code:3ACC-0F6F + cheat + description:Home's baskets worth 1 + code:BBC6-A7AF + cheat + description:Home's baskets worth 2 + code:34C6-A7AF + cheat + description:Home's baskets worth 3 + code:30C6-A7AF + cheat + description:Home's baskets worth 4 + code:39C6-A7AF + cheat + description:Home's baskets worth 5 + code:35C6-A7AF + cheat + description:Home's baskets worth 6 + code:36C6-A7AF + cheat + description:Home's baskets worth 7 + code:3CC6-A7AF + cheat + description:Home's baskets worth 8 + code:3AC6-A7AF + cheat + description:Shot success percentages displayed for non-dunk shots + code:D6EC-CF38 + cheat + description:Shot success percentages displayed for non-dunk shots (alt) + code:D6E4-CDC8 + cheat + description:Need 2 baskets to be On Fire + code:D4BD-3038+D4BA-C948 + cheat + description:Need 4 baskets to be On Fire + code:D0BD-3038 + cheat + description:Need 5 baskets to be On Fire + code:D9BD-3038 + cheat + description:Need 6 baskets to be On Fire + code:D1BD-3038 + cheat + description:Need 7 baskets to be On Fire + code:D5BD-3038 + cheat + description:Need 8 baskets to be On Fire + code:D6BD-3038 + cheat + description:Need 9 baskets to be On Fire + code:DBBD-3038 + cheat + description:Need 10 baskets to be On Fire + code:DCBD-3038 + cheat + description:Need 2 baskets to stay On Fire until an opponent goes On Fire + code:D4BD-3038 + cheat + description:Turbo bar never goes up (until next quarter) + code:DDE6-3B2A + cheat + description:Turbo bar never goes up (until next quarter) (alt) + code:DDE1-3C2A + cheat + description:Turbo bar restores very slowly + code:D3E6-3B2A + cheat + description:Turbo bar restores very slowly (alt) + code:D3E1-3C2A + cheat + description:Turbo bar restores much slower + code:F9E6-3B2A + cheat + description:Turbo bar restores much slower (alt) + code:F9E1-3C2A + cheat + description:Turbo bar restores slower + code:F2E6-3B2A + cheat + description:Turbo bar restores slower (alt) + code:F2E1-3C2A + cheat + description:Turbo bar restores faster + code:0DE6-3B2A + cheat + description:Turbo bar restores faster (alt) + code:0DE1-3C2A + cheat + description:Turbo bar restores much faster + code:9DE6-3B2A + cheat + description:Turbo bar restores much faster (alt) + code:9DE1-3C2A + cheat + description:Turbo bar restores extremely fast + code:6FE6-3B2A + cheat + description:Turbo bar restores extremely fast (alt) + code:6FE1-3C2A + cheat + description:Turbo drains very slowly + code:D0E5-3CFA + cheat + description:Turbo drains very slowly (alt) + code:D0E9-38FA + cheat + description:Turbo drains slower + code:D6E5-3CFA + cheat + description:Turbo drains slower (alt) + code:D6E9-38FA + cheat + description:Turbo drains slightly slower + code:FDE5-3CFA + cheat + description:Turbo drains slightly slower (alt) + code:FDE9-38FA + cheat + description:Turbo drains slightly faster + code:44E5-3CFA + cheat + description:Turbo drains slightly faster (alt) + code:44E9-38FA + cheat + description:Turbo drains faster + code:42E5-3CFA + cheat + description:Turbo drains faster (alt) + code:42E9-38FA + cheat + description:Turbo drains very fast + code:76E5-3CFA + cheat + description:Turbo drains very fast (alt) + code:76E9-38FA + cheat + description:Always On Fire - P1 + code:7E0A96:01 + cheat + description:Always On Fire - P2 + code:7E0A96:03 + +cartridge sha256:0f18c496426bb97fe5e8b91ad5299f0b1c3898ac17047b745c86b167c212ab7a + name:NBA Jam (USA) + cheat + description:Always On Fire - all players + code:D6E2-CFC8 + cheat + description:Always On Fire (alt) - all players + code:D6E9-CD18 + cheat + description:Have Infinite Turbo - all players + code:D6E3-C748 + cheat + description:Have Infinite Turbo (alt) - all players + code:D6E1-CF38 + cheat + description:Have Super Dunk ability - all players + code:D8E8-C718 + cheat + description:Have Super Dunk ability (alt) - all players + code:D8E7-C448 + cheat + description:Have Super Interception ability - all players + code:D8E6-C7C8 + cheat + description:Have Super Interception ability (alt) - all players + code:D8ED-C418 + cheat + description:Juice mode + code:D6ED-3DC8 + cheat + description:Juice mode (alt) + code:D6E5-C718 + cheat + description:Visitor's baskets worth 1 + code:BBCC-0F6F + cheat + description:Visitor's baskets worth 2 + code:34CC-0F6F + cheat + description:Visitor's baskets worth 3 + code:30CC-0F6F + cheat + description:Visitor's baskets worth 4 + code:39CC-0F6F + cheat + description:Visitor's baskets worth 5 + code:35CC-0F6F + cheat + description:Visitor's baskets worth 6 + code:36CC-0F6F + cheat + description:Visitor's baskets worth 7 + code:3CCC-0F6F + cheat + description:Visitor's baskets worth 8 + code:3ACC-0F6F + cheat + description:Home's baskets worth 1 + code:BBC6-A7AF + cheat + description:Home's baskets worth 2 + code:34C6-A7AF + cheat + description:Home's baskets worth 3 + code:30C6-A7AF + cheat + description:Home's baskets worth 4 + code:39C6-A7AF + cheat + description:Home's baskets worth 5 + code:35C6-A7AF + cheat + description:Home's baskets worth 6 + code:36C6-A7AF + cheat + description:Home's baskets worth 7 + code:3CC6-A7AF + cheat + description:Home's baskets worth 8 + code:3AC6-A7AF + cheat + description:Shot success percentages displayed for non-dunk shots + code:D6EC-CF38 + cheat + description:Shot success percentages displayed for non-dunk shots (alt) + code:D6E4-CDC8 + cheat + description:Need 2 baskets to be On Fire + code:D4BD-3038+D4BA-C948 + cheat + description:Need 4 baskets to be On Fire + code:D0BD-3038 + cheat + description:Need 5 baskets to be On Fire + code:D9BD-3038 + cheat + description:Need 6 baskets to be On Fire + code:D1BD-3038 + cheat + description:Need 7 baskets to be On Fire + code:D5BD-3038 + cheat + description:Need 8 baskets to be On Fire + code:D6BD-3038 + cheat + description:Need 9 baskets to be On Fire + code:DBBD-3038 + cheat + description:Need 10 baskets to be On Fire + code:DCBD-3038 + cheat + description:Need 2 baskets to stay On Fire until an opponent goes On Fire + code:D4BD-3038 + cheat + description:Turbo bar never goes up (until next quarter) + code:DDE6-3B2A + cheat + description:Turbo bar never goes up (until next quarter) (alt) + code:DDE1-3C2A + cheat + description:Turbo bar restores very slowly + code:D3E6-3B2A + cheat + description:Turbo bar restores very slowly (alt) + code:D3E1-3C2A + cheat + description:Turbo bar restores much slower + code:F9E6-3B2A + cheat + description:Turbo bar restores much slower (alt) + code:F9E1-3C2A + cheat + description:Turbo bar restores slower + code:F2E6-3B2A + cheat + description:Turbo bar restores slower (alt) + code:F2E1-3C2A + cheat + description:Turbo bar restores faster + code:0DE6-3B2A + cheat + description:Turbo bar restores faster (alt) + code:0DE1-3C2A + cheat + description:Turbo bar restores much faster + code:9DE6-3B2A + cheat + description:Turbo bar restores much faster (alt) + code:9DE1-3C2A + cheat + description:Turbo bar restores extremely fast + code:6FE6-3B2A + cheat + description:Turbo bar restores extremely fast (alt) + code:6FE1-3C2A + cheat + description:Turbo drains very slowly + code:D0E5-3CFA + cheat + description:Turbo drains very slowly (alt) + code:D0E9-38FA + cheat + description:Turbo drains slower + code:D6E5-3CFA + cheat + description:Turbo drains slower (alt) + code:D6E9-38FA + cheat + description:Turbo drains slightly slower + code:FDE5-3CFA + cheat + description:Turbo drains slightly slower (alt) + code:FDE9-38FA + cheat + description:Turbo drains slightly faster + code:44E5-3CFA + cheat + description:Turbo drains slightly faster (alt) + code:44E9-38FA + cheat + description:Turbo drains faster + code:42E5-3CFA + cheat + description:Turbo drains faster (alt) + code:42E9-38FA + cheat + description:Turbo drains very fast + code:76E5-3CFA + cheat + description:Turbo drains very fast (alt) + code:76E9-38FA + cheat + description:Always On Fire - P1 + code:7E0A96:01 + cheat + description:Always On Fire - P2 + code:7E0A96:03 + +cartridge sha256:6a7324734004d99206439430243b51a05fa8c25ffa314dafc7f127235d1a730f + name:NBA Showdown (USA) + cheat + description:Infinite time + code:C224-4DA4 + cheat + description:Infinite time-outs + code:C239-1F6D + cheat + description:No personal fouls - both teams + code:C23B-44A8 + cheat + description:Infinite shot clock - computer + code:C220-4FDF + cheat + description:12-sec. shot clock when ball is in-bounded - P1 + code:DAE3-14AA+DAB7-37DA+DA3F-140F + cheat + description:12-sec. shot clock when ball is in-bounded - computer + code:DAE3-14AA+DA6E-47D8+DA84-CDDB + cheat + description:1-min. quarters + code:DFED-342C + cheat + description:3 time-outs + code:D7E1-1D6A + +cartridge sha256:8ef5d5c50ffeca1e62e88e4fe2909eaf191e28fbb5a9faf98b7b10bea72c9ed9 + name:NCAA Basketball (USA) (Rev 1) + cheat + description:Infinite time to shoot + code:C2B5-DDA9 + cheat + description:Infinite timeouts - P1 + code:C224-6FDF + cheat + description:Infinite timeouts - P2 + code:C224-676F + cheat + description:Shot timer starts at 10 sec. instead of 45 + code:FDBB-DDD9 + cheat + description:Shot timer starts at 20 sec. + code:4DBB-DDD9 + cheat + description:Shot timer starts at 30 sec. + code:7DBB-DDD9 + cheat + description:Shot timer starts at 60 sec. + code:1DBB-DDD9 + cheat + description:Shot timer starts at 90 sec. + code:BDBB-DDD9 + cheat + description:3-point shots worth 0 - both players + code:DD34-A767 + cheat + description:3-point shots worth 1 point + code:DF34-A767 + cheat + description:3-point shots worth 2 points + code:D434-A767 + cheat + description:3-point shots worth 4 points + code:D034-A767 + cheat + description:3-point shots worth 5 points + code:D934-A767 + cheat + description:3-point shots worth 6 points + code:D134-A767 + cheat + description:3-point shots worth 7 points + code:D534-A767 + cheat + description:3-point shots worth 8 points + code:D634-A767 + cheat + description:3-point shots worth 9 points + code:DB34-A767 + cheat + description:P1 shots worth 1 extra point (2-pt. shots worth 3, 3-pt. shots worth 4) + code:76BA-A404+76B9-6FA7 + cheat + description:P2 shots worth 1 extra point (2-pt. shots worth 3, 3-pt. shots worth 4) + code:76B0-64A7+76B8-A704 + cheat + description:P1 free throws worth 2 instead of 1 + code:76BD-0D07 + cheat + description:P2 free throws worth 2 + code:76BE-DF07 + cheat + description:No 5-second violations + code:C265-D4D7 + +cartridge sha256:d44f487d84f5bb761955b7b70a5464b2f094e199875f595f312c88e04ac647ff + name:NHL Stanley Cup (USA) (En,Fr) + cheat + description:Visitor starts with 1 point (exhibition mode) + code:DF67-CDA4+D667-CFA4+E667-CF64 + cheat + description:Home starts with 1 point (exhibition mode) + code:DF67-CDA4+D667-CFA4+EC67-CF64 + cheat + description:Visitor starts with 3 points (exhibition mode) + code:D767-CDA4+D667-CFA4+E667-CF64 + cheat + description:Home starts with 3 points (exhibition mode) + code:D767-CDA4+D667-CFA4+EC67-CF64 + cheat + description:Visitor starts with 5 points (exhibition mode) + code:D967-CDA4+D667-CFA4+E667-CF64 + cheat + description:Home starts with 5 points (exhibition mode) + code:D967-CDA4+D667-CFA4+EC67-CF64 + cheat + description:Visitor starts with 7 points (exhibition mode) + code:D567-CDA4+D667-CFA4+E667-CF64 + cheat + description:Home starts with 7 points (exhibition mode) + code:D567-CDA4+D667-CFA4+EC67-CF64 + cheat + description:Visitor starts with 9 points (exhibition mode) + code:DB67-CDA4+D667-CFA4+E667-CF64 + cheat + description:Home starts with 9 points (exhibition mode) + code:DB67-CDA4+D667-CFA4+EC67-CF64 + cheat + description:Visitor scores 1 point for goals, Home scores 3 + code:1BA1-4D01 + cheat + description:Periods are 1 min (choose 5 minutes from Options) + code:DFE0-CD0F + cheat + description:Periods are 3 min (choose 5 minutes from Options) + code:D7E0-CD0F + cheat + description:Periods are 7 min (choose 5 minutes from Options) + code:D5E0-CD0F + cheat + description:Periods are 9 min (choose 5 minutes from Options) + code:DBE0-CD0F + cheat + description:Periods are 15 min (choose 10 minutes from Options) + code:94ED-C46F + cheat + description:Periods are 30 min (choose 10 minutes from Options) + code:D7E0-C76F + cheat + description:Penalty for charging is 1 minute instead of 2 + code:7A2B-3F00 + cheat + description:Penalty for holding is 1 minute instead of 2 + code:7A2B-3760 + cheat + description:Penalty for tripping is 1 minute instead of 2 + code:7A2C-3FA0 + cheat + description:Penalty for high sticking is 1 minute instead of 2 + code:7A28-3DD0 + cheat + description:Penalty for elbowing is 1 minute instead of 2 + code:7A28-3400 + cheat + description:Penalty for hooking is 1 minute instead of 2 + code:7A2A-3D60 + cheat + description:Penalty for roughing is 1 minute instead of 2 + code:7A2A-34A0 + cheat + description:Penalty for slashing is 1 minute instead of 4 + code:7A22-3FD0 + cheat + description:Penalty for spearing is 1 minute instead of 2 + code:7A22-3700 + cheat + description:Penalty for charging is 30 seconds + code:F32B-3F00 + cheat + description:Penalty for holding is 30 seconds + code:F32B-3760 + cheat + description:Penalty for tripping is 30 seconds + code:F32C-3FA0 + cheat + description:Penalty for high sticking is 30 seconds + code:F328-3DD0 + cheat + description:Penalty for elbowing is 30 seconds + code:F328-3400 + cheat + description:Penalty for hooking is 30 seconds + code:F32A-3D60 + cheat + description:Penalty for roughing is 30 seconds + code:F32A-34A0 + cheat + description:Penalty for slashing is 30 seconds + code:F322-3FD0 + cheat + description:Penalty for spearing is 30 seconds + code:F322-3700 + cheat + description:Penalty for charging is 3 minutes + code:802B-3F00 + cheat + description:Penalty for holding is 3 minutes + code:802B-3760 + cheat + description:Penalty for tripping is 3 minutes + code:802C-3FA0 + cheat + description:Penalty for high sticking is 3 minutes + code:8028-3DD0 + cheat + description:Penalty for elbowing is 3 minutes + code:8028-3400 + cheat + description:Penalty for hooking is 3 minutes + code:802A-3D60 + cheat + description:Penalty for roughing is 3 minutes + code:802A-34A0 + cheat + description:Penalty for slashing is 3 minutes + code:8022-3FD0 + cheat + description:Penalty for spearing is 3 minutes + code:8022-3700 + +cartridge sha256:55f3432a130085c112d65aa6443c41eb7a8aeec59aad2c2b4b2ac536b604b449 + name:NHLPA Hockey 93 (USA) + cheat + description:Period clock runs faster + code:F160-4776 + cheat + description:Period clock runs slower + code:D060-4776 + cheat + description:Period clock runs much faster + code:0D60-4776 + cheat + description:Period clock runs much slower + code:DF60-4776 + cheat + description:Period clock is frozen (no time limit) + code:C269-4D86 + cheat + description:Each period lasts 1 minute instead of 10 minutes + code:7AE8-4D98+DDE8-4DB8 + cheat + description:Each period lasts 2 minutes + code:56E8-4D98+DDE8-4DB8 + cheat + description:Each period lasts 3 minutes + code:80E8-4D98+DDE8-4DB8 + cheat + description:Each period lasts 4 minutes + code:EDE8-4D98+DDE8-4DB8 + cheat + description:Each period lasts 15 minutes + code:60E8-4D98+D7E8-4DB8 + cheat + description:Each period lasts 30 minutes + code:D6E8-4D98+D5E8-4DB8 + cheat + description:Each period lasts 40 minutes + code:1DE8-4D98+DBE8-4DB8 + cheat + description:Each period lasts 60 minutes + code:FDE8-4D98+D3E8-4DB8 + cheat + description:All penalties last 1 minute + code:DF31-3F64+CB31-3F04 + cheat + description:All penalties last 2 minutes + code:D431-3F64+CB31-3F04 + cheat + description:All penalties last 3 minutes + code:D731-3F64+CB31-3F04 + cheat + description:All penalties last 4 minutes + code:D031-3F64+CB31-3F04 + cheat + description:All penalties last 5 minutes + code:D931-3F64+CB31-3F04 + cheat + description:All penalties last 7 minutes + code:D531-3F64+CB31-3F04 + cheat + description:All penalties last 9 minutes + code:DB31-3F64+CB31-3F04 + +cartridge sha256:d7ad6f67860da78fe25d9e79dd13af7ac7efaa0c8e0103898a4849ab4af9e438 + name:Nickelodeon GUTS (USA) + cheat + description:Gain lots of points in Slam Dunk / Attack levels + code:7E126D:FF + +cartridge sha256:ce9c819d6496e58901b39d9b04558a89e09ccc3aac33690b8d02bb0406682a57 + name:Nigel Mansell's World Championship Racing (USA) + cheat + description:Almost no tire wear (graphic distortion in the pits) + code:C96B-1705+C9B1-4D61 + cheat + description:Only 1 lap required on all tracks + code:E481-3467 + cheat + description:Only 3 laps required in South Africa + code:D461-4FBA + cheat + description:Only 3 laps required in Mexico + code:D461-44FA + cheat + description:Only 3 laps required in Brazil + code:D461-44BA + cheat + description:Only 3 laps required in Spain + code:D461-47FA + cheat + description:Only 3 laps required in San Marino + code:D461-47BA + cheat + description:Only 3 laps required in Monaco + code:D465-4DFA + cheat + description:Only 3 laps required in Canada + code:D465-4DBA + cheat + description:Only 3 laps required in France + code:D465-4FFA + cheat + description:Only 3 laps required in Britain + code:D465-4FBA + cheat + description:Only 3 laps required in Germany + code:D465-44FA + cheat + description:Only 3 laps required in Hungary + code:D465-44BA + cheat + description:Only 3 laps required in Belgium + code:D465-47FA + cheat + description:Only 3 laps required in Italy + code:D465-47BA + cheat + description:Only 3 laps required in Portugal + code:D466-4DFA + cheat + description:Only 3 laps required in Japan + code:D466-4DBA + cheat + description:Only 3 laps required in Australia + code:D466-4FFA + cheat + description:Full season ends after South Africa + code:DF3E-015A + cheat + description:Full season ends after Mexico + code:D43E-015A + cheat + description:Full season ends after Brazil + code:D73E-015A + cheat + description:Full season ends after Spain + code:D03E-015A + cheat + description:Full season ends after San Marino + code:D93E-015A + cheat + description:Full season ends after Monaco + code:D13E-015A + cheat + description:Full season ends after Canada + code:D53E-015A + cheat + description:Full season ends after France + code:D63E-015A + cheat + description:Full season ends after Britain + code:DB3E-015A + cheat + description:Full season ends after Germany + code:DC3E-015A + cheat + description:Full season ends after Hungary + code:D83E-015A + cheat + description:Full season ends after Belgium + code:DA3E-015A + cheat + description:Full season ends after Italy + code:D23E-015A + cheat + description:Full season ends after Portugal + code:D33E-015A + cheat + description:Full season ends after Japan + code:DE3E-015A + cheat + description:Start in Mexico in the Full Season + code:DF62-0953 + cheat + description:Start in Brazil + code:D462-0953 + cheat + description:Start in Spain + code:D762-0953 + cheat + description:Start in San Marino + code:D062-0953 + cheat + description:Start in Monaco + code:D962-0953 + cheat + description:Start in Canada + code:D162-0953 + cheat + description:Start in France + code:D562-0953 + cheat + description:Start in Britain + code:D662-0953 + cheat + description:Start in Germany + code:DB62-0953 + cheat + description:Start in Hungary + code:DC62-0953 + cheat + description:Start in Belgium + code:D862-0953 + cheat + description:Start in Italy + code:DA62-0953 + cheat + description:Start in Portugal + code:D262-0953 + cheat + description:Start in Japan + code:D362-0953 + cheat + description:Start in Australia + code:DE62-0953 + cheat + description:Start on extra course (stats are for South Africa but the course is different) + code:FD62-0953 + +cartridge sha256:fccc96af24a2463b1c53253e1c5c8ef63641355fae53c0fb410427f29743262b + name:Ninja Gaiden Trilogy (USA) + cheat + description:(NG) Invincibility + code:6DB5-3797 + cheat + description:(NG) Infinite health + code:C9C3-3F2D + cheat + description:(NG) Infinite lives + code:C9CF-CFBF + cheat + description:(NG) Infinite time + code:DD81-1F97 + cheat + description:(NG) Start with very little time + code:B1C8-3DF8 + cheat + description:(NG) Start with lots of time + code:EEC8-3DF8 + cheat + description:(NG) Start with very little health (after first life) + code:DFCE-142F + cheat + description:(NG) Start with about half health (after first life) + code:DFCE-142F + cheat + description:(NG) Start with 1 life + code:DDC5-4DF4 + cheat + description:(NG) Start with 5 lives + code:D7C5-4DF4 + cheat + description:(NG) Start with 9 lives + code:D6C5-4DF4 + cheat + description:(NGII) Invincibility + code:1DB4-CD4D + cheat + description:(NGII) Infinite health + code:C9BB-441F + cheat + description:(NGII) Infinite lives + code:C961-3D37 + cheat + description:(NGII) Infinite time + code:C96F-1FC7 + cheat + description:(NGII) Start with very little health + code:DFB3-144F + cheat + description:(NGII) Start with about half health + code:D6B3-144F + cheat + description:(NGII) Start every life with two Shadow Ninjas + code:DEB9-14C4 + cheat + description:(NGII) Throwing stars don't use Ninja Power (ignore counter) + code:DFC4-1F47 + cheat + description:(NGII) Start with 1 life + code:DDB3-C4CF + cheat + description:(NGIII) Invincibility + code:DDAB-3FE7 + cheat + description:(NGIII) Infinite health + code:C92A-CFED + cheat + description:(NGIII) Infinite lives + code:CB69-CD57 + cheat + description:(NGIII) Infinite time + code:C927-17EF + cheat + description:(NGIII) Almost infinite Ninja Power + code:C9A7-C757 + cheat + description:(NGIII) Start with 99 Ninja Power (ignore the counter) + code:176C-CDE7 + cheat + description:(NGIII) Start with 1 life + code:DD6B-CF87 + cheat + description:(NGIII) Start with 5 lives + code:D76B-CF87 + cheat + description:(NGIII) Start with 9 lives + code:D66B-CF87 + cheat + description:(NGIII) Start with very little health + code:DF68-CD77 + cheat + description:(NGIII) Start with about half health + code:D668-CD77 + cheat + description:(NG) Invincibility after first hit + code:7E0093:01 + cheat + description:(NG) Infinite Ninja Power + code:7E0064:63 + cheat + description:(NG) Auto kill enemies that are close by + code:849F92:80+849F9F:80 + cheat + description:(NGII) Invincibility (alt) + code:7E0068:25 + cheat + description:(NGII) Infinite Ninja Power + code:7E00AE:63 + cheat + description:(NGII) Always have Fireball + code:7E007D:02 + cheat + description:(NGIII) Infinite lives (alt) + code:7E00C4:03 + cheat + description:(NGIII) Infinite Ninja Power + code:7E00CD:63 + +cartridge sha256:3c109e50b91ec6df3bb8509778ae544c99433fb40dda9b801178dfe513053618 + name:Ninjawarriors (USA) + cheat + description:Invincibility + code:EDB0-D768+ED8D-AD0B+2DB1-DDD8+2DB1-DF08+2D8D-A70B + cheat + description:Infinite health + code:C2B0-DD6C + cheat + description:Infinite time + code:62C4-6DD7 + cheat + description:Infinite specials once you obtain one + code:CECB-A467 + cheat + description:One hit kills + code:CB68-D7AE+DD6A-DDDE+DD6A-DD0E+CBCE-ADD6+DDCE-AD06+DDCE-AD66 + +cartridge sha256:f099937ac4c8afb38c517c5d85475224985fb8f345dacb44994a617ea05bf4e5 + name:No Escape (USA) + cheat + description:Infinite health + code:852A-CF67 + cheat + description:Infinite time + code:CBB4-C75F + cheat + description:Infinite lives + code:842F-44A7 + +cartridge sha256:7f3d0ebac6ecfb99cfd1d5b13210e989df9e8b2f2319a63c42faef8ad115a964 + name:Nolan Ryan's Baseball (USA) + cheat + description:1 strike and batter is out + code:A3BF-6DD1 + cheat + description:Batter never strikes out + code:C2BF-6DD1 + cheat + description:1 ball and batter walks + code:A3BE-0D61 + cheat + description:Batter never walks + code:C2BE-0D61 + cheat + description:Each run worth 2 - P1 + code:76AC-0D65 + cheat + description:Each run worth 2 - P2 + code:76A8-04D5 + cheat + description:Short game (play only odd-numbered innings) + code:766D-67A5 + cheat + description:Increasing a player's power setting does not decrease the power number excess (use to maximize stats for a player) + code:DDC8-D706 + cheat + description:Maximum power for a player is 32 instead of 25 + code:4DBF-A7A8 + cheat + description:Maximum power for a player is 40 instead of 25 + code:46BF-A7A8 + cheat + description:Maximum power for a player is 48 + code:7DBF-A7A8 + +cartridge sha256:9712829b38f23229d4e3d65da78237659c790235f425c6b12487e4d9e9a37ae9 + name:Nosferatu (USA) + cheat + description:Almost infinite health + code:C9BA-1F04 + cheat + description:Infinite time + code:C127-4D67 + cheat + description:Don't lose crystals when you get hit + code:C265-3DBD + cheat + description:Start with very little health + code:DFB2-34D7 + cheat + description:Start with less health + code:D7B2-34D7 + cheat + description:Start with more health + code:DBB2-34D7 + cheat + description:Start with a lot more health + code:DEB2-34D7 + cheat + description:Start with more time + code:CBCE-CDAD+44CE-CFDD+DDCE-CF0D + cheat + description:Start on stage 1-2 + code:D1B3-3DA7 + cheat + description:Start on stage 1-3 + code:DBB3-3DA7 + cheat + description:Start on stage 2 + code:DCB3-3DA7 + cheat + description:Start on stage 2-2 + code:FDB3-3DA7 + cheat + description:Start on stage 2-3 + code:FFB3-3DA7 + cheat + description:Start on stage 2-4 + code:F5B3-3DA7 + cheat + description:Start on stage 3 + code:F6B3-3DA7 + cheat + description:Start on stage 3-2 + code:4DB3-3DA7 + cheat + description:Start on stage 3-3 + code:40B3-3DA7 + cheat + description:Start on stage 4 + code:45B3-3DA7 + cheat + description:Start on stage 4-2 + code:42B3-3DA7 + cheat + description:Start on stage 4-3 + code:43B3-3DA7 + cheat + description:Start on stage 4-4 + code:70B3-3DA7 + cheat + description:Start on stage 5 + code:79B3-3DA7 + cheat + description:Start on stage 5-2 + code:78B3-3DA7 + cheat + description:Start on stage 5-3 + code:7AB3-3DA7 + cheat + description:Start on stage 5-4 + code:09B3-3DA7 + cheat + description:Start on stage 6 + code:01B3-3DA7 + cheat + description:Start on stage 6-2 + code:03B3-3DA7 + cheat + description:Start on the final stage + code:90B3-3DA7 + cheat + description:Start on the final stage with more crystals + code:90B3-3DA7+62B3-3FA7 + cheat + description:View the ending + code:91B3-3DA7 + +cartridge sha256:31bc862ab0a8eabf23b5124e13940cb3501e7ecdd3f15e34142248ceb4aa139a + name:Obitus (USA) + cheat + description:Infinite health + code:7E1113:20 + cheat + description:Infinite Stamina + code:7E1117:20 + cheat + description:Infinite Daggers (keep off until you obtain one) + code:7F132E:02 + cheat + description:Infinite Silver Keys (keep off until you obtain one) + code:7F0ED8:02 + cheat + description:Infinite Gold Coins (keep off until you obtain one) + code:7F0E8E:63 + +cartridge sha256:b766c26498d0afd63f44aefdef42642d2483b54f18d2b81a4f1d67a57f641044 + name:Ogre Battle - The March of the Black Queen (USA) + cheat + description:Level up after every battle (even if you run away) + code:DD2F-AFF4 + cheat + description:View 'Edit Units' screen to give everyone 2778 max HP (2000 of it won't be visible, and you won't get your HP restored. It will go down to 999 max HP if it tries to update the amount) + code:CBE7-A70C+B2E0-AD6C+2CE0-ADAC+DCE0-AFDC + cheat + description:View someone's stats from 'Edit Units' screen to give them max Luck + code:CB67-ADFB+EE67-AD9B+3C67-ADBB+BE67-AD2B + cheat + description:View someone's stats from 'Edit Units' screen to give them max Cha + code:CB6F-A7FB+196F-A79B+3C6F-A7BB+BE6F-A72B + cheat + description:Every hidden thing is visible when you first enter an area + code:CB6A-AD20+CB6A-AF90+EE6A-AFB0 + cheat + description:Leader's group moves 'Sky High' + code:DDE6-1D68 + cheat + description:Lans' group moves 'Sky High' + code:DDE7-1F68 + cheat + description:Judgement tarot card is stronger + code:EE20-070E + +cartridge sha256:e153195de7b59dd5b9854952cccca6bb93164e5fdff8292124bee6bbe5dbf16f + name:On the Ball (USA) + cheat + description:Infinite credits + code:C2AE-DF65 + cheat + description:Faster timer + code:D4BB-D404 + cheat + description:Stop timer - not lap timer (can still lose time by hitting hazards) + code:DDBB-D404 + cheat + description:Minus blocks and bricks worth 0 (don't combine with other minus codes) + code:C2BA-D7D4 + cheat + description:Minus 2 second block worth 0 + code:DDB7-0DA5 + cheat + description:Minus 2 second block worth minus 1 + code:FDB7-0DA5 + cheat + description:Minus 2 second block worth minus 3 + code:7DB7-0DA5 + cheat + description:Minus 2 second block worth minus 4 + code:0DB7-0DA5 + cheat + description:Minus 2 second block worth minus 5 + code:9DB7-0DA5 + cheat + description:Minus 2 second block worth minus 6 + code:1DB7-0DA5 + cheat + description:Minus 2 second block worth minus 7 + code:5DB7-0DA5 + cheat + description:Minus 2 second block worth minus 8 + code:6DB7-0DA5 + cheat + description:Minus 2 second block worth minus 9 + code:BDB7-0DA5 + cheat + description:Minus 5 second block worth 0 + code:DDB0-0F65 + cheat + description:Minus 5 second block worth minus 1 + code:FDB0-0F65 + cheat + description:Minus 5 second block worth minus 2 + code:4DB0-0F65 + cheat + description:Minus 5 second block worth minus 3 + code:7DB0-0F65 + cheat + description:Minus 5 second block worth minus 4 + code:0DB0-0F65 + cheat + description:Minus 5 second block worth minus 6 + code:1DB0-0F65 + cheat + description:Minus 5 second block worth minus 7 + code:5DB0-0F65 + cheat + description:Minus 5 second block worth minus 8 + code:6DB0-0F65 + cheat + description:Minus 5 second block worth minus 9 + code:BDB0-0F65 + cheat + description:Minus 3 second brick worth 0 + code:DDB9-0405 + cheat + description:Minus 3 second brick worth minus 1 + code:FDB9-0405 + cheat + description:Minus 3 second brick worth minus 2 + code:4DB9-0405 + cheat + description:Minus 3 second brick worth minus 4 + code:0DB9-0405 + cheat + description:Minus 3 second brick worth minus 5 + code:9DB9-0405 + cheat + description:Minus 3 second brick worth minus 6 + code:1DB9-0405 + cheat + description:Minus 3 second brick worth minus 7 + code:5DB9-0405 + cheat + description:Minus 3 second brick worth minus 8 + code:6DB9-0405 + cheat + description:Minus 3 second brick worth minus 9 + code:BDB9-0405 + cheat + description:Plus bricks worth 0 (don't combine with other plus bricks codes) + code:C2B8-DFA4 + cheat + description:Plus 3 bricks worth 0 + code:DDBB-0DA5 + cheat + description:Plus 3 bricks worth plus 1 + code:FDBB-0DA5 + cheat + description:Plus 3 bricks worth plus 2 + code:4DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 4 + code:0DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 5 + code:9DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 6 + code:1DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 7 + code:5DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 8 + code:6DBB-0DA5 + cheat + description:Plus 3 bricks worth plus 9 + code:BDBB-0DA5 + cheat + description:Plus 5 bricks worth 0 + code:DDBC-0F65 + cheat + description:Plus 5 bricks worth plus 1 + code:FDBC-0F65 + cheat + description:Plus 5 bricks worth plus 2 + code:4DBC-0F65 + cheat + description:Plus 5 bricks worth plus 3 + code:7DBC-0F65 + cheat + description:Plus 5 bricks worth plus 4 + code:0DBC-0F65 + cheat + description:Plus 5 bricks worth plus 6 + code:1DBC-0F65 + cheat + description:Plus 5 bricks worth plus 7 + code:5DBC-0F65 + cheat + description:Plus 5 bricks worth plus 8 + code:6DBC-0F65 + cheat + description:Plus 5 bricks worth plus 9 + code:BDBC-0F65 + cheat + description:Start with 2 credits + code:DF66-DDA0 + cheat + description:Start with 6 credits + code:D966-DDA0 + cheat + description:Start with 8 credits + code:D566-DDA0 + cheat + description:Start with 10 credits + code:DB66-DDA0 + +cartridge sha256:190742792a950a112f893cba0e083eb787cf24293f698967defff929635ba0e7 + name:Operation Logic Bomb - The Ultimate Search & Destroy (USA) + cheat + description:Infinite health + code:C2B5-4DD0 + cheat + description:Take minimal damage + code:33C6-C704 + cheat + description:Faster left-to-right movement + code:E2B2-1F00+D4BA-1700 + cheat + description:Faster up-and-down movement + code:E2BD-CFA0+D4B3-1FA0 + cheat + description:Reflecting laser fire travels longer + code:1DB2-44D9 + cheat + description:Reflecting laser fire travels a lot longer + code:EEB2-44D9 + cheat + description:Start with 1 continue + code:DFB4-1FD4 + cheat + description:Start with 6 continues + code:D1B4-1FD4 + cheat + description:Start with 9 continues + code:DBB4-1FD4 + cheat + description:Start with tracking missiles + code:D7BD-1D64+4DBE-4DD4+40BD-1FD4 + cheat + description:Start with reflecting laser + code:D0BD-1D64+4DBE-4DD4+40BD-1FD4 + cheat + description:Start with flame thrower + code:D9BD-1D64+4DBE-4DD4+40BD-1FD4 + cheat + description:Start with hologram weapon + code:DFBF-1FD4+BABF-14D4+BABF-14A4 + cheat + description:Start with directional mines + code:D4BF-1FD4+BABF-14D4+BABF-14A4 + cheat + description:Infinite health (alt) + code:819070:AD + cheat + description:Infinite weapons + code:03ED4E:01 + cheat + description:Start with Tracking Missiles (alt) + code:8098F0:20+809902:03+809904:24 + cheat + description:Start with Reflecting Laser (alt) + code:8098F0:20+809902:04+809904:24 + cheat + description:Start with Flame Thrower (alt) + code:8098F0:20+809902:05+809904:24 + cheat + description:Start with Hologram weapon (alt) + code:809914:01+809918:9C+80991B:9C + cheat + description:Start with Directional Mines (alt) + code:809914:02+809918:9C+80991B:9C + cheat + description:Faster left-to-right movement (alt) + code:8191CD:02+8191D5:FD + cheat + description:Faster up-and-down movement (alt) + code:8191E7:02+819207:FD + cheat + description:Reflecting laser fire travels a lot longer (alt) + code:8194D8:FF + +cartridge sha256:2ec71aca4efc3791b6b3e65956df3eafd2a46e223d5ea71aead07d30ca48b6c9 + name:Operation Starfi5h (Europe) + cheat + description:Infinite health + code:7EFB05:03 + cheat + description:Infinite lives + code:7EFB03:03 + +cartridge sha256:5cbed0401734142184166917427d24f9e5f107a7adea665e2f4b4101491ad54b + name:Operation Thunderbolt (USA) + cheat + description:Infinite health + code:7E36EA:63 + cheat + description:Infinite Bullets + code:7E36ED:09 + cheat + description:Infinite Rockets + code:7E36EF:09 + cheat + description:Infinite Clips + code:7E36EE:09 + +cartridge sha256:0c08e6b817e4d0b333acb910a0bde3d79bd2dc188defc5df9a7c1233fa81c98d + name:Oscar (USA) + cheat + description:Invincibility + code:7E0320:03 + cheat + description:Invincibility (alt) + code:7E05B6:FF + cheat + description:Infinite lives + code:7E0322:0A + cheat + description:All Oscars found + code:7E0324:00 + cheat + description:No Oscars to find + code:7E0324:00 + cheat + description:Multi-jump + code:7E0C7E:00+7E0C7F:00 + +cartridge sha256:db44f8b58a31b640a47aa4390101c3c6a5f613e4e49c636d44786278033dec19 + name:Outlander (USA) + cheat + description:Infinite health while in the car + code:C260-CF07+C260-6F07 + cheat + description:Almost infinite health while out of the car (except when you eat poisonous food) + code:C9B6-450D + cheat + description:Infinite handgun ammo + code:DD69-45A4 + cheat + description:Infinite surface-to-air missiles on pick-up + code:C285-C7D9 + cheat + description:Car ammo worth nothing on pick-up + code:DD67-C1A4 + cheat + description:Car ammo worth more on pick-up + code:D467-C5D4 + cheat + description:Water worth nothing on pick-up + code:DD63-C0A4 + cheat + description:Water worth more on pick-up + code:DF63-C9D4 + cheat + description:Hand gun ammo worth nothing on pick-up + code:DD66-C064 + cheat + description:Food worth nothing on pick-up + code:DD6A-C0D4 + cheat + description:Gas can worth nothing on pick-up + code:DD6F-C004 + cheat + description:Gas can worth more on pick-up + code:D46F-C064 + cheat + description:Start with more car ammo + code:D980-47A1 + cheat + description:Start with less car ammo + code:DD80-47A1 + cheat + description:Start with more handgun ammo + code:1A89-4FD1 + cheat + description:Start with less handgun ammo + code:FD89-4FD1 + cheat + description:Start with more fuel + code:D480-4F61 + +cartridge sha256:582548dc86598a3557e9e3c27285c81964b006a954affe5c73948da5375ea11c + name:Out of This World (USA) + cheat + description:First three shields are infinite + code:7E0D84:E7+7E0D8A:E7+7E0D90:E7 + cheat + description:Infinite ammo in levels that have guns + code:7E0C4E:80+7E0C4F:80 + +cartridge sha256:54b2f03393109ac7fd36d8c7752f15a44d9607ab0187a371b853191db3592c01 + name:Out to Lunch (USA) + cheat + description:Infinite lives + code:7E0088:63 + cheat + description:Score modifier + code:7E0009:63 + +cartridge sha256:10c8abce67b49f8afbe880d2f13e0fd6d5efc162df34d5941e4a94851f23b2ff + name:Pac-Attack (USA) + cheat + description:Fairy bar is always full (normal mode) + code:7E160E:FF + +cartridge sha256:7fe4cb9c294d66589ff78e225774471ecb7db80df25f2b6199ca25671358072b + name:Pac-in-Time (USA) + cheat + description:Infinite health + code:7E1533:BF + cheat + description:Infinite lives + code:7E0AD5:02 + cheat + description:Instant exit + code:7E0B03:00 + +cartridge sha256:4cb52ba751c42d9e12ca429e5d657622a370b608002880a997f64de453f0de20 + name:Pac-Man 2 - The New Adventures (USA) + cheat + description:Infinite power pellets + code:C288-3FDB + cheat + description:Have Rope-Way and Train Pass + code:7E0500:04 + cheat + description:Have all 3 Power Pellets + code:7E0506:03 + cheat + description:Have all 3 Cartridges + code:7E0507:07 + cheat + description:Have all 3 I.D. Cards + code:7E0508:07 + cheat + description:Have Milk + code:7E0509:01 + +cartridge sha256:46286d0839a4397fc4c067b39783f98d2aefeca870a468bae601a1434f1dde90 + name:Paladin's Quest (USA) + cheat + description:Level 99 after one battle + code:6D63-6701+6D6E-6401 + cheat + description:Infinite health + code:10B5-6405 + cheat + description:Spells use up no HP + code:108E-AF00 + cheat + description:No money needed in toolhouse and weapon shop + code:BA88-6481 + cheat + description:No money needed in learning center + code:BA3A-04BE + cheat + description:Spell power increases at 2x normal rate + code:D063-D401 + cheat + description:Spell power increases at 3x normal rate + code:D163-D401 + cheat + description:Chezni starts with 255 max HP + code:EEEB-6D1F + cheat + description:Chezni starts with 255 present HP + code:EEE6-673F + cheat + description:Chezni starts with 40 Power, 42 Attack + code:46EB-6D3F + cheat + description:Chezni starts with 60 Power, 62 Attack + code:7AEB-6D3F + cheat + description:Chezni starts with 42 Defense, 30 Endurance + code:F3EB-6F3F + cheat + description:Chezni starts with 72 Defense, 60 Endurance + code:7AEB-6F3F + cheat + description:Chezni starts with 30 Speed + code:F3EB-6F1F + cheat + description:Chezni starts with 60 Speed + code:7AEB-6F1F + cheat + description:Chezni starts with a bow + code:D6EA-6F1D + cheat + description:Chezni starts with a light sword + code:D2EA-6F1D + cheat + description:Chezni starts with a mid sword + code:FDEA-6F1D + cheat + description:Chezni starts with a Aybro Spear + code:FCEA-6F1D + cheat + description:Chezni starts with a heavy sword + code:F5EA-6F1D + cheat + description:Chezni starts with a wind sword + code:7DEA-6F1D + cheat + description:Chezni starts with HST + code:70EA-6F1D + cheat + description:Chezni starts with Gomutai + code:9FEA-6F1D + cheat + description:Chezni starts with a Psych Beam + code:54EA-6F1D + cheat + description:Chezni starts with a flame thrower + code:57EA-6F1D + cheat + description:Chezni starts with light armor + code:D8EA-6FCD + cheat + description:Chezni starts with mid armor + code:DEEA-6FCD + cheat + description:Chezni starts with heavy armor + code:FAEA-6FCD + cheat + description:Chezni starts with storm armor + code:7FEA-6FCD + cheat + description:Chezni starts with bib + code:77EA-6FCD + cheat + description:Chezni starts with wood boots + code:D4EA-6F3D + cheat + description:Chezni starts with long boots + code:F8EA-6F3D + cheat + description:Chezni starts with knife boots + code:40EA-6F3D + cheat + description:Chezni starts with mid boots + code:F9EA-6F3D + cheat + description:Chezni starts with sun helm + code:74EA-6D3D + cheat + description:Chezni starts with leather helm + code:D9EA-6D3D + cheat + description:Chezni starts with helmet + code:DAEA-6D3D + cheat + description:Chezni starts with rage helmet + code:4AEA-6D3D + cheat + description:Chezni starts with power helmet + code:F1EA-6D3D + cheat + description:Chezni starts with cosmo helmet + code:55EA-6D3D + cheat + description:Chezni starts with gabni shield + code:79EA-6F4D + cheat + description:Chezni starts with leather shield + code:71EA-6F4D + cheat + description:Chezni starts with pick-axe + code:DBEA-6F4D + cheat + description:Chezni starts with gauntlet + code:F0EA-6F4D + cheat + description:Chezni starts with fire shield + code:FBEA-6F4D + cheat + description:Chezni starts with Rft shield + code:59EA-6F4D + cheat + description:No random battles + code:7E1868:09 + cheat + description:Infinite high gold + code:7E17C3:0E + cheat + description:Character 1 - level 99 + code:7E15FA:63 + cheat + description:Character 1 - 9999 current HP + code:7E15FE:0F+7E15FF:27 + cheat + description:Character 1 - 9999 max HP + code:7E1600:0F+7E1601:27 + cheat + description:Character 1 - 999 Power/Attack + code:7E1602:E7+7E1603:03 + cheat + description:Character 1 - 999 SP/Attack SP + code:7E1604:E7+7E1605:03 + cheat + description:Character 1 - 999 Defense/Endurance + code:7E1606:E7+7E1607:03 + cheat + description:Character 1 - 999 Luck + code:7E1608:E7+7E1608:03 + cheat + description:Character 1 - 99 available Magic + code:7E160F:63 + cheat + description:Character 1 - 127 E Spirit + code:7E1610:7F + cheat + description:Character 1 - 127 W Spirit + code:7E1611:7F + cheat + description:Character 1 - 127 F Spirit + code:7E1612:7F + cheat + description:Character 1 - 127 Sk Spirit + code:7E1613:7F + cheat + description:Character 1 - 127 L Spirit + code:7E1614:7F + cheat + description:Character 1 - 127 A Spirit + code:7E1615:7F + cheat + description:Character 1 - 127 MT Spirit + code:7E1616:7F + cheat + description:Character 1 - 127 SP Spirit + code:7E1617:7F + cheat + description:Character 1 - 25 spells + code:7E16DD:25 + cheat + description:Character 2 - level 99 + code:7E1620:63 + cheat + description:Character 2 - 9999 current HP + code:7E1624:0F+7E1625:27 + cheat + description:Character 2 - 9999 max HP + code:7E1626:0F+7E1627:27 + cheat + description:Character 2 - 999 Power/Attack + code:7E1628:E7+7E1629:03 + cheat + description:Character 2 - 999 SP/Attack SP + code:7E162A:E7+7E162B:03 + cheat + description:Character 2 - 999 Defense/Endurance + code:7E162C:E7+7E162D:03 + cheat + description:Character 2 - 999 Luck + code:7E162E:E7+7E162E:03 + cheat + description:Character 2 - 99 available Magic + code:7E1635:63 + cheat + description:Character 2 - 127 E Spirit + code:7E1636:7F + cheat + description:Character 2 - 127 W Spirit + code:7E1637:7F + cheat + description:Character 2 - 127 F Spirit + code:7E1638:7F + cheat + description:Character 2 - 127 Sk Spirit + code:7E1639:7F + cheat + description:Character 2 - 127 L Spirit + code:7E163A:7F + cheat + description:Character 2 - 127 A Spirit + code:7E163B:7F + cheat + description:Character 2 - 127 MT Spirit + code:7E163C:7F + cheat + description:Character 2 - 127 SP Spirit + code:7E163D:7F + cheat + description:Character 2 - 25 spells + code:7E1703:25 + cheat + description:Character 3 - level 99 + code:7E1646:63 + cheat + description:Character 3 - 9999 current HP + code:7E164A:0F+7E164B:27 + cheat + description:Character 3 - 9999 max HP + code:7E164C:0F+7E164D:27 + cheat + description:Character 3 - 999 Power/Attack + code:7E164E:E7+7E164F:03 + cheat + description:Character 3 - 999 SP/Attack SP + code:7E1650:E7+7E1651:03 + cheat + description:Character 3 - 999 Defense/Endurance + code:7E1652:E7+7E1653:03 + cheat + description:Character 3 - 999 Luck + code:7E1654:E7+7E1654:03 + cheat + description:Character 3 - 99 available Magic + code:7E165B:63 + cheat + description:Character 3 - 127 E Spirit + code:7E165C:7F + cheat + description:Character 3 - 127 W Spirit + code:7E165D:7F + cheat + description:Character 3 - 127 F Spirit + code:7E165E:7F + cheat + description:Character 3 - 127 Sk Spirit + code:7E165F:7F + cheat + description:Character 3 - 127 L Spirit + code:7E1660:7F + cheat + description:Character 3 - 127 A Spirit + code:7E1661:7F + cheat + description:Character 3 - 127 MT Spirit + code:7E1662:7F + cheat + description:Character 3 - 127 SP Spirit + code:7E1663:7F + cheat + description:Character 3 - 25 spells + code:7E1729:25 + cheat + description:Character 4 - level 99 + code:7E166C:63 + cheat + description:Character 4 - 9999 current HP + code:7E1670:0F+7E1671:27 + cheat + description:Character 4 - 9999 max HP + code:7E1672:0F+7E1673:27 + cheat + description:Character 4 - 999 Power/Attack + code:7E1674:E7+7E1675:03 + cheat + description:Character 4 - 999 SP/Attack SP + code:7E1676:E7+7E1677:03 + cheat + description:Character 4 - 999 Defense/Endurance + code:7E1678:E7+7E1679:03 + cheat + description:Character 4 - 999 Luck + code:7E167A:E7+7E167A:03 + cheat + description:Character 4 - 99 available Magic + code:7E1681:63 + cheat + description:Character 4 - 127 E Spirit + code:7E1682:7F + cheat + description:Character 4 - 127 W Spirit + code:7E1683:7F + cheat + description:Character 4 - 127 F Spirit + code:7E1684:7F + cheat + description:Character 4 - 127 Sk Spirit + code:7E1685:7F + cheat + description:Character 4 - 127 L Spirit + code:7E1686:7F + cheat + description:Character 4 - 127 A Spirit + code:7E1687:7F + cheat + description:Character 4 - 127 MT Spirit + code:7E1688:7F + cheat + description:Character 4 - 127 SP Spirit + code:7E1689:7F + cheat + description:Character 4 - 25 spells + code:7E174F:25 + +cartridge sha256:7cec4ffc3eda0441561717cf55927901b5fbbd669c254079f78ca74c67c4a17b + name:Paperboy 2 (USA) + cheat + description:Infinite papers + code:DD88-D464 + cheat + description:Infinite time in training course + code:DD67-D4D9 + cheat + description:Infinite lives (game still ends when all subscriptions are canceled) + code:DDBE-6404 + cheat + description:Paper bundles worth 0 if you have less than 10 + code:DD6D-6F60 + cheat + description:Paper bundles worth 5 if you have less than 10 + code:D96D-6F60 + cheat + description:Paper bundles worth 20 if you have less than 10 + code:F06D-6F60 + cheat + description:Paper bundles worth 30 if you have less than 10 + code:F36D-6F60 + cheat + description:Paper bundles worth 40 if you have less than 10 + code:466D-6F60 + cheat + description:Paper bundles worth 50 if you have less than 10 + code:746D-6F60 + cheat + description:Continue next life with 1 paper if you had less than 10 + code:DFC1-0FAF + cheat + description:Continue next life with 5 papers if you had less than 10 + code:D9C1-0FAF + cheat + description:Continue next life with 20 papers if you had less than 10 + code:F0C1-0FAF + cheat + description:Continue next life with 30 papers if you had less than 10 + code:F3C1-0FAF + cheat + description:Continue next life with 40 papers if you had less than 10 + code:46C1-0FAF + cheat + description:Continue next life with 50 papers if you had less than 10 + code:74C1-0FAF + cheat + description:Start with 79 seconds instead of 39 in Week 1 training course + code:DB6A-ADA0 + cheat + description:Start with 59 seconds in Week 1 training course + code:D56A-ADA0 + cheat + description:Start with 19 seconds in Week 1 training course + code:D76A-ADA0 + cheat + description:Start with 25 papers instead of 10 + code:FBC6-DFAD + cheat + description:Start with 50 papers + code:74C6-DFAD + cheat + description:Start with 99 papers + code:17C6-DFAD + cheat + description:Start with 1 life instead of 5 - Paperboy + code:DFBF-A767 + cheat + description:Start with 3 lives - Paperboy + code:D7BF-A767 + cheat + description:Start with 7 lives - Paperboy + code:D5BF-A767 + cheat + description:Start with 9 lives - Paperboy + code:DBBF-A767 + cheat + description:Start with 25 lives - Paperboy + code:FBBF-A767 + cheat + description:Start with 50 lives - Paperboy + code:74BF-A767 + cheat + description:Start with 99 lives - Paperboy + code:17BF-A767 + cheat + description:Start with 1 life instead of 5 - Papergirl + code:DFB5-ADD7 + cheat + description:Start with 3 lives - Papergirl + code:D7B5-ADD7 + cheat + description:Start with 7 lives - Papergirl + code:D5B5-ADD7 + cheat + description:Start with 9 lives - Papergirl + code:DBB5-ADD7 + cheat + description:Start with 25 lives - Papergirl + code:FBB5-ADD7 + cheat + description:Start with 50 lives - Papergirl + code:74B5-ADD7 + cheat + description:Start with 99 lives - Papergirl + code:17B5-ADD7 + +cartridge sha256:14ad9d2fb8e6bb0f49bc9e53f3c472177653d1c24102169ade308a2fab8a8888 + name:Parodius Da! - Shinwa kara Owarai e (Japan) + cheat + description:Infinite lives + code:7E0098:03 + +cartridge sha256:c414a4084b3d03aba19496d2efdd68fcf826194d8f1308f5c98e3a7af2fcc063 + name:Peace Keepers, The (USA) + cheat + description:Invincibility + code:C229-CF07 + cheat + description:Infinite health + code:6E31-4DAD+B031-4FDD+D131-4F0D+5331-4F6D + cheat + description:One hit kills + code:102C-C7D3 + cheat + description:Hit anywhere + code:3DA1-C7D1+58A5-CDD1+DDA1-C701+D5A1-C761+FDA1-C7A1 + +cartridge sha256:5c0b5266a191852ca593235f07180e673cb79e3f0b0dd31f65808eef83bf6e90 + name:PGA Tour Golf (USA) + cheat + description:Ball goes in from anywhere + code:6D85-67AD+6DCC-ADD7 + cheat + description:Allow 14 clubs for full set instead of 13 + code:D235-6D07+D22A-D40F + cheat + description:Allow 15 clubs for full set + code:D335-6D07+D32A-D40F + cheat + description:Allow 16 clubs for full set + code:DE35-6D07+DE2A-D40F + cheat + description:No wind + code:6DC8-6DD7 + cheat + description:Constant wind of 10 mph + code:CBC8-6DD7+DDC8-6D67+DCC8-6D07 + cheat + description:Constant wind direction to the left + code:BACA-64D7 + cheat + description:Each round ends after hole 1 + code:DFA7-A704 + cheat + description:Each round ends after hole 2 + code:D4A7-A704 + cheat + description:Each round ends after hole 3 + code:D7A7-A704 + cheat + description:Each round ends after hole 4 + code:D0A7-A704 + cheat + description:Each round ends after hole 5 + code:D9A7-A704 + cheat + description:Each round ends after hole 6 + code:D1A7-A704 + cheat + description:Each round ends after hole 7 + code:D5A7-A704 + cheat + description:Each round ends after hole 8 + code:D6A7-A704 + cheat + description:Each round ends after hole 9 + code:DBA7-A704 + cheat + description:Each round ends after hole 10 + code:DCA7-A704 + cheat + description:Each round ends after hole 11 + code:D8A7-A704 + cheat + description:Each round ends after hole 12 + code:DAA7-A704 + cheat + description:Each round ends after hole 13 + code:D2A7-A704 + cheat + description:Each round ends after hole 14 + code:D3A7-A704 + cheat + description:Each round ends after hole 15 + code:DEA7-A704 + cheat + description:Each round ends after hole 16 + code:FDA7-A704 + cheat + description:Each round ends after hole 17 + code:FFA7-A704 + +cartridge sha256:0663330bc061f4b768fa1806610878ef6e6cf546f36041ae087c8e55703693b8 + name:Phalanx (USA) + cheat + description:Infinite health + code:3C21-AD0F + cheat + description:Infinite lives + code:DD2A-64AF + cheat + description:Infinite credits + code:DD63-DD04 + cheat + description:Hit anywhere + code:C230-6DDD+DD34-64DD+DD34-670D+DD3F-640D+DD3F-676D + cheat + description:Once power-up has been obtained, it is not lost until you continue (doesn't work for weapon, only power-ups) + code:C229-D7A4 + cheat + description:Power capsule restores armor to full strength + code:9D23-6DAF+6723-6FDF + cheat + description:Power capsule has no effect on armor or power-up + code:1D23-6D6F + cheat + description:Start with 1 credit instead of 4 + code:DFA8-05E3+DF2D-015A + cheat + description:Start with 2 credits + code:D4A8-05E3+D42D-015A + cheat + description:Start with 3 credits + code:D7A8-05E3+D72D-015A + cheat + description:Start with 5 credits + code:D9A8-05E3+D92D-015A + cheat + description:Start with 7 credits + code:D5A8-05E3+D52D-015A + cheat + description:Start with 10 credits + code:FDA8-05E3+FD2D-015A + cheat + description:Start with 1 life + code:DFA8-00E3+DF2D-008A + cheat + description:Start with 2 lives + code:D4A8-00E3+D42D-008A + cheat + description:Start with 3 lives + code:D7A8-00E3+D72D-008A + cheat + description:Start with 4 lives + code:D0A8-00E3+D02D-008A + cheat + description:Start with 6 lives + code:D1A8-00E3+D12D-008A + cheat + description:Start with 11 lives + code:FFA8-00E3+FF2D-008A + cheat + description:Start with 26 lives + code:41A8-00E3+412D-008A + cheat + description:Start with 51 lives + code:9FA8-00E3+9F2D-008A + cheat + description:Start with 100 lives + code:BCA8-00E3+BC2D-008A + cheat + description:Start on mission 2 + code:D42F-007A+D4AA-01E3 + cheat + description:Start on mission 3 + code:D72F-007A+D7AA-01E3 + cheat + description:Start on mission 4 + code:D02F-007A+D0AA-01E3 + cheat + description:Start on mission 5 + code:D92F-007A+D9AA-01E3 + cheat + description:Start on mission 6 + code:D12F-007A+D1AA-01E3 + cheat + description:Start on mission 7 + code:D52F-007A+D5AA-01E3 + cheat + description:Start on mission 8 + code:D62F-007A+D6AA-01E3 + cheat + description:After losing a life automatically finish level, gain 99 lives and retain all power-ups + code:00D83A:AD + cheat + description:Infinite lives (alt) + code:00D6CB:00 + +cartridge sha256:be1bf238d76b74bfcc0b86a899b8caedd0a49c105576c659b56045c85512a166 + name:Phantom 2040 (USA) (Beta) + cheat + description:Invincibility after first hit + code:3367-3760 + cheat + description:Infinite lives + code:C2AF-CFD9 + cheat + description:Infinite weapon energy + code:C2AA-14A9 + cheat + description:Access all weapons (highlight weapon and press X to equip) + code:B23B-34D9 + +cartridge sha256:b7291088f5c49e1fc55bf932076ec03f7b39f6e409ae06e884b57024c56cdc87 + name:Phantom 2040 (USA) + cheat + description:Invincibility + code:3365-3DD0+3361-34A0 + cheat + description:Infinite lives + code:62AF-34D9 + cheat + description:Infinite weapon energy + code:C2A2-CF69 + cheat + description:Access all weapons (highlight weapon and press X to equip) + code:233E-3FD9 + +cartridge sha256:03d0127f5de3237e22ad00de0c20763274da7b71142dde693240ac96d10983a3 + name:Pilotwings (USA) + cheat + description:Infinite fuel + code:108D-0FA7 + cheat + description:Infinite time (disable to detach hang glider from plane) + code:DD8E-AFD5 + cheat + description:Reduce gravity + code:4DE7-CD0F + cheat + description:Increase gravity + code:CDE7-CD0F + cheat + description:Increase rocket pack thrust power 3x + code:E2EF-6F0F + +cartridge sha256:3a52bf09850aa054dca443f7ea74d43f201dffecc40326924ecba9b0f1450e43 + name:Pinball Dreams (USA) + cheat + description:Slow motion + code:C763-3DD4 + cheat + description:Ball attracts to the top + code:13C9-CDDF + cheat + description:Ball attracts to the side + code:13CF-CDDF + cheat + description:Spastic ball + code:BECC-CD0F + +cartridge sha256:0888d20ab2f834c77b0a2dc2162c43890a1640adc78c6b0bb5892ca8d5008ad3 + name:Pinball Fantasies (USA) + cheat + description:Infinite balls + code:7E00B8:03 + +cartridge sha256:d0f4a5040ecf96dc49aa0084160e291a38f2ee75319750db4d6687ab36828da9 + name:Pink Goes to Hollywood (USA) + cheat + description:Invincibility + code:1DB0-C7AA+1DB9-3F62+1DB1-CFA2 + cheat + description:Invincibility (alt) + code:7E0201:FF + cheat + description:Infinite lives + code:7E01FF:03 + cheat + description:Infinite time + code:7E0203:09 + cheat + description:Have 99 tricks + code:7E0217:99 + cheat + description:Have 9 of every token + code:7E01B9:09+7E01BB:09+7E01BD:09+7E01BF:09+7E01C1:09 + +cartridge sha256:fe7b861504886b40207d777cfc0dce76778b5fd8e679a67d04c9ded98cd1e59e + name:Pinocchio (Europe) + cheat + description:Infinite health + code:7E03D8:28 + cheat + description:Infinite lives + code:7E03DE:03 + +cartridge sha256:98c51c3bb577600fe79577c323333a791baa30904f37c695890e6e380b75e3c8 + name:Pinocchio (USA) + cheat + description:Infinite health + code:7E03D8:50 + cheat + description:Infinite lives + code:7E03DE:05 + cheat + description:Enable level select + code:7E201C:FF + +cartridge sha256:447dfa710e69479159e9d407474fbf5f67d3a3330ab0c7627afd123ded3fdb3a + name:Pirates of Dark Water, The (USA) + cheat + description:Invincibility + code:C28B-47D4 + cheat + description:Health refills about every 15 seconds + code:4F82-17AF+D583-1DDF + cheat + description:Infinite health + code:DD82-14AF + cheat + description:Infinite health (alt) + code:622B-37D8+CB2B-3468+962B-34A8 + cheat + description:Infinite special attacks (no health loss) + code:DDA5-1DDF + cheat + description:Infinite lives + code:C280-1F6F + cheat + description:Hit anywhere + code:40A0-C7DD+40AA-370D+62A4-C70D+6DA9-CFDD+6DA9-34DD+6DAF-CFAD+75A4-C76D+D5A4-C7AD+F0AF-C4DD + cheat + description:One hit kills + code:3CAF-3DAF+3CAF-3FDF+CBAF-3F0F+5EAF-3F6F + cheat + description:1/2 health after 1st hit (1st life only) + code:4D65-1FF5+4D63-440E + cheat + description:Start with less health (after 1st life) + code:4DB0-CFDF + cheat + description:Start with 6 lives (not when joining in) + code:D9C8-4DA4 + cheat + description:Start with 2 lives (not when joining in) + code:DFC8-4DA4 + +cartridge sha256:c2a1a66648a0a0bfe2f201cf4f926d138e410fbf85ecf436ccb9aac70c0df3de + name:Pit-Fighter (USA) + cheat + description:Infinite super powers after gaining one + code:DD32-6700 + cheat + description:Executioner in match 1 has less health + code:10C6-07DF + cheat + description:Executioner in match 1 has more health + code:DFC6-070F + cheat + description:C.C. has less health in match 2 + code:10CB-07DF+DDCB-070F + cheat + description:C.C. has more health in match 2 + code:D4CB-070F + cheat + description:Angel has less health in match 3 + code:10C8-07DF + cheat + description:Angel has more health in match 3 + code:DFC8-070F + cheat + description:All opponents have less health + code:C485-0DD7+DD85-0D07+10C6-07DF + cheat + description:All opponents have more health + code:C485-0DD7+DD85-0D07+10C6-07DF+D4C6-070F + cheat + description:Start with more health + code:EEBF-A4D0 + cheat + description:Start with less health + code:74BF-A4D0 + cheat + description:Start with a lot more health + code:D4BF-A760 + cheat + description:Start with 3 super powers + code:D7B3-D769 + +cartridge sha256:e03d117d8b3093b0bbad5224638f85378b254b81eb304e506a732b4338802e0f + name:Pitfall - The Mayan Adventure (USA) + cheat + description:Infinite Stones of Pacal + code:DDA6-3D69 + cheat + description:Infinite Sling Stones + code:DDA5-1709 + cheat + description:Infinite Boomerangs + code:DDA5-3700 + cheat + description:Walk through walls + code:6D64-CDAF + cheat + description:Jump through ceilings + code:6D68-1FD4 + cheat + description:Get 2x energy from sacred hearts + code:746B-4D6A + cheat + description:Get 3x energy from sacred hearts + code:086B-4D6A + cheat + description:Sling stones do mega-damage + code:74A4-CF69 + cheat + description:Time keeper power-up lasts longer + code:ED6C-CDDA+D46C-CD0A + cheat + description:20 Stones of Pacal on pick-up + code:F06D-1D0A + cheat + description:Moon-jump + code:DD6F-C7A1 + cheat + description:Reset game to play original Pitfall infinitely + code:D3B5-1F0F + cheat + description:Replaces main game with original Pitfall + code:D389-4FAA + cheat + description:Start with 10 lives + code:DB6B-C4A1+DBC6-34DE + cheat + description:Start with 7 lives + code:D16B-C4A1+D1C6-34DE + cheat + description:Start with 2 lives + code:DF6B-C4A1+DFC6-34DE + cheat + description:Invincibility and invisibility + code:7E03CD:19 + cheat + description:Infinite health + code:7E10C1:FF + cheat + description:Infinite lives + code:7E00C0:03 + +cartridge sha256:72b2b3bead3fcd27a1610ad5d4d8be3235efeaff96df2e7858911992a5892d21 + name:Pocky & Rocky (USA) + cheat + description:Infinite health - Pocky + code:C933-A794 + cheat + description:Infinite health - Rocky + code:C93E-A797 + cheat + description:Infinite time + code:CB2D-DFDF + cheat + description:Infinite lives - Pocky + code:DDA7-AD65 + cheat + description:Infinite lives - Rocky + code:DD35-0761 + cheat + description:Weapons don't deplete when hit - Pocky + code:4032-A4F4 + cheat + description:Weapons don't deplete when hit - Pocky + code:4033-AFF7 + cheat + description:Blue ball acts as red ball - Pocky + code:D43F-6FF4 + cheat + description:Red ball acts as blue ball - Pocky + code:DF3D-6424 + cheat + description:Blue ball acts as red ball - Rocky + code:D43B-6F27 + cheat + description:Red ball acts as blue ball - Rocky + code:DF36-67B7 + cheat + description:9 lives stolen from Rocky (must have one life remaining) + code:DBAA-AD60 + cheat + description:9 lives stolen from Pocky (must have one life remaining) + code:DB3A-DD69 + cheat + description:Start with 1 life - Pocky + code:DF62-A7D4 + cheat + description:Start with 6 lives - Pocky + code:D162-A7D4 + cheat + description:Start with 9 lives - Pocky + code:DB62-A7D4 + cheat + description:Start with 1 life - Rocky + code:DF62-A704 + cheat + description:Start with 6 lives - Rocky + code:D162-A704 + cheat + description:Start with 9 lives - Rocky + code:DB62-A704 + cheat + description:Invincibility + code:01B67F:D0+01B67D:85 + cheat + description:Infinite health + code:7E0068:08 + cheat + description:Infinite time (alt) + code:7E0F12:9A + cheat + description:Infinite lives + code:7E006A:03 + cheat + description:Infinite Special + code:7E0066:02 + cheat + description:Infinite Shield + code:7E00E4:02 + +cartridge sha256:cc33ae02114ea18a86592de327b2b4bcc80728b11a5e4c61666dca71480d4169 + name:Pocky & Rocky 2 (USA) + cheat + description:Invincibility + code:039731:60+069739:60 + cheat + description:Infinite time + code:7E7064:76 + cheat + description:Infinite time (alt) + code:7E7064:79+7E7062:79+7E7060:79 + cheat + description:Infinite lives + code:7E19F4:03 + cheat + description:Infinite Keys + code:7E05B2:99 + cheat + description:Max Card + code:7E19F6:02 + cheat + description:Infinite hearts when riding Spirit Dog + code:7E19F2:05 + +cartridge sha256:000f4534a0376958edcc7ae3e6c5a7ea0dd6a775646207f60ad3923e27f110f3 + name:Pop'n TwinBee - Rainbow Bell Adventures (Europe) + cheat + description:Infinite health + code:7E02EC:64 + +cartridge sha256:5e580f220ed16281df8ee9a5f450b553f39f8c4078d3f3048d66bda15f98e19f + name:Populous (USA) + cheat + description:Allows you to select any world from the Conquer screen with the B and X buttons + code:DD30-64DD + cheat + description:Your population starts at 10 instead of 3 for battles 0-4 + code:DC6C-6F09 + cheat + description:Your population starts at 20 for battles 0-4 + code:F06C-6F09 + cheat + description:Your population starts at 30 for battles 0-4 + code:F36C-6F09 + cheat + description:His population starts at 10 instead of 3 for battles 0-4 + code:DC6C-6F69 + cheat + description:His population starts at 20 for battles 0-4 + code:F06C-6F69 + cheat + description:His population starts at 30 for battles 0-4 + code:F36C-6F69 + cheat + description:You have no Supreme Commands available for battles 0-4 + code:DD6C-6D69 + cheat + description:He has all Supreme Commands available for battles 0-4 + code:7E6C-6D09 + cheat + description:Your population starts at 10 instead of 3 for battles 5-9 + code:DC6C-67A9 + cheat + description:Your population starts at 20 for battles 5-9 + code:F06C-67A9 + cheat + description:Your population starts at 30 for battles 5-9 + code:F36C-67A9 + cheat + description:His population starts at 10 instead of 3 for battles 5-9 + code:DC68-6DD9 + cheat + description:His population starts at 20 for battles 5-9 + code:F068-6DD9 + cheat + description:His population starts at 30 for battles 5-9 + code:F368-6DD9 + cheat + description:You have no Supreme Commands available for battles 5-9 + code:DD6C-67D9 + cheat + description:He has all Supreme Commands available for battles 5-9 + code:7E6C-64A9 + cheat + description:Your population starts at 10 instead of 2 for battles 10-14 + code:DC68-6409 + cheat + description:Your population starts at 20 for battles 10-14 + code:F068-6409 + cheat + description:Your population starts at 30 for battles 10-14 + code:F368-6409 + cheat + description:His population starts at 10 instead of 2 for battles 10-14 + code:DC68-6469 + cheat + description:His population starts at 20 for battles 10-14 + code:F068-6469 + cheat + description:His population starts at 30 for battles 10-14 + code:F368-6469 + cheat + description:You have no Supreme Commands available for battles 10-14 + code:DD68-6F69 + cheat + description:He has all Supreme Commands available for battles 10-14 + code:7E68-6F09 + +cartridge sha256:ee9759fdb590ba908f569c2bb8a63703d282b58b84bd1fe0a472ea47685acdc5 + name:Porky Pig's Haunted Holiday (USA) + cheat + description:Invincibility (blinking) + code:C9C3-D708 + cheat + description:Don't flash after geting hit + code:DD26-D4DB + cheat + description:Don't flash as long after geting hit + code:F426-D4DB + cheat + description:Flash longer after geting hit + code:EE26-D4DB + cheat + description:Cupcakes are worth 0 + code:DD6F-6FDE + cheat + description:Cupcakes are worth 2 + code:D46F-6FDE + cheat + description:Cupcakes are worth 5 + code:D96F-6FDE + cheat + description:Cupcakes are worth 10 + code:DC6F-6FDE + cheat + description:Cupcakes are worth 15 + code:DE6F-6FDE + cheat + description:Start with 1 life + code:DDC6-DFAD + cheat + description:Start with 7 lives + code:D1C6-DFAD + cheat + description:Start with 10 lives + code:DBC6-DFAD + cheat + description:Start with 1 heart + code:DFC6-D46D + cheat + description:Start with 2 hearts + code:D4C6-D46D + cheat + description:Start with 8 hearts + code:D6C6-D46D + cheat + description:Start with 10 hearts + code:DCC6-D46D + cheat + description:Infinite health + code:7E0EAA:04 + cheat + description:Infinite Cupcakes + code:7E0E9F:63 + cheat + description:Infinite lives + code:7E0E9E:09 + +cartridge sha256:06c8fc466805f97c9147711b2d8370d4f4d05d9fa3a916f17aa1682f73c9a63b + name:Power Instinct (USA) + cheat + description:Hit anywhere - P1 + code:3DA2-E4BF+DDA2-E7FF+EDA2-E79F+FAA2-E7BF + +cartridge sha256:0288ec049723cd0c7f1148cdc1aef0b6922b8a756affe373c99d5690e0dfceaa + name:Power Piggs of the Dark Age (USA) + cheat + description:Invincibility + code:1DB7-C40F+6DB1-CF0D + cheat + description:Multi-jump + code:4066-CFA7+D5EA-44DC + cheat + description:Partial invincibility + code:7E06A4:3F + cheat + description:Infinite health + code:7E147E:00 + cheat + description:Infinite lives + code:7E1500:09 + cheat + description:Infinite Doughnuts + code:7E1505:09 + cheat + description:Start on level Beautiful Downtown Pigg + code:7E1874:00 + cheat + description:Start on level Dark Age Donut + code:7E1874:01 + cheat + description:Start on level North Blowhole Forest + code:7E1874:02 + cheat + description:Start on level Road to Wolff Castle + code:7E1874:03 + +cartridge sha256:8f387d083de1399bb79e5312c31a6f1757f2a536bfa25cecf1aea77bfd77058b + name:Prehistorik Man (USA) (En,Fr,Es) + cheat + description:Invincibility + code:7E00B6:03 + cheat + description:Infinite health + code:7E0558:03 + cheat + description:Infinite lives + code:7E0556:03 + cheat + description:Infinite Shout + code:7E056C:0A + cheat + description:Infinite ammo + code:7E0564:99 + cheat + description:Level modifier (first level must be cleared before the code actually works) + code:7E052A:## + cheat + description:Lots of bones + code:7E0560:99+7E0561:09 + cheat + description:Have 99 diamonds (disable after you finish the level) + code:7E0814:99 + +cartridge sha256:55376715f243b1bacd9aeecf1092bbc7837fe512592a2c1703d24b0829fc1934 + name:Primal Rage (USA) + cheat + description:Infinite time + code:C20F-E767 + cheat + description:Press down 3 times then start at the Start/Options screen for a hidden menu + code:D925-846F + cheat + description:Able to select as many credits as you want in the options screen + code:BB54-87AB + cheat + description:Select different times in the options screen + code:FD1D-7DD4 + cheat + description:Start with less health + code:0DA5-876D + cheat + description:Infinite health - P1 + code:7E1926:00 + cheat + description:Infinite health - P2 + code:7E1928:00 + cheat + description:One hit kills - P1 + code:7E210C:01 + cheat + description:One hit kills - P2 + code:7E210E:01 + cheat + description:Infinite fatality time + code:7E0270:00+7E02CE:54 + cheat + description:Freeplay activated + code:7E2114:01 + +cartridge sha256:494190cd6d7fd68882cbe255a6e237d9c4bdaf3988615ede0297a5e285ad5dd9 + name:Prince of Persia (USA) + cheat + description:Infinite time + code:6D32-0FA1+DC32-04D1 + cheat + description:Non-fatal injuries do no damage + code:BAA6-ADA5 + cheat + description:Non-fatal falls do no damage + code:43C9-6D61 + cheat + description:Non-fatal falls do 2 points of damage instead of 1 + code:D4C1-6701 + cheat + description:Falls do no damage except spikes (if you get stuck choose End Game and use a password to start the level over) + code:6DC0-6701 + cheat + description:All enemies have 1 health point + code:C260-A701+DF6C-DFA0 + cheat + description:All enemies have 2 health points + code:C260-A701+D46C-DFA0 + cheat + description:All enemies have 3 health points + code:C260-A701+D76C-DFA0 + cheat + description:All enemies have 4 health points + code:C260-A701+D06C-DFA0 + cheat + description:All enemies have 5 health points + code:C260-A701+D96C-DFA0 + cheat + description:All enemies have 10 health points + code:C260-A701+DC6C-DFA0 + cheat + description:Enemies defeated immediately (disable on bosses) + code:BA69-ADA1 + cheat + description:Start with 2 health points instead of 3 + code:D430-04A5 + cheat + description:Start with 4 health points + code:D030-04A5 + cheat + description:Start with 5 health points + code:D930-04A5 + cheat + description:Start with 6 health points + code:D130-04A5 + cheat + description:Start with 7 health points + code:D530-04A5 + cheat + description:Start with 8 health points + code:D630-04A5 + cheat + description:Start with 9 health points + code:DB30-04A5 + cheat + description:Start with 15 health points + code:FD30-04A5 + cheat + description:Start on level 2 + code:DFB7-D46E + cheat + description:Start on level 3 + code:D4B7-D46E + cheat + description:Start on level 4 + code:D7B7-D46E + cheat + description:Start on level 5 + code:D0B7-D46E + cheat + description:Start on level 6 + code:D9B7-D46E + cheat + description:Start on level 7 + code:D1B7-D46E + cheat + description:Start on level 8 + code:D5B7-D46E + cheat + description:Start on level 9 + code:D6B7-D46E + cheat + description:Start on level 10 + code:DBB7-D46E + cheat + description:Start on level 11 + code:DCB7-D46E + cheat + description:Start on level 12 + code:D8B7-D46E + cheat + description:Start on level 13 + code:DAB7-D46E + cheat + description:Start on level 14 + code:D2B7-D46E + cheat + description:Start on level 15 + code:D3B7-D46E + cheat + description:Start on level 16 + code:DEB7-D46E + cheat + description:Start on level 17 + code:FDB7-D46E + cheat + description:Start on level 18 + code:FFB7-D46E + cheat + description:Start on level 19 + code:F4B7-D46E + cheat + description:Start on level 20 + code:F7B7-D46E + +cartridge sha256:04ca1a481093c4a7e12f18b33697d6e05e50e30e0f5b1655aa265abd14719bba + name:Prince of Persia 2 (USA) + cheat + description:Infinite health + code:7E0957:03 + cheat + description:Infinite time + code:7E0B98:69 + cheat + description:Hit anywhere + code:40E0-C46F+40E0-C7AF+40E0-CD6F+40E1-C4AF+40E7-CF6F+40E7-C7DF+40E9-CFDF+40EA-1FAF + +cartridge sha256:65f7123ab4fc9bad24b1976da8e84976cc6977861626a05d4e2cce132ef3fd42 + name:Psycho Dream (Japan) + cheat + description:Invincibility (blinking) + code:DDB7-8D6D + cheat + description:Infinite time + code:DD7F-7407 + cheat + description:Infinite magic + code:69BE-77DF + cheat + description:Hit anywhere + code:6DDD-E71F+6DD4-EDCF+6DD7-EF3F+6DD0-E74F + cheat + description:Best weapon on pick-up + code:CBC7-74AD + +cartridge sha256:475c9baa1c2b76a6b3119e47d32814dc1c08e84e23250ae015bb0bccea915637 + name:Push-Over (USA) + cheat + description:Still can complete level even if time runs out + code:6D6B-6F0F + cheat + description:Tokens aren't lost when used to undo a push + code:3366-6F0F + cheat + description:Tokens aren't lost when used to advance when time runs out + code:3367-A4AF + cheat + description:Start on level 2 + code:CB66-AD6F+6266-AF0F+DF66-ADAF + cheat + description:Start on level 3 + code:CB66-AD6F+6266-AF0F+D466-ADAF + cheat + description:Start on level 4 + code:CB66-AD6F+6266-AF0F+D766-ADAF + cheat + description:Start on level 5 + code:CB66-AD6F+6266-AF0F+D066-ADAF + cheat + description:Start on level 6 + code:CB66-AD6F+6266-AF0F+D966-ADAF + cheat + description:Start on level 7 + code:CB66-AD6F+6266-AF0F+D166-ADAF + cheat + description:Start on level 8 + code:CB66-AD6F+6266-AF0F+D566-ADAF + cheat + description:Start on level 9 + code:CB66-AD6F+6266-AF0F+D666-ADAF + cheat + description:Start on level 10 + code:CB66-AD6F+6266-AF0F+DB66-ADAF + cheat + description:Start on level 11 + code:CB66-AD6F+6266-AF0F+DC66-ADAF + cheat + description:Start on level 12 + code:CB66-AD6F+6266-AF0F+D866-ADAF + cheat + description:Start on level 13 + code:CB66-AD6F+6266-AF0F+DA66-ADAF + cheat + description:Start on level 14 + code:CB66-AD6F+6266-AF0F+D266-ADAF + cheat + description:Start on level 15 + code:CB66-AD6F+6266-AF0F+D366-ADAF + cheat + description:Start on level 16 + code:CB66-AD6F+6266-AF0F+DE66-ADAF + cheat + description:Start on level 17 + code:CB66-AD6F+6266-AF0F+FD66-ADAF + cheat + description:Start on level 18 + code:CB66-AD6F+6266-AF0F+FF66-ADAF + cheat + description:Start on level 19 + code:CB66-AD6F+6266-AF0F+F466-ADAF + cheat + description:Start on level 20 + code:CB66-AD6F+6266-AF0F+F766-ADAF + cheat + description:Start on level 21 + code:CB66-AD6F+6266-AF0F+F066-ADAF + cheat + description:Start on level 22 + code:CB66-AD6F+6266-AF0F+F966-ADAF + cheat + description:Start on level 23 + code:CB66-AD6F+6266-AF0F+F166-ADAF + cheat + description:Start on level 24 + code:CB66-AD6F+6266-AF0F+F566-ADAF + cheat + description:Start on level 25 + code:CB66-AD6F+6266-AF0F+F666-ADAF + cheat + description:Start on level 26 + code:CB66-AD6F+6266-AF0F+FB66-ADAF + cheat + description:Start on level 27 + code:CB66-AD6F+6266-AF0F+FC66-ADAF + cheat + description:Start on level 28 + code:CB66-AD6F+6266-AF0F+F866-ADAF + cheat + description:Start on level 29 + code:CB66-AD6F+6266-AF0F+FA66-ADAF + cheat + description:Start on level 30 + code:CB66-AD6F+6266-AF0F+F266-ADAF + cheat + description:Start on level 31 + code:CB66-AD6F+6266-AF0F+F366-ADAF + cheat + description:Start on level 32 + code:CB66-AD6F+6266-AF0F+FE66-ADAF + cheat + description:Start on level 33 + code:CB66-AD6F+6266-AF0F+4D66-ADAF + cheat + description:Start on level 34 + code:CB66-AD6F+6266-AF0F+4F66-ADAF + cheat + description:Start on level 35 + code:CB66-AD6F+6266-AF0F+4466-ADAF + cheat + description:Start on level 36 + code:CB66-AD6F+6266-AF0F+4766-ADAF + cheat + description:Start on level 37 + code:CB66-AD6F+6266-AF0F+4066-ADAF + cheat + description:Start on level 38 + code:CB66-AD6F+6266-AF0F+4966-ADAF + cheat + description:Start on level 39 + code:CB66-AD6F+6266-AF0F+4166-ADAF + cheat + description:Start on level 40 + code:CB66-AD6F+6266-AF0F+4566-ADAF + cheat + description:Start on level 41 + code:CB66-AD6F+6266-AF0F+4666-ADAF + cheat + description:Start on level 42 + code:CB66-AD6F+6266-AF0F+4B66-ADAF + cheat + description:Start on level 43 + code:CB66-AD6F+6266-AF0F+4C66-ADAF + cheat + description:Start on level 44 + code:CB66-AD6F+6266-AF0F+4866-ADAF + cheat + description:Start on level 45 + code:CB66-AD6F+6266-AF0F+4A66-ADAF + cheat + description:Start on level 46 + code:CB66-AD6F+6266-AF0F+4266-ADAF + cheat + description:Start on level 47 + code:CB66-AD6F+6266-AF0F+4366-ADAF + cheat + description:Start on level 48 + code:CB66-AD6F+6266-AF0F+4E66-ADAF + cheat + description:Start on level 49 + code:CB66-AD6F+6266-AF0F+7D66-ADAF + cheat + description:Start on level 50 + code:CB66-AD6F+6266-AF0F+7F66-ADAF + cheat + description:Start on level 51 + code:CB66-AD6F+6266-AF0F+7466-ADAF + cheat + description:Start on level 52 + code:CB66-AD6F+6266-AF0F+7766-ADAF + cheat + description:Start on level 53 + code:CB66-AD6F+6266-AF0F+7066-ADAF + cheat + description:Start on level 54 + code:CB66-AD6F+6266-AF0F+7966-ADAF + cheat + description:Start on level 55 + code:CB66-AD6F+6266-AF0F+7166-ADAF + cheat + description:Start on level 56 + code:CB66-AD6F+6266-AF0F+7566-ADAF + cheat + description:Start on level 57 + code:CB66-AD6F+6266-AF0F+7666-ADAF + cheat + description:Start on level 58 + code:CB66-AD6F+6266-AF0F+7B66-ADAF + cheat + description:Start on level 59 + code:CB66-AD6F+6266-AF0F+7C66-ADAF + cheat + description:Start on level 60 + code:CB66-AD6F+6266-AF0F+7866-ADAF + cheat + description:Start on level 61 + code:CB66-AD6F+6266-AF0F+7A66-ADAF + cheat + description:Start on level 62 + code:CB66-AD6F+6266-AF0F+7266-ADAF + cheat + description:Start on level 63 + code:CB66-AD6F+6266-AF0F+7366-ADAF + cheat + description:Start on level 64 + code:CB66-AD6F+6266-AF0F+7E66-ADAF + cheat + description:Start on level 65 + code:CB66-AD6F+6266-AF0F+0D66-ADAF + cheat + description:Start on level 66 + code:CB66-AD6F+6266-AF0F+0F66-ADAF + cheat + description:Start on level 67 + code:CB66-AD6F+6266-AF0F+0466-ADAF + cheat + description:Start on level 68 + code:CB66-AD6F+6266-AF0F+0766-ADAF + cheat + description:Start on level 69 + code:CB66-AD6F+6266-AF0F+0066-ADAF + cheat + description:Start on level 70 + code:CB66-AD6F+6266-AF0F+0966-ADAF + cheat + description:Start on level 71 + code:CB66-AD6F+6266-AF0F+0166-ADAF + cheat + description:Start on level 72 + code:CB66-AD6F+6266-AF0F+0566-ADAF + cheat + description:Start on level 73 + code:CB66-AD6F+6266-AF0F+0666-ADAF + cheat + description:Start on level 74 + code:CB66-AD6F+6266-AF0F+0B66-ADAF + cheat + description:Start on level 75 + code:CB66-AD6F+6266-AF0F+0C66-ADAF + cheat + description:Start on level 76 + code:CB66-AD6F+6266-AF0F+0866-ADAF + cheat + description:Start on level 77 + code:CB66-AD6F+6266-AF0F+0A66-ADAF + cheat + description:Start on level 78 + code:CB66-AD6F+6266-AF0F+0266-ADAF + cheat + description:Start on level 79 + code:CB66-AD6F+6266-AF0F+0366-ADAF + cheat + description:Start on level 80 + code:CB66-AD6F+6266-AF0F+0E66-ADAF + cheat + description:Start on level 81 + code:CB66-AD6F+6266-AF0F+9D66-ADAF + cheat + description:Start on level 82 + code:CB66-AD6F+6266-AF0F+9F66-ADAF + cheat + description:Start on level 83 + code:CB66-AD6F+6266-AF0F+9466-ADAF + cheat + description:Start on level 84 + code:CB66-AD6F+6266-AF0F+9766-ADAF + cheat + description:Start on level 85 + code:CB66-AD6F+6266-AF0F+9066-ADAF + cheat + description:Start on level 86 + code:CB66-AD6F+6266-AF0F+9966-ADAF + cheat + description:Start on level 87 + code:CB66-AD6F+6266-AF0F+9166-ADAF + cheat + description:Start on level 88 + code:CB66-AD6F+6266-AF0F+9566-ADAF + cheat + description:Start on level 89 + code:CB66-AD6F+6266-AF0F+9666-ADAF + cheat + description:Start on level 90 + code:CB66-AD6F+6266-AF0F+9B66-ADAF + cheat + description:Start on level 91 + code:CB66-AD6F+6266-AF0F+9C66-ADAF + cheat + description:Start on level 92 + code:CB66-AD6F+6266-AF0F+9866-ADAF + cheat + description:Start on level 93 + code:CB66-AD6F+6266-AF0F+9A66-ADAF + cheat + description:Start on level 94 + code:CB66-AD6F+6266-AF0F+9266-ADAF + cheat + description:Start on level 95 + code:CB66-AD6F+6266-AF0F+9366-ADAF + cheat + description:Start on level 96 + code:CB66-AD6F+6266-AF0F+9E66-ADAF + cheat + description:Start on level 97 + code:CB66-AD6F+6266-AF0F+1D66-ADAF + cheat + description:Start on level 98 + code:CB66-AD6F+6266-AF0F+1F66-ADAF + cheat + description:Start on level 99 + code:CB66-AD6F+6266-AF0F+1466-ADAF + +cartridge sha256:89d57bf308033ef17f770a80080cbeed2d112244635d5b5f860f2016398cd2f6 + name:Q-bert 3 (USA) + cheat + description:Infinite lives + code:C2C5-AF6F + cheat + description:Start with 1 life instead of 5 + code:DF66-D7DD + cheat + description:Start with 3 lives + code:D766-D7DD + cheat + description:Start with 7 lives + code:D566-D7DD + cheat + description:Start with 9 lives + code:DB66-D7DD + cheat + description:Start with 25 lives + code:FB66-D7DD + cheat + description:Start with 100 lives + code:1066-D7DD + cheat + description:Start on level 1-2 + code:DF61-D76D + cheat + description:Start on level 1-3 + code:D461-D76D + cheat + description:Start on level 1-4 + code:D761-D76D + cheat + description:Start on level 2-1 + code:D061-D76D + cheat + description:Start on level 2-2 + code:D961-D76D + cheat + description:Start on level 2-3 + code:D161-D76D + cheat + description:Start on level 2-4 + code:D561-D76D + cheat + description:Start on level 3-1 + code:D661-D76D + cheat + description:Start on level 3-2 + code:DB61-D76D + cheat + description:Start on level 3-3 + code:DC61-D76D + cheat + description:Start on level 3-4 + code:D861-D76D + cheat + description:Start on level 4-1 + code:DA61-D76D + cheat + description:Start on level 4-2 + code:D261-D76D + cheat + description:Start on level 4-3 + code:D361-D76D + cheat + description:Start on level 4-4 + code:DE61-D76D + cheat + description:Start on level 5-1 + code:FD61-D76D + cheat + description:Start on level 5-2 + code:FF61-D76D + cheat + description:Start on level 5-3 + code:F461-D76D + cheat + description:Start on level 5-4 + code:F761-D76D + cheat + description:Start on level 6-1 + code:F061-D76D + cheat + description:Start on level 6-2 + code:F961-D76D + cheat + description:Start on level 6-3 + code:F161-D76D + cheat + description:Start on level 6-4 + code:F561-D76D + cheat + description:Start on level 7-1 + code:F661-D76D + cheat + description:Start on level 7-2 + code:FB61-D76D + cheat + description:Start on level 7-3 + code:FC61-D76D + cheat + description:Start on level 7-4 + code:F861-D76D + cheat + description:Start on level 8-1 + code:FA61-D76D + cheat + description:Start on level 8-2 + code:F261-D76D + cheat + description:Start on level 8-3 + code:F361-D76D + cheat + description:Start on level 8-4 + code:FE61-D76D + cheat + description:Start on level 9-1 + code:4D61-D76D + cheat + description:Start on level 9-2 + code:4F61-D76D + cheat + description:Start on level 9-3 + code:4461-D76D + cheat + description:Start on level 9-4 + code:4761-D76D + cheat + description:Start on level 10-1 + code:4061-D76D + cheat + description:Start on level 10-2 + code:4961-D76D + cheat + description:Start on level 10-3 + code:4161-D76D + cheat + description:Start on level 10-4 + code:4561-D76D + cheat + description:Start on level 11-1 + code:4661-D76D + cheat + description:Start on level 11-2 + code:4B61-D76D + cheat + description:Start on level 11-3 + code:4C61-D76D + cheat + description:Start on level 11-4 + code:4861-D76D + cheat + description:Start on level 12-1 + code:4A61-D76D + cheat + description:Start on level 12-2 + code:4261-D76D + cheat + description:Start on level 12-3 + code:4361-D76D + cheat + description:Start on level 12-4 + code:4E61-D76D + cheat + description:Start on level 13-1 + code:7D61-D76D + cheat + description:Start on level 13-2 + code:7F61-D76D + cheat + description:Start on level 13-3 + code:7461-D76D + cheat + description:Start on level 13-4 + code:7761-D76D + cheat + description:Start on level 14-1 + code:7061-D76D + cheat + description:Start on level 14-2 + code:7961-D76D + cheat + description:Start on level 14-3 + code:7161-D76D + cheat + description:Start on level 14-4 + code:7561-D76D + cheat + description:Start on level 15-1 + code:7661-D76D + cheat + description:Start on level 15-2 + code:7B61-D76D + cheat + description:Start on level 15-3 + code:7C61-D76D + cheat + description:Start on level 15-4 + code:7861-D76D + cheat + description:Start on level 16-1 + code:7A61-D76D + cheat + description:Start on level 16-2 + code:7261-D76D + cheat + description:Start on level 16-3 + code:7361-D76D + cheat + description:Start on level 16-4 + code:7E61-D76D + cheat + description:Start on level 17-1 + code:0D61-D76D + cheat + description:Start on level 17-2 + code:0F61-D76D + cheat + description:Start on level 17-3 + code:0461-D76D + cheat + description:Start on level 17-4 + code:0761-D76D + cheat + description:Start on level 18-1 + code:0061-D76D + cheat + description:Start on level 18-2 + code:0961-D76D + cheat + description:Start on level 18-3 + code:0161-D76D + cheat + description:Start on level 18-4 + code:0561-D76D + cheat + description:Start on level 19-1 + code:0661-D76D + cheat + description:Start on level 19-2 + code:0B61-D76D + cheat + description:Start on level 19-3 + code:0C61-D76D + cheat + description:Start on level 19-4 + code:0861-D76D + cheat + description:Start on level 20-1 + code:0A61-D76D + cheat + description:Start on level 20-2 + code:0261-D76D + cheat + description:Start on level 20-3 + code:0361-D76D + cheat + description:Start on level 20-4 + code:0E61-D76D + cheat + description:Start on level x1 + code:9D61-D76D + cheat + description:Start on level x2 + code:9F61-D76D + cheat + description:Start on level x3 + code:9461-D76D + cheat + description:Start on level x4 + code:9761-D76D + cheat + description:Start on level x5 + code:9061-D76D + cheat + description:Start on level x6 + code:9961-D76D + cheat + description:Start on level x7 + code:9161-D76D + cheat + description:Start on level x8 + code:9561-D76D + cheat + description:Start on level x9 + code:9661-D76D + cheat + description:Start on level x10 + code:9B61-D76D + cheat + description:Start on level x11 + code:9C61-D76D + cheat + description:Start on level x12 + code:9861-D76D + cheat + description:Start on level x13 + code:9A61-D76D + cheat + description:Start on level x14 + code:9261-D76D + cheat + description:Start on level x15 + code:9361-D76D + cheat + description:Start on level x16 + code:9E61-D76D + cheat + description:Start on level x17 + code:1D61-D76D + cheat + description:Start on level x18 + code:1F61-D76D + cheat + description:Start on level x19 + code:1461-D76D + cheat + description:Start on level x20 + code:1761-D76D + +cartridge sha256:4d6c7d6d2693d8d43bafaff7582f9a94885362dadd9ee4012bbbdce1ba10c30e + name:R-Type III (USA) + cheat + description:Invincibility + code:DD62-33DD + cheat + description:Infinite lives + code:C26B-C7D0 + cheat + description:Start at speed level 3 + code:DA6F-CE0D + cheat + description:Start at speed level 4 + code:FD6F-CE0D + cheat + description:Start at speed level 5 + code:F06F-CE0D + +cartridge sha256:edf990e502c646a2fe83fcd1d359ca0ed5003ace06cb4c3de5a51a0c56d6ec54 + name:Radical Psycho Machine Racing (USA) + cheat + description:Sturdy tires are free + code:DDB8-0465 + cheat + description:4-liter high output engine is free + code:DDB1-0F65 + cheat + description:Sell sturdy tires for $4,910 instead of $10 + code:0BBA-0FA5 + cheat + description:Sell 4-liter high output engine for $9,925 instead of $25 + code:BBB5-0DA5 + cheat + description:Start new game with $9,910 instead of $4,910 + code:BBCB-DF61 + cheat + description:Start new game with $49,104,910 + code:62CB-D701 + cheat + description:Start new game with $99,109,910 + code:BBCB-DF61+62CB-D701 + +cartridge sha256:dd0feb78e2d5d81f59241baf3bca5e2edaebbe98f0ac860a4eb6d448718f1ca5 + name:Race Drivin' (USA) + cheat + description:Infinite time + code:A266-07AD + cheat + description:Slow timer + code:8066-04DD + cheat + description:Fast timer + code:4266-04DD + cheat + description:Freeze lap timer + code:2B6C-07AD + cheat + description:Slow lap timer + code:1968-0DAD + +cartridge sha256:1869c0faf93bf21b7ff965f1925fad4b2924a64b1e48f4837221eebdf741226c + name:Radical Rex (USA) + cheat + description:Infinite health + code:89B4-C4D1 + cheat + description:Infinite roar + code:C28C-1FD5+C2C9-D7A4 + cheat + description:Infinite lives + code:C221-3D94 + cheat + description:Don't loose breath level when you die + code:C2B2-4D04+C2BA-4F04 + +cartridge sha256:5fd7666e509f9d3cf1fd6b209dc22f2f3848f74eae7b83239d1090e031fc6df2 + name:Raiden Trad (USA) + cheat + description:Invincibility - both players + code:DDEF-0F1B + cheat + description:Infinite bombs - P1 + code:EDE8-67A4+D9EA-6DD4+3CEA-6D04+23EA-6DA4 + cheat + description:Infinite bombs - P2 + code:2DE8-67A4+D9EA-6DD4+3CEA-6D04+23EA-6DA4 + cheat + description:Infinite bombs - both players + code:3CEA-6D64 + cheat + description:Infinite lives - P1 + code:3CBD-DDD7 + cheat + description:Infinite lives - P2 + code:3CB5-0467 + cheat + description:Hit anywhere + code:44E8-6446+6DE8-6F36+C9E3-6446 + cheat + description:Replacement planes carry 0 bombs - P1 + code:CEB7-DFD7+62B7-DF07 + cheat + description:Replacement planes carry 6 bombs - P1 + code:91B7-DFD7+6BB7-DF07 + cheat + description:Replacement planes carry 9 bombs - P1 + code:8FB7-DFD7+62B7-DF07 + cheat + description:Replacement planes carry 0 bombs - P2 + code:CEBC-0707+62BC-0767 + cheat + description:Replacement planes carry 6 bombs - P2 + code:91BC-0707+6BBC-0767 + cheat + description:Replacement planes carry 9 bombs - P2 + code:8FBC-0707+62BC-0767 + cheat + description:Start with 1 life - both players + code:B6BD-D76F + cheat + description:Start with 7 lives - both players + code:8BBD-D70F+60BD-D76F + cheat + description:Start with 9 lives - both players + code:8FBD-D70F+62BD-D76F + cheat + description:Start with 0 bombs - P1 + code:CEBF-D7AF+62B4-DDDF + cheat + description:Start with 6 bombs - P1 + code:91BF-D7AF+6BB4-DDDF + cheat + description:Start with 9 bombs - P1 + code:8FBF-D7AF+62B4-DDDF + cheat + description:Start with 0 bombs - P2 + code:CEB7-D7DF+62B7-D70F + cheat + description:Start with 6 bombs - P2 + code:91B7-D7DF+6BB7-D70F + cheat + description:Start with 9 bombs - P2 + code:8FB7-D7DF+62B7-D70F + cheat + description:Start with 3 credits + code:D4BF-6F6F + cheat + description:Start with 4 credits + code:D7BF-6F6F + cheat + description:Start with 6 credits + code:D9BF-6F6F + cheat + description:Start with 8 credits + code:D5BF-6F6F + cheat + description:Start with 10 credits + code:DBBF-6F6F + cheat + description:Start with 1 credit + code:DDBF-6F6F + +cartridge sha256:e19f7d8d5c3e4cefeff5889380d8780495e01f0553d13be4182a15a5d4b615bb + name:Rampart (USA) + cheat + description:Infinite continues + code:C284-DD07 + cheat + description:Infinite cannons + code:3C6B-D467 + cheat + description:Start on battlefield 2 + code:CBAA-67DD+DDAA-676D+DFAA-670D + cheat + description:Start on battlefield 3 + code:CBAA-67DD+DDAA-676D+D4AA-670D + cheat + description:Start on battlefield 4 + code:CBAA-67DD+DDAA-676D+D7AA-670D + cheat + description:Start on battlefield 5 + code:CBAA-67DD+DDAA-676D+D0AA-670D + cheat + description:Start on battlefield 6 + code:CBAA-67DD+DDAA-676D+D9AA-670D + cheat + description:Start on battlefield 7 + code:CBAA-67DD+DDAA-676D+D1AA-670D + +cartridge sha256:32d32ef56af83887cdc2c04b3da4be1cd82a473988deaa2e7dd50d38ef79c3a1 + name:Ranma 1-2 - Hard Battle (USA) + cheat + description:Invincibility - P1 + code:6D45-E7DD + cheat + description:Invincibility - P2 + code:6D42-E7AD + cheat + description:Hit anywhere - P1 + code:6D42-E7AD+F443-EDDD + cheat + description:Hit anywhere - P2 + code:6D45-E7DD+F445-E70D + cheat + description:Ranma moves faster + code:D7B4-0DA9+EABF-04D9 + cheat + description:Ranma jumps faster + code:E8B7-07D9+D0B7-0769 + cheat + description:Ranma's diagonal jumps are higher + code:E1B7-0769 + cheat + description:Ranma's diagonal kicks are harder + code:F6B7-AD60 + cheat + description:Ranma's dragon blast kills with 1 hit + code:1DB1-D4D9 + cheat + description:Genma moves faster + code:D78F-6DD5+EA8D-DFD5 + cheat + description:Genma's paternal anger (running at enemy) is faster + code:E48C-6DD5 + cheat + description:Genma's verbal punishment is stronger + code:4689-0465 + cheat + description:Genma's verbal punishment kills with 1 hit + code:1D89-0465 + cheat + description:Ryoga moves faster + code:EA81-6760+D7B5-6460 + cheat + description:Ryoga jumps faster + code:EA8B-6D60+D78B-6760 + cheat + description:Ryoga's bandana throw kills with 1 hit + code:1DD8-DD05 + cheat + description:Shampoo moves faster + code:EAC9-D765+D7C1-D465 + cheat + description:Shampoo's dragon sky kick is faster + code:E9CF-0765 + cheat + description:Shampoo's super fury charge goes farther + code:E9CE-D465 + cheat + description:Shampoo's fury charge 1 hit kill + code:1DCB-A4A1 + cheat + description:Shampoo's kick is faster + code:41C5-67D1 + cheat + description:Akane moves faster + code:EA84-D4D1+D787-DFD1 + cheat + description:Akane jumps faster + code:E880-D7D1+D089-6760 + cheat + description:Akane's 2-step whip kick is faster + code:E68E-DFD1 + cheat + description:Akane's 2-step whip kick is stronger + code:418B-6D69 + cheat + description:Akane's 2-step whip kick kills with 1 hit + code:1D8B-6D69 + cheat + description:Akane's dust devil uppercut is faster + code:3E8A-DF61+EE8A-D401 + cheat + description:Gosunkugi moves faster + code:ECC5-64D9+D0C6-6FD9 + cheat + description:Gosunkugi jumps faster + code:E8CB-67D9+D0CC-64D9 + cheat + description:Gosunkugi's straw man throw does more damage + code:40D8-DD05 + cheat + description:Gosunkugi's straw man throw kills with 1 hit + code:1DD8-DD05 + cheat + description:Ukkyo moves faster + code:ECB8-64D1+D0BA-6FD1 + cheat + description:Ukkyo jumps faster + code:E8B2-67D1+D0B3-64D1 + cheat + description:Mousse's flying egg bombs are faster + code:EBC5-0FD0 + cheat + description:Mousse's eagle claw strike - 1 hit kill + code:1DB1-AF65 + cheat + description:Mousse's claw strike is quicker + code:D6C1-0460 + cheat + description:Every move kills every opponent with 1 hit + code:DDD7-8407 + cheat + description:No knock back when opponent is cornered + code:DD6B-D700 + +cartridge sha256:097cbe9720903bc14599158b80e0cc314ef2fe8a585d6d0a8962eb1626031492 + name:Realm (USA) + cheat + description:Infinite ammo + code:C9E4-3DA7 + cheat + description:Hit anywhere (if a platform is missing go back and come back) + code:01CB-1F07+10CB-C407+2DCB-1FD7+82C3-1FA7+FAC3-14D7 + cheat + description:Invincibility + code:7E007D:4F + cheat + description:Invincibility after first hit + code:C928-4DA7+C92D-1DD7 + cheat + description:Almost invincible + enable stage skip (press Start + Select to skip) (enable code before title screen) + code:ED66-C54F + cheat + description:Almost invincible + enable stage skip (press Start + Select to skip) (enable code before title screen) (alt) + code:7E0224:FF + cheat + description:Infinite health + code:C2EB-4F15 + cheat + description:Infinite health (alt) + code:7E132B:06 + cheat + description:Infinite lives + code:C236-1DFE + cheat + description:Infinite lives (alt) + code:7E1334:03 + cheat + description:Infinite ammo (alt) + code:7E00F5:09 + +cartridge sha256:549f2e5b17f685cad25ba71ce7bc6e004e7bfd09e6be12a827af9a9a26556fff + name:Redline F-1 Racer (USA) + cheat + description:Always in 1st place + code:C98E-6FDF + cheat + description:Infinite special fuel + code:3CAA-AF04 + cheat + description:Instant 255 mph speed (best to get into 6th gear before activating this code, then you can go 357 mph) + code:CBC5-D70F+EEC5-D7AF + cheat + description:No speed loss when you get off accelerator button + code:C98C-6F0F + cheat + description:No speed loss on grass + code:C9BD-0F04 + +cartridge sha256:71e7083cfcf32b738f60f5eeffd4f9d1fd9250afbde0c56e22a4b97abac377a1 + name:Ren & Stimpy Show, The - Fire Dogs (USA) + cheat + description:Invincibility + code:7E257E:05 + cheat + description:Infinite health + code:7E00E3:30 + cheat + description:Infinite lives + code:7E0002:09 + cheat + description:Infinite time (disable on bonus stages) + code:7E00F5:3B + cheat + description:Max money + code:7E0004:E7+7E0005:03 + cheat + description:Infinite Dalmation Paint meter + code:7E0055:EE + cheat + description:Infinite Fire Extinguisher meter + code:7E0059:EE + cheat + description:Have Boots + code:7E2584:01 + cheat + description:Have Bucket + code:7E2586:01 + cheat + description:Have Fire Coat + code:7E2590:01 + cheat + description:Have Fire Hat + code:7E258C:01 + cheat + description:Have Fire Hose + code:7E2582:01 + cheat + description:Have Fire Extinguisher + code:7E2590:01 + cheat + description:Have Socks + code:7E258A:01 + cheat + description:Have Trampoline + code:7E2588:01 + cheat + description:Have 99 sacks of Gritty Kitty (On The Job stages) + code:7E2550:63 + cheat + description:Skip to bonus level (On The Job stages) + code:7E07AE:93+7E07AF:20 + +cartridge sha256:ad7dd4efb8836d4009f6c76bd21865d8f5dcf9c3cbd8fa7bb32d686488847120 + name:Ren & Stimpy Show, The - Time Warp (USA) + cheat + description:Infinite health + code:82ED-4DD6 + cheat + description:Infinite lives + code:3CB1-14AC + cheat + description:Don't have to charge special attack + code:CBBE-4468+6DBE-47D8+DDBE-4768+62BE-47A8 + cheat + description:Flash longer after you die + code:EE33-1F62 + cheat + description:Don't flash after you die + code:EE33-1F62 + cheat + description:Health never goes back up + code:82EA-34D6 + cheat + description:1 kitty gritty gives 99 + code:CBEF-440B+17EF-446B+3CEF-47DB+3CEF-470B + cheat + description:Start with 1 lives + code:DD3A-1DA2 + cheat + description:Start with 5 lives + code:D03A-1DA2 + cheat + description:Start with 10 lives + code:DB3A-1DA2 + cheat + description:Have 99 kitty gritty + code:7E0583:63 + +cartridge sha256:ba54d715abf100b94fee801351986fa818e4309730cefbacf9b4fad36e284c1c + name:Ren & Stimpy Show, The - Veediots! (USA) + cheat + description:Infinite health + code:C2CD-0FA0 + cheat + description:Infinite lives + code:C2C5-0460 + cheat + description:Infinite time + code:C2CF-D7A9 + cheat + description:Powdered Toast Shield lasts 85x longer + code:EEE8-6DD6 + cheat + description:"Socks" power-up lasts 200x longer + code:EEEF-D7AB + cheat + description:Stimpy's mouth won't close + code:C2C5-0FD9 + cheat + description:Money is worth 10x more + code:ECBC-6DA5+ECAB-DDA5 + +cartridge sha256:82a9ee11b5640409c67772363f1148517b26127cef13aa2a8ffc2480b487d81f + name:Rendering Ranger R2 (Japan) + cheat + description:Invincibility + code:7E06AE:03 + cheat + description:Infinite health + code:7E06BC:05 + cheat + description:Infinite lives + code:7E0515:09 + cheat + description:Infinite Bombs + code:7E06C1:03 + cheat + description:Deactivate shield + code:7E06B8:00 + cheat + description:Have Pods (ship stages) + code:7E06B5:01 + cheat + description:Have Blue weapon (press A to switch weapons) + code:7E0AA2:00 + cheat + description:Have Green weapon (press A to switch weapons) + code:7E0AA3:00 + cheat + description:Have Yellow weapon (press A to switch weapons) + code:7E0AA4:00 + cheat + description:Best Red weapon + code:7E0A9D:04 + cheat + description:Best Blue weapon + code:7E0A9E:04 + cheat + description:Best Green weapon + code:7E0A9F:04 + cheat + description:Best Yellow weapon + code:7E0AA0:04 + +cartridge sha256:5fb072c3c2e9d8e7f84bea9c4bf2253e6868eb2b1f13e35a7d75fdf05896d873 + name:Revolution X (USA) + cheat + description:Infinite CDs - both players + code:CBA0-4DDD + cheat + description:Infinite health - P1 + code:7E022B:FF + cheat + description:Infinite CDs - P1 + code:7E0088:FF + +cartridge sha256:f44482e2cccd9fcfd5875d84ff700f6e783f3bd8abd1ac4d939074cd6ad3fe65 + name:Rex Ronan - Experimental Surgeon (USA) (En,Es) + cheat + description:Infinite health + code:7E03C4:FF + +cartridge sha256:38be8013bbe07b2020ba30031fb0a2c77bad8a3eb61fac8217adfe82d6c402af + name:Rise of the Robots (USA) + cheat + description:Infinite time + code:DDAC-5767 + cheat + description:Hit anywhere - both players + code:DDC1-77D7+DDC5-7D67+DDCB-7DA7 + cheat + description:One hit kills - both players + code:CB34-570F + cheat + description:No jumping allowed + code:CBA2-E4D4+DDA2-E404 + cheat + description:Win one round to advance + code:DF78-57AF + cheat + description:Every hit does more damage + code:4D34-576F+3CC7-E4A7+DD34-57AF + +cartridge sha256:3f59cc687d22cd1b23cc33ae6e4518234c9da813c01f79f4c43716e12d32a12d + name:Rival Turf! (USA) + cheat + description:Invincibility + code:C2BF-D0EB + cheat + description:Infinite health + code:C965-DDDC + cheat + description:Infinite lives + code:C96C-0DAC + cheat + description:Infinite continues + code:C2C3-0F0D + cheat + description:Full health from all food + code:DD6A-AD61 + cheat + description:No score lost when special attack is used + code:DD62-A7A6 + cheat + description:Hit anywhere (might make some enemies invisible) + code:6DB6-69EA+F9B6-617A + cheat + description:Start with more health + code:EEC4-OD6F+EE64-646C+EE63-04A7+EE68-A7A1 + cheat + description:Start with less health + code:FEC4-0D6F+FE64-646C+FE63-04A7+FE68-A7A1 + cheat + description:Start with 1 life + code:DDB7-D4A7 + cheat + description:Start with 8 lives + code:D5B7-D4A7 + cheat + description:Start with 9 continues + code:DBB0-DF07 + cheat + description:Start with 1 continue + code:DFB0-DF07 + cheat + description:Invincibility - P1 + code:7E0208:FF + cheat + description:Invincibility - P2 + code:7E02D8:FF + cheat + description:Infinite health - P1 + code:7E0217:FF + cheat + description:Infinite health - P2 + code:7E02E7:FF + cheat + description:Infinite lives - P1 + code:7E023F:09 + cheat + description:Infinite lives - P2 + code:7E030F:09 + cheat + description:Infinite continues (alt) + code:7E10F5:05 + cheat + description:Always angry - P1 + code:7E024F:03 + cheat + description:Always angry - P2 + code:7E031F:03 + cheat + description:One hit kills + code:7E0487:00+7E0557:00+7E024F:00+7E03B7:00 + cheat + description:Infinite points - P1 + code:7E0224:70 + cheat + description:Infinite points - P2 + code:7E02F4:70 + cheat + description:Start on stage 2 - L.A. City Stadium + code:7E0120:01 + cheat + description:Start on stage 3 - Things Are Looking Up + code:7E0120:02 + cheat + description:Start on stage 4 - South Of The Border + code:7E0120:03 + cheat + description:Start on stage 5 - Dockyard Brawl + code:7E0120:04 + cheat + description:Start on stage 6 - Fight to the Finish + code:7E0120:05 + cheat + description:Start on stage - Welcome To The Warp Room + code:7E0120:06 + +cartridge sha256:864aa9068fb23cd20022a9ac36fb9082299278ea0cb07a20deec2b6a1c6cbc70 + name:Road Riot 4WD (USA) + cheat + description:Races are 1 lap instead of 3 + code:DDBF-07DF + cheat + description:Races are 2 laps instead of 3 + code:DFBF-07DF + cheat + description:Races are 4 laps instead of 3 + code:D7BF-07DF + cheat + description:Races are 5 laps instead of 3 + code:D0BF-07DF + cheat + description:Races are 6 laps instead of 3 + code:D9BF-07DF + cheat + description:Races are 7 laps instead of 3 + code:D1BF-07DF + cheat + description:Beginner track has an extra lap + code:3CB4-0DAF + +cartridge sha256:2e8203e421f97cf165f03a5d4f69dadf0bcca18c42c6a1dfe79c8705c522cc54 + name:Road Runner's Death Valley Rally (USA) + cheat + description:Protection against most hazards + code:C2AC-346F+C2C3-1D28 + cheat + description:Infinite lives + code:DDB2-4D64 + cheat + description:Infinite time + code:DDBB-4467 + cheat + description:Stay invincible longer after getting hit (Road Runner blinks) + code:EE8C-C4DD + cheat + description:Stay invincible for less time after getting hit (Road Runner blinks) + code:0D8C-C4DD + cheat + description:Stay invincible after getting hit until you fall and die (Road Runner blinks) + code:C2C5-C7AF + cheat + description:Stay invincible after getting hit until you fall and die (Road Runner does not blink) + code:6DC5-C70F + cheat + description:Eating birdseed restores turbo speed meter to maximum + code:7D26-3404 + cheat + description:Eating birdseed does nothing + code:DD26-3404 + cheat + description:Using turbo speed does not use up bird seed + code:DDC6-3D67 + cheat + description:Hearts worth nothing + code:C229-C707 + cheat + description:1-up worth nothing + code:DD33-4DDD + cheat + description:1-up worth 2 + code:D433-4DDD + cheat + description:1-up worth 3 + code:D733-4DDD + cheat + description:1-up worth 4 + code:D033-4DDD + cheat + description:1-up worth 5 + code:D933-4DDD + cheat + description:Bogus jump + code:7D83-47DD + cheat + description:Better jump + code:FD83-47DD + cheat + description:Super-jump + code:DC83-47DD + cheat + description:Mega-jump + code:D983-47DD + cheat + description:Start with more birdseed on the turbo speed meter + code:7DBD-44D7 + cheat + description:Start with less birdseed on the turbo speed meter + code:FDBD-44D7 + cheat + description:Start timer at 3:00 instead of 5:00 + code:D7B0-346F + cheat + description:Start timer at 7:00 + code:D5B0-346F + cheat + description:Start timer at 9:00 + code:DBB0-346F + cheat + description:Start with 2 lives + code:DFBC-3FD4 + cheat + description:Start with 4 lives + code:D7BC-3FD4 + cheat + description:Start with 6 lives + code:D9BC-3FD4 + cheat + description:Start with 8 lives + code:D5BC-3FD4 + cheat + description:Start with 10 lives + code:DBBC-3FD4 + cheat + description:Start with 21 lives + code:4DBC-3FD4 + cheat + description:Start with 51 lives + code:9DBC-3FD4 + cheat + description:Start with 76 lives + code:59BC-3FD4 + cheat + description:Start with 100 lives + code:BBBC-3FD4 + cheat + description:Start on level 1, sub-level 2 + code:F3BB-3FA4+3FBB-3F64+DFBB-3FD4 + cheat + description:Start on level 1, sub-level 3 + code:F3BB-3FA4+3FBB-3F64+D4BB-3FD4 + cheat + description:Start on level 1, sub-level 4 + code:F3BB-3FA4+3FBB-3F64+D7BB-3FD4 + cheat + description:Start on level 2, sub-level 1 + code:F3BB-3FA4+3FBB-3F64+D0BB-3FD4 + cheat + description:Start on level 2, sub-level 2 + code:F3BB-3FA4+3FBB-3F64+D9BB-3FD4 + cheat + description:Start on level 2, sub-level 3 + code:F3BB-3FA4+3FBB-3F64+D1BB-3FD4 + cheat + description:Start on level 2, sub-level 4 + code:F3BB-3FA4+3FBB-3F64+D5BB-3FD4 + cheat + description:Start on level 3, sub-level 1 + code:F3BB-3FA4+3FBB-3F64+D6BB-3FD4 + cheat + description:Start on level 3, sub-level 2 + code:F3BB-3FA4+3FBB-3F64+DBBB-3FD4 + cheat + description:Start on level 3, sub-level 3 + code:F3BB-3FA4+3FBB-3F64+DCBB-3FD4 + cheat + description:Start on level 3, sub-level 4 + code:F3BB-3FA4+3FBB-3F64+D8BB-3FD4 + cheat + description:Start on level 4, sub-level 1 + code:F3BB-3FA4+3FBB-3F64+DABB-3FD4 + cheat + description:Start on level 4, sub-level 2 + code:F3BB-3FA4+3FBB-3F64+D2BB-3FD4 + cheat + description:Start on level 4, sub-level 3 + code:F3BB-3FA4+3FBB-3F64+D3BB-3FD4 + cheat + description:Start on level 4, sub-level 4 + code:F3BB-3FA4+3FBB-3F64+DEBB-3FD4 + cheat + description:Start on level 5, sub-level 1 + code:F3BB-3FA4+3FBB-3F64+FDBB-3FD4 + cheat + description:Start on level 5, sub-level 2 + code:F3BB-3FA4+3FBB-3F64+FFBB-3FD4 + cheat + description:Start on level 5, sub-level 3 + code:F3BB-3FA4+3FBB-3F64+F4BB-3FD4 + cheat + description:Start on level 5, sub-level 4 + code:F3BB-3FA4+3FBB-3F64+F7BB-3FD4 + +cartridge sha256:a2115e7576dec06e0de613efb89de861815a78ef72e78a3784be09fb7541928f + name:RoboCop versus The Terminator (USA) + cheat + description:Infinite lives + code:DDBE-0D05 + cheat + description:Super-jump + code:DD37-C4D7 + cheat + description:Rockets do more damage + code:DE63-C460 + cheat + description:Normal pistol does more damage + code:DE60-4460 + cheat + description:Plasma Rifle does massive damage + code:7D66-1F00 + cheat + description:Only 10 Terminators to kill on the 3-D Stage + code:FD64-446F + cheat + description:Only 30 Terminators to kill on the 3-D Stage + code:7D64-446F + cheat + description:Start with 1 life + code:DFB3-CD0D + cheat + description:Start with 9 lives + code:DBB3-CD0D + cheat + description:Start with 15 lives (ignore counter) + code:DEB3-CD0D + cheat + description:Infinite health + code:7E10C5:0A + cheat + description:Infinite lives (alt) + code:019DF1:00 + cheat + description:Super-jump (alt) + code:80EE38:00 + cheat + description:Normal pistol does more damage (alt) + code:81804A:0F + +cartridge sha256:055d9c6311a663af7c899a6f76a419c274c57baada3ef64c52fadb1c676b1446 + name:RoboCop 3 (USA) + cheat + description:Infinite lives + code:4A6E-6FDD + cheat + description:Slower timer + code:5D69-6D0F + cheat + description:Faster timer + code:FE69-6D0F + cheat + description:Infinite ammo (except flame thrower) + code:DDC7-A7A4 + cheat + description:Ammo pick-ups worth more + code:DFEC-DD67+D4EC-DFD7 + cheat + description:Ammo pick-ups worth less + code:7DEC-DD07+DDEC-DFD7+7DEC-DDA7 + cheat + description:Faster Robocop - except on stages 3 and 5 + code:D4C7-64DD+E3C9-6DAD + cheat + description:Start with 1 life + code:DD62-D7DD + cheat + description:Start with 6 lives + code:D962-D7DD + cheat + description:Start on stage 2 + code:DF37-64A4 + cheat + description:Start on stage 3 + code:D437-64A4 + cheat + description:Start on stage 4 + code:D737-64A4 + cheat + description:Start on stage 5 + code:D037-64A4 + cheat + description:Infinite health + code:7E0477:38 + cheat + description:Infinite lives (alt) + code:7E1854:05 + cheat + description:Infinite ammo + code:7E1848:99 + cheat + description:Infinite time + code:7E030C:12+7E030D:04 + cheat + description:Have all weapons + code:7E046F:04 + +cartridge sha256:1e2ded7b1e350449b7a99b7ec414525e4b9b086c416deeee5eb3e48e032c46bd + name:Robotrek (USA) + cheat + description:Infinite battle bonus time + code:3CAA-3DFF + cheat + description:Infinite robot points + code:6DCE-3D43 + cheat + description:Infinite vanish time + code:C234-3F3E + cheat + description:Everything is free + code:C23C-CDC7 + cheat + description:Get 9900 gold when you look into the robot book + code:BBB9-4D7D + cheat + description:More energy for robot energy + code:BDE6-1DC2 + cheat + description:Mean robot + code:CBEB-1FB9+BBEB-1F29+DDEB-14F9+3CEB-1499 + cheat + description:One-hit kills + code:CBE2-C74A + cheat + description:Start at level 3 + code:CB34-3D47+D734-3D17 + cheat + description:Start at level 10 + code:CB34-3D47+DC34-3D17 + cheat + description:Start at level 20 + code:CB34-3D47+F034-3D17 + cheat + description:Start at level 50 + code:CB34-3D47+7434-3D17 + cheat + description:Start at level 50 (alt) + code:88EF20:A9+88EF21:32 + cheat + description:Infinite GP + code:7E06E6:99+7E06E7:99+7E06E8:09 + cheat + description:Max Program Points + code:7E0688:73+7E0689:05 + cheat + description:Max HP - First Robot + code:7E068A:FF + +cartridge sha256:9d721753301278325c851f1843d669a697aed757dcf6495a31fc31ddf664b182 + name:Rock n' Roll Racing (USA) + cheat + description:Infinite forward weapons + code:C2BF-476F + cheat + description:Infinite power charges + code:C2BF-1FA4 + cheat + description:No damage from hitting other cars + code:3CE5-CD67 + cheat + description:No damage from most mines + code:DD26-34D7 + cheat + description:No points needed to advance to any level + code:BACB-C465 + cheat + description:Buy items for free if you have enough money + code:C28C-CF69+C28B-C4A9 + cheat + description:More damage from mines + code:D126-34D7 + cheat + description:Red Cross packages worth nothing + code:DD36-4F0D + cheat + description:Red Cross packages can blow up + code:FD36-4F0D + cheat + description:Start with $50,000 + code:D9CF-CDD5 + cheat + description:Start with $100,000 + code:FDCF-CDD5 + cheat + description:Start with $500,000 + code:9DCF-CDD5 + cheat + description:Start with $990,000 + code:BBCF-CDD5 + cheat + description:Start with $5,020,000 + code:D9CF-CD05 + +cartridge sha256:b072fd9b08042e3262446fdf418a41848251072a32bd7f8335cc03543c4ae6c8 + name:Rocketeer, The (USA) + cheat + description:Protection against guns (only partly against grenades) (only in hangar) + code:C988-0FAD + cheat + description:Protection against Armored Flying Tank + code:C98C-DD0F + cheat + description:Protection against enemy rocketmen on the Zeppelin + code:C9A0-A40F + cheat + description:Invincibility in the skies + code:C964-6FDD + cheat + description:Infinite Super Shots on pick-up + code:C961-A767 + cheat + description:Infinite chances + code:8260-0FA7 + cheat + description:Automatically win first race at Bigelow + code:DD62-67AF + cheat + description:Automatically win second race at Bigelow + code:DD63-6DDF + cheat + description:Automatically win third race at Bigelow + code:DD63-6D0F + cheat + description:First race at Bigelow is 1 lap instead of 10 + code:DF62-67AF + cheat + description:First race at Bigelow is 5 laps + code:D962-67AF + cheat + description:First race at Bigelow is 15 laps + code:DE62-67AF + cheat + description:First race at Bigelow is 25 laps + code:FB62-67AF + cheat + description:First race at Bigelow is 50 laps + code:7462-67AF + cheat + description:First race at Bigelow is 99 laps + code:1762-67AF + cheat + description:Second race at Bigelow is 1 lap + code:DF63-6DDF + cheat + description:Second race at Bigelow is 5 laps + code:D963-6DDF + cheat + description:Second race at Bigelow is 10 laps + code:DC63-6DDF + cheat + description:Second race at Bigelow is 25 laps + code:FB63-6DDF + cheat + description:Second race at Bigelow is 50 laps + code:7463-6DDF + cheat + description:Second race at Bigelow is 99 laps + code:1763-6DDF + cheat + description:Third race at Bigelow is 1 lap instead of 10 + code:DF63-6D0F + cheat + description:Third race at Bigelow is 5 laps + code:D963-6D0F + cheat + description:Third race at Bigelow is 25 laps + code:FB63-6D0F + cheat + description:Third race at Bigelow is 50 laps + code:7463-6D0F + cheat + description:Third race at Bigelow is 99 laps + code:1763-6D0F + cheat + description:Cliff starts with 2/3 normal energy in hangar + code:0C6D-A4DF + cheat + description:Cliff starts with 1/3 normal energy in hangar + code:496D-A4DF + cheat + description:Enemies start with 2/3 normal energy in hangar + code:0C6D-A7AF + cheat + description:Enemies start with 1/3 normal energy in hangar + code:496D-A7AF + cheat + description:Super Shots worth nothing on pick-up instead of 3 + code:DD6B-D76F + cheat + description:Super Shots worth 6 on pick-up (cannot gain over 29) + code:D16B-D76F + cheat + description:Super Shots worth 9 on pick-up (cannot gain over 29) + code:DB6B-D76F + cheat + description:Super Shots worth 12 on pick-up (cannot gain over 29) + code:DA6B-D76F + cheat + description:Easily defeat enemy rocketmen on the Zeppelin + code:10A8-DFDF + cheat + description:Start with 1 chance instead of 3 + code:DF6C-07AF + cheat + description:Start with 2 chances + code:D46C-07AF + cheat + description:Start with 4 chances + code:D06C-07AF + cheat + description:Start with 5 chances + code:D96C-07AF + cheat + description:Start with 6 chances + code:D16C-07AF + cheat + description:Start with 7 chances + code:D56C-07AF + cheat + description:Start with 8 chances + code:D66C-07AF + cheat + description:Start with 9 chances + code:DB6C-07AF + +cartridge sha256:4fc2832e7aa01d105ca67977b38840ec1188869b5e74d20e58613c1cd127d78f + name:Rockman & Forte (Japan) + cheat + description:Invincibility against enemies + code:1808-5FA2 + cheat + description:Invincibility against fire + code:187F-7D09 + cheat + description:Invincibility against pits + code:1D48-74D5 + cheat + description:Invincibility against spikes + code:1873-E400 + cheat + description:One hit kills + code:4006-5F02 + cheat + description:Multi-jump - Megaman + code:1DFB-7F05+5EFB-7F65+4D51-EDD5+E251-ED05+7C51-ED65+4D51-EDA5+3B51-EFD5+7F51-EF05+1D51-EF65 + cheat + description:Multi-jump - Bass + code:E241-8D69 + cheat + description:Invincibility + code:7E0C30:30 + cheat + description:Infinite health + code:7E0C2F:1C + cheat + description:Infinite sliding time + code:7E0C54:01 + cheat + description:Infinite Beat + code:7E0B94:9C + cheat + description:Infinite Eddie + code:7E0B96:9C + cheat + description:Infinite Bolts + code:7E0B9C:E7+7E0B9D:03 + cheat + description:Infinite Mines + code:7E0B86:9F + cheat + description:Infinite T. Blade + code:7E0B8E:9F + cheat + description:Infinite Ice Wall + code:7E0B8C:9F + cheat + description:Infinite W. Burner + code:7E0B88:9F + cheat + description:Infinite S. Drill + code:7E0B82:9F + cheat + description:Infinite L. Bolt + code:7E0B84:9F + cheat + description:Infinite C. Vision + code:7E0B90:9F + cheat + description:Infinite M. Cards + code:7E0B8A:9F + cheat + description:Infinite Gospel Booster/Rush Search + code:7E0B92:9F + cheat + description:Have all items + code:7E0B97:FF+7E0B98:FF+7E0B99:FF + cheat + description:Have CD Sparkle info + code:7E0B98:FF + cheat + description:Have first 5 Units + code:7E0B97:FF + cheat + description:Have all CDs + code:306045:FF+306046:FF+306047:FF+306048:FF+306049:FF+30604A:FF+30604B:FF+30604C:1F+306040:FE+306041:FF+306042:FF+306043:FF+306044:FF + cheat + description:One hit kills (alt) + code:7E1A2F:01 + cheat + description:Last area open + code:7E0B79:FF + cheat + description:Last area, last level + code:7E0B7B:03 + +cartridge sha256:7c0f915b581796e5b6dd384ecdc0dad8af4d956492fbcedec628c8845d911d7e + name:Rocky Rodent (USA) + cheat + description:Infinite lives + code:3CAD-4DA7 + cheat + description:Keep hairdo after you die + code:C2C3-3DD5 + cheat + description:Start with red hairdo + code:D4A8-17D4 + cheat + description:Start with purple hairdo + code:D0A8-17D4 + cheat + description:Start with corkscrew hairdo + code:D1A8-17D4 + cheat + description:Start with green ponytail hairdo + code:D6A8-17D4 + cheat + description:Start with birdnest hairdo + code:DCA8-17D4 + cheat + description:Invincibility + code:7E0054:72 + +cartridge sha256:f7e3c3012af2dbad350646b6ef3470f0b4c42e4a2873109f7aa6c81d7157c887 + name:Roger Clemens' MVP Baseball (USA) (Rev 1) + cheat + description:Batter never walks + code:C22D-6FAD + cheat + description:Batter never strikes out + code:C227-6D6D + cheat + description:1 ball per walk + code:DF2D-676D + cheat + description:2 balls per walk + code:D42D-676D + cheat + description:3 balls per walk + code:D72D-676D + cheat + description:5 balls per walk + code:D92D-676D + cheat + description:6 balls per walk + code:D12D-676D + cheat + description:7 balls per walk + code:D52D-676D + cheat + description:1 strike per out + code:DF27-640D + cheat + description:2 strikes per out + code:D427-640D + cheat + description:4 strikes per out + code:D027-640D + cheat + description:5 strikes per out + code:D927-640D + cheat + description:Each run counts as 2 + code:7665-0FD1+7669-0F01 + cheat + description:1 out per inning per team + code:DFBF-07DF + cheat + description:2 outs per inning per team + code:D4BF-07DF + +cartridge sha256:815bfcf4fd6eb23a20c2e50dde023c210b273ffb6cd86a93909d803c3643ce46 + name:Romance of the Three Kingdoms II (USA) + cheat + description:Scenario 1 - Start with 30,000 gold pieces + code:7DE7-A465+59E7-A4A5 + cheat + description:Scenario 1 - Start with 30,000 rice + code:7DE7-A765+59E7-A705 + cheat + description:Scenario 1 - Start with 30,000 population + code:7DE7-A765+59E7-A7A5 + cheat + description:Scenario 2 - Start with 30,000 gold pieces + code:7D67-A406+596D-A466 + cheat + description:Scenario 2 - Start with 30,000 rice + code:7D67-A4A6+596D-A7D6 + cheat + description:Scenario 2 - Start with 30,000 population + code:7D67-A706+596D-A766 + cheat + description:Scenario 3 - Start with 30,000 gold pieces + code:7D67-A7DB+5967-A70B + cheat + description:Scenario 3 - Start with 30,000 rice + code:7D67-A76B+5967-A7AB + cheat + description:Scenario 3 - Start with 30,000 population + code:7D60-ADDB+5960-AD0B + cheat + description:Scenario 4 - Start with 30,000 gold pieces + code:7D67-A70C+5967-A76C + cheat + description:Scenario 4 - Start with 30,000 rice + code:7D67-A7AC+5960-ADDC + cheat + description:Scenario 4 - Start with 30,000 population + code:7D60-AD0C+5960-AD6C + cheat + description:Scenario 5 - Start with 30,000 gold pieces + code:7DBB-D7D6+59BB-D706 + cheat + description:Scenario 5 - Start with 30,000 rice + code:7DBB-D766+59BB-D7A6 + cheat + description:Scenario 5 - Start with 30,000 population + code:7DBC-DDD6+59BC-DD06 + cheat + description:Scenario 6 - Start with 30,000 gold pieces + code:7DB9-6766+59B9-67A6 + cheat + description:Scenario 6 - Start with 30,000 rice + code:7DB1-6DD6+59B1-6D06 + cheat + description:Scenario 6 - Start with 30,000 population + code:7DB1-6D66+59B1-6DA6 + +cartridge sha256:4158e3e8890a52f0b12dc9ad5a29276058a247ff41e9f1d22897ebde1eb11269 + name:Run Saber (USA) + cheat + description:Almost invincible - P1 (disable if you fall into a pit) + code:C2B9-CDA4 + cheat + description:Almost invincible - P2 (disable if you fall into a pit) + code:C2B1-C4A4 + cheat + description:Almost invincible - both players (disable if you fall into a pit) + code:18B0-C4A4 + cheat + description:Infinite lives - P1 + code:DD21-1F6F + cheat + description:Infinite lives - P2 + code:DD26-1F6F + cheat + description:Infinite Super Bombs - P1 + code:DDE4-39E3 + cheat + description:Infinite Super Bombs - P2 + code:DDEF-3073 + cheat + description:Infinite continues + code:C2E7-4572 + cheat + description:Level select and 9 lives selectable on the option menu + code:DF3A-6454 + cheat + description:Hit anywhere - male character + code:6DE5-4728+F9E6-4DF8 + cheat + description:Bomb power-ups give no Super Bombs + code:DDE1-44B5 + cheat + description:Bomb power-ups give 2 Super Bombs + code:D4E1-44B5 + cheat + description:Start with no Super Bombs + code:DD29-0474 + cheat + description:Start with 1 Super Bomb + code:DF29-0474 + cheat + description:Start with 5 Super Bombs + code:D929-0474 + cheat + description:Start with 9 Super Bombs + code:DB29-0474 + cheat + description:Start with 1 health + code:DF25-0D84 + cheat + description:Start with 4 health + code:D025-0D84+D039-0454 + cheat + description:Start with 5 health + code:D925-0D84+D939-0454 + cheat + description:Start with 8 health + code:D625-0D84+D639-0454 + cheat + description:Start with no continues + code:DF83-AD84 + cheat + description:Start with 1 continue + code:D483-AD84 + cheat + description:Start with 5 continues + code:D183-AD84 + cheat + description:Start with 9 continues + code:DC83-AD84 + +cartridge sha256:00e78318926e5cae79bce0535fddd3dccaa732f5c70e43acefc2769a9899eaed + name:Rushing Beat Shura (Japan) + cheat + description:Invincibility + code:C22A-1DD7 + cheat + description:One hit kills + code:1028-CDD3 + +cartridge sha256:0aa16d6b588ba05ab00936201e68a694746fc5e1b2e4f2dbf7cda09265a81379 + name:Sailormoon (France) + cheat + description:Infinite HP - P2 + code:7E07C0:50 + cheat + description:Infinite Bombs + code:7E0759:09 + cheat + description:Full charge meter + code:7E0756:20 + +cartridge sha256:5db804171fca42486485ed85e4afe45b29e6d01304bdf75d520bfc42429739e3 + name:Samurai Shodown (USA) + cheat + description:Hit anywhere - both players + code:DD03-8FDD + cheat + description:Max POW meter after one hit + code:DFE1-876D + cheat + description:Start with 1/2 health + code:0D94-7401 + cheat + description:Start with 1/4 health + code:4D94-7401 + cheat + description:Start with 33 seconds + code:4F53-74A4 + cheat + description:Infinite health - P1 + code:7E6214:80 + cheat + description:Infinite health - P2 + code:7E6614:80 + cheat + description:Infinite time + code:7EBE9B:63 + cheat + description:Max POW meter - P1 + code:7E623D:20 + cheat + description:Max POW meter - P2 + code:7E663D:20 + cheat + description:One hit kills - P1 + code:7E6614:01 + cheat + description:One hit kills - P2 + code:7E6214:01 + +cartridge sha256:c894d0d3b99ebbc54910c1d65ceae4272c959c8693a87c58e040bc5a5f74f129 + name:Sanrio World Smash Ball! (Japan) + cheat + description:Always have Strong Smash - P1 + code:7E0070:A0 + cheat + description:Always have Strong Smash - P2 + code:7E0086:A0 + cheat + description:Never have Strong Smash - P1 + code:7E0070:00 + cheat + description:Never have Strong Smash - P2 + code:7E0086:00 + +cartridge sha256:34e1af0642c85148c5a3dc3c7ab4bcbda13a9fea190934b5526c555fff035651 + name:Saturday Night Slam Masters (USA) + cheat + description:Able to pick the same characters + code:1D79-EFD4+1D77-E404 + cheat + description:Stingray becomes Biff + code:DDC1-CF6F + cheat + description:Stingray becomes Gunloc + code:DFC1-CF6F + cheat + description:Stingray becomes Oni + code:D4C1-CF6F + cheat + description:Stingray becomes Titan + code:D7C1-CF6F + cheat + description:Stingray becomes Haggar + code:D9C1-CF6F + cheat + description:Stingray becomes Grater + code:D1C1-CF6F + cheat + description:Stingray becomes Rasta + code:D5C1-CF6F + cheat + description:Stingray becomes Jumbo + code:D6C1-CF6F + cheat + description:Stingray becomes Scorpion + code:DBC1-CF6F + cheat + description:Biff becomes Gunloc + code:DFC1-CD6F + cheat + description:Biff becomes Oni + code:D4C1-CD6F + cheat + description:Biff becomes Titan + code:D7C1-CD6F + cheat + description:Biff becomes Stingray + code:D0C1-CD6F + cheat + description:Biff becomes Haggar + code:D9C1-CD6F + cheat + description:Biff becomes Grater + code:D1C1-CD6F + cheat + description:Biff becomes Rasta + code:D5C1-CD6F + cheat + description:Biff becomes Jumbo + code:D6C1-CD6F + cheat + description:Biff becomes Scorpion + code:DBC1-CD6F + cheat + description:14-second count outside ring + code:D3DB-5D01 + cheat + description:10-second count outside ring + code:DCDB-5D01 + cheat + description:9-second count for pin + code:DBD6-5DD1 + cheat + description:6-second count for pin + code:D1D6-5DD1 + cheat + description:1-second count for pin + code:DFD6-5DD1 + cheat + description:Faster timer + code:F31F-8F0D + cheat + description:Slower timer + code:1D1F-8F0D + cheat + description:Stingray has faster jalepeno comet + code:D12D-5765+EB2F-5F05 + cheat + description:Quicker 'pattycake slap' for Grater + code:0C83-17D7+D78E-1F67 + cheat + description:Quicker 'sonic fist' for Gunloc + code:0C83-1FA7+D78E-1D07 + cheat + description:Quicker 'sonic fist' for Biff + code:0C83-1F67+D78E-1D07 + cheat + description:Quicker 'jungle fever' for Rasta + code:0C83-1707+D48E-1FA7 + cheat + description:Infinite time + code:7E1A70:01 + +cartridge sha256:7fb5236d10852125f0f37c2188b907d636647400a57bccbdb2f63098ffae8b2d + name:Scooby-Doo Mystery (USA) + cheat + description:Infinite health + code:DDED-3F01 + cheat + description:Infinite lives + code:C2BF-3DAD + cheat + description:Most enemies are more frightening + code:EEED-3F01 + cheat + description:Scooby snacks do nothing + code:C26D-1FD5 + cheat + description:Scooby snacks reduce more fright + code:EE64-1DD5 + cheat + description:Start with 1 life + code:DD60-1467 + cheat + description:Start with 5 lives + code:D060-1467 + cheat + description:Start with 7 lives + code:D160-1467 + cheat + description:Start with 10 lives + code:DB60-1467 + +cartridge sha256:39c69dfbba31086cee0c6a034186148c46e1e6c86fcb8e990fb5364a8845fbcd + name:SD Kidou Senshi Gundam - V Sakusen Shidou (Japan) + cheat + description:Invincibility + code:1D68-6FA0+1D6F-A7D0 + +cartridge sha256:8cd9eea0f01e2442727e4624199afaa42dceeb05b9084a4358cadbe4e5a04577 + name:SD The Great Battle - Aratanaru Chousen (Japan) + cheat + description:Invincibility + code:1DC5-A7D7+C9C1-0FD4 + cheat + description:Infinite lives + code:C968-67AF + +cartridge sha256:a4ab8cfad2f236675b1c0124f8484688e149f38e8628a3b38e9ec14d491ec07e + name:SeaQuest DSV (USA) + cheat + description:Infinite weapons / items + code:8ECC-3F9D+8EC8-44FF + cheat + description:Start with 99 Darwin's Aqua Lungs + code:17EC-C400 + cheat + description:Start with 99 HR Probes + code:17E8-CD00 + cheat + description:Start with 99 Sea Trucks + code:17EC-C7A0 + cheat + description:Start with 99 Sea Speeders + code:17EC-C4A0 + cheat + description:Start with 99 Crabs + code:17EC-CFA0 + cheat + description:Start with 99 Stingers + code:17EC-C700 + +cartridge sha256:17c864a76d498feb6479eee8e7d6807b951c66225033228622bb66754baab1db + name:Secret of Evermore (USA) + cheat + description:Everyone is invincible, including enemies + code:C2A0-CD5A+826B-41DF+D261-400F + cheat + description:Infinite Alchemy ingredients + code:8EA4-C905+8EAE-11D5 + cheat + description:Alchemy levels up on every use + code:DDA9-15D5 + cheat + description:View Boy's stats to get 131,074 Talons (don't use if you already have more than that) + code:CBC4-3DE0+D4C4-3F70+DDC4-3F50+62C4-3470 + cheat + description:Your dog starts with 99 HP + code:17BF-1FEF + cheat + description:Your dog starts with 255 HP + code:EEBF-1FEF + cheat + description:Start with 99 attack points + code:95B9-34ED + cheat + description:Start with a lot of attack points + code:EEB9-34ED + cheat + description:Start with 99 defense points + code:17B5-C75D + cheat + description:Start with a lot of defense points + code:EEB5-C75D + cheat + description:Start with 99 magic defense points + code:17B7-445F + cheat + description:Start with a lot of magic defense points + code:EEB7-445F + cheat + description:Start with 50 evade % points + code:7464-CFE7 + cheat + description:Start with 99 evade % points + code:1764-CFE7 + cheat + description:Start with 50 hit % points + code:746D-3F57 + cheat + description:Start with 99 hit % points + code:176D-3F57 + cheat + description:Start with 99 HP + code:1786-CFEB+17BB-17ED + cheat + description:Start with 255 HP + code:EE86-CFEB+EEBB-17ED + cheat + description:Have all weapons + code:7E22DA:FF+7E22DB:FF + +cartridge sha256:4c15013131351e694e05f22e38bb1b3e4031dedac77ec75abecebe8520d82d5f + name:Secret of Mana (USA) + cheat + description:Protection from most hits (disable to kill enemies) + code:8208-776D + cheat + description:Enemies die instantly + code:CD7E-7D67+DD7E-7DA7+DD7E-7FD7 + cheat + description:Hit anywhere + code:40A7-6765+402C-0F60 + cheat + description:Level 99 after first enemy + code:B606-7F6F+DD78-5F64 + cheat + description:Max weapon damage + code:BA0A-5404+CB0A-54D4 + cheat + description:Change screens to max out Strength, Agility, Constitution, Intelligence and Wisdom + code:DD03-ED04 + cheat + description:Weapon bar never decreases + code:82A0-6466+82E0-0FD4 + cheat + description:Walk through walls + code:DD85-A7D1+DD85-64A1 + cheat + description:Strength for level 16 is 90 + code:9C06-81AD + cheat + description:Agility for level 16 is 90 + code:9C06-85DD + cheat + description:Constitution for level 16 is 90 + code:9C06-850D + cheat + description:Intelligence for level 16 is 90 + code:9C06-856D + cheat + description:Wisdom for level 16 is 90 + code:9C06-85AD + cheat + description:Chest in elder's basement in Potos gives you 65360 GP + code:EE6B-8738 + cheat + description:Staying at the inn in Potos is free if you have enough money + code:C274-8764+C277-8DA4 + cheat + description:Items in the shop at Potos are free if you have enough money + code:CE5F-5767 + cheat + description:Candy costs nothing + code:DDEB-E544 + cheat + description:Overalls costs nothing + code:DDE3-E044 + cheat + description:Bandanna costs nothing + code:DDE8-E9C4 + cheat + description:Cup Of Wishes costs nothing + code:DDEC-E9C4 + cheat + description:Medical Herb costs nothing + code:DDEC-E944 + cheat + description:Wristband costs nothing + code:DDE7-7047 + cheat + description:Hair Ribbon costs nothing + code:DDE8-E144 + cheat + description:Rabite Cap costs nothing + code:DDE8-E1C4 + cheat + description:Faerie Walnut costs nothing + code:DDEC-E0C4+DDEC-E034 + cheat + description:Royal Jam costs nothing + code:DDEC-E044 + cheat + description:Chocolate costs nothing + code:DDEB-E5C4 + cheat + description:Staying at Neko's costs nothing instead of 30 + code:DDAB-E715 + cheat + description:Start with 255 GP + code:EE28-EDAF + cheat + description:Start with 32,768 GP + code:6D28-EFDF + cheat + description:Start with 65,280 GP + code:EE28-EFDF + cheat + description:Start at Level 16 + code:6F09-8707 + +cartridge sha256:ab3d724f3032337300c0cc10259447b173793b9dc25f1f250baf785e9c16bb7d + name:Shadow, The (USA) (Proto) (Alt 1) + cheat + description:Infinite health + code:7E1E31:FF + cheat + description:Infinite dash + code:7E1876:FF + cheat + description:Infinite time + code:7E1B76:09 + cheat + description:Enemy 1 has 0 health + code:7E1B4A:00 + cheat + description:Enemy 2 has 0 health + code:7E1B4B:00 + cheat + description:Enemy 3 has 0 health + code:7E1B4C:00 + cheat + description:Start on level 2 - Empire State + code:7E1E28:01 + cheat + description:Start on level 3 - Amusement Park + code:7E1E28:02 + cheat + description:Start on level 4 - The Museum + code:7E1E28:03 + cheat + description:Start on level 5 - The Federal Buildings + code:7E1E28:04 + cheat + description:Start on level 6 - The Bike Chase + code:7E1E28:05 + cheat + description:Start on level 7 - Maritech Labs + code:7E1E28:06 + cheat + description:Start on level 8 - China Town + code:7E1E28:07 + cheat + description:Start on level 9 - Hotel Monolith + code:7E1E28:08 + +cartridge sha256:85092f4c566b4d34bd4bd70be55df92bfbda40f0030e63a15bafbb8f760c1519 + name:Shadow, The (USA) (Proto) + cheat + description:Infinite health + code:7E1E31:FF + cheat + description:Infinite dash + code:7E1876:FF + cheat + description:Infinite time + code:7E1B76:09 + cheat + description:Enemy 1 has 0 health + code:7E1B4A:00 + cheat + description:Enemy 2 has 0 health + code:7E1B4B:00 + cheat + description:Enemy 3 has 0 health + code:7E1B4C:00 + cheat + description:Start on level 2 - Empire State + code:7E1E28:01 + cheat + description:Start on level 3 - Amusement Park + code:7E1E28:02 + cheat + description:Start on level 4 - The Museum + code:7E1E28:03 + cheat + description:Start on level 5 - The Federal Buildings + code:7E1E28:04 + cheat + description:Start on level 6 - The Bike Chase + code:7E1E28:05 + cheat + description:Start on level 7 - Maritech Labs + code:7E1E28:06 + cheat + description:Start on level 8 - China Town + code:7E1E28:07 + cheat + description:Start on level 9 - Hotel Monolith + code:7E1E28:08 + +cartridge sha256:e6bc0a595d5c7c4bc0bbb61ffe35a70288a77eb78544ed74682d489a9e6f07f4 + name:Shadowrun (USA) + cheat + description:Everything is free + code:6DAE-4FA7+FFAE-44D7 + cheat + description:Don't subtract karma for spells/skills (must have enough to advance) + code:CEEF-4DDD + cheat + description:Don't subtract karma for shooting people (ignore message saying you lost karma) + code:CE6D-47A4 + cheat + description:Don't subtract spell points (works for all spell casters) (casting spells you aren't allowed to raises your spell points) + code:8E69-3DA4 + cheat + description:Going up 1 body point adds 20 stamina instead of 10 + code:F0E1-1FDD + cheat + description:Going up 1 body point adds 30 stamina instead of 10 + code:F3E1-1FDD + cheat + description:Add 65,000 nuyen (if less than 65,000) + code:DFBC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add about 131,000 nuyen (if less than 65,000) + code:D4BC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add about 524,000 nuyen (if less than 65,000) + code:D6BC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set stamina to 100 + code:10BC-17AF+DDB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set stamina to 200 + code:A6BC-17AF+DDB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set magic total possible to 10 (and spell points to 100) + code:DCBC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set total possible magic to 20 (and spell points to 200) + code:F0BC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set total possible magic to 25 (and spell points to 250) + code:FBBC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set strength to 6 + code:D1BC-17AF+E2B8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set charisma to 6 + code:D1BC-17AF+EEB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set karma to 10 (if karma is less than 32) + code:9DBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set karma to 20 (if karma is less than 32) + code:CDBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Set karma to 31 (if karma is less than 32) + code:EEBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add 32 karma (if karma is less than 32) + code:DFBC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add 64 karma (if karma is less than 32) + code:D4BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add 96 karma (if karma is less than 32) + code:D7BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Add 192 karma (if karma is less than 32) + code:D1BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn powerball spell, level 6 + code:D1BC-17AF+D5B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn heal spell, level 6 + code:D1BC-17AF+D6B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn invisibility spell, level 6 + code:D1BC-17AF+DBB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn armor spell, level 6 + code:D1BC-17AF+DCB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn summon spirit spell, level 6 + code:D1BC-17AF+D8B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn freeze spell, level 6 + code:D1BC-17AF+DAB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn firearms skill, level 5 + code:D9BC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn firearms skill, level 10 + code:DCBC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn firearms skill, level 15 + code:DEBC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn computer skill, level 6 + code:D1BC-17AF+D0B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn leadership skill, level 6 + code:D1BC-17AF+D9B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn armed combat skill, level 6 + code:D1BC-17AF+D7B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn unarmed combat skill, level 6 + code:D1BC-17AF+D4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Learn negotiation skill, level 6 + code:D1BC-17AF+D1B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF + cheat + description:Start with computer, firearms skills at level 2 + code:D4BE-4DA4 + cheat + description:Start with computer, firearms skills at level 3 + code:D7BE-4DA4 + cheat + description:Start with computer, firearms skills at level 4 + code:D0BE-4DA4 + cheat + description:Start with computer, firearms skills at level 5 + code:D9BE-4DA4 + cheat + description:Start with computer, firearms skills at level 6 + code:D1BE-4DA4 + cheat + description:Start with 2 strength and charisma + code:D4BC-4404 + cheat + description:Start with 4 strength and charisma + code:D0BC-4404 + cheat + description:Start with 5 strength and charisma + code:D9BC-4404 + cheat + description:Start with 6 strength and charisma + code:D1BC-4404 + cheat + description:Start with 50 stamina + code:74B8-4DA4 + cheat + description:Start with 100 stamina + code:10B8-4DA4 + +cartridge sha256:c73757eea258e169e506eaef989227a59918060f94117917f338183db14c50b6 + name:Shaq-Fu (USA) + cheat + description:Invincibility - P1 + code:0D8B-8DDD+2D8B-8D6D+3D86-87AD+4D8B-8D0D + cheat + description:Hit anywhere - P1 + code:0D85-87DD+3D85-84AD+4D85-870D+DD86-8D6D+FA86-8D0D + cheat + description:Infinite continues - Duel Mode + code:C269-EF0D + cheat + description:Blood enabled + code:DDB6-57AF+DDB3-746F + cheat + description:Start with no continues + code:DDA6-5D07 + cheat + description:Start with 1 continues + code:DFA6-5D07 + cheat + description:Start with 5 continues + code:D9A6-5D07 + cheat + description:Start with 9 continues + code:DBA6-5D07 + cheat + description:Start with 15 continues + code:DEA6-5D07 + +cartridge sha256:dd94308d822636c6ddf73c5e2644c84f2eb8fb4d9201150fc5f37d44d6f423f1 + name:Shin Kidou Senki Gundam W - Endless Duel (Japan) + cheat + description:Hit anywhere - P1 + code:05B2-6FF4+ADB2-6DF4+DDB2-6D94+DDB2-6DB4 + +cartridge sha256:40e25763288521509b2201f5b4e53f3e3bcdfa92e37cf5eeee4f00d8935d534a + name:Shin Nekketsu Kouha - Kunio-tachi no Banka (Japan) + cheat + description:Invincibility + code:C22B-1466 + cheat + description:Invincibility (alt) + code:7E1202:02 + cheat + description:Infinite health - Kunio + code:7E0094:FF + cheat + description:Infinite health - Riki + code:7E0096:FF + cheat + description:Infinite health - Misako + code:7E0098:FF + cheat + description:Infinite health - Kyouko + code:7E009A:FF + cheat + description:One hit kills + code:7E009C:00+7E009E:00+7E00A0:00+7E00A2:00 + cheat + description:Play as Kunio - Jail Outfit (Safe To Use) + code:7E11DC:00 + cheat + description:Play as Riki - Jail Outfit (Safe To Use) + code:7E11DC:01 + cheat + description:Play as Takayama + code:7E11DC:03 + cheat + description:Play as Cop + code:7E11DC:04 + cheat + description:Play as Gouji + code:7E11DC:05 + cheat + description:Play as Tooru + code:7E11DC:06 + cheat + description:Play as Gouji Henchman + code:7E11DC:07 + cheat + description:Play as Kunio - School Outfit (Safe To Use) + code:7E11DC:08 + cheat + description:Play as Riki - School Outfit (Safe To Use) + code:7E11DC:09 + cheat + description:Play as Misako (Safe To Use) + code:7E11DC:0A + cheat + description:Play as Kyouko (Safe To Use) + code:7E11DC:0B + cheat + description:Play as Daiki Stage 2, Ryuuta Stage 3 + code:7E11DC:0C + cheat + description:Play as Henchman Stage 2 + + code:7E11DC:0E+7E11DC:11+7E11DC:14 + cheat + description:Play as Shingi Henchman + code:7E11DC:17 + cheat + description:Play as Shingi + code:7E11DC:1A + cheat + description:Play as Lisa + code:7E11DC:1B + cheat + description:Play as Sabu + code:7E11DC:1E + cheat + description:Play as Kinji + code:7E11DC:1F + cheat + description:Play as Ken + code:7E11DC:20 + cheat + description:Play as Misuzu + code:7E11DC:21 + cheat + description:Play as Yakuza 1 + code:7E11DC:23 + cheat + description:Play as Yakuza 2 + code:7E11DC:25 + cheat + description:Play as Joe + code:7E11DC:2C + cheat + description:Character color becomes White + code:7E0084:00 + cheat + description:Character color becomes Blue + code:7E0084:01 + cheat + description:Character color becomes Green + code:7E0084:02 + cheat + description:Character color becomes Light Blue + code:7E0084:03 + +cartridge sha256:de2d5a952096c5f50368b9270d342aa6e7a39007ffbec27117e182e30ef4cf32 + name:Sid Meier's Civilization (USA) + cheat + description:Get a new skill every turn + code:DD30-74A4 + cheat + description:Have 42.0 moves until you specify no orders + code:CB28-5DA4+5328-5FD4 + cheat + description:Start with more money + code:BB04-EF74+BB04-EF54 + cheat + description:Start with a lot more money + code:EE04-EF74+EE04-EF54 + cheat + description:Infinite time + code:7E75D7:00 + cheat + description:Max income + code:7E7630:FF + +cartridge sha256:d09ca5adaee65cfd686742482bc55b1a3ce9bc5ebed61f24c5631555151a7fc7 + name:Side Pocket (USA) + cheat + description:Infinite shots + code:7E1094:0A + cheat + description:Infinite shots (alt) + code:7E1094:10 + cheat + description:Gain lots of bonus shots for every ball you get in + code:7E1097:03 + cheat + description:Always advance to the next level + code:7E10A2:E7+7E10A3:03 + +cartridge sha256:c0bd1b378337c32047a6b7122a3813beb646e496fbdb1fa5c87ab9856271e4c5 + name:SimAnt - The Electronic Ant Colony (USA) + cheat + description:Always have maximum energy + code:DD88-0D0A + cheat + description:Yellow ant always wins + code:DDA7-6402 + +cartridge sha256:e9c0bc05511e05a0d7c3e7cc42e761e1e8e532d46f59b9854b6902e1a2e9dd0a + name:SimCity (USA) + cheat + description:Money doesn't decrease for most types of spending + code:C28A-AD61 + cheat + description:Time goes faster + code:DD67-DFAA + cheat + description:Time goes slower + code:DE67-DFAA + cheat + description:Start easy game with $40,000 + code:0DAB-6D02+BAAB-6D62 + cheat + description:Start easy game with $60,000 + code:1DAB-6D02+3CAB-6D62 + cheat + description:Start easy game with $3,000 + code:86AB-6D02+D8AB-6D62 + cheat + description:Cheat menu at game exit + code:0188E7:A9+0188E8:80+0188E9:F0 + +cartridge sha256:bf74c58e4190faca2f3a967dc190fe529d13887d1262b72e057b5353e43cf67f + name:SimCity 2000 - The Ultimate City Simulator (USA) + cheat + description:Start with $99,999,999 on all the maps except the Land Of Freedom + code:EEF3-8700+3DF3-8760+E9FE-8D60+D9FE-8DA0 + cheat + description:Start with $99,999,999 on the Land Of Freedom + code:EEF3-8D00+3DF3-8D60+E9F3-8F60+D9F3-8FA0 + +cartridge sha256:446a1036d036986fdea7906c83832d3ba79ef63a6ed8c4e88b89ab9cb25daded + name:SimEarth - The Living Planet (USA) + cheat + description:Infinite Omega energy + code:DDB2-F35E + +cartridge sha256:f0d98e9061d0f6a193bb856de8a592f336dada97c41966e8d03119ba97465413 + name:Simpsons, The - Bart's Nightmare (USA) + cheat + description:Infinite lives (Bartman and Itchy and Scratchy sub-games) + code:C2BE-60EA + cheat + description:Infinite Z's (main game) + code:C2C3-6925+C2C3-61B5 + cheat + description:Start with 2 bubbles + code:D46A-D521 + cheat + description:Start with 9 bubbles + code:DB6A-D521 + cheat + description:Infinite life + code:7E0938:0A + cheat + description:Infinite hits + code:7E0514:0B + cheat + description:Infinite 99 Watermelon Seeds left + code:7E0137:63 + cheat + description:Infinite 99 Gum left + code:7E013D:63 + cheat + description:Infinite Bubbles and Seeds + code:89CB-D9B5 + cheat + description:All Pages + code:7E013F:08 + cheat + description:No Pages + code:7E013F:00 + +cartridge sha256:70008efe51185eb0a2f8d8d8ac2bdbb99bd3dfcc169dcc474962f82692998051 + name:Sink or Swim (USA) + cheat + description:Infinite lives + code:7E0972:09 + cheat + description:0 left + code:7E164A:00 + cheat + description:0 to rescue + code:7E1650:00 + cheat + description:9 saved + code:7E164C:09 + +cartridge sha256:e10070f01845505ae8bfdf7b5b492e7209c2ae876f169fb6ff420dea269f4da3 + name:Skuljagger - Revolt of the Westicans (USA) + cheat + description:Invincibility + code:1DCC-A4D4 + cheat + description:Infinite Red Jemeralds + code:D4CB-A7D4 + cheat + description:Don't lose Green Jemeralds when you fall and die + code:C2BB-6FA1 + cheat + description:Infinite time + code:DD6B-DF07 + cheat + description:Infinite lives + code:DDCA-AD04+DDBB-6D61 + cheat + description:Die when touched (regardless of Jemeralds) + code:6DCB-A404+6DCC-A4D4 + cheat + description:No enemies or Jemeralds (good for exploring, disable to advance) + code:8BAB-6DD9 + cheat + description:Red jemeralds set to 10 after being hit (must have at least 1) + code:FFCB-A7D4 + cheat + description:Slower timer + code:5D66-DFA7 + cheat + description:Faster timer + code:F366-DFA7 + cheat + description:Time goes by 2x as fast + code:D46B-DF07 + cheat + description:Time goes by 4x as fast + code:D06B-DF07 + cheat + description:Green Jemeralds worth 3 + code:D7C2-6704 + cheat + description:Green Jemeralds worth 9 + code:DBC2-6704 + cheat + description:Green Jemeralds worth 19 + code:FBC2-6704 + cheat + description:Green Jemeralds worth 25 (extra life on each one) + code:49C2-6704 + cheat + description:10 Green Jemeralds gives an extra life + code:FDC3-6DA4 + cheat + description:50 Green Jemeralds gives an extra life + code:9DC3-6DA4 + cheat + description:1 Green Jemerald gives an extra life + code:DDC3-6F04 + cheat + description:Start with 1 life instead of 5 + code:DF83-D765 + cheat + description:Start with 3 lives + code:D783-D765 + cheat + description:Start with 9 lives + code:DB83-D765 + cheat + description:Start with 19 lives + code:FB83-D765 + cheat + description:Start with 50 lives + code:9D83-D765 + cheat + description:Start with 99 lives + code:BB83-D765 + cheat + description:Invincibility (alt) + code:7E1A02:08 + cheat + description:Infinite time (alt) + code:7E02BE:FF + +cartridge sha256:a4ba1483db79c3f6278082387bce216d8f3e3b11ca32d49516d27f5ac07135a5 + name:Skyblazer (USA) + cheat + description:Invincibility + code:7E0065:9E + cheat + description:Infinite health + code:7EF801:04 + cheat + description:Infinite special power + code:7E1F0D:08 + cheat + description:Infinite Warrior Force + code:7E0089:FF + cheat + description:Have 99 gems + code:7E1F0E:63 + cheat + description:Have Aura Attack + code:7E1F0B:01 + cheat + description:Have Comet Flash + code:7E1F0B:02 + cheat + description:Have Lightning Strike + code:7E1F0B:03 + cheat + description:Have Time Stop + code:7E1F0B:04 + cheat + description:Have Star Fire + code:7E1F0B:05 + cheat + description:Have Warrior Force + code:7E1F0B:06 + cheat + description:Have Heal + code:7E1F0B:07 + cheat + description:Have Fiery Phoenix + code:7E1F0B:08 + cheat + description:All enemies frozen + code:7EFA69:8D+7EFA6A:8D+7EFA6B:8D+7EFA73:8D+7EFA6C:8D+7EFA74:8D+7EFA6D:8D+7EFA75:8D+7EFA6E:8D+7EFA7D:8D+7EFA76:8D+7EFA6F:8D+7EFA7E:8D+7EFA77:8D+7EFA70:8D+7EFA7F:8D+7EFA78:8D+7EFA71:8D+7EFA79:8D+7EFA72:8D+7EFA7A:8D+7EFA7B:8D+7EFA7C:8D+7EFA60:8D+7EFA61:8D+7EFA62:8D+7EFA63:8D+7EFA64:8D+7EFA65:8D+7EFA66:8D+7EFA67:8D+7EFA68:8D + +cartridge sha256:cbca00fa5dfd6c72db2f21d010255657c33f7ac48de2554262035ead11bdf314 + name:Smart Ball (USA) + cheat + description:Infinite lives + code:C2B9-0F0D + cheat + description:Protection from most enemies (lose no hearts) + code:C2BE-A467 + cheat + description:Infinite red balls on pick-up - until continue + code:C266-04A7 + cheat + description:Go to any level + code:7762-040D+DE62-0FAD + cheat + description:Super-jump + code:ECC3-DF6D + cheat + description:Mega-jump + code:E1C3-DF6D + cheat + description:Start with 1 life instead of 3 + code:DF6D-676D + cheat + description:Start with 5 lives + code:D96D-676D + cheat + description:Start with 10 lives + code:DC6D-676D + cheat + description:Start with 25 lives + code:FB6D-676D + cheat + description:Start with 50 lives + code:746D-676D + cheat + description:Start with 99 lives + code:176D-676D + +cartridge sha256:6fe7c8d39fcfab7f0a18e837a7ee0dd162e0557d6989c6e0d10c81616d3a0b8b + name:Soldiers of Fortune (USA) + cheat + description:Infinite lives + code:CBC1-E46F + cheat + description:Smaller food power-ups heal twice as much + code:DCE0-87AD + cheat + description:Smaller food power-ups heal four times as much + code:F0E0-87AD + cheat + description:Large food power-ups heal twice as much + code:F3E9-8FDD + cheat + description:Large food power-ups heal four times as much + code:7AE9-8FDD + cheat + description:Only 3 special powers can be stored instead of 6 (handicap) + code:D0EB-8DDD + cheat + description:Special power power-ups are worth 6 (always fill meter) + code:6DEB-8D0D + cheat + description:Special powers aren't used up + code:3CC6-870D + cheat + description:Mercenary starts with much more health + code:1D4E-5475 + cheat + description:Brigand starts with much more health + code:1D44-87E5 + cheat + description:Gentleman starts with much more health + code:1D41-8F85 + cheat + description:Navvie starts with much more health + code:1D4B-8755 + cheat + description:Thug starts with much more health + code:1D42-8F75 + cheat + description:Scientist starts with much more health + code:1D4D-E4E5 + cheat + description:Extra lives cost 244 instead of 500 + code:DDF6-5D50 + cheat + description:Skill power-ups cost 44 instead of 300 + code:DDF6-5DE0 + cheat + description:Health power-ups cost 1 instead of 75 + code:DFF6-5F70 + cheat + description:Health power-ups cost 25 instead of 75 + code:FBF6-5F70 + cheat + description:Speed power-ups cost 1 instead of 250 + code:DFF6-5F80 + cheat + description:Speed power-ups cost 100 instead of 250 + code:10F6-5F80 + cheat + description:Wisdom power-ups cost 1 instead of 80 + code:DFF6-5470 + cheat + description:Wisdom power-ups cost 25 instead of 80 + code:FBF6-5470 + cheat + description:Special powers cost 1 instead of 150 + code:DFF6-5480 + cheat + description:Special powers cost 50 instead of 150 + code:74F6-5480 + cheat + description:Weapon power-ups cost 1 instead of 250 + code:DFF6-5780 + cheat + description:Weapon power-ups cost 100 instead of 250 + code:10F6-5780 + cheat + description:??? (New Special powers costs 44 instead of 300) + code:DDF6-5750 + cheat + description:Brigand starts with Bomb special power + code:DF40-ED75 + cheat + description:Mercenary starts with Bomb special power + code:DF40-EF75 + cheat + description:Gentleman starts with Bomb special power + code:DF40-E475 + cheat + description:Navvie starts with Bomb special power + code:DF40-E775 + cheat + description:Thug starts with Bomb special power + code:DF49-ED75 + cheat + description:Scientist starts with Bomb special power + code:DF49-EF75 + cheat + description:Brigand starts with Shot Burst special power + code:D440-ED75 + cheat + description:Mercenary starts with Shot Burst special power + code:D440-EF75 + cheat + description:Gentleman starts with Shot Burst special power + code:D440-E475 + cheat + description:Navvie starts with Shot Burst special power + code:D440-E775 + cheat + description:Thug starts with Shot Burst special power + code:D449-ED75 + cheat + description:Scientist starts with Shot Burst special power + code:D449-EF75 + cheat + description:Brigand starts with Map special power (must still destroy nodes special power) + code:D740-ED75 + cheat + description:Mercenary starts with Map special power (must still destroy nodes special power) + code:D740-EF75 + cheat + description:Gentleman starts with Map special power (must still destroy nodes special power) + code:D740-E475 + cheat + description:Navvie starts with Map special power (must still destroy nodes special power) + code:D740-E775 + cheat + description:Thug starts with Map special power (must still destroy nodes special power) + code:D749-ED75 + cheat + description:Scientist starts with Map special power (must still destroy nodes special power) + code:D749-EF75 + cheat + description:Brigand starts with Destroy Nodes special power + code:D040-ED75 + cheat + description:Mercenary starts with Destroy Nodes special power + code:D040-EF75 + cheat + description:Gentleman starts with Destroy Nodes special power + code:D040-E475 + cheat + description:Navvie starts with Destroy Nodes special power + code:D040-E775 + cheat + description:Thug starts with Destroy Nodes special power + code:D049-ED75 + cheat + description:Scientist starts with Destroy Nodes special power + code:D049-EF75 + cheat + description:Brigand starts with Repel Monster special power + code:D940-ED75 + cheat + description:Mercenary starts with Repel Monster special power + code:D940-EF75 + cheat + description:Gentleman starts with Repel Monster special power + code:D940-E475 + cheat + description:Navvie starts with Repel Monster special power + code:D940-E775 + cheat + description:Thug starts with Repel Monster special power + code:D949-ED75 + cheat + description:Scientist starts with Repel Monster special power + code:D949-EF75 + cheat + description:Brigand starts with First Aid special power + code:D140-ED75 + cheat + description:Mercenary starts with First Aid special power + code:D140-EF75 + cheat + description:Gentleman starts with First Aid special power + code:D140-E475 + cheat + description:Navvie starts with First Aid special power + code:D140-E775 + cheat + description:Thug starts with First Aid special power + code:D149-ED75 + cheat + description:Scientist starts with First Aid special power + code:D149-EF75 + cheat + description:Brigand starts with Freeze Monster special power + code:D540-ED75 + cheat + description:Mercenary starts with Freeze Monster special power + code:D540-EF75 + cheat + description:Gentleman starts with Freeze Monster special power + code:D540-E475 + cheat + description:Navvie starts with Freeze Monster special power + code:D540-E775 + cheat + description:Thug starts with Freeze Monster special power + code:D549-ED75 + cheat + description:Scientist starts with Freeze Monster special power + code:D549-EF75 + cheat + description:Brigand starts with Shield special power + code:D640-ED75 + cheat + description:Mercenary starts with Shield special power + code:D640-EF75 + cheat + description:Gentleman starts with Shield special power + code:D640-E475 + cheat + description:Navvie starts with Shield special power + code:D640-E775 + cheat + description:Thug starts with Shield special power + code:D649-ED75 + cheat + description:Scientists starts with Shield special power + code:D649-EF75 + cheat + description:Brigand starts with Party Power special power + code:DB40-ED75 + cheat + description:Mercenary starts with Party Power special power + code:DB40-EF75 + cheat + description:Gentleman starts with Party Power special power + code:DB40-E475 + cheat + description:Navvie starts with Party Power special power + code:DB40-E775 + cheat + description:Thug starts with Party Power special power + code:DB49-ED75 + cheat + description:Scientist starts with Party Power special power + code:DB49-EF75 + cheat + description:Brigand starts with Air Burst special power + code:DC40-ED75 + cheat + description:Mercenary starts with Air Burst special power + code:DC40-EF75 + cheat + description:Gentleman starts with Air Burst special power + code:DC40-E475 + cheat + description:Navvie starts with Air Burst special power + code:DC40-E775 + cheat + description:Thug starts with Air Burst special power + code:DC49-ED75 + cheat + description:Scientist starts with Air Burst special power + code:DC49-EF75 + cheat + description:Brigand starts with Distract Monster special power + code:D840-ED75 + cheat + description:Mercenary starts with Distract Monster special power + code:D840-EF75 + cheat + description:Gentleman starts with Distract Monster special power + code:D840-E475 + cheat + description:Navvie starts with Distract Monster special power + code:D840-E775 + cheat + description:Thug starts with Distract Monster special power + code:D849-ED75 + cheat + description:Scientist starts with Distract Monster special power + code:D849-EF75 + cheat + description:Brigand starts with Molotov special power + code:DA40-ED75 + cheat + description:Mercenary starts with Molotov special power + code:DA40-EF75 + cheat + description:Gentleman starts with Molotov special power + code:DA40-E475 + cheat + description:Navvie starts with Molotov special power + code:DA40-E775 + cheat + description:Thug starts with Molotov special power + code:DA49-ED75 + cheat + description:Scientist starts with Molotov special power + code:DA49-EF75 + cheat + description:Brigand starts with Ground Mine special power + code:D240-ED75 + cheat + description:Mercenary starts with Ground Mine special power + code:D240-EF75 + cheat + description:Gentleman starts with Ground Mine special power + code:D240-E475 + cheat + description:Navvie starts with Ground Mine special power + code:D240-E775 + cheat + description:Thug starts with Ground Mine special power + code:D249-ED75 + cheat + description:Scientist starts with Ground Mine special power + code:D249-EF75 + cheat + description:Brigand starts with Dynamite special power + code:D340-ED75 + cheat + description:Mercenary starts with Dynamite special power + code:D340-EF75 + cheat + description:Gentleman starts with Dynamite special power + code:D340-E475 + cheat + description:Navvie starts with Dynamite special power + code:D340-E775 + cheat + description:Thug starts with Dynamite special power + code:D349-ED75 + cheat + description:Scientist starts with Dynamite special power + code:D349-EF75 + cheat + description:Brigand gets Party Power as a 4th special power + code:DB40-EDE5 + cheat + description:Mercenary gets Party Power as a 4th special power + code:DB40-EFE5 + cheat + description:Navvie gets Party Power as a 3rd special power + code:DB40-E785 + cheat + description:Thug gets Party Power as a 3rd special power + code:DB49-ED85 + cheat + description:Infinite health - P1 + code:7E40F0:64 + cheat + description:Infinite health - P2 or computer partner + code:7E4165:64 + cheat + description:Infinite lives - P1 + code:7E0090:04 + cheat + description:Infinite lives - P2 or computer partner + code:7E0092:04 + cheat + description:Infinite special attacks - P1 + code:7E40FF:06 + cheat + description:Infinite special attacks - P2 or computer partner + code:7E4174:06 + +cartridge sha256:75a7b5b8ad0329dc828d3201089e125fd55fdfc99d4cec704ffcd7e3036c2410 + name:Sonic Blast Man (USA) + cheat + description:Invincibility + code:2DC2-07A7 + cheat + description:Infinite health + code:C2A9-04AD + cheat + description:Infinite health against most enemy hits + code:C2A9-04AD + cheat + description:Infinite health against hits on the head when you're being held + code:C2C3-0DAD + cheat + description:Infinite special + code:C2C3-0464 + cheat + description:Infinite Dynamite Punches + code:C2C3-0464 + cheat + description:Infinite lives + code:DDA5-6F60 + cheat + description:Infinite lives (alt) + code:C2A5-64D0 + cheat + description:Infinite credits + code:C2AC-A4A4 + cheat + description:Hit anywhere + code:47A6-07AD+6DA6-076D + cheat + description:Super glove worth nothing + code:C2A9-0F6F + cheat + description:Hamburger worth nothing + code:DDA4-070F + cheat + description:Hamburger fully restores health + code:9DA4-070F + cheat + description:Apple worth nothing + code:DDAF-040F + cheat + description:Apple fully restores health + code:9DAF-040F + cheat + description:Continue with 3/4 health + code:7AB5-A407 + cheat + description:Continue with 1/2 health + code:46B5-A407 + cheat + description:Continue with 1/4 health + code:F0B5-A407 + cheat + description:Start with 11 lives + code:D76B-D46D + cheat + description:Start with 0 dynamite punches + code:DDAD-ADDF + cheat + description:Start with 5 dynamite punches + code:D9AD-ADDF + cheat + description:Start with 7 dynamite punches + code:D5AD-ADDF + cheat + description:Start with 9 dynamite punches + code:DBAD-ADDF + cheat + description:Start with 3/4 health + code:7AB9-0DD7 + cheat + description:Start with 1/2 health + code:46B9-0DD7 + cheat + description:Start with 1/4 health + code:F0B9-0DD7 + cheat + description:Start on stage 2 + code:33BC-0F0F + cheat + description:Start on stage 3 + code:CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D4BC-0DAF + cheat + description:Start on stage 4 + code:CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D7BC-0DAF + cheat + description:Start on stage 5 + code:CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D0BC-0DAF + +cartridge sha256:efe78f6fc68ddd0f6ef0ad9e0223d9417c14fcadece987dc8f50423fd6723b27 + name:Sonic Blast Man II (USA) + cheat + description:Invincibility + code:C206-5F64 + cheat + description:Infinite health + code:C20B-EFA7 + cheat + description:Infinite lives + code:C295-7F6F + cheat + description:Infinite health - P1 + code:7E0DA5:FF + cheat + description:Infinite health - P2 + code:7E1DA7:FF + cheat + description:Infinite Specials - P1 + code:7E0DAD:63 + cheat + description:Infinite Specials - P2 + code:7E1DAF:63 + cheat + description:Infinite lives - P1 + code:7E0DA9:32 + cheat + description:Infinite lives - P2 + code:7E0DAB:32 + cheat + description:One hit kills on most enemies and bosses + code:7E1377:00+7E1393:00+7E1395:00+7E1391:00+7E138F:00 + cheat + description:Play as Sonic Blast Man - P1 + code:7E0D8D:00 + cheat + description:Play as Sonic Blast Man - P2 + code:7E0D8F:00 + cheat + description:Play as Sonia - P1 + code:7E0D8D:01 + cheat + description:Play as Sonia - P2 + code:7E0D8F:01 + cheat + description:Play as Captain Choyear - P1 + code:7E0D8D:02 + cheat + description:Play as Captain Choyear - P2 + code:7E0D8F:02 + +cartridge sha256:8438da09de8ce9aded3bb08644543f7b60fb60cffc68ce2d67d6a0643f2ecfc2 + name:Soul Blazer (USA) + cheat + description:Invincibility + code:C26E-6DA7+C223-0D07 + cheat + description:Have all spirits after obtaining the first one + code:FEC3-A7D2 + cheat + description:Get max level + code:DDEB-649F + cheat + description:Gems set to 999,999 every time one is obtained + code:DDE8-64BF + cheat + description:10 EXP required instead of 100 for level 2 + code:FDE8-A761+DDE8-A7A1 + cheat + description:180 EXP required instead of 280 for level 3 + code:DFEA-ADA1 + cheat + description:380 EXP required instead of 580 for level 4 + code:D7EA-AFA1 + cheat + description:600 EXP required instead of 1,000 for level 5 + code:D1EA-A4A1 + cheat + description:1,200 EXP required instead of 2,000 for level 6 + code:F4EA-A7A1 + cheat + description:2,400 EXP required instead of 3,200 for level 7 + code:40E2-ADA1 + cheat + description:3,500 EXP required instead of 4,500 for level 8 + code:79E2-AFA1 + cheat + description:4,800 EXP required instead of 5,800 for level 9 + code:06E2-A4A1 + cheat + description:6,600 EXP required instead of 7,600 for level 10 + code:11E2-A7A1 + cheat + description:8,600 EXP required instead of 9,600 for level 11 + code:61E3-ADA1 + cheat + description:10,000 EXP required instead of 12,400 for level 12 + code:DDE3-AFA1 + cheat + description:13,000 EXP required instead of 15,000 for level 13 + code:7DE3-A4A1 + cheat + description:15,000 EXP required instead of 19,000 for level 14 + code:9DE3-A7A1 + cheat + description:Start with 4 HP + code:D0E6-0FB4 + cheat + description:Start with 15 HP + code:DEE6-0FB4 + cheat + description:Start with 25 HP + code:FBE6-0FB4 + cheat + description:Start with 50 HP + code:74E6-0FB4 + cheat + description:Start with 75 HP + code:08E6-0FB4 + cheat + description:Start with 100 HP + code:10E6-0FB4 + cheat + description:Start with 127 HP + code:5EE6-0FB4 + cheat + description:Infinite and max HP + code:7E1B88:64+7E1B8A:64 + cheat + description:Level up more quickly + code:7E1B78:FF + +cartridge sha256:24f3f22949f36ebf8ab4beaa8cba22db107efe7a7585f749343f2860bf041fe1 + name:Space Football - One on One (USA) + cheat + description:Infinite energy + code:C2B9-D7AF + cheat + description:Instant acceleration + code:1B26-A7D7 + cheat + description:No pushback on firing + code:C2C9-D46F + cheat + description:Push forward on firing + code:1BC9-DFAF + +cartridge sha256:dc5353ddc350816619230f25f8c51bddabf7438e6dfba21662eb1c4794856735 + name:Space Invaders (USA) + cheat + description:Infinite lives + code:CB6F-37A9 + cheat + description:Enemies never move + code:7E03D5:00 + cheat + description:Infinite credits + code:7E03BF:02 + +cartridge sha256:f5b7418c00ccac44615cfc57c7e17d57533837056886f6d733e6b714c36dec1f + name:Space Megaforce (USA) + cheat + description:Protection against enemy hits, and weapon level goes to 2 when hit + code:CB68-D4AC+D168-D7DC + cheat + description:Protection against enemy hits, and weapon level goes to 6 when hit + code:CB68-D4AC+D168-D7DC+D16A-D4DC + cheat + description:Infinite bombs + code:DD65-AFAB + cheat + description:Infinite ships + code:DD6D-07AC + cheat + description:Hit anywhere + code:1DCD-6D01+2DCD-6DA1+4ACD-6FD1+C2CD-6DD1+D2CD-6D61 + cheat + description:Power shots (weapon type 6) last until you pick up another weapon or get hit + code:828E-AF6B + cheat + description:Weapon capsules give you weapon type 1 + code:CBC4-0F06+DDC4-0F66 + cheat + description:Weapon capsules give you weapon type 2 + code:CBC4-0F06+DFC4-0F66 + cheat + description:Weapon capsules give you weapon type 3 + code:CBC4-0F06+D4C4-0F66 + cheat + description:Weapon capsules give you weapon type 4 + code:CBC4-0F06+D7C4-0F66 + cheat + description:Weapon capsules give you weapon type 5 + code:CBC4-0F06+D0C4-0F66 + cheat + description:Weapon capsules give you weapon type 6 + code:CBC4-0F06+D9C4-0F66 + cheat + description:Bomb capsules worth 0 + code:DDCE-D4D6 + cheat + description:Bomb capsules worth 2 + code:D4CE-D4D6 + cheat + description:Bomb capsules worth 4 + code:D0CE-D4D6 + cheat + description:Bomb capsules worth 6 + code:D1CE-D4D6 + cheat + description:Start with 0 bombs instead of 3 + code:DDC9-DD06 + cheat + description:Start with 7 bombs + code:D5C9-DD06 + cheat + description:Start with 10 bombs + code:FDC9-DD06 + cheat + description:Start with 25 bombs + code:49C9-DD06 + cheat + description:Start with 50 bombs + code:9DC9-DD06 + cheat + description:Start with 99 bombs + code:BBC9-DD06 + cheat + description:Start with 2 ships + code:DFBE-A4A8 + cheat + description:Start with 8 ships + code:D5BE-A4A8 + cheat + description:Start with 11 ships + code:FDBE-A4A8 + cheat + description:Start with 26 ships + code:49BE-A4A8 + cheat + description:Start with 51 ships + code:9DBE-A4A8 + cheat + description:Start with 76 ships + code:59BE-A4A8 + cheat + description:Start with 100 ships + code:BBBE-A4A8 + cheat + description:Start in area 2 + code:CB6A-0D0D+D46A-0D6D + cheat + description:Start in area 3 + code:CB6A-0D0D+D76A-0D6D + cheat + description:Start in area 4 + code:CB6A-0D0D+D06A-0D6D + cheat + description:Start in area 5 + code:CB6A-0D0D+D96A-0D6D + cheat + description:Start in area 6 + code:CB6A-0D0D+D16A-0D6D + cheat + description:Start in area 7 + code:CB6A-0D0D+D56A-0D6D + cheat + description:Start in area 8 + code:CB6A-0D0D+D66A-0D6D + cheat + description:Start in area 9 + code:CB6A-0D0D+DB6A-0D6D + cheat + description:Start in area 10 + code:CB6A-0D0D+DC6A-0D6D + cheat + description:Start in area 11 + code:CB6A-0D0D+D86A-0D6D + cheat + description:Start in area 12 + code:CB6A-0D0D+DA6A-0D6D + +cartridge sha256:14dc44687c8da35aec63b9edadbaac21bf7293f5171646f614139192e82ab071 + name:Spanky's Quest (USA) + cheat + description:Infinite lives + code:40AC-DF08 + cheat + description:Start with 1 life + code:DD31-AFAD + cheat + description:Start with 6 lives + code:D931-AFAD + cheat + description:Start with 10 lives + code:DB31-AFAD + cheat + description:Start with 1 key in all areas after 1-1 + code:CB3F-0FDF+DF3F-0F0F + cheat + description:Start on area 2-1 + code:CB35-A7AD+DF36-ADDD + cheat + description:Start on area 3-1 + code:CB35-A7AD+D436-ADDD + cheat + description:Start on area 4-1 + code:CB35-A7AD+D736-ADDD + cheat + description:Start on area 5-1 + code:CB35-A7AD+D036-ADDD + +cartridge sha256:eaa06470734ea57eff9b888137aa468fcb7bb149a0870a85e68c9db123de4670 + name:Sparkster (USA) + cheat + description:Invincibility + code:DD27-CFD6 + cheat + description:Invincibility (blinking) + code:CB27-CDA6+D027-CFD6 + cheat + description:Infinite health + code:3C3E-17A8+3C2E-14D6 + cheat + description:Infinite health (alt) + code:7E0691:0E + cheat + description:Infinite lives (alt) + code:7E0168:09 + cheat + description:Hit anywhere + code:6D30-346D+C96A-C79D+DD34-3F0D + cheat + description:1 Jewel needed for 1-up + code:7E016A:63 + +cartridge sha256:32d0f1ca5b91fd9b2caf81422fb9e8fb30bc091f0b2a429b9269dd307fcba4fd + name:Spawn - The Video Game (USA) + cheat + description:Invincibility after one hit (invisible) + code:C203-84D1 + cheat + description:Almost invincible (blinking) + code:3C03-8F61 + cheat + description:Infinite health + code:C208-87D1 + cheat + description:Hit anywhere + code:40F8-84B0 + cheat + description:Don't blink after getting hit + code:FDDB-5FB9 + cheat + description:Falling doesn't use life points + code:C2F4-7FD1 + cheat + description:Special moves don't use life points + code:C27D-8701 + cheat + description:Some bullets do 2x damage + code:D6D7-8F20 + cheat + description:Some bullets do no damage + code:DDD7-8F20 + cheat + description:Some bullets kill you + code:EED7-8F20 + cheat + description:Some enemy punches electrocute you + code:DB78-84B0 + cheat + description:Some enemy punches do no damage + code:DD78-84B0 + cheat + description:Some enemy punches kill you + code:EE78-84B0 + cheat + description:Guys with pipes do 2x damage + code:DBB0-EFA3+DBCF-8763 + cheat + description:Guys with pipes do no damage + code:DDB0-EFA3+DDCF-8763 + cheat + description:Guys with pipes kill + code:EEB0-EFA3+EECF-8763 + cheat + description:Flaming bottles do 2x damage + code:DB4B-7DF1+DB43-E4F9 + cheat + description:Flaming bottles do no damage + code:DD4B-7DF1+DD43-E4F9 + cheat + description:Flaming bottles kill + code:EE4B-7DF1+EE43-E4F9 + cheat + description:Start with 1/4 health + code:FDB0-E4DB + cheat + description:Start with 1/2 health + code:4CB0-E4DB + cheat + description:Start with 3/4 health + code:73B0-E4DB + cheat + description:Invincibility + code:7E1F56:1F + cheat + description:Infinite health (alt) + code:7E1F00:63 + +cartridge sha256:fe2371bed45f5e244ce3ef8585894c0ffa4272e3f58c2f4795ef91fb1ee54b15 + name:Spectre (USA) + cheat + description:Infinite ammo + code:C2C8-D4DD + cheat + description:Infinite lives + code:E08F-D40D + cheat + description:Infinite health + code:E0C1-6707 + cheat + description:Infinite hyperspace + code:C2C0-DDDF + cheat + description:Freeze bonus timer + code:C232-ADA4 + cheat + description:Infinite custom shield + code:7E1B42:0A + cheat + description:Infinite custom speed + code:7E1B44:0A + cheat + description:Infinite custom ammo + code:7E1B46:0A + +cartridge sha256:68a51b7a06b6a9e7100a89521e52b5c467c46c828c0f6504bee677beac2aa6fd + name:Speedy Gonzales - Los Gatos Bandidos (USA) (Rev 1) + cheat + description:Infinite health + code:C2B4-CFAD + cheat + description:Infinite time + code:3CA9-C76D + cheat + description:Infinite continues + code:C266-44A1 + cheat + description:Start with 99 lives + code:176C-44DD + cheat + description:Invincibility after first hit + code:7E099E:FF + cheat + description:Infinite health (alt) + code:7E08CC:05 + cheat + description:Infinite lives + code:7E0935:03 + cheat + description:Infinite time + code:7E0934:00 + cheat + description:Have 5 hearts + code:7E08CE:05 + cheat + description:Hyper Speedy Gonzalez + code:7E0052:00 + cheat + description:Keep Speedy Shoes until end of stage on pick-up + code:7E08B0:FF + cheat + description:Start on Sleepy Rock Part 1 + code:7E0098:00 + cheat + description:Start on Ancient Keep Part 1 + code:7E0098:02 + cheat + description:Start on Snowy Cabins Part 1 + code:7E0098:04 + cheat + description:Start on Galactical Galazies Part 1 + code:7E0098:06 + cheat + description:Start on Surely Wood Part 1 + code:7E0098:08 + cheat + description:Start on Snowy Cabins Part 2 + code:7E0098:0A + cheat + description:Start on Fiesta City Part 1 + code:7E0098:0C + cheat + description:Start on Ye Olde Bounty Part 1 + code:7E0098:0E + cheat + description:Start on Fiesta City Part 2 + code:7E0098:10 + cheat + description:Start on Ancient Keep Part 2 + code:7E0098:12 + cheat + description:Start on Ye Olde Bounty Part 2 + code:7E0098:14 + cheat + description:Start on Ye Olde Bounty Part 3 + code:7E0098:16 + cheat + description:Start on Surely Wood Part 2 + code:7E0098:18 + cheat + description:Start on Sleepy Rock Part 2 + code:7E0098:1A + cheat + description:Start on Surely Wood Part 3 + code:7E0098:1C + cheat + description:Start on Surely Wood? Cat Boss + code:7E0098:1E + cheat + description:Start on Ship Cat Boss + code:7E0098:20 + cheat + description:Start on Galactical Galazies? Cat Boss + code:7E0098:22 + cheat + description:Start on Galactical Galazies Part 2 + code:7E0098:24 + cheat + description:Start on Ye Olde Bounty Part 5 + code:7E0098:26 + +cartridge sha256:df02d0f4f40e2732138309d38e91b48aef482490979007ecb63359a35115dfd4 + name:Speedy Gonzales - Los Gatos Bandidos (USA) + cheat + description:Invincibility after first hit + code:7E099E:FF + cheat + description:Infinite health + code:7E08CC:05 + cheat + description:Infinite lives + code:7E0935:03 + cheat + description:Infinite time + code:7E0934:00 + cheat + description:Have 5 hearts + code:7E08CE:05 + cheat + description:Hyper Speedy Gonzalez + code:7E0052:00 + cheat + description:Keep Speedy Shoes until end of stage on pick-up + code:7E08B0:FF + cheat + description:Start on Sleepy Rock Part 1 + code:7E0098:00 + cheat + description:Start on Ancient Keep Part 1 + code:7E0098:02 + cheat + description:Start on Snowy Cabins Part 1 + code:7E0098:04 + cheat + description:Start on Galactical Galazies Part 1 + code:7E0098:06 + cheat + description:Start on Surely Wood Part 1 + code:7E0098:08 + cheat + description:Start on Snowy Cabins Part 2 + code:7E0098:0A + cheat + description:Start on Fiesta City Part 1 + code:7E0098:0C + cheat + description:Start on Ye Olde Bounty Part 1 + code:7E0098:0E + cheat + description:Start on Fiesta City Part 2 + code:7E0098:10 + cheat + description:Start on Ancient Keep Part 2 + code:7E0098:12 + cheat + description:Start on Ye Olde Bounty Part 2 + code:7E0098:14 + cheat + description:Start on Ye Olde Bounty Part 3 + code:7E0098:16 + cheat + description:Start on Surely Wood Part 2 + code:7E0098:18 + cheat + description:Start on Sleepy Rock Part 2 + code:7E0098:1A + cheat + description:Start on Surely Wood Part 3 + code:7E0098:1C + cheat + description:Start on Surely Wood? Cat Boss + code:7E0098:1E + cheat + description:Start on Ship Cat Boss + code:7E0098:20 + cheat + description:Start on Galactical Galazies? Cat Boss + code:7E0098:22 + cheat + description:Start on Galactical Galazies Part 2 + code:7E0098:24 + cheat + description:Start on Ye Olde Bounty Part 5 + code:7E0098:26 + +cartridge sha256:2701e94631ae1c43ca0ccef2b50bc0341a4111b31b885fa372ab5b4a49b06942 + name:SpellCraft - Aspects of Valor (USA) (Proto) + cheat + description:Infinite health + code:7E018D:99 + cheat + description:Quick enemy death + code:7E0193:00 + cheat + description:Fast level up + code:7E00FD:FF + cheat + description:Infinite Stones + code:7E0296:09 + cheat + description:Infinite Jewels + code:7E0298:09 + cheat + description:Infinite Candles + code:7E029A:09 + cheat + description:Infinite Powders + code:7E029C:09 + +cartridge sha256:f05d777e3de69aab18d336cac0af07f794f8d00090d085f86cebaed3679cabad + name:Spider-Man (USA) + cheat + description:Stay invincible after death + code:C2CF-C70D + cheat + description:Infinite health + code:C9BB-3DD8 + cheat + description:Infinite lives + code:C2B1-3468 + cheat + description:Infinite webbing + code:C3CA-1F6F+C2CC-44A7+C3CC-1FAF+C2CF-4707 + cheat + description:Gain webbing instead of losing it + code:33CA-1F6F+33CC-44A7+33CC-1FAF+33CF-4707 + cheat + description:Hit anywhere + code:6D39-4FA7+6D3D-4767+DD30-47A7+DD30-4F67 + cheat + description:Increase diagnol webbing with R button + code:33CA-1F6F + cheat + description:Increase straight webbing with X button + code:33CC-44A7 + +cartridge sha256:964d21996e385e032b5d18baf716692ba1db780245cd71956c212045c1b8eb9a + name:Spider-Man-Venom - Maximum Carnage (USA) + cheat + description:Invincibility + code:C264-CFD0 + cheat + description:Infinite health + code:C2A1-1F01 + cheat + description:Infinite lives + code:C2BB-1D61 + cheat + description:Infinite hero icons on pick-up + code:8220-47AB + cheat + description:Jump higher + code:7D80-3F61 + cheat + description:Hit anywhere + code:DD62-3DA0 + cheat + description:One hit kills + code:6DA6-4760 + cheat + description:Get health pick-up from anywhere + code:6DA3-1768+77A3-17A8 + cheat + description:Super punch + code:DBA6-17F5 + cheat + description:Power hit lasts longer + code:D06A-4F09 + cheat + description:Start with 2x health + code:1DCC-C460 + cheat + description:Start with 3x health + code:BDCC-C460 + cheat + description:Start with 1 life + code:DFC8-CDD0 + cheat + description:Start with 6 lives + code:D1C8-CDD0 + cheat + description:Start with 9 lives + code:DBC8-CDD0 + cheat + description:Start with 9 continues + code:DBC8-CF60 + cheat + description:Start with 6 continues + code:D1C8-CF60 + cheat + description:Infinite health (alt) + code:7E0B7C:2C + cheat + description:Infinite lives (alt) + code:7E0990:05 + cheat + description:Infinite accuracy + code:7E1CCA:58 + cheat + description:Have 7 Black Cats with infinite usage + code:7E0B18:07 + cheat + description:Have 7 Cloaks with infinite usage + code:7E0B1A:07 + cheat + description:Have 7 Dagger with infinite usage + code:7E0B1C:07 + cheat + description:Have 7 Morbius with infinite usage + code:7E0B1E:07 + cheat + description:Have 7 Firestar with infinite usage + code:7E0B20:07 + cheat + description:Have 7 Captain Americas with infinite usage + code:7E0B22:07 + cheat + description:Have 7 Iron Fist with infinite usage + code:7E0B24:07 + cheat + description:Have 7 Deathlok with infinite usage + code:7E0B26:07 + cheat + description:Have 7 Venom With Sonic Gun with infinite usage + code:7E0B28:07 + +cartridge sha256:63210a91573fa8e19592f2e6c746a400831d804c00453739447d2df32e731df7 + name:Spider-Man-X-Men - Arcade's Revenge (USA) + cheat + description:Invincibility after first hit (blinking) - Spider-Man + code:C261-A044 + cheat + description:Infinite health against most hits - Spider-Man + code:DDCB-6144 + cheat + description:Protects Spider-Man from ground hazard (looks like silver weeds) + code:C2CC-A917 + cheat + description:Infinite lives - Spider-Man + code:C266-D51D + cheat + description:Infinite lives - Gambit + code:C26D-090A + cheat + description:Infinite lives - Wolverine, Cyclops, Storm + code:C2C2-D767 + cheat + description:Spider-Man jumps higher (if you jump too high in some places you die) + code:CB69-0937+E669-0147 + cheat + description:Start with 1 life instead of 3 + code:DD68-646D + cheat + description:Start with 5 lives + code:D068-646D + cheat + description:Start with 7 lives + code:D168-646D + cheat + description:Start with 10 lives + code:DB68-646D + cheat + description:Start with 26 lives + code:FB68-646D + cheat + description:Start with 51 lives + code:7468-646D + cheat + description:Start with 100 lives + code:1768-646D + cheat + description:Invincibility - Spider-Man + code:7E10F6:FF + cheat + description:Infinite health - Spider-Man + code:7E10F8:FF + cheat + description:Infinite health - Wolverine, Cyclops, Storm + code:7E0B29:64 + cheat + description:Infinite health - Gambit + code:7E119E:96 + cheat + description:Infinite lives - Everyone + code:7E0100:09 + cheat + description:Infinite multibolt - Storm + code:7E14F2:01 + cheat + description:99 stars - Gambit + code:7E11AA:63 + cheat + description:Infinite cards - Gambit + code:7E11A0:32 + cheat + description:Infinite joker wild cards - Gambit + code:7E11A2:09 + cheat + description:Stop giant spiked wheel in first stage - Gambit + code:7E11F9:FF + +cartridge sha256:fe10238ae42ed9eb4d906a81dd50ebe585140982cdfe266308ce1f16e78e6903 + name:Spindizzy Worlds (USA) + cheat + description:Faster G.E.R.A.L.D. + code:D46F-6FDD + cheat + description:Slower timer + code:D0BD-64DF + cheat + description:More fuel lost from falling off landscape + code:4D6C-DFD7 + cheat + description:Less fuel lost from falling off landscape + code:D96C-DFD7 + cheat + description:Almost zero fuel lost from falling off landscape + code:DD6C-DFD7 + cheat + description:Don't lose fuel from anything + code:4AEC-DDA4 + +cartridge sha256:e0196201e432fa33d46a2681f84fe6a0b5f952ba43f8e4dc325f892bb4a0b39b + name:Spirou (Europe) (En,Fr,De,Es) + cheat + description:Infinite lives + code:7E064C:03 + +cartridge sha256:3857b5294ea8f7468849437bb2d8271564e8a0ff30774622e9c872bcbd53a84d + name:Star Fox (USA) + cheat + description:Infinite Shield + code:79DB-2286 + cheat + description:Infinite Shield (alt) + code:46DB-2286 + cheat + description:Infinite Shield - Slippy + code:0DFC-FA8C + cheat + description:Infinite Shield - Falco + code:0DFC-FA5C + cheat + description:Infinite Shield - Peppy + code:0DFC-FA7C + cheat + description:Infinite Bombs + code:D9FC-9EEB + cheat + description:Infinite lives + code:DBF3-BE8B + cheat + description:Have Double Blaster + code:F4F2-F38B+DFF2-F35B + cheat + description:Infinite Shield (alt 2) + code:7E0396:35 + cheat + description:Infinite Bombs (alt) + code:7E15AF:05 + cheat + description:Infinite lives (alt) + code:7E16EE:0A + cheat + description:Have Double Blaster (alt) + code:7E14DA:12 + cheat + description:Have Double Blaster B and infinite Shield + code:7E14D9:03 + +cartridge sha256:2c0bac12a7866fad1cb306da768a201c12f2520332df1ef51cba1576db21ff06 + name:Star Fox - Super Weekend (USA) + cheat + description:Infinite Shield + code:7E0396:28 + cheat + description:Infinite Bombs + code:7E15AF:04 + cheat + description:Infinite time (minutes) + code:7EF0DA:09 + cheat + description:Infinite time (seconds tens) + code:7EF0DC:09 + cheat + description:Infinite time (seconds ones) + code:7EF0DB:09 + cheat + description:Have Double Blaster + code:7E14D9:01 + +cartridge sha256:82e39dfbb3e4fe5c28044e80878392070c618b298dd5a267e5ea53c8f72cc548 + name:Star Fox (USA) (Rev 2) + cheat + description:Infinite Shield + code:79DB-2286 + cheat + description:Infinite Shield (alt) + code:46DB-2286 + cheat + description:Infinite Shield - Slippy + code:0DFC-FA8C + cheat + description:Infinite Shield - Falco + code:0DFC-FA5C + cheat + description:Infinite Shield - Peppy + code:0DFC-FA7C + cheat + description:Infinite Shield (alt 2) + code:7E0396:35 + +cartridge sha256:efae37be832d0ea1490784d57bef00761a8bf0b5bcef9c23f558e063441c3876 + name:Star Ocean (Japan) + cheat + description:No random battles + code:6D5D-7F66 + cheat + description:Fight one battle for max level / EXP + code:DD1E-E4D5 + cheat + description:Fight one battle for max Fol + code:DD1F-E465 + cheat + description:View status screen for max strength, constitution, agility and stamina (These affect the base stat, making it savable. Stamina won't appear updated until you turn the codes off and re-enter that character's status screen) + code:DD48-54CF+9843-774D+1F47-5F3D+1243-5DCD+2C4A-5F3D + cheat + description:Infinite items when using item creation skills + code:8E23-87C6 + +cartridge sha256:3a16ad45ae3d89b13c9e53e21c2a4c725ff7cec7fbe7896d538d163f92cb4aac + name:Star Trek - Deep Space Nine - Crossroads of Time (USA) + cheat + description:Invincibility + code:3C3E-0915+3C3E-09C5 + cheat + description:Invincibility after first hit + code:C23E-0935 + cheat + description:Infinite energy + code:C23C-6545 + cheat + description:Sisko looks like O'brien + code:D0BF-0D6F + cheat + description:Start with 1/4 energy + code:FDBF-0F04+FDBF-076F + cheat + description:Start with 1/2 energy + code:F2BF-0F04+F2BF-076F + cheat + description:Start with 3/4 energy + code:45BF-0F04+45BF-076F + +cartridge sha256:22c907b56ac6f414365801ed375c3fbf75696ce7f34ec89e1724628dc5622957 + name:Star Trek - The Next Generation - Future's Past (USA) + cheat + description:Away Team - Medical packs aren't used up + code:DD81-47DB+DD88-4DDB + cheat + description:Away Team - Start each away mission with 1 medical pack + code:DF2A-1DD7 + cheat + description:Away Team - Start each away mission with 2 medical packs + code:D42A-1DD7 + cheat + description:Away Team - Start each away mission with 4 medical packs (only 3 shown) + code:D02A-1DD7 + cheat + description:Away Team - Start each away mission with 5 medical packs (only 3 shown) + code:D92A-1DD7 + cheat + description:Away Team - Phaser power doesn't go down + code:DDAF-446C + cheat + description:Away Team - Start away missions with phasers at 1/2 power + code:F62A-1467 + cheat + description:Away Team - Start away missions with phasers at 3/4 power + code:402A-1467 + cheat + description:Away Team - Start away missions with phasers at 1/4 power + code:DA2A-1467 + cheat + description:Away Team - Medical packs heal more + code:6D86-4FAB + cheat + description:Away Team - Medical packs heal twice as much + code:D486-44DB + cheat + description:Away Team - Medical packs heal completely + code:D786-44DB + cheat + description:Away Team - Crew members are immune to enemy fire + code:8EA4-4FD6 + cheat + description:Space Combat - Forward torpedoes reload much faster + code:DFB2-1DF7 + cheat + description:Space Combat - Forward torpedoes reload faster + code:D4B2-1DF7 + cheat + description:Space Combat - Aft torpedoes reload much faster + code:DFB8-1FF7 + cheat + description:Space Combat - Aft torpedoes reload faster + code:D4B8-1FF7 + cheat + description:Space Combat - Forward torpedoes don't require recharging + code:C26C-3FFD + cheat + description:Space Combat - Aft torpedoes don't require recharging + code:C267-342D + cheat + description:Space Combat - Enemy shields regenerate at half speed + code:D6B4-1F27 + cheat + description:Space Combat - Enemy shields regenerate at 1/4 speed + code:D0B4-1F27 + cheat + description:Space Combat - Enemy shields don't regenerate + code:DDB4-1F27 + cheat + description:Space Combat - Enemy shields regenerate faster + code:F6B4-1F27 + cheat + description:Space Combat - Forward phasers never lose power + code:3C6A-14FF + cheat + description:Space Combat - Forward phasers don't recharge + code:C2B3-4DB7 + cheat + description:Space Combat - Aft phasers never lose power + code:3C69-17BF + cheat + description:Space Combat - Aft phasers don't recharge + code:C2BE-44F7 + cheat + description:Space Combat - Torpedoes do half damage + code:D764-1D24 + cheat + description:Space Combat - Torpedoes do less damage + code:D064-1D24 + cheat + description:Space Combat - Torpedoes do slightly more damage + code:D564-1D24 + cheat + description:Space Combat - Torpedoes do more damage + code:D664-1D24 + cheat + description:Space Combat - Torpedoes do much more damage + code:DB64-1D24 + cheat + description:Space Combat - Torpedoes do double damage + code:DA64-1D24 + +cartridge sha256:91f938b4989215b1cd39635797f23b59b9d7b6d36e583f9eb69d022abe537bfc + name:Steel Talons (USA) + cheat + description:Infinite Rockets + code:7E025C:09 + cheat + description:Infinite fuel and no damage + code:7E0262:50 + cheat + description:Always finish mission in 10 seconds + code:7E0258:0A + +cartridge sha256:dad9c116283322d5a13fd659874c681582abdff3df182cc4c90511d33fb7110a + name:Stone Protectors (USA) + cheat + description:Invincibility (blinking) + code:CBB6-0F07+D9B6-0F67+B2B6-0FA7+4022-D764 + cheat + description:Don't lose health from special moves + code:8281-0D67 + cheat + description:Infinite lives - P1 + code:C281-D467 + cheat + description:Infinite health - P1 + code:7E13CC:B2 + +cartridge sha256:910a29f834199c63c22beddc749baba746da9922196a553255deade59f4fc127 + name:Street Fighter Alpha 2 (USA) + cheat + description:Invincibility (except throws and Akuma's special moves) + code:3CC6-5DDD+3DC6-5D0D+6DC6-5D6D+DBC6-5DAD+3D80-7F6D+DD80-7FAD+D580-74DD + cheat + description:Hit anywhere (except projectiles) - P1 + code:3DC7-8D0D+6DC7-8D6D+BDC7-8FDD+DBC7-8DAD + +cartridge sha256:2b34161e96ef3f0f48cecd67e531a9bb94310652d8686f301bac426e4ab97e77 + name:Street Fighter II (USA) + cheat + description:Invincibility (except against throws) - P1 + code:6D27-6704+DF27-6764+4039-670D + cheat + description:Win 1 bout to win the match instead of 2 out of 3 (disable before fighting M. Bison) + code:DF80-AD64 + cheat + description:Hit anywhere (except projectiles) - P1 + code:3D29-A4A7+8D29-A767+DD29-A7D7+D329-A707 + cheat + description:Dizziness wears off very quickly + code:EDBE-0F09 + cheat + description:Dizziness lasts longer (on harder levels, won't work on computer) + code:C9BE-0DA9 + cheat + description:Championship mode on + code:4DC6-6493 + cheat + description:Advance to next level when you continue (disable before you continue on M. Bison's stage) + code:6DCF-D764+FFCF-D7A4 + cheat + description:High throw and grab damage + code:3CA4-DD67+FEA4-DFD7 + cheat + description:Minimum throw and grab damage + code:3CA4-DD67+EEA4-DFD7 + cheat + description:Die after 2 hits - both players + code:503E-04DF + cheat + description:Round number does not advance (can't fight to a draw) + code:C2CC-A7DF + cheat + description:1 draw ends fight in VS. battle + code:DF81-A704 + cheat + description:Most punches and kicks do no damage + code:893E-04DF + cheat + description:Players move faster + code:1C65-DF00 + cheat + description:Some special moves are faster + code:D965-DF00 + cheat + description:Can do special moves in the air - both players + code:DD61-6DA9 + cheat + description:Dragon punch does not go as high + code:73A5-DF60 + cheat + description:Dragon punch goes higher + code:2AA5-DF60 + cheat + description:Some special moves are easier to perform (E Honda's Sumo Head Butt, Blanka's Rolling Attack, Guile's Flash Kick and Sonic Boom, Chun Li's Whirlwind Kick) + code:DD84-DD01 + cheat + description:No pause after throwing a Fireball + code:DFA0-DDA0+ADA0-DFD0 + cheat + description:Players can hit each other no matter where they are + code:6D25-A467+6F25-A4A7 + cheat + description:Do special moves by just pressing buttons (may make Fireballs lower) + code:DAB8-A761 + cheat + description:Fireballs are lower to the ground + code:DDB8-ADF3 + cheat + description:Fireballs are higher off the ground + code:1DB8-ADF3 + cheat + description:Fireballs, Sonic Booms and Yoga Fires always go to the right (thrown to the left, they go backwards) + code:DDE3-DF01 + cheat + description:Light Fireballs, Sonic Booms and Yoga Fires are slower + code:EEB8-A793 + cheat + description:Light Fireballs, Sonic Booms and Yoga Fires are faster + code:EBB8-A793 + cheat + description:Light Fireballs, Sonic Booms and Yoga Fires are super fast + code:EDB8-A793 + cheat + description:Medium Fireballs, Sonic Booms and Yoga Fires are slower + code:EEB8-A723 + cheat + description:Medium Fireballs, Sonic Booms and Yoga Fires are faster + code:EBB8-A723 + cheat + description:Medium Fireballs, Sonic Booms and Yoga Fires are super fast + code:EDB8-A723 + cheat + description:Hard Fireballs, Sonic Booms and Yoga Fires are slower + code:EEBA-AD93 + cheat + description:Hard Fireballs, Sonic Booms and Yoga Fires are faster + code:EBBA-AD93 + cheat + description:Hard Fireballs, Sonic Booms and Yoga Fires are super fast + code:EDBA-AD93 + cheat + description:Light Sumo Head Butts and Rolling Attacks are slower + code:DDB1-D4F3+EEB1-D7B3 + cheat + description:Light Sumo Head Butts and Rolling Attacks are faster + code:DBB1-D4F3+EBB1-D7B3 + cheat + description:Light Sumo Head Butts and Rolling Attacks are super fast + code:F9B1-D4F3+EDB1-D7B3 + cheat + description:Medium Sumo Head Butts and Rolling Attacks are slower + code:DDB1-D4B3+EEB5-DDF3 + cheat + description:Medium Sumo Head Butts and Rolling Attacks are faster + code:DCB1-D4B3+E5B5-DDF3 + cheat + description:Medium Sumo Head Butts and Rolling Attacks are super fast + code:F1B1-D4B3+33B5-DDF3 + cheat + description:Hard Sumo Head Butts and Rolling Attacks are slower + code:DDB1-D7F3+EEB5-DDB3 + cheat + description:Hard Sumo Head Butts and Rolling Attacks are faster + code:D8B1-D7F3+E9B5-DDB3 + cheat + description:Hard Sumo Head Butts and Rolling Attacks are super fast + code:F5B1-D7F3+32B5-DDB3 + cheat + description:Most special moves disabled (computer can still do them, Zangief can still do Spinning Clothesline) + code:6DA4-6707 + cheat + description:Invisible Fireballs, Sonic Booms, Yoga Fires and Yoga Flames + code:CB61-07A4 + cheat + description:No Fireballs, Sonic Booms or Yoga Fires, makes Yoga Flame invisible + code:1868-0D6C + cheat + description:Always fight Ryu + code:CBA0-AF64+EEA0-AFA4 + cheat + description:Always fight Honda + code:CBA0-AF64+DDA0-AFA4 + cheat + description:Always fight Blanka + code:CBA0-AF64+DFA0-AFA4 + cheat + description:Always fight Guile + code:CBA0-AF64+D4A0-AFA4 + cheat + description:Always fight Ken + code:CBA0-AF64+D7A0-AFA4 + cheat + description:Always fight Chun-Li + code:CBA0-AF64+D0A0-AFA4 + cheat + description:Always fight Zangief + code:CBA0-AF64+D9A0-AFA4 + cheat + description:Always fight Dhalsim + code:CBA0-AF64+D1A0-AFA4 + cheat + description:Always fight Balrog + code:CBA0-AF64+DBA0-AFA4 + cheat + description:Always fight Vega + code:CBA0-AF64+DCA0-AFA4 + cheat + description:Always fight Sagat + code:CBA0-AF64+D6A0-AFA4 + cheat + description:Fight M. Bison + code:B9A0-AF04 + cheat + description:Always fight on bonus stage 1 + code:DDA4-A404+6DA4-A764 + cheat + description:Always fight on bonus stage 2 + code:DDA7-AF04+DDA7-A4A4 + cheat + description:90 seconds per round instead of 99 + code:BD62-672A + cheat + description:80 seconds per round + code:6D62-672A + cheat + description:70 seconds per round + code:5D62-672A + cheat + description:60 seconds per round + code:1D62-672A + cheat + description:50 seconds per round + code:9D62-672A + cheat + description:40 seconds per round + code:0D62-672A + cheat + description:30 seconds per round + code:7D62-672A + cheat + description:20 seconds per round + code:4D62-672A + cheat + description:10 seconds per round + code:FD62-672A + cheat + description:99 seconds in 1st bonus round instead of 40 + code:BB63-6D2A + cheat + description:90 seconds in 1st bonus round + code:BD63-6D2A + cheat + description:80 seconds in 1st bonus round + code:6D63-6D2A + cheat + description:70 seconds in 1st bonus round + code:5D63-6D2A + cheat + description:60 seconds in 1st bonus round + code:1D63-6D2A + cheat + description:50 seconds in 1st bonus round + code:9D63-6D2A + cheat + description:30 seconds in 1st bonus round + code:7D63-6D2A + cheat + description:20 seconds in 1st bonus round + code:4D63-6D2A + cheat + description:10 seconds in 1st bonus round + code:FD63-6D2A + cheat + description:Start with no health - both players + code:DDAC-AFD4 + cheat + description:Start with no health - P1 + code:DDAC-AF64 + cheat + description:Start with 3/4 health (1/4 damage) - both players + code:60AC-AFD4 + cheat + description:Start with 1/2 health (1/2 damage) - both players + code:96AC-AFD4 + cheat + description:Start with 1/4 health (3/4 damage) - both players + code:4AAC-AFD4 + +cartridge sha256:3e487f8ba48c0b5e31744e3281d6bce375089db6075c8eb3d9a929376b817381 + name:Street Fighter II Turbo (USA) + cheat + description:Invincibility (except against throws) - P1 + code:6D93-54DF+DF93-540F+CB99-5767+DD99-57A7+DB91-5DD7+4091-5D07+3C91-5DA7 + cheat + description:Infinite time + code:DD05-7F04 + cheat + description:Hit anywhere (except projectiles) - P1 + code:3D98-8704+8D9A-8DD4+DD98-8764+D598-87A4 + cheat + description:Some special moves can be performed in the air (Don't perform Vega's wall leap) + code:DDF1-7D60 + cheat + description:Most attacks do no damage (throws still work) + code:891F-84AD + cheat + description:Throws do no damage + code:C734-7405 + cheat + description:1st throws do more damage (if you have enough health), others do less damage + code:F034-7405 + cheat + description:Players can walk through each other + code:DD3F-EFAD + cheat + description:1st hit of any kind defeats opponent + code:DD18-570D + cheat + description:Winner of 2nd round wins the battle + code:DF04-5DAF + cheat + description:Enable 10 star turbo mode + code:ADFC-E40D+F9FC-E46D + cheat + description:No charging required for special moves (except Balrog's turn punch power) + code:D071-E460 + cheat + description:Hard special moves become light + code:DD75-8460 + cheat + description:Hard special moves become medium + code:D475-8461 + cheat + description:Hard special moves become disabled + code:D675-8462 + cheat + description:Invisible players + code:8ED2-87A9 + cheat + description:Most special moves go nowhere + code:C933-7DA9 + cheat + description:Fireballs go nowhere + code:C9B8-77A5 + cheat + description:Hard Hurricane Kicks go faster and farther (to the right only) + code:D039-14AD + cheat + description:Ryu's hard Dragon Punch doesn't go as far + code:DF30-1DAD + cheat + description:Ryu's hard Dragon Punch goes farther + code:D630-1DAD + cheat + description:Ryu's medium Dragon Punch doesn't go as far + code:DF30-1D0D + cheat + description:Ryu's medium Dragon Punch goes farther + code:D630-1D0D + cheat + description:Ryu's light Dragon Punch goes farther + code:D637-17AD + cheat + description:Ryu jumps backward farther + code:D526-1DAF + cheat + description:Ryu jumps forward farther + code:E525-14AF + cheat + description:Ken jumps backward farther + code:D52D-CDAF + cheat + description:Ken jumps forward farther + code:E52E-14AF + cheat + description:Ken's hard Dragon Punch doesn't go as far + code:DF30-17AD + cheat + description:Ken's hard Dragon Punch goes farther + code:D330-17AD + cheat + description:Ken's medium Dragon Punch doesn't go as far + code:DF30-170D + cheat + description:Ken's medium Dragon Punch goes farther + code:D830-170D + cheat + description:Ken's light Dragon Punch goes farther + code:D630-14AD + cheat + description:Hard projectiles go faster (except tiger shots) + code:3E31-37AD + cheat + description:Hard projectiles go slower (except tiger shots) + code:EE31-37AD + cheat + description:Medium projectiles go faster (except tiger shots) + code:3E31-370D + cheat + description:Medium projectiles go slower (except tiger shots) + code:EE31-370D + cheat + description:Light projectiles go faster (except tiger shots) + code:3E31-34AD + cheat + description:Light projectiles go slower (except tiger shots) + code:EE31-34AD + cheat + description:Edmond Honda's hard Sumo Head Butts are faster + code:DE35-1FAD + cheat + description:Edmond Honda's hard Sumo Head Butts are slower + code:DF35-1FAD + cheat + description:Edmond Honda's medium Sumo Head Butts are faster + code:DE35-1F0D + cheat + description:Edmond Honda's medium Sumo Head Butts are slower + code:DF35-1F0D + cheat + description:Edmond Honda's light Sumo Head Butts are faster + code:DE35-1DAD + cheat + description:Edmond Honda's light Sumo Head Butts are slower + code:DF35-1DAD + cheat + description:Edmond Honda's hard Sumo Smashes are faster + code:F436-1DDD + cheat + description:Edmond Honda's medium Sumo Smashes are faster + code:F435-176D + cheat + description:Edmond Honda's light Sumo Smashes are faster + code:F435-17DD + cheat + description:Sagat's hard Tiger Uppercut goes farther + code:D63B-C70D + cheat + description:Sagat's medium Tiger Uppercut goes farther + code:D63B-C4AD + cheat + description:Sagat's light Tiger Uppercut goes farther + code:D63B-C40D + cheat + description:Sagat's high Tiger Shots are disabled (you can still do the move but no projectile comes out) + code:D439-340D + cheat + description:Sagat's hard Tiger Knee goes farther + code:D838-CF0D + cheat + description:Sagat's medium Tiger Knee goes farther + code:D83C-C70D + cheat + description:Sagat's light Tiger Knee goes farther + code:D83C-CF0D + cheat + description:M. Bison's hard Psycho Crusher goes slower + code:DF39-C40D + cheat + description:M. Bison's hard Psycho Crusher goes faster + code:DC39-C40D + cheat + description:M. Bison's medium Psycho Crusher goes slower + code:DF39-CFAD + cheat + description:M. Bison's medium Psycho Crusher goes faster + code:DC39-CFAD + cheat + description:M. Bison's light Psycho Crusher goes slower + code:DF39-CF0D + cheat + description:M. Bison's light Psycho Crusher goes faster + code:DC39-CF0D + cheat + description:M. Bison's hard Scissor Kick goes slower (not in normal mode) + code:DF31-CD6D + cheat + description:M. Bison's hard Scissor Kick goes faster (not in normal mode) + code:DC31-CD6D + cheat + description:M. Bison's medium Scissor Kick goes slower (not in normal mode) + code:DF31-CDDD + cheat + description:M. Bison's medium Scissor Kick goes faster (not in normal mode) + code:DC31-CDDD + cheat + description:M. Bison's light Scissor Kick goes slower (not in normal mode) + code:DF39-C76D + cheat + description:M. Bison's light Scissor Kick goes faster (not in normal mode) + code:DC39-C76D + cheat + description:Balrog's first Dash Punch goes slower + code:DF69-7DD1 + cheat + description:Balrog's first Dash Punch goes faster + code:D869-7DD1 + cheat + description:Balrog's first Turn Punch goes slower (and a little backward) + code:D432-CF0D + cheat + description:Balrog's first Turn Punch goes faster + code:DC32-CF0D + cheat + description:Chun Li's hard Whirlwind Kick goes farther + code:DC38-1F6D + cheat + description:Chun Li's medium Whirlwind Kick doesn't go as far + code:DF38-1FDD + cheat + description:Chun Li's medium Whirlwind Kick goes farther + code:DC38-1FDD + cheat + description:Chun Li's light Whirlwind Kick doesn't go as far + code:DF38-1D6D + cheat + description:Chun Li's light Whirlwind Kick goes farther + code:DC38-1D6D + cheat + description:Blanka's hard Rolling Attack goes slower + code:DF3B-14DD + cheat + description:Blanka's hard Rolling Attack goes faster + code:DC3B-14DD + cheat + description:Blanka's medium Rolling Attack goes slower + code:DF3B-1F6D + cheat + description:Blanka's medium Rolling Attack goes faster + code:DC3B-1F6D + cheat + description:Blanka's light Rolling Attack goes slower + code:DF3B-1FDD + cheat + description:Blanka's light Rolling Attack goes faster + code:DC3B-1FDD + cheat + description:Blanka's hard Vertical Rolling Attack doesn't go as far + code:DF3C-1D0D + cheat + description:Blanka's hard Vertical Rolling Attack goes out farther + code:DA3C-1D0D + cheat + description:Blanka's medium Vertical Rolling Attack doesn't go as far + code:DF3B-17AD + cheat + description:Blanka's medium Vertical Rolling Attack goes out farther + code:DA3B-17AD + cheat + description:Blanka's light Vertical Rolling Attack doesn't go as far + code:DF3B-170D + cheat + description:Blanka's light Vertical Rolling Attack goes out farther + code:DA3B-170D + cheat + description:Start with 90 seconds + code:BDA3-176D + cheat + description:Start with 70 seconds + code:5DA3-176D + cheat + description:Start with 50 seconds + code:9DA3-176D + cheat + description:Start with 30 seconds + code:7DA3-176D + cheat + description:Start with 10 seconds + code:FDA3-176D + cheat + description:Start with 3/4 health + code:6091-E76D + cheat + description:Start with 1/2 health + code:9691-E76D + cheat + description:Start with 1/4 health + code:4A91-E76D + cheat + description:1st bonus round is 99 seconds + code:BBAE-1DDD + cheat + description:1st bonus round is 80 seconds + code:6DAE-1DDD + cheat + description:1st bonus round is 60 seconds + code:1DAE-1DDD + cheat + description:1st bonus round is 20 seconds + code:4DAE-1DDD + cheat + description:2nd bonus round is 99 seconds + code:BBAE-1D6D + cheat + description:2nd bonus round is 80 seconds + code:6DAE-1D6D + cheat + description:2nd bonus round is 60 seconds + code:1DAE-1D6D + cheat + description:2nd bonus round is 20 seconds + code:4DAE-1D6D + cheat + description:Infinite health - P1 + code:7E0530:63 + cheat + description:No health (disable during match) - P2 + code:7E0730:00 + cheat + description:Infinite time (alt) + code:7E18F3:99 + cheat + description:Select same character - both players + code:7E1848:20 + cheat + description:Enable 10 star turbo mode (alt) + code:7E1C87:32 + cheat + description:Dizzy from every knockdown - P1 + code:7E05B3:01 + cheat + description:Dizzy from every knockdown - P2 + code:7E07B3:01 + +cartridge sha256:05f14e6ed3394d9273e2397769a8acf1a9db646be6066e82269521e8eec53562 + name:Strike Gunner S.T.G (USA) + cheat + description:Infinite lives - P1 + code:C2B4-076F + cheat + description:Infinite lives - P2 + code:C2B8-046F + cheat + description:Infinite continues + code:C262-D9E6 + cheat + description:Infinite special weapon energy - P1 + code:C2EA-D46D + cheat + description:Infinite special weapon energy - P2 + code:C2E4-0DAD + cheat + description:Hit anywhere - main weapon + code:4021-D46F+4021-D7AF+403E-A4AF+6D33-A4DF+6D33-ADDF + cheat + description:Start on stage 2 + code:CB69-D40D+DF69-D46D+3C69-D4AD + cheat + description:Start on stage 3 + code:CB69-D40D+D469-D46D+3C69-D4AD + cheat + description:Start on stage 4 + code:CB69-D40D+D769-D46D+3C69-D4AD + cheat + description:Start on stage 5 + code:CB69-D40D+D069-D46D+3C69-D4AD + cheat + description:Start on stage 6 + code:CB69-D40D+D969-D46D+3C69-D4AD + cheat + description:Invincibility after first life - P1 + code:7E024E:05 + cheat + description:Invincibility after first life - P2 + code:7E024F:05 + +cartridge sha256:c04d80b84514202ff319384ca20641eb0189e975eed5612915bd9c224b2ab30a + name:Stunt Race FX (USA) (Rev 1) + cheat + description:Always first + code:182E-07FE + cheat + description:Choose any car + code:2DAE-AD42 + cheat + description:Infinite lives + code:7E0DF8:09 + cheat + description:Infinite boost - P1 + code:7E0E05:48+7E0E06:48 + cheat + description:Infinte time - minutes + code:7E0E66:00 + cheat + description:Infinite time - seconds + code:7E0E64:00 + cheat + description:Infinite time extended + code:7E19EE:99 + cheat + description:Have all stars collected + code:7E19EC:64 + cheat + description:Remove car body + code:7E2005:5C + +cartridge sha256:e9c406d4f773697b9b671e7ddf2207c9d0ab242d7f23e502cdd453fbb264d392 + name:Sunset Riders (USA) + cheat + description:Invincibility + code:3366-CD69 + cheat + description:Infinite lives + code:8232-3D0F + +cartridge sha256:190999122aacc2cff20c5677b3f60ed938d8a36b696d16cc1bf416705efe151e + name:Super Adventure Island (USA) + cheat + description:Infinite lives + code:C2B3-D46D + cheat + description:Infinite credits + code:C2CD-0F0D + cheat + description:Fruit restores full time + code:CBBE-DF94+FDBE-DFB4 + cheat + description:Super-jump (don't use the game's super-jump feature) + code:798C-DF0D + cheat + description:Mega-jump (don't use the game's super-jump feature) + code:408C-DF0D + cheat + description:Hit anywhere + code:2D83-64A2+6D83-6462+C983-6402+DD21-0D0D+F383-67D2 + cheat + description:Multi-jump + code:4D8C-640D+E28C-646D+C2E4-0DD7+E6E4-0D07+D8E4-0D67+06E4-0DA7+DCE4-0FD7+FDE4-0F07+D9E4-0F67+CBE4-0FA7+DDE4-04D7+ECE4-0407+B9E4-0467+FCE4-04A7+16E4-07D7+1DE4-0707+4D8C-64DD + cheat + description:Don't lose all weapon power when you die (may give you unusual weapons) + code:79C0-A7DD+79C6-A4DD + cheat + description:Start with 1 life instead of 3 + code:DD6A-646F + cheat + description:Start with 5 lives + code:D06A-646F + cheat + description:Start with 10 lives + code:DB6A-646F + cheat + description:Start with 15 lives + code:D36A-646F + cheat + description:Start with 25 lives + code:F66A-646F + cheat + description:Start with 50 lives + code:7F6A-646F + cheat + description:Start with 99 lives + code:146A-646F + cheat + description:Start with 1 credit + code:DD6A-67AF + cheat + description:Start with 6 credits + code:D96A-67AF + cheat + description:Start in area 1, stage 2 + code:D766-0FD7 + cheat + description:Start in area 1 bonus round + code:D966-0FD7 + cheat + description:Start in area 1, stage 3 + code:D566-0FD7 + cheat + description:Start in area 2, stage 1 + code:DC66-0FD7 + cheat + description:Start in area 2, stage 2 + code:DA66-0FD7 + cheat + description:Start in area 2 bonus round + code:D366-0FD7 + cheat + description:Start in area 2, stage 3 + code:FF66-0FD7 + cheat + description:Start in area 3, stage 1 + code:F066-0FD7 + cheat + description:Start in area 3, stage 2 + code:F666-0FD7 + cheat + description:Start in area 3, stage 3 + code:FC66-0FD7 + cheat + description:Start in area 4, stage 1 + code:F266-0FD7 + cheat + description:Start in area 4, stage 2 + code:FE66-0FD7 + cheat + description:Start in area 4 bonus round + code:4D66-0FD7 + cheat + description:Start in area 4, stage 3 + code:4066-0FD7 + cheat + description:Start in area 5, stage 1 + code:4566-0FD7 + cheat + description:Start in area 5, stage 2 + code:4B66-0FD7 + cheat + description:Start in area 5, stage 3 + code:4866-0FD7 + cheat + description:Start in area 5, bonus round + code:4266-0FD7 + cheat + description:Invincibility and Infinite time + code:7E0D6B:FF + cheat + description:Invincibility and always have Skateboard (disable at end of level) + code:7E0D6F:01 + cheat + description:Infinite time (disable at end of level) + code:7E0D6C:11 + cheat + description:Infinite lives (alt) + code:7E030D:03 + cheat + description:Have Boomerang after obtaining any weapon icon + code:7E0D75:01 + cheat + description:Have Fireball after obtaining any weapon icon + code:7E0D75:02 + cheat + description:Have Boomerang Fireball after obtaining any weapon icon + code:7E0D75:03 + cheat + description:Have Hammer after obtaining any weapon icon + code:7E0D75:04 + cheat + description:Start on last boss + code:008D84:30 + +cartridge sha256:eaf1b83e95d8a04f9a84d4960cf87cc182fc60ef07be35eb8929c4033d6fef67 + name:Super Adventure Island II (USA) + cheat + description:Infinite health + code:C29B-EF0F + cheat + description:Almost invincible after one hit + code:C2D6-8FAB + cheat + description:Stacks of cash + code:CB45-ED6D + cheat + description:Small potions don't restore health + code:C2B4-7D8E + cheat + description:Fall slowly + code:DFF1-770B + cheat + description:Don't fall at all (disable to touch the ground again) + code:DDF1-770B + cheat + description:Have no Weapon + code:7E044D:01 + cheat + description:Have Silver Sword + code:7E044E:01 + cheat + description:Have Fire Sword + code:7E044F:01 + cheat + description:Have Ice Sword + code:7E0450:01 + cheat + description:Have Thunder Sword + code:7E0451:01 + cheat + description:Have Crystal Sword + code:7E0452:01 + cheat + description:Have Power Sword + code:7E0453:01 + cheat + description:Have Light Sword + code:7E0454:01 + cheat + description:Have Dagger + code:7E0455:01 + cheat + description:Have Fireballs + code:7E0456:01 + cheat + description:Have Boomerang + code:7E0457:01 + cheat + description:Have Ax + code:7E0458:01 + cheat + description:Have Shovel + code:7E0459:01 + cheat + description:Have no Armor + code:7E045A:01 + cheat + description:Have Fire Armor + code:7E045B:01 + cheat + description:Have Ice Armor + code:7E045C:01 + cheat + description:Have Aqua Armor + code:7E045D:01 + cheat + description:Have Light Armor + code:7E045E:01 + cheat + description:Have no Shield + code:7E045F:01 + cheat + description:Have Fire Shield + code:7E0460:01 + cheat + description:Have Ice Shield + code:7E0461:01 + cheat + description:Have Aqua Shield + code:7E0462:01 + cheat + description:Have Light Shield + code:7E0463:01 + cheat + description:Have no Equipment + code:7E0465:01 + cheat + description:Have Magic Wand + code:7E0464:01 + cheat + description:Have Ice Bell + code:7E0466:01 + cheat + description:Have Sun Ring + code:7E0467:01 + cheat + description:Have Power Fan + code:7E0468:01 + cheat + description:Have Elven Flute + code:7E0469:01 + cheat + description:Have Sky Bell + code:7E046A:01 + cheat + description:Have Light Stone + code:7E046B:01 + cheat + description:Have Sun Stone + code:7E046C:01 + cheat + description:Have Star Stone + code:7E046D:01 + cheat + description:Have Aqua Stone + code:7E046E:01 + cheat + description:Have Moon Stone + code:7E046F:01 + cheat + description:Have Thunder Spell + code:7E0470:01 + cheat + description:Have Star Spell + code:7E0471:01 + cheat + description:Have Sun Spell + code:7E0472:01 + cheat + description:Have Aqua Spell + code:7E0473:01 + cheat + description:Have Moon Spell + code:7E0474:01 + cheat + description:Have Shove + code:7E047D:01 + cheat + description:Have Up Jab + code:7E047E:01 + cheat + description:Have Down Jab + code:7E047F:01 + cheat + description:Light Gate down + code:7E0131:01 + cheat + description:Sun Gate down + code:7E0132:01 + cheat + description:Star Gate down + code:7E0133:01 + cheat + description:Aqua Gate down + code:7E0134:01 + cheat + description:Moon Gate down + code:7E0135:01 + +cartridge sha256:0deb7a91fbe5848f1733ce668daaa49b0dad3d821bacc0791837c1ba15e60d7c + name:Super Alfred Chicken (USA) + cheat + description:Infinite time + code:C2C4-4DA5 + cheat + description:Infinite lives + code:C2BC-3FD5 + cheat + description:Infinite lives (alt) + code:7E0012:04 + cheat + description:Infinite time (alt) + code:7E0017:09 + cheat + description:Infinite balloons + code:C2C3-4D09 + +cartridge sha256:e57aa265b2fbfb7ee7f5488a3df06ae771db202d59ebbd13df8fc2db80a856f3 + name:Super Back to the Future Part II (Japan) + cheat + description:Invincibility + code:7E1401:FF + cheat + description:Infinite health + code:7E009A:03 + +cartridge sha256:1622371a5a4001fff9690323e89b7a8d449cdc3cae6dcd1249f0c7dc8c651d33 + name:Super Baseball Simulator 1.000 (USA) + cheat + description:Infinite added points + code:DDCD-646C + cheat + description:Fewer "HR" points to distribute - standard game + code:783E-DF6C + cheat + description:Fewer "R" points to distribute - standard game + code:9D3E-D4DC + cheat + description:Fewer "F" points to distribute - standard game + code:F03E-D46C + cheat + description:More "AV" points to distribute - moderate game + code:DB3F-070C + cheat + description:More "HR" points to distribute - moderate game + code:DF3F-07AC+BD3F-076C + cheat + description:More "R" points to distribute - moderate game + code:1634-0DDC+DF34-0D0C + cheat + description:More "F" points to distribute - moderate game + code:1034-0D6C + +cartridge sha256:a8239355631d303ecebfd43fc14e80f148e4ac9937234e29cc87d6f939b033a0 + name:Super Bases Loaded (USA) + cheat + description:Game lasts 1 inning + code:DDA1-A46D+DFA0-A76D+DFE0-6F6D + cheat + description:Game lasts 2 innings + code:D4A1-A46D+D7A0-A76D+D7E0-6F6D + cheat + description:Game lasts 3 innings + code:D0A1-A46D+D9A0-A76D+D9E0-6F6D + cheat + description:Game lasts 5 innings + code:D6A1-A46D+DBA0-A76D+DBE0-6F6D + cheat + description:Game lasts 7 innings + code:DAA1-A46D+D2A0-A76D+D2E0-6F6D + cheat + description:1 strike and batter is out + code:DFAF-6F67+DDA2-07D7 + cheat + description:2 strikes and batter is out + code:D4AF-6F67+DFA2-07D7 + cheat + description:4 strikes and batter is out + code:D0AF-6F67+D7A2-07D7 + cheat + description:5 strikes and batter is out + code:D9AF-6F67+D0A2-07D7 + cheat + description:7 strikes and batter is out + code:D5AF-6F67+D1A2-07D7 + cheat + description:9 strikes and batter is out + code:DBAF-6F67+D6A2-07D7 + cheat + description:Batter never strikes out + code:C2E8-DF0D + cheat + description:Batter walks on 1 ball + code:DFA5-6F07+DDA7-6767 + cheat + description:Batter walks on 2 balls + code:D4A5-6F07+DFA7-6767 + cheat + description:Batter walks on 3 balls + code:D7A5-6F07+D4A7-6767 + cheat + description:Batter walks on 5 balls + code:D9A5-6F07+D0A7-6767 + cheat + description:Batter walks on 6 balls + code:D1A5-6F07+D9A7-6767 + cheat + description:Batter walks on 9 balls + code:DBA5-6F07+D6A7-6767 + cheat + description:Batter never walks + code:C2EA-D40D + cheat + description:1 out per inning + code:DDE7-07AD + cheat + description:2 outs per inning + code:DFE7-07AD + cheat + description:4 outs per inning + code:D7E7-07AD + cheat + description:5 outs per inning + code:D0E7-07AD + cheat + description:7 outs per inning + code:D1E7-07AD + cheat + description:9 outs per inning + code:D6E7-07AD + +cartridge sha256:b21a161fed748920e54cd72c54095416b1d999636e0388d7d147884779c52833 + name:Super Bases Loaded 3 - License to Steal (USA) + cheat + description:No strikes + code:C26E-4D01 + cheat + description:One strike to strike out + code:DF6E-44D1 + cheat + description:Ten strikes to strike out + code:DC6E-44D1 + cheat + description:Infinite strikes gives P1 a homerun + code:556E-4D61 + cheat + description:Infinite strikes gives opponent a homerun + code:566E-4D61 + cheat + description:Walk on one ball + code:DF6F-C461 + cheat + description:Walk on ten balls + code:DC6F-C461 + cheat + description:Infinite balls gives P1 a homerun + code:556F-CFD1 + cheat + description:Infinite balls gives opponent a homerun + code:566F-CFD1 + +cartridge sha256:165938810948f3226f7446978fa36ae8bc781616d95b39cd126d5c8afbf6e2ee + name:Super Batter Up (USA) + cheat + description:Batter never walks + code:C2B2-0D6A + cheat + description:Batter never strikes out + code:C2BD-64DA + cheat + description:1 ball per walk + code:DFB2-040A + cheat + description:2 balls per walk + code:D4B2-040A + cheat + description:3 balls per walk + code:D7B2-040A + cheat + description:5 balls per walk + code:D9B2-040A + cheat + description:6 balls per walk + code:D1B2-040A + cheat + description:7 balls per walk + code:D5B2-040A + cheat + description:1 strike per out + code:DFBD-67AA + cheat + description:2 strikes per out + code:D4BD-67AA + cheat + description:4 strikes per out + code:D0BD-67AA + cheat + description:5 strikes per out + code:D9BD-67AA + +cartridge sha256:1735f790ebcfa1bed2430aecde3abaf24c88ff99aa0186736f8f36b674bc9350 + name:Super Battletank - War in the Gulf (USA) (Rev 1) + cheat + description:Infinite health against most enemies and mines + code:C9AC-0D67 + cheat + description:Infinite weapon ammo (except Smoke Screens and Machine Gun) + code:4ABD-DDA4 + cheat + description:More Machine Gun ammo on stages 1-4 + code:EE2E-D4D4 + cheat + description:Less Machine Gun ammo on stages 1-4 + code:482E-D4D4 + cheat + description:More Cannon ammo on each mission + code:1022-D7D4 + cheat + description:Less Cannon ammo on each mission + code:FB22-D7D4 + cheat + description:More Laser Shells on each mission + code:D923-DF04 + cheat + description:No Laser Shells on each mission + code:DD23-DF04 + cheat + description:More Smoke Screens on each mission + code:D923-D7A4 + cheat + description:No Smoke Screens on each mission + code:DD23-D7A4 + cheat + description:Infinite health against most enemies and mines (alt) + code:00CDA2:A5 + cheat + description:Infinite Fuel + code:7E05C4:FF + cheat + description:Infinite 120mm Cannon + code:7E049E:42 + cheat + description:Infinite Laser Missiles + code:7E04A0:01 + cheat + description:Infinite Smoke Screens + code:7E04A1:01 + cheat + description:Infinite 7.62mm Machine Gun + code:7E04A2:96 + +cartridge sha256:94496e73fc7fdf2f72f16bf2becb0c3935db2ebd97555eac73b63400acbceec6 + name:Super Battletank - War in the Gulf (USA) + cheat + description:Infinite health against most enemies and mines + code:C9AC-0D67 + cheat + description:Infinite weapon ammo (except Smoke Screens and Machine Gun) + code:4ABD-DDA4 + cheat + description:More Machine Gun ammo on stages 1-4 + code:EE2E-D4D4 + cheat + description:Less Machine Gun ammo on stages 1-4 + code:482E-D4D4 + cheat + description:More Cannon ammo on each mission + code:1022-D7D4 + cheat + description:Less Cannon ammo on each mission + code:FB22-D7D4 + cheat + description:More Laser Shells on each mission + code:D923-DF04 + cheat + description:No Laser Shells on each mission + code:DD23-DF04 + cheat + description:More Smoke Screens on each mission + code:D923-D7A4 + cheat + description:No Smoke Screens on each mission + code:DD23-D7A4 + cheat + description:Infinite health against most enemies and mines (alt) + code:00CDA2:A5 + cheat + description:Infinite Fuel + code:7E05C4:FF + cheat + description:Infinite 120mm Cannon + code:7E049E:42 + cheat + description:Infinite Laser Missiles + code:7E04A0:01 + cheat + description:Infinite Smoke Screens + code:7E04A1:01 + cheat + description:Infinite 7.62mm Machine Gun + code:7E04A2:96 + +cartridge sha256:b68e865b0b5fe6af421a171e94fb1cb0006ae3e412b6361f6f858c44adaa304b + name:Super Battletank 2 (USA) + cheat + description:Infinite hits + code:7E00AD:00 + cheat + description:Infinite health in 3rd person mode + code:7E0A2A:00 + cheat + description:Infinite 120mm bullets + code:7E10E3:09 + cheat + description:Infinite 120mm bullets in 3rd person mmode + code:7E0A10:09 + cheat + description:Infinite 7.62mm bullets + code:7E10E7:09 + cheat + description:Infinite 7.62mm bullets in 3rd person mode + code:7E0A0E:09 + cheat + description:Infinite Phalanx + code:7E10E8:09 + cheat + description:Infinite Scope + code:7E10E9:09 + cheat + description:Infinite Smoke + code:7E10E6:09 + cheat + description:Infinite LGM + code:7E10E5:09 + cheat + description:Infinite Patriot + code:7E10E4:09 + +cartridge sha256:4efab3f49cbe91ec77b6cba747ddfedfdc0b080c755a8b6ba51234f0676c000f + name:Super Bomberman (USA) + cheat + description:Invincibility (normal game) + code:89FC-77FF + cheat + description:Infinite lives (normal game) + code:89FE-57B4 + cheat + description:Invincibility - P1 + code:7E0D79:80 + cheat + description:Invincibility - P2 + code:7E0DB9:80 + cheat + description:Invincibility - P3 + code:7E0DF9:80 + cheat + description:Invincibility - P4 + code:7E0E39:80 + cheat + description:Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P1 + code:7E0D79:E3 + cheat + description:Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P2 + code:7E0DB9:E3 + cheat + description:Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P3 + code:7E0DF9:E3 + cheat + description:Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P4 + code:7E0E39:E3 + cheat + description:Infinite time + code:7E0D3B:FF + cheat + description:Infinite lives - P1 + code:7E0D7D:09 + cheat + description:Infinite lives - P2 + code:7E0DBD:09 + cheat + description:Hit anywhere + code:0DDD-7728+11DD-7428+C2DD-74B8+D2DD-77F8 + cheat + description:Remove all blocks + code:DFFC-849C + cheat + description:Max bomb power - P1 + code:7E0D71:09 + cheat + description:Max bomb power - P2 + code:7E0DB1:09 + cheat + description:Max bomb power - P3 + code:7E0DF1:09 + cheat + description:Max bomb power - P4 + code:7E0E31:09 + cheat + description:Max bomb quantity - P1 + code:7E0D70:09 + cheat + description:Max bomb quantity - P2 + code:7E0DB0:09 + cheat + description:Max bomb quantity - P3 + code:7E0DF0:09 + cheat + description:Max bomb quantity - P4 + code:7E0E30:09 + cheat + description:Max speed - P1 + code:7E0D72:09 + cheat + description:Max speed - P2 + code:7E0DB2:09 + cheat + description:Max speed - P3 + code:7E0DF2:09 + cheat + description:Max speed - P4 + code:7E0E32:09 + cheat + description:Have Detonator - P1 + code:7E0D73:09 + cheat + description:Have Detonator - P2 + code:7E0DB3:09 + cheat + description:Have Detonator - P3 + code:7E0DF3:09 + cheat + description:Have Detonator - P4 + code:7E0E33:09 + cheat + description:Have red bombs - P1 + code:7E0D78:09 + cheat + description:Have red bombs - P2 + code:7E0DB8:09 + cheat + description:Have red bombs - P3 + code:7E0DF8:09 + cheat + description:Have red bombs - P4 + code:7E0E38:09 + cheat + description:Have 9,000,000 points - P1 + code:7E0D5B:09 + cheat + description:Have 9,000,000 points - P2 + code:7E0D9B:09 + +cartridge sha256:0a4b4a783a7faf6ada3e1326ecf85de77e8c2a171659b42a78a1fae43f806ca6 + name:Super Bomberman 2 (USA) + cheat + description:Invincibility - P1 + code:7E80EF:01 + cheat + description:Invincibility - P2 + code:7E81EF:01 + cheat + description:Invincibility - P3 + code:7E82EF:01 + cheat + description:Invincibility - P4 + code:7E83EF:01 + cheat + description:Infinite time + code:7E5E12:3B + cheat + description:Infinite lives + code:7E1C6C:09 + cheat + description:Hit anywhere + code:0D92-7FD0+2D92-7F60+4B92-7DA0+A092-7DD0+C99A-77A0 + cheat + description:Walk through chests + code:B58E-EFDD + cheat + description:Move fast + code:7E80F0:02 + cheat + description:Move faster + code:7E80F0:03 + cheat + description:Move fastest + code:7E80F0:04 + cheat + description:Max bomb power - P1 + code:7E80F2:09 + cheat + description:Max bomb power - P2 + code:7E81F2:09 + cheat + description:Max bomb power - P3 + code:7E82F2:09 + cheat + description:Max bomb power - P4 + code:7E83F2:09 + cheat + description:Max bomb quantity - P1 + code:7E80F1:09 + cheat + description:Max bomb quantity - P2 + code:7E81F1:09 + cheat + description:Max bomb quantity - P3 + code:7E82F1:09 + cheat + description:Max bomb quantity - P4 + code:7E83F1:09 + cheat + description:Max speed - P1 + code:7E80F0:06 + cheat + description:Max speed - P2 + code:7E81F0:06 + cheat + description:Max speed - P3 + code:7E82F0:06 + cheat + description:Max speed - P4 + code:7E83F0:06 + cheat + description:Have Detonator - P1 + code:7E80F3:01 + cheat + description:Have Detonator - P2 + code:7E81F3:01 + cheat + description:Have Detonator - P3 + code:7E82F3:01 + cheat + description:Have Detonator - P4 + code:7E83F3:01 + cheat + description:Have Power Bombs - P1 + code:7E80F3:02 + cheat + description:Have Power Bombs - P2 + code:7E81F3:02 + cheat + description:Have Power Bombs - P3 + code:7E82F3:02 + cheat + description:Have Power Bombs - P4 + code:7E83F3:02 + cheat + description:Have Super Bombs - P1 + code:7E80F3:04 + cheat + description:Have Super Bombs - P2 + code:7E81F3:04 + cheat + description:Have Super Bombs - P3 + code:7E82F3:04 + cheat + description:Have Super Bombs - P4 + code:7E83F3:04 + cheat + description:Have Gel Bombs - P1 + code:7E80F3:08 + cheat + description:Have Gel Bombs - P2 + code:7E81F3:08 + cheat + description:Have Gel Bombs - P3 + code:7E82F3:08 + cheat + description:Have Gel Bombs - P4 + code:7E83F3:08 + cheat + description:Have Punch Glove - P1 + code:7E80FE:01 + cheat + description:Have Punch Glove - P2 + code:7E81FE:01 + cheat + description:Have Punch Glove - P3 + code:7E82FE:01 + cheat + description:Have Punch Glove - P4 + code:7E83FE:01 + cheat + description:Have Kick Bomb - P1 + code:7E80FF:01 + cheat + description:Have Kick Bomb - P2 + code:7E81FF:01 + cheat + description:Have Kick Bomb - P3 + code:7E82FF:01 + cheat + description:Have Kick Bomb - P4 + code:7E83FF:01 + cheat + description:Have Bomb Walk - P1 + code:7E80FA:01 + cheat + description:Have Bomb Walk - P2 + code:7E81FA:01 + cheat + description:Have Bomb Walk - P3 + code:7E82FA:01 + cheat + description:Have Bomb Walk - P4 + code:7E83FA:01 + cheat + description:Have Brick Walk - P1 + code:7E80FB:01 + cheat + description:Have Brick Walk - P2 + code:7E81FB:01 + cheat + description:Have Brick Walk - P3 + code:7E82FB:01 + cheat + description:Have Brick Walk - P4 + code:7E83FB:01 + cheat + description:Have Poison Status - P1 + code:7E80F5:01 + cheat + description:Have Poison Status - P2 + code:7E81F5:01 + cheat + description:Have Poison Status - P3 + code:7E82F5:01 + cheat + description:Have Poison Status - P4 + code:7E83F5:01 + cheat + description:Have 4,000,000 points - P1 + code:7E5DEF:A7 + cheat + description:Have 9,000,000 points - P2 + code:7E0D9B:09 + cheat + description:Jump ability in battle-mode - all players + code:7E1C00:02+EFFF04:32 + +cartridge sha256:21d4a72461d8680cf75cf3b8eba42e13127815bc17b6249d89a5e39beb3f1406 + name:Super Bonk (USA) + cheat + description:Invincibility + code:1DAC-37A6+6DB5-34D0+6DB9-3DA0 + cheat + description:Infinite lives + code:C2E4-47AC + cheat + description:Infinite max life + code:7E101C:1E + cheat + description:Max life + code:7E101D:1E + cheat + description:Always have 99 lives + code:7E101E:63 + cheat + description:Always have 99 Smileys + code:7E1022:63 + cheat + description:Press up to fly on any level + code:CB31-4F08+3C31-4FA8 + cheat + description:Hit anywhere + code:6DB3-1760+DDC6-141F + +cartridge sha256:946de556b4f877e54e16b5c828db89c038e50349cfd0ddf8ea96b6541f9d70fa + name:Super Bowling (USA) + cheat + description:No spin on ball + code:4ACA-0464 + cheat + description:Faster spin meter + code:D1C5-DDAD + cheat + description:Slower spin meter + code:D4C5-DDAD + cheat + description:Really slow spin meter + code:DFC5-DDAD + cheat + description:Faster power meter + code:D1C5-D4DD + cheat + description:Slower power meter + code:D4C5-D4DD + cheat + description:Really slow power meter + code:DFC5-D4DD + +cartridge sha256:dc233b2805f7f73b454b53e45eef50df18932a1753fc0b7bc846bbd70a8993c3 + name:Super Buster Bros. (USA) (Rev 1) + cheat + description:Extra credit after 2 food items instead of 10 + code:D42B-A7D0 + cheat + description:Extra credit after 4 food items + code:D02B-A7D0 + cheat + description:Extra credit after 6 food items + code:D12B-A7D0 + cheat + description:Extra credit after 8 food items + code:D62B-A7D0 + cheat + description:Food items never earn extra credit + code:3C2B-A460 + cheat + description:Invincibility + code:7E0100:05 + cheat + description:Shield always on + code:7E0134:02 + cheat + description:Normal shot + code:7E0131:00 + cheat + description:Double shot + code:7E0131:02 + cheat + description:Grappling shot + code:7E0131:04 + cheat + description:Gun shot + code:7E0131:06 + +cartridge sha256:5965bde449ff775c1a0d9fd3cf2fb8c51a86b44ad1942dfb5c14a91f103be030 + name:Super Buster Bros. (USA) + cheat + description:Infinite lives + code:DDB2-07A4 + cheat + description:Infinite credits + code:C9B9-6D04 + cheat + description:Clock runs faster + code:FB83-0D64 + cheat + description:Clock runs slower + code:1083-0D64 + cheat + description:Clock runs much slower + code:A683-0D64 + cheat + description:Clock is frozen (no time limit) + code:DD83-0704 + cheat + description:Food items never earn extra credit + code:3C2B-A460 + cheat + description:Double harpoon pick-up gives you machine gun + code:D184-ADA8 + cheat + description:Retain weapon after dying or advancing thru stages + code:C96E-6FD6 + cheat + description:Panic mode has 2 levels instead of 99 + code:D780-DDD4+D781-DF04 + cheat + description:Panic mode has 5 levels + code:D180-DDD4+D181-DF04 + cheat + description:Panic mode has 10 levels + code:D880-DDD4+D881-DF04 + cheat + description:Panic mode has 20 levels + code:F980-DDD4+F981-DF04 + cheat + description:Extra credit after 2 food items instead of 10 + code:D42B-A7D0 + cheat + description:Extra credit after 4 food items + code:D02B-A7D0 + cheat + description:Extra credit after 6 food items + code:D12B-A7D0 + cheat + description:Extra credit after 8 food items + code:D62B-A7D0 + cheat + description:1 credit + code:DD61-0D0A + cheat + description:2 credits + code:DF61-0D0A + cheat + description:3 credits + code:D461-0D0A + cheat + description:4 credits + code:D761-0D0A + cheat + description:6 credits + code:D961-0D0A + cheat + description:8 credits + code:D561-0D0A + cheat + description:No credits + code:EE61-0D0A + cheat + description:Start with 2 lives + code:DF61-0DDA + cheat + description:Start with 3 lives + code:D461-0DDA + cheat + description:Start with 5 lives + code:D061-0DDA + cheat + description:Start with 6 lives + code:D961-0DDA + cheat + description:Start with 8 lives + code:D561-0DDA + cheat + description:Start with 10 lives + code:DB61-0DDA + cheat + description:Start with 1 life + code:DD61-0DDA + cheat + description:Invincibility + code:7E0100:05 + cheat + description:Shield always on + code:7E0134:02 + cheat + description:Normal shot + code:7E0131:00 + cheat + description:Double shot + code:7E0131:02 + cheat + description:Grappling shot + code:7E0131:04 + cheat + description:Gun shot + code:7E0131:06 + +cartridge sha256:d42f8c7969b4c434f9ca04ce0080d897877a5e71c2926d309ef5dae93ba25548 + name:Super Caesars Palace (USA) + cheat + description:Infinite 999 gold chips + code:7E188E:E7+7E188F:03 + cheat + description:Access all high roller areas + code:7E0C30:0F + +cartridge sha256:0ef6f4cce5a2273fa49fe1ce724e0048a8e39c91da6b00dbb693fe1ba909177d + name:Super Castlevania IV (USA) + cheat + description:Invincibility + code:2D2B-6764+2DCD-D764 + cheat + description:Invincibility (blinking) + code:608E-D7FB+C92C-6DD4 + cheat + description:Infinite health + code:C22F-07D7 + cheat + description:Infinite health against most enemies + code:D22F-07D7 + cheat + description:Infinite lives (disable to get password) + code:DD6C-DD66 + cheat + description:Infinite time + code:6D6D-DF06 + cheat + description:Infinite lives + code:C96C-DFD6 + cheat + description:Infinite shots for most weapons + code:A689-0FD7 + cheat + description:Hit anywhere (cannot use whip to grab onto things, press Y to moon jump instead) + code:B428-AFA4+C728-A4D4+DD2C-A764+6D20-A7A4+6D21-AF64 + cheat + description:Fully powered whip with first power-up + code:DD24-AFD7 + cheat + description:Increase heart capacity 2.5 times + code:EE2B-6DA7+FC25-64D7+EE26-6767 + cheat + description:Max hearts on pick-up + code:DD2B-6D07 + cheat + description:Double Shot gives you a Triple Shot + code:EE2B-A767 + cheat + description:Slower timer + code:5E6D-DDA6 + cheat + description:Faster timer + code:FE6D-DDA6 + cheat + description:Super-jump + code:FDC5-04D4 + cheat + description:Mega-jump + code:4DC5-04D4 + cheat + description:Multi-jump + code:C72B-6FA4+DD2B-64D4+3C2B-6404+186D-DDD6+C28A-A46F+18CF-6D0D+462B-6D04+DC2B-6D64+BD2B-6DA4+D02B-6FD4+442B-6F04+B42B-6F64 + cheat + description:Start with and always keep Dagger + code:CBAA-6DAF+DFAA-6FDF+69AA-6F6F + cheat + description:Start with and always keep Axe + code:CBAA-6DAF+D4AA-6FDF+69AA-6F6F + cheat + description:Start with and always keep Holy Water + code:CBAA-6DAF+D7AA-6FDF+69AA-6F6F + cheat + description:Start with and always keep Boomerang + code:CBAA-6DAF+D0AA-6FDF+69AA-6F6F + cheat + description:Start with and always keep Stopwatch + code:CBAA-6DAF+D9AA-6FDF+69AA-6F6F + cheat + description:Start with 99 hearts - first life only + code:BBB3-D40F + cheat + description:Start with 50 hearts - first life only + code:9DB3-D40F + cheat + description:Start with 10 lives - first game only + code:FDB2-D4AF + cheat + description:Start with 1 life - first game only + code:DFB2-D4AF + cheat + description:Invincibility (blinking) (alt) + code:7E00BC:0A + cheat + description:Infinite health (alt) + code:7E13F4:10 + cheat + description:Infinite time (alt) + code:7E13F0:99 + cheat + description:Infinite hearts + code:7E13F2:99 + cheat + description:Have best whip + code:7E0092:02 + cheat + description:Have Dagger + code:7E008E:01 + cheat + description:Have Axe + code:7E008E:02 + cheat + description:Have Cross + code:7E008E:04 + cheat + description:Have Dagger + code:7E008E:01 + cheat + description:Have Holy Water + code:7E008E:03 + cheat + description:Have Stopwatch + code:7E008E:05 + cheat + description:Have Triple Shot + code:7E0090:02 + cheat + description:Start on second playthrough difficulty level + code:7E0088:01 + +cartridge sha256:b839253b878821ff00847491d11452e933baaf303f49dd39d22e3a524ea1ff81 + name:Super Chase H.Q. (USA) + cheat + description:Infinite health + code:7E127C:FF + cheat + description:Infinite nitro + code:7E1267:03 + cheat + description:Infinite time + code:7E127B:89 + +cartridge sha256:48afb82875ed4309f871f6b14021aa82c026fb14dc8acdbcf35f71ee605771b5 + name:Super Donkey Kong 2 - Dixie & Diddy (Japan) + cheat + description:Invincibility + code:4022-431D + +cartridge sha256:bcced1be76ef920b562a555696bcb4583d1c8cea4d4b057cab6e0e09be8ef8c4 + name:Super Double Dragon (USA) + cheat + description:Invincibility - both players + code:1D6F-0766 + cheat + description:Invincibility - P1 + code:C267-0DD6 + cheat + description:Infinite lives - P1 + code:C286-6F05 + cheat + description:Infinite lives - P1 (alt) + code:4A86-6F05 + cheat + description:Dragon power increases faster + code:DDB3-A7F1 + cheat + description:Prolonged maximum dragon power + code:D7B2-A7B5 + cheat + description:1 extra credit - 2P game A + code:DF8C-070B + cheat + description:9 lives - 1P game + code:DB86-070B + cheat + description:6 lives - 1P game + code:D186-070B + cheat + description:1 life - 1P game + code:DF86-070B + cheat + description:9 lives - 2P game A + code:DB88-0D6B + cheat + description:6 lives - 2P game A + code:D188-0D6B + cheat + description:1 life - 2P game A + code:DF88-0D6B + cheat + description:Start on Mission 2 (enable on Mode Seclect screen, then disable) + code:7E001C:14 + cheat + description:Start on Mission 3 (enable on Mode Seclect screen, then disable) + code:7E001C:17 + cheat + description:Start on Mission 4 (enable on Mode Seclect screen, then disable) + code:7E001C:1C + cheat + description:Start on Mission 5 (enable on Mode Seclect screen, then disable) + code:7E001C:1D + cheat + description:Start on Mission 6 (enable on Mode Seclect screen, then disable) + code:7E001C:1F + cheat + description:Start on Mission 7 (enable on Mode Seclect screen, then disable) + code:7E001C:20 + +cartridge sha256:7468c271d7240cf4e0d08c16e9969a1b1b1caf5adc0e5adc568d93c92651a057 + name:Super Ghouls'n Ghosts (USA) + cheat + description:Invincibility (disable at end of first two stages of level 3, so you can trigger the hidden end of stage marker) + code:D4D5-B286 + cheat + description:Invincibility (alt) + code:DD21-0FD0 + cheat + description:Never lose Armor + code:DFD0-F38B+DFF8-F38B + cheat + description:Infinite time + code:A286-0F01 + cheat + description:Infinite lives + code:A2C1-AD01 + cheat + description:Infinite double-jumps + code:C2A5-A4A5 + cheat + description:Infinite shield hits + code:6DE7-A468 + cheat + description:Infinite continues + code:DDB6-67FF + cheat + description:Hit anywhere + code:1DEF-0708+C2E5-D708+C2EA-A40C + cheat + description:Very few Zombies appear + code:C9BB-A460 + cheat + description:Most Zombies carry a basket + code:DF65-DFA8+CBBD-AF98 + cheat + description:Slower timer + code:9386-0D01 + cheat + description:Faster timer + code:FE86-0D01 + cheat + description:Start with 9 minutes + code:DBC3-0465 + cheat + description:Start with 1 continue + code:DFC0-A401 + cheat + description:Start with 9 continues + code:DBC0-A401 + cheat + description:Invincibility (alt 2) + code:7E0276:02 + cheat + description:Never lose Armor (alt) + code:7E044A:01+7E14BA:01 + cheat + description:Infinite time (alt) + code:7E02A9:01 + cheat + description:Infinite lives (alt) + code:7E02A4:02 + cheat + description:Infinite double-jumps (alt) + code:7E14BC:00 + cheat + description:Super-jump + code:7E0458:0F + cheat + description:Run faster + code:7E0453:02 + cheat + description:900,000 points + code:7E0295:09 + cheat + description:Have no Armor + code:7E14BA:00 + cheat + description:Have regular Armor + code:7E14BA:01 + cheat + description:Have Green Armor + code:7E14BA:02 + cheat + description:Have Gold Armor + code:7E14BA:04 + cheat + description:Have Javelin + code:7E14D3:00 + cheat + description:Have Blue Fire Javelin + code:7E14D3:01 + cheat + description:Have Quick Dagger + code:7E14D3:02 + cheat + description:Have Laser Dagger + code:7E14D3:03 + cheat + description:Have Crossbow + code:7E14D3:04 + cheat + description:Have Crossbow with Homing Arrows + code:7E14D3:05 + cheat + description:Have Scythe + code:7E14D3:06 + cheat + description:Have Scythe level 2 + code:7E14D3:07 + cheat + description:Have Torch + code:7E14D3:08 + cheat + description:Have Torch level 2 + code:7E14D3:09 + cheat + description:Have Axe + code:7E14D3:0A + cheat + description:Have Double Edge Axe + code:7E14D3:0B + cheat + description:Have Dagger with L-shaped path + code:7E14D3:0C + cheat + description:Have Shuriken with L-shaped path + code:7E14D3:0D + cheat + description:Have Goddess Ring + code:7E14D3:0E + +cartridge sha256:3f8efb19eae68f24feb42c018b7dc7a819bfd8d993ab36899681caa7ee94b06e + name:Super James Pond (USA) + cheat + description:Infinite health + code:7EB130:03 + cheat + description:Infinite lives + code:7EB12E:03 + +cartridge sha256:a9e3e57d591e995e8e0dd228b619b6aed42205eaf55316fa8ff33f236b3a32b3 + name:Super Mario All-Stars (USA) + cheat + description:SMB - Invincibility (Starman effect) + code:292B-67DE + cheat + description:SMB - Invincibility does not last as long + code:D62F-6DAE + cheat + description:SMB - Invincibility lasts longer + code:9D2F-6DAE + cheat + description:SMB - Infinite lives (alt) + code:C2C1-D4AA + cheat + description:SMB - Infinite time + code:6D84-DF03 + cheat + description:SMB - Multi-jump + code:2D8E-D7D2 + cheat + description:SMB - Run without holding the dash button + code:DD8E-D702 + cheat + description:SMB - Start File A game with 2 lives + code:DFDF-FAAD + cheat + description:SMB - Start File A game with 10 lives + code:DBDF-FAAD + cheat + description:SMB - Start File A game with 50 lives + code:7FDF-FAAD + cheat + description:SMB - Start File A game with 100 lives + code:17DF-FAAD + cheat + description:SMB - 1-up worth nothing + code:C26B-0FBF + cheat + description:SMB - Allows you to select any world for File A + code:D5DF-FADD + cheat + description:SMB - Jump lower (disable if you get stuck) + code:CB81-0D02+E281-0D62+3C81-0DA2 + cheat + description:SMB - Super-jump + code:CB81-0D02+EC81-0D62+3C81-0DA2 + cheat + description:SMB - Mega-jump + code:CB81-0D02+E681-0D62+3C81-0DA2 + cheat + description:LL - Start File A game with 2 lives + code:DFDF-FEDD + cheat + description:LL - Start File A game with 10 lives + code:DBDF-FEDD + cheat + description:LL - Start File A game with 50 lives + code:7FDF-FEDD + cheat + description:LL - Start File A game with 100 lives + code:17DF-FEDD + cheat + description:LL - Infinite lives + code:C2B6-A455 + cheat + description:LL - Infinite time + code:6D82-0F79 + cheat + description:LL - Allows you to select any world or level for File A + code:DADF-F30D+D7DF-F36D + cheat + description:LL - Infinite lives + code:C2B6-A455 + cheat + description:LL - Multi-jump + code:DD86-6F80 + cheat + description:SMB2 - Multi-jump - all characters + code:D966-6166 + cheat + description:SMB2 - Float - all characters + code:6267-A5A6 + cheat + description:SMB2 - 1 life after continue + code:DF61-05D0 + cheat + description:SMB2 - 9 lives after continue + code:DB61-05D0 + cheat + description:SMB2 - 25 lives after continue + code:FB61-05D0 + cheat + description:SMB2 - 50 lives after continue + code:7461-05D0 + cheat + description:SMB2 - 99 lives after continue + code:1761-05D0 + cheat + description:SMB2 - Infinite lives + code:C26E-D5A6 + cheat + description:SMB2 - Continue with 3 hearts instead of 2 + code:DF6B-A9A1 + cheat + description:SMB2 - Continue with 4 hearts + code:D46B-A9A1 + cheat + description:SMB2 - Infinite hearts + code:DD32-6966 + cheat + description:SMB2 - Jumping in place charges super jump + code:7A60-A966 + cheat + description:SMB2 - Allows you to select any world for File A + code:D1D4-FA0D + cheat + description:SMB3 - Infinite lives + code:82BB-0C6D + cheat + description:SMB3 - Infinite time + code:6D3D-6619 + cheat + description:SMB3 - Infinite flying time + code:EEA4-AB63 + cheat + description:SMB3 - Multi-jump + code:40AA-6803 + cheat + description:SMB3 - Fly at any time (run meter always full) + code:DDAF-A8A3 + cheat + description:SMB3 - Fireballs hit anywhere + code:4083-D8F3+408D-08F3 + cheat + description:SMB3 - Tail hits anywhere + code:40C4-6C22 + cheat + description:SMB3 - Fireballs can kill most enemies + code:4084-0BB3 + cheat + description:SMB3 - Change to Big Mario whenever you go to the map + code:CB69-AC07+DF69-AC67 + cheat + description:SMB3 - Change to Fire Mario whenever you go to the map + code:CB69-AC07+D469-AC67 + cheat + description:SMB3 - Change to Raccoon Mario whenever you go to the map + code:CB69-AC07+D769-AC67 + cheat + description:SMB3 - Change to Frog Mario whenever you go to the map + code:CB69-AC07+D069-AC67 + cheat + description:SMB3 - Change to Tanooki Mario whenever you go to the map + code:CB69-AC07+D969-AC67 + cheat + description:SMB3 - Change to Sledgehammer Mario when you go to the map + code:CB69-AC07+D169-AC67 + cheat + description:SMB3 - All power-ups turn you into Shoe Mario + code:D0A1-6C0A+E1A3-D60A + cheat + description:SMB3 - Collisions turn you into Big Mario + code:D4A8-6CAA + cheat + description:SMB3 - Collisions turn you into Fire Mario + code:D7A8-6CAA + cheat + description:SMB3 - Collisions turn you into Raccoon Mario + code:D0A8-6CAA + cheat + description:SMB3 - Collisions turn you into Frog Mario + code:D9A8-6CAA + cheat + description:SMB3 - Collisions turn you into Tanooki Mario + code:D1A8-6CAA + cheat + description:SMB3 - Collisions turn you into Sledgehammer Mario + code:D5A8-6CAA + cheat + description:SMB3 - After getting star, invincible until end of level (may have to disable to jump) + code:C23B-680D + cheat + description:SMB3 - 1 life after continue + code:DFBB-DBAF + cheat + description:SMB3 - 10 lives after continue + code:DBBB-DBAF + cheat + description:SMB3 - 26 lives after continue + code:FBBB-DBAF + cheat + description:SMB3 - 51 lives after continue + code:74BB-DBAF + cheat + description:SMB3 - 100 lives after continue + code:17BB-DBAF + cheat + description:SMB3 - Gain lots of lives with each 5 coins + code:D93E-6C49 + cheat + description:SMB3 - 5 coins needed for an extra life + code:D93E-6819 + cheat + description:SMB3 - 10 coins needed for an extra life + code:DC3E-6819 + cheat + description:SMB3 - 25 coins needed for an extra life + code:FB3E-6819 + cheat + description:SMB3 - 50 coins needed for an extra life + code:743E-6819 + cheat + description:SMB3 - Power-jump + code:AD3E-6801 + cheat + description:SMB3 - Super-jump + code:863E-6801 + cheat + description:SMB3 - Mega-jump + code:8D3E-6801 + cheat + description:SMB3 - Ultra power-jump + code:C63E-6801 + cheat + description:SMB3 - Mega power-jump + code:DDA9-A603 + cheat + description:SMB3 - Select any world for File A game + code:D5D4-F36D + cheat + description:SMB3 - Re-enter already beaten levels + code:DD63-D6A5 + cheat + description:SMB3 - Re-enter already beaten fortresses + code:1D63-D665 + cheat + description:SMB3 - Re-enter already beaten mushroom houses and special levels + code:0D63-D605 + cheat + description:SMB3 - Start and continue as Big Mario + code:E1A3-D60A + cheat + description:SMB - Invincibility (Starman) + code:7E07AF:0F + cheat + description:SMB - Infinite lives + code:7E075A:05 + cheat + description:SMB2 - Invincibility + code:7E0085:3B + cheat + description:SMB2 - Always big + code:7E04C3:1F + cheat + description:SMB2 - Always small + code:7E04C3:0F + cheat + description:SMB2 - Infinite float time - all characters + code:7E04CA:FF + cheat + description:SMB3 - Enable debug mode (in game) + code:7E0160:80 + cheat + description:SMB3 - Invincibility + code:7E0552:80 + cheat + description:SMB3 - Invincibility (Starman) + code:7E0553:FF + cheat + description:SMB3 - Always Small Mario + code:7E00BB:00 + cheat + description:SMB3 - Always Big Mario + code:7E00BB:01 + cheat + description:SMB3 - Always Fire Mario + code:7E00BB:02 + cheat + description:SMB3 - Always Raccoon Mario + code:7E00BB:03 + cheat + description:SMB3 - Always Frog Mario + code:7E00BB:04 + cheat + description:SMB3 - Always Tanooki Mario + code:7E00BB:05 + cheat + description:SMB3 - Always Hammer Bros. Mario + code:7E00BB:06 + cheat + description:SMB3 - Have Magic Whistle + code:7E1D80:0C + cheat + description:SMB3 - Raccoon and Tanooki have P-Wing + code:7E056E:FF + cheat + description:SMB3 - Fly for an unlimited amount of time + code:23CB26:FF + +cartridge sha256:a8806bfe07cd3c9945d9fd3fcea932ae1cd671cab5cae12bb7a2ae726cbf9175 + name:Super Mario All-Stars + Super Mario World (USA) + cheat + description:SMB - Invincibility (Starman effect) + code:292B-67DE + cheat + description:SMB - Invincibility + code:62E7-A7D2+2DE7-A7A2 + cheat + description:SMB - Always Fiery Mario after first hit + code:CB29-AF0E+D429-AF6E+CB8B-676A+DD8B-67AA + cheat + description:SMB - Fireballs hit anywhere + code:4028-D4DE + cheat + description:SMB - Multi-jump + code:2D8E-D7D2 + cheat + description:SMB - Run without holding the dash button + code:DD8E-D702 + cheat + description:LL - Infinite lives + code:C2B6-A455 + cheat + description:LL - Multi-jump + code:DD86-6F80 + cheat + description:SMB2 - Infinite lives + code:C26E-D5A6 + cheat + description:SMB2 - Infinite hearts + code:DD32-6966 + cheat + description:SMB2 - Hit anywhere + code:0720-A0D8+3D27-A508+DD27-A568 + cheat + description:SMB2 - Multi-jump - all characters + code:D966-6166 + cheat + description:SMB2 - Float - all characters + code:6267-A5A6 + cheat + description:SMB3 - Fireballs hit anywhere + code:4083-D8F3+408D-08F3 + cheat + description:SMB3 - Tail hits anywhere + code:40C4-6C22 + cheat + description:SMB3 - Fireballs can kill most enemies + code:4084-0BB3 + cheat + description:SMB3 - Re-enter already beaten levels + code:DD63-D6A5 + cheat + description:SMB3 - Re-enter already beaten fortresses + code:1D63-D665 + cheat + description:SMB3 - Re-enter already beaten mushroom houses and special levels + code:0D63-D605 + cheat + description:SMW - Nintendo's debug + code:DDA6-DF07 + cheat + description:SMW - Infinite flying time for Yoshi + code:C2EC-0700 + cheat + description:SMB - Invincibility (Starman) + code:7E07AF:0F + cheat + description:SMB - Infinite lives + code:7E075A:05 + cheat + description:SMB2 - Invincibility + code:7E0085:3B + cheat + description:SMB2 - Infinite float time - all characters + code:7E04CA:FF + cheat + description:SMB3 - Enable debug mode (in game) + code:7E0160:80 + cheat + description:SMB3 - Infinite lives + code:20919A:BD + cheat + description:SMB3 - Invincibility + code:7E0552:80 + cheat + description:SMB3 - Invincibility (Starman) + code:7E0553:FF + cheat + description:SMB3 - Always Small Mario + code:7E00BB:00 + cheat + description:SMB3 - Always Big Mario + code:7E00BB:01 + cheat + description:SMB3 - Always Fire Mario + code:7E00BB:02 + cheat + description:SMB3 - Always Raccoon Mario + code:7E00BB:03 + cheat + description:SMB3 - Always Frog Mario + code:7E00BB:04 + cheat + description:SMB3 - Always Tanooki Mario + code:7E00BB:05 + cheat + description:SMB3 - Always Hammer Bros Mario + code:7E00BB:06 + cheat + description:SMB3 - Infinite flying time + code:23CB26:FF + cheat + description:SMB3 - Have Magic Whistle + code:7E1D80:0C + cheat + description:SMB3 - Raccoon and Tanooki have P-Wing + code:7E056E:FF + cheat + description:SMW - Invincibility + code:7E1497:FF + cheat + description:SMW - Invincible (Starman) + code:7E1490:FF + cheat + description:SMW - Always Small Mario + code:7E0019:00 + cheat + description:SMW - Always Big Mario + code:7E0019:01 + cheat + description:SMW - Always Caped Mario + code:7E0019:02 + cheat + description:SMW - Always Fire Mario + code:7E0019:03 + cheat + description:SMW - Infinite time + code:7E0F31:09+7E0F32:09+7E0F33:09 + cheat + description:SMW - Infinite P-Balloon time + code:7E1891:FF + cheat + description:SMW - Always have Yoshi + code:7E0DC1:01 + cheat + description:SMW - Jump to automatically fly + code:7E13E4:70 + cheat + description:SMW - Multi-jump and float down (disable in water and to get on Yoshi) + code:7E1471:01 + cheat + description:SMW - Activate yellow blocks (deactivate before entering the Yellow Switch Palace) + code:7E1F28:01 + cheat + description:SMW - Activate blue blocks (deactivate before entering the Blue Switch Palace) + code:7E1F29:01 + cheat + description:SMW - Activate red blocks (deactivate before entering the Red Switch Palace) + code:7E1F2A:01 + cheat + description:SMW - 8000 points for each enemy stomped + code:7E1697:06 + +cartridge sha256:2ada8919688087be60a6a48cace8f877add60c45d2e5d09e2442faa55be62a49 + name:Super Mario Kart (USA) + cheat + description:Invincibility + code:1A3E-CDA4 + cheat + description:All karts except yours do not move + code:9980-44DD + cheat + description:Drive through walls + code:4FEB-CDA4 + cheat + description:Drive through opponents + code:97A6-CDAD + cheat + description:Invincibility and have a Red Shell + code:7E0D70:28 + cheat + description:Always have Red Shell + code:7E0D70:05 + cheat + description:Always have item + code:7E0D71:C0 + cheat + description:Drive anywhere + code:80FA93:20 + cheat + description:Mud and other land doesn't effect driving + code:759DC8:B4 + cheat + description:Special Cup enabled (1P time trial and 2P match race) + code:7E1D29:03 + +cartridge sha256:740646f3535bfb365ca44e70d46ab433467b142bd84010393070bd0b141af853 + name:Super Mario RPG - Legend of the Seven Stars (USA) + cheat + description:Infinite tries in action sequences + code:A98E-7707 + cheat + description:Infinite HP - Character 1 + code:7EFA91:FF + cheat + description:Infinite HP - Character 2 + code:7EFB11:FF + cheat + description:Infinite HP - Character 3 + code:7EFB91:FF + cheat + description:Max HP - Character 1 + code:7EFA93:FF + cheat + description:Max HP - Character 2 + code:7EFB13:FF + cheat + description:Max HP - Character 3 + code:7EFB93:FF + cheat + description:Max Flower Points + code:7EFA0D:63 + cheat + description:Infinite Flower Points (In Battle) + code:7EFA0D:63+7EFA0C:63 + cheat + description:Infinite Coins + code:7FF8AF:E7+7FF8B0:03 + cheat + description:Infinite Frog Coins + code:7FF8B3:E7+7FF8B4:03 + cheat + description:255 EXP per battle (disable before going to the World Map or using the menu button) + code:7EFA02:FF + cheat + description:Always Mario's turn + code:7E0702:00 + cheat + description:Mario consecutive super jumps modifier + code:7FF8C0:64 + cheat + description:Mario - Level 30 + code:7FF800:1E + cheat + description:Mario - 999 HP + code:7FF801:E7+7FF802:03 + cheat + description:Mario - 999 Max HP + code:7FF803:E7+7FF804:03 + cheat + description:Mario - Max Speed + code:7FF805:FF + cheat + description:Mario - Max Attack + code:7FF806:FF + cheat + description:Mario - Max Defense + code:7FF807:FF + cheat + description:Mario - Max Magic Attack + code:7FF808:FF + cheat + description:Mario - Max Magic Defense + code:7FF809:FF + cheat + description:Mario - Max Experience + code:7FF80A:0F+7FF80B:27 + cheat + description:Mario - Equipped Weapon + code:7FF80C:1C + cheat + description:Mario - Equipped Armor + code:7FF80D:46 + cheat + description:Mario - Equipped Accessory + code:7FF80E:5E + cheat + description:Mario - Has all 'Correct' Spells + code:7FF810:3F + cheat + description:Mallow - Level 30 + code:7FF850:1E + cheat + description:Mallow - 999 HP + code:7FF851:E7+7FF852:03 + cheat + description:Mallow - 999 Max HP + code:7FF853:E7+7FF854:03 + cheat + description:Mallow - Max Speed + code:7FF855:FF + cheat + description:Mallow - Max Attack + code:7FF856:FF + cheat + description:Mallow - Max Defense + code:7FF857:FF + cheat + description:Mallow - Max Magic Attack + code:7FF858:FF + cheat + description:Mallow - Max Magic Defense + code:7FF859:FF + cheat + description:Mallow - Max Experience + code:7FF85A:0F+7FF85B:27 + cheat + description:Mallow - Equipped Weapon + code:7FF85C:20 + cheat + description:Mallow - Equipped Armor + code:7FF85D:46 + cheat + description:Mallow - Equipped Accessory + code:7FF85E:5E + cheat + description:Mallow - has all 'correct' spells + code:7FF862:E0+7FF863:07 + cheat + description:Geno - Level 30 + code:7FF83C:1E + cheat + description:Geno - 999 HP + code:7FF83D:E7+7FF83E:03 + cheat + description:Geno - 999 Max HP + code:7FF83F:E7+7FF840:03 + cheat + description:Geno - Max Speed + code:7FF841:FF + cheat + description:Geno - Max Attack + code:7FF842:FF + cheat + description:Geno - Max Defense + code:7FF843:FF + cheat + description:Geno - Max Magic Attack + code:7FF844:FF + cheat + description:Geno - Max Magic Defense + code:7FF845:FF + cheat + description:Geno - Max Experience + code:7FF846:0F+7FF847:27 + cheat + description:Geno - Equipped Weapon + code:7FF848:1F + cheat + description:Geno - Equipped Armor + code:7FF849:46 + cheat + description:Geno - Equipped Accessory + code:7FF84A:5E + cheat + description:Geno - Has all 'correct' spells + code:7FF84E:1F + cheat + description:Bowser - Level 30 + code:7FF828:1E + cheat + description:Bowser - 999 HP + code:7FF829:E7+7FF82A:03 + cheat + description:Bowser - 999 Max HP + code:7FF82B:E7+7FF82C:03 + cheat + description:Bowser - Max Speed + code:7FF82D:FF + cheat + description:Bowser - Max Attack + code:7FF82E:FF + cheat + description:Bowser - Max Defense + code:7FF82F:FF + cheat + description:Bowser - Max Magic Attack + code:7FF830:FF + cheat + description:Bowser - Max Magic Defense + code:7FF831:FF + cheat + description:Bowser - Max Experience + code:7FF832:0F+7FF833:27 + cheat + description:Bowser - Equipped Weapon + code:7FF834:1E + cheat + description:Bowser - Equipped Armor + code:7FF835:46 + cheat + description:Bowser - Equipped Accessory + code:7FF836:5E + cheat + description:Bowser - Has all 'correct' spells + code:7FF839:F0 + cheat + description:Princess - Level 30 + code:7FF814:1E + cheat + description:Princess - 999 HP + code:7FF815:E7+7FF816:03 + cheat + description:Princess - 999 Max HP + code:7FF817:E7+7FF818:03 + cheat + description:Princess - Max Speed + code:7FF819:FF + cheat + description:Princess - Max Attack + code:7FF81A:FF + cheat + description:Princess - Max Defense + code:7FF81B:FF + cheat + description:Princess - Max Magic Attack + code:7FF81C:FF + cheat + description:Princess - Max Magic Defense + code:7FF81D:FF + cheat + description:Princess - Max Experience + code:7FF81E:0F+7FF81F:27 + cheat + description:Princess - Equipped Weapon + code:7FF820:22 + cheat + description:Princess - Equipped Armor + code:7FF821:46 + cheat + description:Princess - Equipped Accessory + code:7FF822:5E + cheat + description:Princess - Has all 'correct' spells + code:7FF824:C0+7FF825:0F + +cartridge sha256:0838e531fe22c077528febe14cb3ff7c492f1f5fa8de354192bdff7137c27f5b + name:Super Mario World (USA) + cheat + description:Start and stay invincible most of the time + code:DD32-6DAD + cheat + description:Invincibility for Yoshi + code:89E4-AFD9+89C6-D4DB + cheat + description:Infinite flying time for Yoshi + code:C2EC-0700 + cheat + description:Infinite time (disable for puzzles that use the timer) + code:C264-64D7 + cheat + description:Infinite lives + code:C222-D4DD + cheat + description:Cape hits anywhere + code:40BE-AD66 + cheat + description:Fireballs hit anywhere + code:40C2-D7A6 + cheat + description:Fireballs shoot straight + code:DDEA-6F07+DDB2-AFD8 + cheat + description:Fireballs turn most enemies into Flowers + code:59C4-0466 + cheat + description:Fireballs turn most enemies into 1-Up Mushrooms + code:56C4-0466 + cheat + description:Fireballs turn most enemies into Starmen + code:51C4-0466 + cheat + description:Multi-jump + code:6D2E-0FDF + cheat + description:Spin jump in mid air (hold for float down) + code:F53F-6767+DD3F-67A7 + cheat + description:Press R to scroll through items in the items box + code:D2AF-6407+D2AF-6DD7+DFAF-6F67+17AF-6FD7+1DAF-6467+62AF-6FA7+A4AD-67A7+A4AD-67D7+A4AF-64D7+CBAF-6F07+D1AF-6D67+D2AD-6707 + cheat + description:Low jump + code:D02C-AF6F + cheat + description:Super-jump + code:D42C-AF6F + cheat + description:Mega-jump + code:DF2C-AF6F + cheat + description:Little Yoshi grows after eating 1 enemy instead of 5 + code:DFCE-64A0 + cheat + description:Little Yoshi grows after eating 2 enemies + code:D4CE-64A0 + cheat + description:Little Yoshi grows after eating 3 enemies + code:D7CE-64A0 + cheat + description:Little Yoshi grows after eating 4 enemies + code:D0CE-64A0 + cheat + description:Nintendo's Debug + code:DDC1-64DD+DDC5-6DAD + cheat + description:Nintendo's Debug 2 + code:DDA6-DF07 + cheat + description:1-Up at 5 coins instead of 100 + code:D964-A7D7+D967-AFA7 + cheat + description:1-Up at 10 coins + code:DC64-A7D7+DC67-AFA7 + cheat + description:1-Up at 20 coins + code:F064-A7D7+F067-AFA7 + cheat + description:1-Up at 50 coins + code:7464-A7D7+7467-AFA7 + cheat + description:1-Up at 1 dragon coin instead of 5 + code:D2E5-A7AD + cheat + description:Start as Super Mario + code:31B7-6F07 + cheat + description:Start as Cape Mario + code:CBB7-6D67+D4B7-6DA7+3CB7-6FD7+69B7-6F07 + cheat + description:Start as Fire Mario + code:CBB7-6D67+D7B7-6DA7+3CB7-6FD7+69B7-6F07 + cheat + description:Start with 1 life instead of 5 + code:DDB4-6F07 + cheat + description:Start with 9 lives + code:D6B4-6F07 + cheat + description:Start with 15 lives + code:D3B4-6F07 + cheat + description:Start with 25 lives + code:F6B4-6F07 + cheat + description:Start with 50 lives + code:7FB4-6F07 + cheat + description:Start with 99 lives + code:14B4-6F07 + cheat + description:Invincibility + code:7E1497:FF + cheat + description:Invincibility (Starman) + code:7E1490:FF + cheat + description:Infinite P-Balloon time + code:7E1891:FF + cheat + description:Always Small Mario + code:7E0019:00 + cheat + description:Always Big Mario + code:7E0019:01 + cheat + description:Always Caped Mario + code:7E0019:02 + cheat + description:Always Fiery Mario + code:7E0019:03 + cheat + description:Always have Yoshi + code:7E0DC1:01 + cheat + description:Multi-jump and float down (disable in water and to get on Yoshi) + code:7E1471:01 + cheat + description:Activate green blocks (disable before entering the Green Switch Palace) + code:7E1F27:01 + cheat + description:Activate yellow blocks (disable before entering the Yellow Switch Palace) + code:7E1F28:01 + cheat + description:Activate red blocks (disable before entering the Red Switch Palace) + code:7E1F2A:01 + cheat + description:Activate blue blocks (disable before entering the Blue Switch Palace) + code:7E1F29:01 + cheat + description:8000 points for each enemy stomped + code:7E1697:06 + cheat + description:Reznor already defeated in all four fortresses + code:7E1520:01+7E1521:01+7E1522:01+7E1523:01 + +cartridge sha256:bd763c1a56365c244be92e6cffefd318780a2a19eda7d5baf1c6d5bd6c1b3e06 + name:Super Mario World 2 - Yoshi's Island (USA) (Rev 1) + cheat + description:Infinite lives + code:C2EE-649F + cheat + description:All levels are completed with 100 points + code:CB69-006D+3069-00AD + cheat + description:Always score 100 points + code:CB8A-64D5+108A-6405+3C8A-6465 + cheat + description:Power-ups don't get used up + code:1D26-AFA1 + cheat + description:Mario's crying disabled + code:44A0-672B + cheat + description:Horizontal one-way pinball doors open from both sides + code:6DB6-6F55 + cheat + description:Infinite lives/Start at Middle Ring (when you die) + code:C2EE-64BF + cheat + description:After using the magnifying glass, red coins and hidden items are always revealed + code:C2C8-A465 + cheat + description:Red switches stay on for over twice as long + code:D98A-AF7B + cheat + description:Red switches stay on for over four times as long + code:DB8A-AF7B + cheat + description:Red switches stay on for a very, very long time + code:5E8A-AF7B + cheat + description:Disable autoscroll + code:C220-D4D3 + cheat + description:Don't get crushed + code:18CB-D727 + cheat + description:Multi-jump + code:D921-D496+C421-D4B6+E821-D426+6321-D7F6+C821-D796+1D21-D7B6+5421-DD26+1D21-DFF6+4B21-DF96+DD21-DFB6+6D21-DF26+ED21-D4F6 + cheat + description:Star timer doesn't decrease when hit + code:7E0391:01+7E0392:00 + cheat + description:Mario's crying disabled (alt) + code:06C64F:22 + cheat + description:Infinite red switch time + code:7E0CEC:66 + cheat + description:Hold B to float + code:7E0945:00 + cheat + description:Unlock items in boss fights + code:7E0B48:00 + cheat + description:Have Stars +10 + code:7E0357:01 + cheat + description:Have Stars +20 + code:7E0358:02 + cheat + description:Have POW Block + code:7E0359:03 + cheat + description:Have full Eggs + code:7E035A:04 + cheat + description:Have Magnifying Glass + code:7E035B:05 + cheat + description:Have Winged Cloud + code:7E035C:06 + cheat + description:Have Green Watermelon + code:7E035D:07 + cheat + description:Have Blue Watermelon + code:7E035E:08 + cheat + description:Have Red Watermelon + code:7E035F:09 + cheat + description:Have Pink Yoshi + code:7E0383:01 + cheat + description:Have Orange Yoshi + code:7E0383:02 + cheat + description:Have Light Blue Yoshi + code:7E0383:03 + cheat + description:Have Purple Yoshi + code:7E0383:04 + cheat + description:Have Brown Yoshi + code:7E0383:05 + cheat + description:Have Red Yoshi + code:7E0383:06 + cheat + description:Have Dark Blue Yoshi + code:7E0383:07 + cheat + description:Have Glow Red Yoshi + code:7E0383:08 + cheat + description:Have Shadow Yoshi + code:7E0383:09 + +cartridge sha256:9b4957466798bbdb5b43a450bbb60b2591ae81d95b891430f62d53ca62e8bc7b + name:Super Mario World 2 - Yoshi's Island (USA) + cheat + description:Infinite lives + code:C2EE-649F + cheat + description:Infinite lives and start at middle ring when you die + code:C2EE-64BF + cheat + description:All levels are completed with 100 points + code:CB69-006D+3069-00AD + cheat + description:Always score 100 points + code:CB8A-64D5+108A-6405+3C8A-6465 + cheat + description:Power-ups don't get used up + code:1D26-AFA1 + cheat + description:Mario's crying disabled + code:44A0-672B + cheat + description:Horizontal one-way pinball doors open from both sides + code:6DB6-6F55 + cheat + description:After using the magnifying glass, red coins and hidden items are always revealed + code:C2C8-A465 + cheat + description:Red switches stay on for over twice as long + code:D98A-AF7B + cheat + description:Red switches stay on for over four times as long + code:DB8A-AF7B + cheat + description:Disable autoscroll + code:C220-D4D3 + cheat + description:Don't get crushed + code:18CB-D727 + cheat + description:Multi-jump + code:D921-D496+C421-D4B6+E821-D426+6321-D7F6+C821-D796+1D21-D7B6+5421-DD26+1D21-DFF6+4B21-DF96+DD21-DFB6+6D21-DF26+ED21-D4F6 + cheat + description:Continue with 5 lives + code:DC36-010D + cheat + description:Continue with 10 lives + code:FB36-010D + cheat + description:Continue with 25 lives + code:7436-010D + cheat + description:Continue with 50 lives + code:1736-010D + cheat + description:Continue with 99 lives + code:1736-010D + cheat + description:Start with 5 lives + code:D9B7-0023 + cheat + description:Start with 10 lives + code:DCB7-0023 + cheat + description:Start with 25 lives + code:FBB7-0023 + cheat + description:Start with 50 lives + code:74B7-0023 + cheat + description:Start with 99 lives + code:17B7-0023 + cheat + description:Star timer doesn't decrease when hit + code:7E0391:01+7E0392:00 + cheat + description:Hold B to float + code:7E0945:00 + cheat + description:Unlock items in boss fights + code:7E0B48:00 + cheat + description:Infinite red switch time + code:7E0CEC:66 + cheat + description:Mario's crying disabled (alt) + code:06C64F:22 + cheat + description:Have Stars +10 + code:7E0357:01 + cheat + description:Have Stars +20 + code:7E0358:02 + cheat + description:Have POW Block + code:7E0359:03 + cheat + description:Have full Eggs + code:7E035A:04 + cheat + description:Have Magnifying Glass + code:7E035B:05 + cheat + description:Have Winged Cloud + code:7E035C:06 + cheat + description:Have Green Watermelon + code:7E035D:07 + cheat + description:Have Blue Watermelon + code:7E035E:08 + cheat + description:Have Red Watermelon + code:7E035F:09 + cheat + description:Have Pink Yoshi + code:7E0383:01 + cheat + description:Have Orange Yoshi + code:7E0383:02 + cheat + description:Have Light Blue Yoshi + code:7E0383:03 + cheat + description:Have Purple Yoshi + code:7E0383:04 + cheat + description:Have Brown Yoshi + code:7E0383:05 + cheat + description:Have Red Yoshi + code:7E0383:06 + cheat + description:Have Dark Blue Yoshi + code:7E0383:07 + cheat + description:Have Glow Red Yoshi + code:7E0383:08 + cheat + description:Have Shadow Yoshi + code:7E0383:09 + +cartridge sha256:12b77c4bc9c1832cee8881244659065ee1d84c70c3d29e6eaf92e6798cc2ca72 + name:Super Metroid (Japan, USA) (En,Ja) + cheat + description:Invincibility (except for acid and when bosses grab you) + code:DFFC-F37C + cheat + description:Infinite energy (except for acid) + code:C225-3005 + cheat + description:Infinite Missiles + code:C288-C5A7 + cheat + description:Infinite Super Missiles + code:C28A-C9D7 + cheat + description:Infinite Power Bombs + code:3CA4-450D + cheat + description:Infinite Power Bombs (alt) + code:17DA-9E8C + cheat + description:Hit anywhere + code:40C8-18DD+6DB1-3C6F+6DC2-1BDD + cheat + description:Super-jumps don't drain energy + code:C22A-456D + cheat + description:Enemies die on contact (Speed Booster effect) + code:6DC8-4CDF+6DCC-4BDF + cheat + description:Skip intro and start on Planet Zebes on new game + code:DD38-C4A8 + cheat + description:Select area when loading saved game A (press right on map screen) + code:DDCF-4461+6DCC-47A1 + cheat + description:Switching areas fills the map + code:CE6B-1FAF+D76B-146F + cheat + description:Automatically collect secret and/or special items in current room (Missiles, Energy Tanks, ect) + code:402B-3DB7+402E-3FF7 + cheat + description:Can access Tourain from sunken statues room + code:AF24-FA7C+FE24-FA5C + cheat + description:Full movement in Maridia sand + code:6D8F-14FF+DDBF-4504 + cheat + description:Multi-jump (when using button A) + code:C933-C9A7+6333-C1D7+DC33-C107+BD33-C167+D033-C1A7+4433-C5D7+8A33-C507+B633-C567+BD33-C5A7 + cheat + description:Multi-jump (when using button B) + code:C933-C9A7+6E33-C1D7+DC33-C107+BD33-C167+D033-C1A7+4433-C5D7+8A33-C507+B633-C567+BD33-C5A7 + cheat + description:Metroids can be killed without being frozen first + code:403F-38DE+6D34-3BAE + cheat + description:0 hours played + code:DDD0-FE6D + cheat + description:Brinstar mapped + code:EE2D-935C + cheat + description:Crateria mapped + code:EE2D-937C + cheat + description:Maridia mapped + code:EE2D-9E7C + cheat + description:Norfair mapped + code:EE2D-938C + cheat + description:Tourain mapped + code:EE2D-9E5C + cheat + description:Wrecked Ship mapped + code:EE2D-93EC + cheat + description:Maximum 99 Power Bombs + code:17D2-9A7C + cheat + description:Maximum 99 Super Missiles + code:17DA-9E7C + cheat + description:Maximum Missiles=10 + code:DCD7-F26D + cheat + description:Maximum Missiles=100 + code:10D7-F26D + cheat + description:Maximum Missiles=125 + code:52D7-F26D + cheat + description:Maximum Missiles=150 + code:B1D7-F26D + cheat + description:Maximum Missiles=175 + code:CED7-F26D + cheat + description:Maximum Missiles=200 + code:A6D7-F26D + cheat + description:Maximum Missiles=25 + code:FBD7-F26D + cheat + description:Maximum Missiles=50 + code:74D7-F26D + cheat + description:Maximum Missiles=75 + code:08D7-F26D + cheat + description:Maximum Power Bombs=10 + code:DCD7-FE6D + cheat + description:Maximum Power Bombs=25 + code:FBD7-FE6D + cheat + description:Maximum Power Bombs=5 + code:D9D7-FE6D + cheat + description:Maximum Power Bombs=50 + code:74D7-FE6D + cheat + description:Maximum Super Missiles=10 + code:DCD7-F36D + cheat + description:Maximum Super Missiles=25 + code:FBD7-F36D + cheat + description:Maximum Super Missiles=5 + code:D9D7-F36D + cheat + description:Maximum Super Missiles=50 + code:74D7-F36D + cheat + description:Start with about 500 Energy Tanks on saved game A + code:E7D7-FAAD+DFD7-FA6D + cheat + description:Start with about 700 Energy Tanks on saved game A + code:88D7-FAAD+D4D7-FA6D + cheat + description:Start with about 1000 Energy Tanks on saved game A + code:35D7-FAAD+D7D7-FA6D + cheat + description:Start with about 1200 Energy Tanks on saved game A + code:CED7-FAAD+D0D7-FA6D + cheat + description:Start with about 1500 Energy Tanks on saved game A + code:28D7-FAAD+D9D7-FA6D + cheat + description:Invincibility (except for acid and when bosses grab you) (alt) + code:7E18A8:4C + cheat + description:Infinite energy (can combine with invincibility code) + code:7E09C2:63 + cheat + description:Kill most enemies on contact + code:7E0A6E:0F + cheat + description:Infinite Missiles (alt) + code:7E09C6:E7 + cheat + description:Infinite Missiles (alt 2) + code:7E09C6:E7+7E09C7:03 + cheat + description:Maximum 999 Missiles + code:7E09C8:E7+7E09C9:03 + cheat + description:Infinite Super Missiles (alt) + code:7E09CA:50 + cheat + description:Infinite Power Bombs (alt) + code:7E09CE:50 + cheat + description:Have all Guns except Charge Beam + code:7E09A8:FF + cheat + description:Have Charge Beam + code:7E09A9:FF + cheat + description:Have all suits and misc items (except Bombs) + code:7E09A4:FF + cheat + description:Have all boots and regular Bombs + code:7E09A5:FF + cheat + description:Have Missiles and Power Bombs + code:7E09CE:50 + cheat + description:Infinite time to escape ship + code:7E0945:00+7E0946:00+7E0947:01 + cheat + description:Full movement in Maridia sand (alt) + code:84B518:80+90981D:00 + cheat + description:Moon-jump + code:7E0B2D:44+7E0B2E:01 + cheat + description:0 hours played (alt) + code:7E09E0:00 + cheat + description:Brinstar mapped (alt) + code:7ED909:FF + cheat + description:Crateria mapped (alt) + code:7ED908:FF + cheat + description:Maridia mapped (alt) + code:7ED90C:FF + cheat + description:Norfair mapped (alt) + code:EED9-936D + cheat + description:Tourian mapped (alt) + code:7ED90D:FF + cheat + description:Wrecked Ship mapped (alt) + code:7ED90B:FF + cheat + description:Start with Missiles + code:7E09C8:01 + cheat + description:Start with Super Missiles + code:7E09CC:01 + cheat + description:Start with Power Bombs + code:7E09D0:01 + +cartridge sha256:40b46bb29785fb431b325f22377faa8b099be4d77aecc1f03000b8a4cb589b63 + name:Super Ninja Boy (USA) + cheat + description:Protection from most hazards (makes some side-view enemies invincible) + code:822E-07B0 + cheat + description:Don't subtract money (must have enough to buy) + code:1DAF-D4D6 + cheat + description:All stats are 20 (attack, defense, energy, max HP, max NP) + code:CB2F-A70C+3C2F-A7AC+F02F-A76C + cheat + description:All stats for every level are 50 + code:CB2F-A70C+3C2F-A7AC+742F-A76C + cheat + description:All stats for every level are 100 + code:CB2F-A70C+3C2F-A7AC+102F-A76C + cheat + description:All stats for every level are 255 + code:CB2F-A70C+3C2F-A7AC+EE2F-A76C + cheat + description:1 experience point required for level 2 + code:DF24-A4AC + cheat + description:1 experience point required for level 3 + code:DF24-A76C + cheat + description:1 experience point required for level 4 + code:DF27-AD0C + cheat + description:1 experience point required for level 5 + code:DF27-AFDC + cheat + description:Don't subtract M's for ninja cyclone attack + code:DD61-D725 + cheat + description:Don't subtract M's for mighty balls attack + code:DDA5-0421 + cheat + description:Skulls subtract 2 M's + code:D437-6420 + cheat + description:Skulls don't subtract an M + code:DD37-6420 + cheat + description:M power-ups worth nothing (handicap) + code:DD30-6720 + cheat + description:M power-ups worth 2 + code:D430-6720 + cheat + description:M power-ups worth 3 + code:D730-6720 + cheat + description:M power-ups worth 4 + code:D030-6720 + cheat + description:M power-ups worth 5 + code:D930-6720 + cheat + description:M power-ups set to 15 + code:F930-6720 + cheat + description:Start with 250 cash + code:EC81-AF69 + cheat + description:Start with 40,960 cash + code:6981-A4D9 + +cartridge sha256:a8acbbd6f8afbf289a6b837da6cd8bd109a00cd38625c956ab8ff739732d9e4f + name:Super Nova (USA) + cheat + description:Invincibility + code:0A84-C4A7+7984-C7D7+8384-C707 + cheat + description:Infinite lives + code:A268-4716 + cheat + description:Hit anywhere + code:6DA9-1DA7+DD87-1D41+DDA5-4FD7 + cheat + description:Keep main weapon after dying + code:C26C-4446 + cheat + description:Start with strongest main weapon + code:62C4-1F46 + +cartridge sha256:24b687f95bb9737d223738f13c00aeaa7d697fa9e2fd50597b81d0cfa2160daa + name:Super Off Road (USA) + cheat + description:Infinite nitros + code:D4B7-07AF+22B0-0FDF + cheat + description:Infinite cash - P1 + code:2BCA-6707 + cheat + description:Infinite cash - P2 + code:2B84-DDDD + cheat + description:Start with $500,000 + code:D987-6D0F + cheat + description:Start with $900,000 + code:DB87-6D0F + +cartridge sha256:16f9c90d75bd23d0620be00ecf818fcb25c5935d4ee26b1fe17b926f8987aa65 + name:Super Off Road - The Baja (USA) + cheat + description:Infinite nitros + code:3CA0-CD6F + cheat + description:Indestructible engine + code:C283-34D7 + cheat + description:Indestructible shocks + code:C28A-3D67 + cheat + description:Indestructible tires + code:C28C-3DD7 + cheat + description:Vehicle can take only about 60% damage + code:1D81-37D7 + cheat + description:Vehicle can take only about 35% damage + code:7D81-37D7 + cheat + description:$9,000 for brakes + code:DBB6-1FDF + cheat + description:$2,000 for brakes + code:D4B6-1FDF + cheat + description:$9,000 for tires + code:DBB6-1F6F + cheat + description:$2,000 for tires + code:D4B6-1F6F + cheat + description:$2,000 for shocks + code:D4B6-14DF + cheat + description:$9,000 for shocks + code:DBB6-14DF + cheat + description:$2,000 for lights + code:D4B6-146F + cheat + description:$9,000 for lights + code:DBB6-146F + cheat + description:$2,000 for engine + code:D4B6-17DF + cheat + description:$4,000 for engine + code:D0B6-17DF + +cartridge sha256:5a4b0c89606f71182fa5552ac476cc3bbda5ddc7d44e33f9184114aaea38020d + name:Super Play Action Football (USA) + cheat + description:One timeout each team + code:DFB7-D4D7 + cheat + description:No timeouts - P1 + code:10B7-D407 + cheat + description:No timeouts - P2 + code:10B7-D4A7 + cheat + description:Infinite time to select play + code:4067-6FDD + cheat + description:Less time to select play + code:F367-6D0D + cheat + description:More time to select play + code:5D67-6D0D + +cartridge sha256:a3d803b8c6b0b6ac55085671040b840f993543915c7f802e14fb651beabe9b63 + name:Super Punch-Out!! (USA) + cheat + description:Infinite health against most punches + code:C2A4-DFD4 + cheat + description:Gain max health after connecting a hit - both players + code:D9AD-DDA4 + cheat + description:Infinite time + code:C9E3-64DD + cheat + description:Opponent has no health + code:BAEC-D46D + cheat + description:Most opponents stay down for the count + code:DFAB-AFDD + cheat + description:Opponent does almost nothing + code:6D61-DFD0 + cheat + description:Some special attacks don't damage as much + code:C2AB-DFDF + cheat + description:Super Punch anytime + code:DDA1-A767 + cheat + description:Max power after one hit + code:CB34-AD07+F834-AD67+3C34-ADA7 + cheat + description:Infinite rematches + code:C2B8-64A5 + cheat + description:No rematches + code:DDB7-0704 + cheat + description:Fix game genied world circuit + code:CB84-DDA7+DD84-DFD7 + cheat + description:Start with 5 rematches + code:D1B7-0704 + cheat + description:Start with 8 rematches + code:DBB7-0704 + cheat + description:Start with half health - both players + code:49BC-6F6F + cheat + description:Start with very little health - both players + code:DFBC-6F6F + cheat + description:Start on world circuit + code:DB8A-D4A1+D48A-D7D1+3C8A-D701 + cheat + description:Infinite health + code:7E088F:50+7E089F:50 + cheat + description:Infinite time (alt) + code:7E0B27:03 + cheat + description:Infinite health (alt) + code:7E088F:50+7E089F:50 + cheat + description:Opponent has no health (alt) + code:7E099F:01 + cheat + description:Always cause dizziness + code:7E0938:8F + cheat + description:All hits cause super dizziness + code:7E092B:B0 + cheat + description:Max power (Super and Rapid Punch) + code:7E0899:00+7E089A:00+7E089B:00+7E089C:1B + cheat + description:TKO after only one knockdown + code:7E099D:03 + +cartridge sha256:05c7f6461209020785fba33007e1830820aa44ada4b1a6f991d936bf2335b15b + name:Super R-Type (USA) + cheat + description:Start with Invincibility (blinking) + code:82C2-DF61 + cheat + description:Infinite lives + code:C2C7-6D0F + cheat + description:Infinite FORCE once obtained + code:C267-A4D9 + cheat + description:One hit kills + code:6DBF-6F07 + cheat + description:Hit anywhere + code:40B1-0467+40B5-04D7+40B5-07A7+40B5-0D07+40B6-0F67 + cheat + description:Always fire charged shots (hold B) + code:7287-0FD1+DD87-0D61 + cheat + description:Spiral motion gun takes less time to power up + code:6D80-6DD1+DD80-6D01 + cheat + description:Spiral motion gun takes much less time to power up + code:DD80-6DA1 + cheat + description:Spiral motion gun can't get over-charged + code:6D84-6F01 + cheat + description:All FORCE satellites have 1 unit of power (but can't exceed 1 unit) + code:DD68-6DDB+CB6C-67AB+7D68-6D6B + cheat + description:All FORCE satellites have 2 units of power (but can't exceed 2 units) + code:DF68-6DDB+CB6C-67AB+7D68-6D6B + cheat + description:All FORCE satellites have 3 units of power + code:D468-6DDB+CB6C-67AB+7D68-6D6B + cheat + description:Start with 1 life instead of 3 + code:DF66-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Start with 2 lives + code:D466-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Start with 4 lives + code:D066-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Start with 5 lives + code:D966-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Start with 7 lives + code:D566-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Start with 9 lives + code:DB66-0F00+CB66-0FD0+DD66-0F60 + cheat + description:Continue with 1 life instead of 3 + code:DF6C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Continue with 2 lives + code:D46C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Continue with 4 lives + code:D06C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Continue with 5 lives + code:D96C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Continue with 7 lives + code:D56C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Continue with 9 lives + code:DB6C-A709+CB6C-A7D9+DD6C-A769 + cheat + description:Start with Invincibility (blinking) (alt) + code:7E15BD:00 + +cartridge sha256:7a8ffaf8bb549b400ec2f0bda9f3c0dbf5852c38618cdb21cd783c368383e2c7 + name:Super Scope 6 (USA) + cheat + description:Add 1 bullets at a time (Blastris A) + code:DFC6-05D4 + cheat + description:Add 3 bullets at a time (Blastris A) + code:D7C6-05D4 + cheat + description:Add 5 bullets at a time (Blastris A) + code:D9C6-05D4 + cheat + description:Add 7 bullets at a time (Blastris A) + code:D5C6-05D4 + cheat + description:Add 9 bullets at a time (Blastris A) + code:DBC6-05D4 + cheat + description:Infinite bullets (Blastris A) + code:C9C2-D16F + cheat + description:Clear 1 line instead of 5 to advance to next level (Blastris A) + code:DFC9-056F + cheat + description:Clear 2 lines to advance to next level (Blastris A) + code:D4C9-056F + cheat + description:Clear 3 lines to advance to next level (Blastris A) + code:D7C9-056F + cheat + description:Clear 4 lines to advance to next level (Blastris A) + code:D0C9-056F + cheat + description:Select low mode to start on level 5 (Blastris B, Type B) + code:D968-D100 + cheat + description:Select low mode to start on level 15 (Blastris B, Type B) + code:DE68-D100 + cheat + description:Select low mode to start on level 25 (Blastris B, Type B) + code:FB68-D100 + cheat + description:Select low mode to start on level 30 (Blastris B, Type B) + code:F368-D100 + cheat + description:Select low mode to start on level 35 (Blastris B, Type B) + code:4768-D100 + cheat + description:Select low mode to start on level 40 (Blastris B, Type B) + code:4668-D100 + cheat + description:Clear stage after 1 Molian is hit (Mole Patrol, Stage Mode) + code:BAA6-01DD + cheat + description:Take no damage (LazerBlazer, Type A) + code:8262-64A1 + cheat + description:Take no damage (LazerBlazer Game, Type B) + code:3CB0-670B + cheat + description:Take no damage (LazerBlazer Game, Type C) + code:C269-67DE + +cartridge sha256:72268d692f03f9c012844edac1febe0b77932268b3b37ad55d6ccf631cda8483 + name:Super Shadow of the Beast (USA) (Proto) + cheat + description:Invincibility + code:C26F-0FA4+626E-DDA4+2D6D-0D64 + cheat + description:Infinite health + code:A964-0D04 + cheat + description:Infinite lives + code:C964-0D04 + cheat + description:Infinite credits + code:A965-046D + cheat + description:Moon-jump + code:C2B0-6D67+C26B-6FA7 + +cartridge sha256:8b75ab4bb1b63c45a56e7a4c5a37c0864f14375ab3131edc33489764426ad888 + name:Super Smash T.V. (USA) + cheat + description:Invincibility on mobile force field pick-up + code:6D65-6403+DF65-6463 + cheat + description:Weapons gauge doesn't lose power until you die (don't combine with don't lose weapon power code) + code:8283-67D7 + cheat + description:Don't lose weapon power after death (don't combine with weapons gauge doesn't lose power code) + code:6DB8-D404+DFB8-D464 + cheat + description:Infinite credits (if continue timer runs out and player starts, a credit gets used) + code:C223-D78B + cheat + description:Infinite lives + code:82BB-DD04 + cheat + description:Bonus life worth nothing + code:8284-AF03 + cheat + description:Join in with 2 lives - P1 + code:EEBF-D7A4 + cheat + description:Join in with 3 lives - P1 + code:DDBF-D7A4 + cheat + description:Join in with 4 lives - P1 + code:DFBF-D7A4 + cheat + description:Join in with 5 lives - P1 + code:D4BF-D7A4 + cheat + description:Join in with 7 lives - P1 + code:D0BF-D7A4 + cheat + description:Join in with 8 lives - P1 + code:D9BF-D7A4 + cheat + description:Join in with 9 lives - P1 + code:D1BF-D7A4 + cheat + description:2 lives after continue - P1 + code:EEB1-D7A4 + cheat + description:3 lives after continue - P1 + code:DDB1-D7A4 + cheat + description:4 lives after continue - P1 + code:DFB1-D7A4 + cheat + description:5 lives after continue - P1 + code:D4B1-D7A4 + cheat + description:7 lives after continue - P1 + code:D0B1-D7A4 + cheat + description:8 lives after continue - P1 + code:D9B1-D7A4 + cheat + description:9 lives after continue - P1 + code:D1B1-D7A4 + cheat + description:10 lives after continue - P1 + code:D5B1-D7A4 + cheat + description:2 lives after continue - P2 + code:EEB0-DDA4 + cheat + description:3 lives after continue - P2 + code:DDB0-DDA4 + cheat + description:4 lives after continue - P2 + code:DFB0-DDA4 + cheat + description:5 lives after continue - P2 + code:D4B0-DDA4 + cheat + description:7 lives after continue - P2 + code:D0B0-DDA4 + cheat + description:8 lives after continue - P2 + code:D9B0-DDA4 + cheat + description:9 lives after continue - P2 + code:D1B0-DDA4 + cheat + description:10 lives after continue - P2 + code:D5B0-DDA4 + cheat + description:Start with 0 continues + code:DD62-0F0D + cheat + description:Start with 1 continue + code:DF62-0F0D + cheat + description:Start with 2 continues + code:D462-0F0D + cheat + description:Start with 3 continues + code:D762-0F0D + cheat + description:Start with 5 continues + code:D962-0F0D + cheat + description:Start with 6 continues + code:D162-0F0D + cheat + description:Start with 7 continues + code:D562-0F0D + cheat + description:Start with 8 continues + code:D662-0F0D + cheat + description:Start with 9 continues + code:DB62-0F0D + cheat + description:Start with 3 lives + code:DD62-076D + cheat + description:Start with 4 lives + code:DF62-076D + cheat + description:Start with 5 lives + code:D462-076D + cheat + description:Start with 7 lives + code:D062-076D + cheat + description:Start with 8 lives + code:D962-076D + cheat + description:Start with 9 lives + code:D162-076D + cheat + description:Start with 10 lives + code:D562-076D + cheat + description:Invincibility - P1 + code:7E18A5:00 + cheat + description:Invincibility - P2 + code:7E18A6:00 + cheat + description:Infinite Shield - P1 + code:7E18A9:01 + cheat + description:Infinite Shield - P2 + code:7E18AA:01 + cheat + description:Infinite lives - P1 + code:7E0531:09 + cheat + description:Infinite lives - P2 + code:7E0532:09 + cheat + description:Max weapon gauge - P1 + code:7E1899:06 + cheat + description:Max weapon gauge - P2 + code:7E189A:06 + cheat + description:Have Rapid Fire - P1 + code:7E18B0:04 + cheat + description:Have Rapid Fire - P2 + code:7E18B1:04 + cheat + description:Have normal weapon - P1 + code:7E1897:00 + cheat + description:Have normal weapon - P2 + code:7E1898:00 + cheat + description:Have Spread weapon - P1 + code:7E1897:01 + cheat + description:Have Spread weapon - P2 + code:7E1898:01 + cheat + description:Have Rockets - P1 + code:7E1897:02 + cheat + description:Have Rockets - P2 + code:7E1898:02 + cheat + description:Have Grenade Launcher - P1 + code:7E1897:03 + cheat + description:Have Grenade Launcher - P2 + code:7E1898:03 + cheat + description:Have Grenade Lobber (glitchy) - P1 + code:7E1897:04 + cheat + description:Have Grenade Lobber (glitchy) - P2 + code:7E1898:04 + cheat + description:Have Speed Shoes - P1 + code:7E18AD:FF + cheat + description:Have Speed Shoes - P2 + code:7E18AE:FA + cheat + description:Have 10 Keys + code:7E05B1:0A + cheat + description:Turbo mode on + code:7E052E:01 + cheat + description:Circuit warp on + code:7E020E:01 + cheat + description:Infinite credits (alt) + code:7E0533:09 + +cartridge sha256:694ad2b34ab808bd8a1aa9dda359594cfd3a5fd9d95d4cf262ccaa0eb57eef67 + name:Super Soccer (USA) + cheat + description:Each goal worth 2 - P1 + code:FC2A-0F65+3C2A-0FA5 + cheat + description:Each goal worth 3 - P1 + code:FC2A-0F65+FC2A-0FA5 + cheat + description:Each goal worth 4 - P1 + code:1B2A-0F65+D72A-0FA5 + cheat + description:Each goal worth 5 - P1 + code:1B2A-0F65+D02A-0FA5 + cheat + description:Each goal worth 6 - P1 + code:1B2A-0F65+D92A-0FA5 + cheat + description:Each goal worth 7 - P1 + code:1B2A-0F65+D12A-0FA5 + cheat + description:Each goal worth 8 - P1 + code:1B2A-0F65+D52A-0FA5 + cheat + description:Each goal worth 9 - P1 + code:1B2A-0F65+D62A-0FA5 + cheat + description:Each goal worth 2 - P2 + code:FC22-0465+3C22-04A5 + cheat + description:Each goal worth 3 - P2 + code:FC22-0465+FC22-04A5 + cheat + description:Each goal worth 4 - P2 + code:1B22-0465+D722-04A5 + cheat + description:Each goal worth 5 - P2 + code:1B22-0465+D022-04A5 + cheat + description:Each goal worth 6 - P2 + code:1B22-0465+D922-04A5 + cheat + description:Each goal worth 7 - P2 + code:1B22-0465+D122-04A5 + cheat + description:Each goal worth 8 - P2 + code:1B22-0465+D522-04A5 + cheat + description:Each goal worth 9 - P2 + code:1B22-0465+D622-04A5 + cheat + description:Timer continues to count when it is normally stopped (pause can still stop time) + code:DDA6-0DD1 + +cartridge sha256:5eb9736d66b3ac730ebbfdd19ef2397282b5f1a62dc0048093e041e23b807741 + name:Super Soccer Champ (USA) + cheat + description:Faster timer + code:F32B-D400 + cheat + description:Slower timer + code:5D2B-D400 + cheat + description:Faster Brazil strikers + code:D4E7-6DEF + cheat + description:Faster USA strikers + code:D4E0-6DEF + cheat + description:Faster England strikers + code:D4ED-6DEF + cheat + description:Faster Germany strikers + code:D4E3-0DEF + cheat + description:Faster Italy strikers + code:D4EF-6DEF + cheat + description:Faster Holland strikers + code:D4E4-6DEF + cheat + description:Faster Argentina strikers + code:D4EE-0DEF + cheat + description:Faster France strikers + code:D4E9-6DEF + +cartridge sha256:5985cdad45958a5b8c5967ad39efe51569f560bf237a4e9864f21111082a8500 + name:Super Solitaire (USA) (En,Fr,De,Es,It) + cheat + description:Move cards to any pile - Klondike + code:6D8C-476F+DD8A-34AD+DD88-3D0D + cheat + description:Move cards to any pile - Free Cell + code:6D8F-44A4 + +cartridge sha256:5670ad514d086359e28f41d79a05ae93309b382d6d56d42a6a0e493e6107111b + name:Super Soukoban (Japan) + cheat + description:Infinite steps + code:C2CC-64AB + cheat + description:Walk through walls + code:DD88-D4A6+DD88-D706 + +cartridge sha256:298b643fec4208f33d02a7afbb05c6f757b0086be533f8ca739466cbe96ae918 + name:Super Star Wars (USA) (Rev 1) + cheat + description:Protection against most damage + code:1D34-C704 + cheat + description:Infinite lives + code:C232-14D4+CB6C-3767 + cheat + description:Infinite continues + code:4A21-14D5 + cheat + description:Blaster power-ups remain after dying + code:553A-1764 + cheat + description:Hit anywhere - Side-scrolling levels + code:1D89-1407+2D89-14D7+AD89-1F07+DD81-1DA7+DD89-1F67+DD89-1FA7 + cheat + description:Invincibility + hit anywhere + code:3DCC-1DAF+7DCC-1F6F+DDCC-1F0F+F2CC-1FDF + cheat + description:Only 1 Jawa needed to pass landspeeder levels + code:DF67-4FAF+DF60-4D6F + cheat + description:Only 5 Jawas needed to pass landspeeder levels + code:D967-4FAF+D960-4D6F + cheat + description:Only 10 Jawas needed to pass landspeeder levels + code:DC67-4FAF+DC60-4D6F + cheat + description:25 Jawas needed to pass landspeeder levels + code:FB67-4FAF+FB60-4D6F + cheat + description:50 Jawas needed to pass landspeeder levels + code:7467-4FAF+7460-4D6F + cheat + description:No fuel maximum for fuel power-ups + code:6DA5-4D04 + cheat + description:Fuel power-ups completely refill the landspeeder + code:40A1-47D4 + cheat + description:Small hearts restore 1/2 health (easy level) + code:D43B-CF00 + cheat + description:Small hearts restore 1/2 health (brave level) + code:DF3B-CFA0 + cheat + description:Small hearts restore 1/2 health (Jedi level) + code:DF3B-C400 + cheat + description:Small hearts restore 2x health (easy level) + code:D13B-CF00 + cheat + description:Small hearts restore 2x health (brave level) + code:D03B-CFA0 + cheat + description:Small hearts restore 2x health (Jedi level) + code:D03B-C400 + cheat + description:Small hearts restore 4x health (easy level) + code:DA3B-CF00 + cheat + description:Small hearts restore 4x health (brave level) + code:D63B-CFA0 + cheat + description:Small hearts restore 4x health (Jedi level) + code:D63B-C400 + cheat + description:Han Solo and Chewbacca start with a blaster + code:DD88-37A5 + cheat + description:Han Solo and Chewbacca start with a seeker gun + code:D488-37A5 + cheat + description:Han Solo and Chewbacca start with a rapid ion gun + code:D788-37A5 + cheat + description:Han Solo and Chewbacca start with a plasma gun + code:D088-37A5 + cheat + description:Have character select menu on a new game + code:DDB9-CF67 + cheat + description:Have Lightsaber on a new game + code:DDB0-C767 + cheat + description:Start with 1/2 fuel on landspeeder levels + code:F467-4D0F + cheat + description:Start with 2x fuel on landspeeder levels + code:0667-4D0F + cheat + description:Start with 2 lives + code:DF35-CDA0 + cheat + description:Start with 6 lives + code:D935-CDA0 + cheat + description:Start with 8 lives + code:D535-CDA0 + cheat + description:Start with 11 lives + code:DC35-CDA0 + cheat + description:Start with 16 lives + code:DE35-CDA0 + cheat + description:Start with 26 lives + code:FB35-CDA0 + cheat + description:Start with 51 lives + code:7435-CDA0 + cheat + description:Start with 100 lives + code:1735-CDA0 + cheat + description:Start with no continues + code:DD3B-C760 + cheat + description:Start with 5 continues + code:D93B-C760 + cheat + description:Start with 7 continues + code:D53B-C760 + cheat + description:Start with 10 continues + code:DC3B-C760 + cheat + description:Start with 15 continues + code:DE3B-C760 + cheat + description:Start with 25 continues + code:FB3B-C760 + cheat + description:Start with 50 continues + code:743B-C760 + cheat + description:Start with 99 continues + code:173B-C760 + cheat + description:Start with 1/2 health (easy level) + code:F435-CFA0 + cheat + description:Start with 1/2 health (brave level) + code:FD35-C400 + cheat + description:Start with 1/2 health (Jedi level) + code:D335-C4A0 + cheat + description:Start with 2x health (easy level) + code:0635-CFA0 + cheat + description:Start with 2x health (brave level) + code:0D35-C400 + cheat + description:Start with 2x health (Jedi level) + code:7635-C4A0 + cheat + description:Infinite health + code:7E0A79:FF + cheat + description:Infinite time + code:7E096F:0F + cheat + description:Infinite Shields + code:7E0988:01 + cheat + description:Infinite lives + code:7E08FB:03 + cheat + description:Infinite Thermal Detonators + code:7E0978:06 + cheat + description:Infinite Fighter Life + code:7E0876:64 + cheat + description:Infinite Torpedoes + code:7E0878:63 + cheat + description:Always have Plasma Gun + code:7E0985:04 + cheat + description:Always have Rapid Ion + code:7E0985:03 + cheat + description:Always have Seeker Gun + code:7E0985:02 + cheat + description:Have Lightsaber and character select menu on a new game + code:7E0110:C0 + +cartridge sha256:c6bd7239cb2074ff1c471d14535bead6290bba2d7c75b4f03209cb114877b4c8 + name:Super Star Wars (USA) + cheat + description:Hit anywhere - Side-scrolling levels + code:1D8B-1467+2D8B-1407+AD8B-1F67+DD8B-14D7+DD8B-1FA7+DD8C-1FD7 + cheat + description:Infinite health + code:7E0A79:FF + cheat + description:Infinite time + code:7E096F:0F + cheat + description:Infinite Shields + code:7E0988:01 + cheat + description:Infinite lives + code:7E08FB:03 + cheat + description:Infinite Thermal Detonators + code:7E0978:06 + cheat + description:Infinite Fighter Life + code:7E0876:64 + cheat + description:Infinite Torpedoes + code:7E0878:63 + cheat + description:Always have Plasma Gun + code:7E0985:04 + cheat + description:Always have Rapid Ion + code:7E0985:03 + cheat + description:Always have Seeker Gun + code:7E0985:02 + cheat + description:Have Lightsaber and character select menu on a new game + code:7E0110:C0 + +cartridge sha256:f7df5cd16ce6624567d1a24e9b9c0b9050ea9b6a9fe5a7973484589637756596 + name:Super Star Wars - Return of the Jedi (USA) (Rev 1) + cheat + description:Infinite lives + code:C230-CF0F + cheat + description:Infinite Force power when you use the Force Saber + code:C234-34AA + cheat + description:Always have shield + code:CB6E-4704 + cheat + description:Once you have thermal detonator you keep it (disable to use force power) + code:C222-3769 + cheat + description:Infinite Force power when you use the Freeze Force + code:C281-3DB9 + cheat + description:Finish the first level almost instantly + code:1BBD-C703+EEBD-C763+EEBD-C7A3 + cheat + description:Start with 1 life + code:DD82-C7B1 + cheat + description:Start with 5 lives + code:D082-C7B1 + cheat + description:Start with 10 lives + code:DB82-C7B1 + cheat + description:Start with 25 lives + code:F682-C7B1 + cheat + description:Start with very little health + code:CB8E-3D21+DF8E-3FF1+DD8E-3F91 + cheat + description:Start with about 1/4 health + code:CB8E-3D21+DE8E-3FF1+DD8E-3F91 + cheat + description:Start with about 1/2 health + code:CB8E-3D21+FD8E-3FF1+DD8E-3F91 + cheat + description:Start with about 3/4 health + code:CB8E-3D21+FE8E-3FF1+DD8E-3F91 + +cartridge sha256:46370b3bd6ff9ee04c425eef0f482f521f3b61bd4b058f2f4e9d322253d7b5de + name:Super Star Wars - The Empire Strikes Back (USA) (Rev 1) + cheat + description:Almost invincible - except spikes (works for enemy too) + code:483F-376F + cheat + description:Infinite lives + code:C238-C70F + cheat + description:Infinite continues + code:C229-4DD1 + cheat + description:Infinite thermal detonators + code:6DE9-47AF + cheat + description:Elevation and Freeze don't drain force bar + code:C229-14F9 + cheat + description:Saber control doesn't drain force bar + code:DDCC-1DDA + cheat + description:Mind control, Slow, Deflect and Invisible don't drain force bar + code:C22F-C7F9 + cheat + description:Keep gun power-ups after dying + code:C238-CD6F + cheat + description:Shield power-ups don't last as long + code:DD81-3DD4 + cheat + description:Shield power-ups last longer + code:D481-3DD4 + cheat + description:Shield power-ups last much longer + code:D781-3DD4 + cheat + description:Shield power-ups last a very long time + code:DE81-3DD4 + cheat + description:Health sword power-ups add 1/2 as much + code:D484-37A4 + cheat + description:Health sword power-ups add 2x as much + code:D684-37A4 + cheat + description:Health sword power-ups add 4x as much + code:FD84-37A4 + cheat + description:Force orbs add 1/2 as much + code:F68B-3764 + cheat + description:Force orbs add 2x as much + code:1D8B-3764 + cheat + description:Force orbs fill force bar + code:EE8B-3764 + cheat + description:Small hearts heal less on Easy + code:DF2B-C465 + cheat + description:Small hearts heal 2x as much on Easy + code:D12B-C465 + cheat + description:Small hearts heal 4x as much on Easy + code:DA2B-C465 + cheat + description:Small hearts heal very much on Easy + code:4D2B-C465 + cheat + description:Small hearts heal completely on Easy + code:002B-C465 + cheat + description:Small hearts heal less on Brave level + code:DF2B-C7D5 + cheat + description:Small hearts heal 2x as much on Brave + code:D02B-C7D5 + cheat + description:Small hearts heal 4x as much on Brave + code:D62B-C7D5 + cheat + description:Small hearts heal very much on Brave + code:4D2B-C7D5 + cheat + description:Small hearts heal completely on Brave + code:002B-C7D5 + cheat + description:Small hearts heal less on Jedi level + code:DF2B-C765 + cheat + description:Small hearts heal 2x as much on Jedi + code:D02B-C765 + cheat + description:Small hearts heal 4x as much on Jedi + code:D62B-C765 + cheat + description:Small hearts heal very much on Jedi + code:4D2B-C765 + cheat + description:Small hearts heal completely on Jedi + code:002B-C765 + cheat + description:Big hearts heal 1/2 your health instead of 1/4 + code:3C8D-3D04 + cheat + description:Big hearts heal completely + code:DC8D-3D04 + cheat + description:Continue with 2 lives on Easy + code:DF21-C465 + cheat + description:Continue with 6 lives on Easy + code:D921-C465 + cheat + description:Continue with 21 lives on Easy + code:F021-C465 + cheat + description:Continue with 51 lives on Easy + code:7421-C465 + cheat + description:Continue with 2 lives on Jedi + code:DF21-C765 + cheat + description:Continue with 6 lives on Jedi + code:D921-C765 + cheat + description:Continue with 21 lives on Jedi + code:F021-C765 + cheat + description:Continue with 100 lives on Jedi + code:1721-C765 + cheat + description:Tauntaun starts with 1/2 usual health + code:4D20-CF2F + cheat + description:Tauntaun starts with 3/4 usual health + code:7D20-CF2F + cheat + description:Tauntaun starts with a little more health than usual + code:0020-CF2F + cheat + description:Start with all force abilities + code:6D23-47F9 + cheat + description:Start with Flame gun - 1st life only + code:622C-47D0 + cheat + description:Start with 2 lives on Brave + code:DF21-C7D5 + cheat + description:Start with 6 lives on Brave + code:D921-C7D5 + cheat + description:Start with 21 lives on Brave + code:F021-C7D5 + cheat + description:Start with 100 lives on Brave + code:1721-C7D5 + cheat + description:Start with 1 continue + code:DF2C-CDA5 + cheat + description:Start with 5 continues + code:D92C-CDA5 + cheat + description:Start with 9 continues + code:DB2C-CDA5 + cheat + description:Start with 1/2 as much health on Easy + code:F425-CDD5 + cheat + description:Start with 3/4 as much health on Easy + code:F625-CDD5 + cheat + description:Start with more health on Easy + code:4C25-CDD5 + cheat + description:Start with much more health on Easy + code:7D25-CDD5 + cheat + description:Start with maximum health on Easy + code:0025-CDD5 + cheat + description:Start with 1/2 as much health on Brave + code:FD25-CD65 + cheat + description:Start with 3/4 as much health on Brave + code:F625-CD65 + cheat + description:Start with more health on Brave + code:4C25-CD65 + cheat + description:Start with much more health on Brave + code:7D25-CD65 + cheat + description:Start with maximum health on Brave + code:0025-CD65 + cheat + description:Start with half as much health on Jedi + code:D325-CFD5 + cheat + description:Start with 3/4 as much health on Jedi + code:F925-CFD5 + cheat + description:Start with no continues + code:DD2C-CDA5 + cheat + description:Start on level 1-2 + code:D469-1707 + cheat + description:Start on level 1-3 + code:D169-1707 + cheat + description:Start on level 1-4 + code:D769-1707 + cheat + description:Start on level 1-5 + code:D969-1707 + cheat + description:Start on level 1-6 + code:D069-1707 + cheat + description:Start on level 1-7 + code:DB69-1707 + cheat + description:Start on level 1-8 + code:F969-1707 + cheat + description:Start on level 1-10 + code:D569-1707 + cheat + description:Start on Hoth 3D level + code:D369-17D7+DC69-1707 + cheat + description:Start on level 1-11 + code:D669-1707 + cheat + description:Start on Asteroids level + code:F469-17D7+DD69-1707 + cheat + description:Start on level 3-1 + code:DA69-1707 + cheat + description:Start on level 3-2 + code:D269-1707 + cheat + description:Start on level 3-3 + code:D369-1707 + cheat + description:Start on Cloud City 3D level + code:D369-17D7+FC69-1707 + cheat + description:Start on level 4-2 + code:DE69-1707 + cheat + description:Start on level 4-3 + code:F769-1707 + cheat + description:Start on level 4-4 + code:F469-1707 + cheat + description:Start on level 4-5 + code:FD69-1707 + cheat + description:Start on level 4-6 + code:F569-1707 + cheat + description:Start on level 4-7 + code:F669-1707 + cheat + description:Start on Darth Vader level + code:F169-1707 + +cartridge sha256:d17cb5c73174060fcbd9cba6c705643f19c3b8be24d0f7ee43aee674ff1ea38e + name:Super Street Fighter II (USA) + cheat + description:Invincibility (except against throws, projectiles don't work) - P1 + code:6D9C-8D67+DF9C-8DA7+6DA1-8FD5+D4A1-8F05+6DAF-7405+D4AF-7465 + cheat + description:Infinite health - P1 + code:CB96-7DDD+8D96-7D0D+6296-7D6D+7F96-7DAD+D996-7FDD + cheat + description:Don't take damage except from throws or grabs - both players + code:3C10-7467+3C10-74A7 + cheat + description:Hit anywhere (except projectiles) - P1 + code:3D1D-5DDF+8D1D-5DAF+0D1D-5D0F+D51D-5D6F + cheat + description:1st normal hit wins - except throws or grabs + code:DD10-7707 + cheat + description:No charging required for some special moves + code:D002-EDD5 + cheat + description:Some special moves can be done in the air + code:DD47-8DD1 + cheat + description:Dizziness doesn't last + code:1077-7F61 + cheat + description:Every hit sets opponent on fire + code:CB17-8FAD+7D17-84DD + cheat + description:Every hit sets the opponent on fire and knocks him down + code:CB17-8FAD+F617-84DD + cheat + description:Every hit zaps the opponent and knocks him down + code:CB17-8FAD+FC17-84DD + cheat + description:Every hit knocks the opponent down + code:CB17-8FAD+FA17-84DD + cheat + description:Every hit is a "hard hit" - opponent almost never gets knocked down + code:CB17-8FAD+DC17-84DD + cheat + description:Players jump slower (not functional for CPU) + code:CB79-EF61+D579-EFA1 + cheat + description:Players jump faster (not functional for CPU) + code:CB79-EF61+D879-EFA1 + cheat + description:Each battle lasts only 1 round + code:DF81-E404 + cheat + description:Speed up timer + code:FE0C-7FDD + cheat + description:Slow down timer + code:9C0C-7FDD + cheat + description:P2 starts right in front of P1 + code:F122-E760 + cheat + description:Start with 1/4 health - both players + code:4A9C-7FDF + cheat + description:Start with 1/2 health - both players + code:969C-7FDF + cheat + description:Start with 3/4 health - both players + code:609C-7FDF + cheat + description:Balrog - Fierce charging punch, does heavy damage + code:6E6A-EF90 + cheat + description:Balrog - Roundhouse charging uppercut, does heavy damage + code:6E62-E790 + cheat + description:Balrog - Fierce shoulder butt, does heavy damage + code:6E69-5799 + cheat + description:Balrog - Faster turn punch - roundhouse + code:D18C-74D5 + cheat + description:Balrog - Superfast turn punch - roundhouse + code:DB8C-74D5 + cheat + description:Blanka - Fierce forward ball, does heavy damage + code:6E1C-E720 + cheat + description:Blanka - Beast leap, does heavy damage + code:6E1B-7D29 + cheat + description:Blanka - Jab zap, does heavy damage + code:6E15-ED20 + cheat + description:Cammy - Fierce spin knuckle, does heavy damage + code:6EB3-5F20 + cheat + description:Cammy - Roundhouse front kick, does heavy damage + code:6EBB-5720 + cheat + description:Cammy - Roundhouse cannon drill, from far away, does heavy damage + code:6EBF-5420 + cheat + description:Cammy - Erratic cannon drill + code:D1BE-E7A0 + cheat + description:Cammy - Superfast cannon drill + code:DDBE-E760 + cheat + description:Cammy - Superfast front kick - fierce + code:D620-17FA + cheat + description:Cammy - Superfast front kick - strong + code:D620-149A + cheat + description:Cammy - Superfast front kick - jab + code:D620-14FA + cheat + description:Chun-Li - Fierce fireball, does heavy damage + code:6E5D-7D20 + cheat + description:Chun-Li - Down step, does heavy damage + code:DE10-5425 + cheat + description:Chun-Li - Short lightning kick, does heavy damage + code:6E11-8425 + cheat + description:Chun Li - Faster whirlwind kick - roundhouse + code:D15E-8F60 + cheat + description:Chun Li - Superfast whirlwind kick - roundhouse + code:DB5E-8F60 + cheat + description:Dee Jay - Fierce hyper fist (1st hit), does heavy damage + code:6EC5-EF99 + cheat + description:Dee Jay - Fierce Max Out, does heavy damage + code:6ECF-7D91 + cheat + description:Dee Jay - Roundhouse dread kick, does heavy damage + code:6EC3-8F99 + cheat + description:Dee Jay - Dread kick is faster - fierce + code:DB23-179A + cheat + description:Dee Jay - Dread kick is faster - strong + code:DB23-1F9A + cheat + description:Dhalsim - Yoga spear, does heavy damage + code:DE5E-8729 + cheat + description:Dhalsim - Strong yoga flame (solid hit), does heavy damage + code:6E5E-E429 + cheat + description:Dhalsim - Fierce yoga fire, does heavy damage + code:6E58-E729 + cheat + description:E Honda - Jab hundred-hand slap, does heavy damage + code:6E99-8795 + cheat + description:E Honda - Fierce torpedo, does heavy damage + code:6E96-E495 + cheat + description:E Honda - Fierce sumo splash, does heavy damage + code:6E92-E795 + cheat + description:Fei Long - Fierce slide punch (1st hit), does heavy damage + code:6EC7-5F20 + cheat + description:Fei Long - Fierce slide punch (2nd hit), does heavy damage + code:6EC0-5D20 + cheat + description:Fei Long - Fierce slide punch (3rd hit), does heavy damage + code:6EC0-5720 + cheat + description:Fei Long - Roundhouse dragon kick, does heavy damage + code:6ECE-7420 + cheat + description:Fei Long - Superfast rekka-ken - strong + code:D528-1D2A + cheat + description:Fei Long - Superfast rekka-ken - fierce + code:D627-1F2A + cheat + description:Guile - Fierce sonic boom, does heavy damage + code:6E16-5491 + cheat + description:Guile - Roundhouse sonic kick, extremely close range, does heavy damage + code:6E1E-7491 + cheat + description:Hawk - The Hawk, does heavy damage + code:6EB3-5F91 + cheat + description:Ken - Fierce dragon punch, close to opponent, does heavy damage + code:6E96-8721 + cheat + description:Ken - Fierce fireballs, close to opponent, does heavy damage + code:6E92-8F21 + cheat + description:Ken - Roundhouse hurricane kick while on the ground, does heavy damage + code:6E9A-5721 + cheat + description:Ken - No delay after throwing fireball + code:3169-57A5 + cheat + description:Ken - Hurricane kicks rise higher when done in mid-air + code:1060-E405 + cheat + description:Ken - Faster hurricane kicks - roundhouse + code:D1A9-1DBA + cheat + description:Ken - Super fast hurricane kicks - roundhouse + code:DBA9-1DBA + cheat + description:M. Bison - Super fast psycho crusher - fierce + code:DB2F-CD9A + cheat + description:M. Bison - Psycho crusher in one place - fierce + code:1086-5D00 + cheat + description:Ryu - Jab dragon punch, close to opponent, does heavy damage + code:6E9D-8729 + cheat + description:Ryu - Fierce red fireballs from far away, does heavy damage + code:6E9B-E429 + cheat + description:Ryu - Roundhouse hurricane kick in the air, does heavy damage + code:6E9D-E429 + cheat + description:Ryu - No delay after throwing fireball + code:3169-57A5 + cheat + description:Ryu - Hurricane kicks rise higher when done in mid-air + code:1060-E405 + cheat + description:Ryu - Faster hurricane kicks - roundhouse + code:D1A9-1DBA + cheat + description:Ryu - Super fast hurricane kicks - roundhouse + code:DBA9-1DBA + cheat + description:Sagat - Roundhouse low tiger, from far away, does heavy damage + code:6E64-5F20 + cheat + description:Sagat - Fierce high tiger, from far away, does heavy damage + code:6E62-7720 + cheat + description:Sagat - Short tiger knee, does heavy damage + code:6E53-ED25 + cheat + description:Sagat - Jab projectiles move slower for everyone but Sagat, does heavy damage + code:EE27-479E + cheat + description:Sagat - Jab projectiles move slower for Sagat, does heavy damage + code:EE20-4D2E + cheat + description:Sagat - Fierce projectiles move faster for everyone but Sagat, does heavy damage + code:EC20-4D9E + cheat + description:Sagat - Fierce projectiles move faster for Sagat, does heavy damage + code:E520-4F2E + cheat + description:Vega - Fierce claw dive, does heavy damage + code:AE6A-8491 + cheat + description:Vega - Rolling claw attack, does heavy damage + code:6E62-8F91 + cheat + description:Vega - Claw thrust, does heavy damage + code:6E6E-EF91 + cheat + description:Vega - Superfast claw roll + code:D553-5F00 + cheat + description:Vega - Claw roll in one place + code:1053-5760 + cheat + description:Zangief - Double spinning lariat (only certain hits), does heavy damage + code:6E51-EF90 + cheat + description:Zangief - Spinning clothesline, does heavy damage + code:6E5F-ED90 + cheat + description:Infinite health - P1 (alt) + code:7E0531:B0 + cheat + description:Instant win - P1 + code:7E0771:FF + cheat + description:Infinite time + code:7E1929:99 + +cartridge sha256:830c900083cccc6ded74c167c4e257db34df4786ecd6e2f053de454db7d31fe5 + name:Super Strike Eagle (USA) + cheat + description:Infinite fuel + code:C9BD-47A4 + cheat + description:Infinite ammo - air-to-air mode + code:DD2A-3D64 + cheat + description:Infinite Maverick Missiles + code:82CD-3FD7 + cheat + description:Infinite Sidewinder Missiles + code:C92F-44A7 + cheat + description:Infinite Chaff + code:3C2A-4707 + cheat + description:Infinite Flares + code:3C26-4FD7 + cheat + description:Use up ammo faster - air-to-air mode + code:DC2A-3D64 + cheat + description:Start with 0 Chaff instead of 12 + code:DD3F-0F61 + cheat + description:Start with 6 Chaff + code:D13F-0F61 + cheat + description:Start with 50 Chaff + code:743F-0F61 + cheat + description:Start with 99 Chaff + code:173F-0F61 + cheat + description:Start with 0 Flares instead of 12 + code:DD3F-04A1 + cheat + description:Start with 6 Flares + code:D13F-04A1 + cheat + description:Start with 50 Flares + code:743F-04A1 + cheat + description:Start with 99 Flares + code:173F-04A1 + cheat + description:Start with 2 Sidewinder missiles instead of 12 + code:D437-0401 + cheat + description:Start with 25 Sidewinder Missiles + code:FB37-0401 + cheat + description:Start with 50 Sidewinder Missiles + code:7437-0401 + cheat + description:Start with 99 Sidewinder Missiles + code:1737-0401 + cheat + description:Start with less fuel + code:0D3D-0701 + +cartridge sha256:6e45a80ea148654514cb4e8604a0ffcbc726946e70f9e0b9860e36c0f3fa4877 + name:Super Tennis (USA) + cheat + description:Super speed - Matt + code:D060-AFAF+D761-AFAF+DD24-07A5 + cheat + description:Super speed - Amy + code:D060-AFAF+D761-AFAF+DD24-A7A5 + cheat + description:Super speed - Brian + code:D060-AFAF+D761-AFAF+DD27-07A5 + cheat + description:Super speed - Ki + code:D060-AFAF+D761-AFAF+DD27-A7A5 + cheat + description:Super speed - Phil + code:D060-AFAF+D761-AFAF+DD20-07A5 + cheat + description:Super speed - Lisa + code:D060-AFAF+D761-AFAF+DD20-A7A5 + cheat + description:Super speed - John + code:D060-AFAF+D761-AFAF+DD29-07A5 + cheat + description:Super speed - Erin + code:D060-AFAF+D761-AFAF+DD29-A7A5 + cheat + description:Super speed - Meyer + code:D060-AFAF+D761-AFAF+DD21-07A5 + cheat + description:Super speed - Donna + code:D060-AFAF+D761-AFAF+DD21-A7A5 + cheat + description:Super speed - Rich + code:D060-AFAF+D761-AFAF+DD25-07A5 + cheat + description:Super speed - Debbie + code:D060-AFAF+D761-AFAF+DD25-A7A5 + cheat + description:Super speed - Hiro + code:D060-AFAF+D761-AFAF+DD26-07A5 + cheat + description:Super speed - Colette + code:D060-AFAF+D761-AFAF+DD26-A7A5 + cheat + description:Super speed - Steve + code:D060-AFAF+D761-AFAF+DD2B-07A5 + cheat + description:Super speed - Nancy + code:D060-AFAF+D761-AFAF+DD2B-A7A5 + cheat + description:Super speed - Rob + code:D060-AFAF+D761-AFAF+DD2C-07A5 + cheat + description:Super speed - Yuka + code:D060-AFAF+D761-AFAF+DD2C-A7A5 + cheat + description:Super speed - Mar + code:D060-AFAF+D761-AFAF+DD28-07A5 + cheat + description:Super speed - Barb + code:D060-AFAF+D761-AFAF+DD28-A7A5 + +cartridge sha256:02cb7f1ed21ed6bfb9eaa0e91df2adb063a9bf4cbd6feb6cd024d676829e227e + name:Super Troll Islands (USA) + cheat + description:Infinite health (except spikes) + code:7E215A:04 + cheat + description:Max score + code:7E2009:99+7E200A:99+7E200B:99+7E200C:09 + cheat + description:Infinite whirlwinds + code:7E2074:09 + cheat + description:Infinite cupcakes + code:7E20F7:99 + cheat + description:Die after one hit + code:7E215A:00 + +cartridge sha256:056ac8160363d577e3ffc2f593801b8bb3d024fe4f3a3331b711dc556204949d + name:Super Turrican (USA) + cheat + description:Invincibility + code:C226-DDD4 + cheat + description:Infinite time + code:6D28-ADDF + cheat + description:Infinite lives + code:C22D-ADDF + cheat + description:Infinite continues + code:C266-DD6F + cheat + description:Infinite wheel time + code:C22D-0404 + cheat + description:Infinite Smart Lines + code:C226-D704 + cheat + description:Hit anywhere + code:568C-0704+6D8C-07D4+C280-67D4 + cheat + description:Don't decrease weapon power after dying + code:6D22-640F+F122-646F + cheat + description:Never change weapon type + code:4A82-AF0D + cheat + description:Start with blue weapon + code:DF83-6D0D + cheat + description:Start with yellow weapon + code:D483-6D0D + cheat + description:Start with all weapons at maximum power (4 power-ups) + code:D083-6D0D+BA83-67DD + cheat + description:Start with 1 life - Normal/Hard only + code:DD61-6D0D + cheat + description:Start with 2 lives - Normal/Hard only + code:DF61-6D0D + cheat + description:Start with 5 lives - Normal/Hard only + code:D061-6D0D + cheat + description:Start with 10 lives - Normal/Hard only + code:DB61-6D0D + cheat + description:Start with 25 lives - Normal/Hard only + code:F661-6D0D + cheat + description:Start with 50 lives - Normal/Hard only + code:7F61-6D0D + cheat + description:Start with 99 lives - Normal/Hard only + code:1461-6D0D + cheat + description:Start with 1 continue - Easy/Normal only + code:DF6F-6DDD + cheat + description:Start with 2 continues - Easy/Normal only + code:D46F-6DDD + cheat + description:Start with 5 continues - Easy/Normal only + code:D96F-6DDD + cheat + description:Start with 10 continues - Easy/Normal only + code:DC6F-6DDD + cheat + description:Start with 25 continues - Easy/Normal only + code:FB6F-6DDD + cheat + description:Start with 50 continues - Easy/Normal only + code:746F-6DDD + cheat + description:Start with 99 continues - Easy/Normal only + code:176F-6DDD + cheat + description:Start with no Smart Lines + code:DD8E-6DDD + cheat + description:Start with 1 Smart Line + code:DF8E-6DDD + cheat + description:Start with 2 Smart Lines + code:D48E-6DDD + cheat + description:Start with 4 Smart Lines - only 3 shown at once + code:D08E-6DDD + cheat + description:Start with 5 Smart Lines - only 3 shown at once + code:D98E-6DDD + cheat + description:Start with 10 Smart Lines - only 3 shown at once + code:DC8E-6DDD + cheat + description:Start with 25 Smart Lines - only 3 shown at once + code:FB8E-6DDD + cheat + description:Start with 50 Smart Lines - only 3 shown at once + code:748E-6DDD + cheat + description:Start with 99 Smart Lines - only 3 shown at once + code:178E-6DDD + cheat + description:Start on level 2 + code:D46D-64DD + cheat + description:Start on level 3 + code:D76D-64DD + cheat + description:Start on level 4 + code:D06D-64DD + cheat + description:Start on level 5 + code:D96D-64DD + cheat + description:Start on level 6 + code:D16D-64DD + cheat + description:Start on level 7 + code:D56D-64DD + cheat + description:Start on level 8 + code:D66D-64DD + cheat + description:Start on level 9 + code:DB6D-64DD + cheat + description:Start on level 10 + code:DC6D-64DD + cheat + description:Start on level 11 + code:D86D-64DD + cheat + description:Start on level 12 + code:DA6D-64DD + cheat + description:Start on level 13 + code:7E049E:0D + cheat + description:Infinite health + code:7E04FF:0C + cheat + description:Infinite time (alt) + code:7E056C:23 + cheat + description:Infinite Bombs + code:7E050A:04 + +cartridge sha256:96da3512a1aa05a40f1e5d61c48932b0d55d9f136d6418b848153a9fecab06de + name:Super Turrican 2 (USA) + cheat + description:Infinite time + code:7E0AEA:03+7E0AEB:55 + cheat + description:Infinite lives + code:7E0AF2:02 + cheat + description:Infinite Bombs + code:7E0AF4:03 + cheat + description:Have Missile sub-weapon + code:7E034A:01 + cheat + description:Max Spread Shot level + code:7E033C:04 + cheat + description:Max Rebound level + code:7E033E:04 + cheat + description:Max Laser level + code:7E0340:04 + cheat + description:Max Flamethrower level + code:7E0342:04 + cheat + description:Start with Spread Shot + code:7E0336:00 + cheat + description:Start with Rebound + code:7E0336:10 + cheat + description:Start with Laser + code:7E0336:16 + cheat + description:Start with Flamethrower + code:7E0336:02 + cheat + description:Start on level 2 + code:7E007E:02 + cheat + description:Start on level 3 + code:7E007E:03 + cheat + description:Start on level 4 + code:7E007E:04 + cheat + description:Start on level 5 + code:7E007E:05 + cheat + description:Start on level 6 + code:7E007E:06 + cheat + description:Start on level 7 + code:7E007E:07 + cheat + description:Start on level 8 + code:7E007E:08 + cheat + description:Start on level 9 + code:7E007E:09 + cheat + description:Start on level 10 + code:7E007E:0A + cheat + description:Start on level 11 + code:7E007E:0B + cheat + description:Start on level 12 + code:7E007E:0C + cheat + description:Start on level 13 + code:7E007E:0E + cheat + description:Start on level 14 + code:7E007E:0F + cheat + description:Start on level 15 + code:7E007E:10 + cheat + description:Start on level 16 + code:7E007E:11 + cheat + description:Start on level 17 + code:7E007E:12 + +cartridge sha256:792e615a34ceae5a1b9a4f54c5a5d9b53e39299332fece83e4bceca2c22efb21 + name:Super Valis IV (USA) + cheat + description:Allows you to select easy mode on the options screen + code:042C-ADD7 + cheat + description:Infinite usage for all special attacks + code:DD66-A7A7 + cheat + description:Protection from most enemy attacks + code:C2AA-0DAF + cheat + description:Infinite hits on armor + code:C2AA-0FAF + cheat + description:Hit anywhere + code:DD8D-DD0D+DDAB-D4DF + cheat + description:Get items from anywhere + code:6D8A-AF67 + cheat + description:Heart worth more + code:F684-0F0D + cheat + description:Heart worth much more + code:4684-0F0D + cheat + description:Selecting an item does not remove it from the menu of available items + code:826F-A467 + cheat + description:Enables level select + code:3CAC-6407 + cheat + description:Get any score for maximum score + code:DDCB-D7A7 + cheat + description:Item is always search + code:CB62-6767+D762-67A7 + cheat + description:Item is always three-way beam + code:CB62-6767+DF62-67A7 + cheat + description:Item is always bomber + code:CB62-6767+D462-67A7 + cheat + description:Item is always homing + code:CB62-6767+D062-67A7 + cheat + description:Item is always heart + code:CB62-6767+D962-67A7 + cheat + description:Item is always armor + code:CB62-6767+D162-67A7 + cheat + description:Infinite max health + code:7E0FB5:40 + cheat + description:Highest max health + code:7E0FB6:40 + cheat + description:Infinite item use + code:7E0FAE:09 + cheat + description:Have all items + code:7E0FA7:01+7E0FA8:02+7E0FA9:03+7E0FAA:04+7E0FAB:05+7E0FAC:06 + +cartridge sha256:62d3d650e956f23f3b221f83c5c5bd204afd0e4f4d9c47a3251962323de96089 + name:Super Widget (USA) + cheat + description:Invincibility + code:DDB9-0F0D + cheat + description:Infinite lives + code:C268-AFDD + cheat + description:Infinite time + code:C26B-6D6D + cheat + description:1 W gives 1 life + code:D7BA-D4D7 + +cartridge sha256:d802715fb4f09d7e499b5b3e577af641598a723dae7cedeaa93943bb53c6edbb + name:SWAT Kats - The Radical Squadron (USA) + cheat + description:Invincibility after first hit + code:829F-EDAD + cheat + description:Invincible while flying the jet + code:18EB-5FD9+18E2-5FA9+18ED-84A9 + cheat + description:Almost infinite health + code:70A9-7467 + cheat + description:Gain levels quickly + code:1B71-5DD5 + cheat + description:World 5 - Dark Kat always enabled + code:D932-7F67 + +cartridge sha256:c2015d03dd3db08069b2a6ea1ed6b3e1ac1e3a5f804b02295c3cd3717add91ef + name:Syndicate (USA) + cheat + description:Start with Mega-cash + code:7DC3-1FDD+7DC3-1F0D + cheat + description:All agents have infinite ammo for pistols + code:CBAB-CD01 + +cartridge sha256:365f10f9d9f68cc59e769eeb451c417e1ff7415022a625de9976a3b924c0bd61 + name:T2 - The Arcade Game (USA) + cheat + description:Infinite health (alt) - P1 + code:6D33-47D6 + cheat + description:Infinite health (alt) - P2 + code:6D3F-1DA6 + cheat + description:Infinite gunpower - P1 + code:C9B7-1407 + cheat + description:Infinite gunpower - P2 + code:C9B9-17D7 + cheat + description:Infinite missiles - P1 + code:DD2A-476B + cheat + description:Infinite missiles - P2 + code:DD2E-4DDB + cheat + description:Shields lasts longer + code:5E27-44A7 + cheat + description:Plasma Pulse Energizer lasts longer - P1 + code:D62B-4F67 + cheat + description:Plasma Pulse Energizer lasts longer - P2 + code:D628-47D7 + cheat + description:Keep P.P.E. for that level once picked up - P1 + code:C267-47A5 + cheat + description:Keep P.P.E. for that level once picked up - P2 + code:C260-4765 + cheat + description:Get 6 missiles for each 1 - P1 + code:D12D-4707 + cheat + description:Get 9 missiles for each 1 - P1 + code:DB2D-4707 + cheat + description:Get 9 missiles for each 1 - P2 + code:D124-4D67 + cheat + description:Get 6 missiles for each 1 - P2 + code:DB24-4D67 + cheat + description:Gunpower replenishes slower - P1 + code:FDB3-476F + cheat + description:Gunpower replenishes slower - P2 + code:FDB0-1F0F + cheat + description:10 credits + code:FD3E-C7A3 + cheat + description:15 credits + code:F93E-C7A3 + cheat + description:20 credits + code:4D3E-C7A3 + cheat + description:P.P.E. does extra damage - P1 + code:D12B-44A7 + cheat + description:P.P.E. does massive damage - P1 + code:F42B-44A7 + cheat + description:Infinite health - P1 + code:7E007F:7F + cheat + description:Infinite health - P2 + code:7E0081:7F + +cartridge sha256:1711fe9010232b41ec406900e5b4ef528dd2beaa97b27d94ed7eef57d63904a0 + name:Taz-Mania (USA) (Rev 1) + cheat + description:Infinite health + code:C935-40C0 + cheat + description:Infinite time + code:DD3B-C0C0 + cheat + description:Infinite continues (don't combine with start on act codes) + code:C238-1140 + cheat + description:Advance to next level after getting 1 kiwi + code:6089-319C + cheat + description:Faster timer + code:D035-C540 + cheat + description:1 minute to complete act 1, level 1 + code:DF64-41C0 + cheat + description:5 minutes to complete act 1, level 1 + code:D964-41C0 + cheat + description:Kiwi's worth 2 + code:E389-319C + cheat + description:Kiwi's worth 4 + code:EA89-319C + cheat + description:Kiwi's worth 5 + code:E889-319C + cheat + description:Kiwi's worth 7 + code:EB89-319C + cheat + description:Red bird worth 0 seconds instead of 10 + code:DD30-C910 + cheat + description:Red bird worth 20 seconds + code:D430-C910 + cheat + description:Red bird worth 30 seconds + code:D730-C910 + cheat + description:Red bird worth 40 seconds + code:D030-C910 + cheat + description:Red bird worth 50 seconds + code:D930-C910 + cheat + description:Start with 1/4 normal health + code:D522-3545 + cheat + description:Start with 1/2 normal health + code:DE22-3545 + cheat + description:Start with 3/4 normal health + code:F922-3545 + cheat + description:Start with 1 continue (don't combine with start on act codes) + code:DF3F-15C0 + cheat + description:Start with 5 continues (don't combine with start on act codes) + code:D93F-15C0 + cheat + description:Start with 7 continues (don't combine with start on act codes) + code:D53F-15C0 + cheat + description:Start with 9 continues (don't combine with start on act codes) + code:DB3F-15C0 + cheat + description:Start with 50 continues (don't combine with start on act codes) + code:743F-15C0 + cheat + description:Start with 99 continues (don't combine with start on act codes) + code:173F-15C0 + cheat + description:Start on act 1, level 2 + code:4A36-1140+7D36-1110+DF3F-15C0 + cheat + description:Start on act 1, level 3 + code:4A36-1140+7D36-1110+D43F-15C0 + cheat + description:Start on act 1 bonus level + code:4A36-1140+7D36-1110 + cheat + description:Start on act 2, level 1 + code:4A36-1140+7D36-1110+D03F-15C0 + cheat + description:Start on act 2, level 2 + code:4A36-1140+7D36-1110+D93F-15C0 + cheat + description:Start on act 2, level 3 + code:4A36-1140+7D36-1110+D13F-15C0 + cheat + description:Start on act 2 bonus level + code:4A36-1140+7D36-1110+D53F-15C0 + cheat + description:Start on act 3, level 1 + code:4A36-1140+7D36-1110+D63F-15C0 + cheat + description:Start on act 3, level 2 + code:4A36-1140+7D36-1110+DB3F-15C0 + cheat + description:Start on act 3, level 3 + code:4A36-1140+7D36-1110+DC3F-15C0 + cheat + description:Start on act 3 bonus level + code:4A36-1140+7D36-1110+D83F-15C0 + cheat + description:Start on act 4, level 1 + code:4A36-1140+7D36-1110+DA3F-15C0 + cheat + description:Start on act 4, level 2 + code:4A36-1140+7D36-1110+D23F-15C0 + cheat + description:Start on act 4, level 3 + code:4A36-1140+7D36-1110+D33F-15C0 + cheat + description:Start on act 4 bonus level + code:4A36-1140+7D36-1110+DE3F-15C0 + cheat + description:Start on act 5, level 1 + code:4A36-1140+7D36-1110+FD3F-15C0 + cheat + description:Start on act 5, level 2 + code:4A36-1140+7D36-1110+FF3F-15C0 + cheat + description:Start on act 5, level 3 + code:4A36-1140+7D36-1110+F43F-15C0 + cheat + description:Infinite health (alt) + code:7E0096:1D + cheat + description:Infinite time (alt) + code:7E0098:99 + +cartridge sha256:e3bd2296b860a547bb8594485048d3e1326a416405ed9e91139c75f8927acfe3 + name:Taz-Mania (USA) + cheat + description:Infinite health + code:C935-40C0 + cheat + description:Infinite time + code:DD3B-C0C0 + cheat + description:Infinite continues (don't combine with start on act codes) + code:C238-1140 + cheat + description:Advance to next level after getting 1 kiwi + code:6089-319C + cheat + description:Faster timer + code:D035-C540 + cheat + description:1 minute to complete act 1, level 1 + code:DF64-41C0 + cheat + description:5 minutes to complete act 1, level 1 + code:D964-41C0 + cheat + description:Kiwi's worth 2 + code:E389-319C + cheat + description:Kiwi's worth 4 + code:EA89-319C + cheat + description:Kiwi's worth 5 + code:E889-319C + cheat + description:Kiwi's worth 7 + code:EB89-319C + cheat + description:Red bird worth 0 seconds instead of 10 + code:DD30-C910 + cheat + description:Red bird worth 20 seconds + code:D430-C910 + cheat + description:Red bird worth 30 seconds + code:D730-C910 + cheat + description:Red bird worth 40 seconds + code:D030-C910 + cheat + description:Red bird worth 50 seconds + code:D930-C910 + cheat + description:Start with 1/4 normal health + code:D522-3545 + cheat + description:Start with 1/2 normal health + code:DE22-3545 + cheat + description:Start with 3/4 normal health + code:F922-3545 + cheat + description:Start with 1 continue (don't combine with start on act codes) + code:DF3F-15C0 + cheat + description:Start with 5 continues (don't combine with start on act codes) + code:D93F-15C0 + cheat + description:Start with 7 continues (don't combine with start on act codes) + code:D53F-15C0 + cheat + description:Start with 9 continues (don't combine with start on act codes) + code:DB3F-15C0 + cheat + description:Start with 50 continues (don't combine with start on act codes) + code:743F-15C0 + cheat + description:Start with 99 continues (don't combine with start on act codes) + code:173F-15C0 + cheat + description:Start on act 1, level 2 + code:4A36-1140+7D36-1110+DF3F-15C0 + cheat + description:Start on act 1, level 3 + code:4A36-1140+7D36-1110+D43F-15C0 + cheat + description:Start on act 1 bonus level + code:4A36-1140+7D36-1110 + cheat + description:Start on act 2, level 1 + code:4A36-1140+7D36-1110+D03F-15C0 + cheat + description:Start on act 2, level 2 + code:4A36-1140+7D36-1110+D93F-15C0 + cheat + description:Start on act 2, level 3 + code:4A36-1140+7D36-1110+D13F-15C0 + cheat + description:Start on act 2 bonus level + code:4A36-1140+7D36-1110+D53F-15C0 + cheat + description:Start on act 3, level 1 + code:4A36-1140+7D36-1110+D63F-15C0 + cheat + description:Start on act 3, level 2 + code:4A36-1140+7D36-1110+DB3F-15C0 + cheat + description:Start on act 3, level 3 + code:4A36-1140+7D36-1110+DC3F-15C0 + cheat + description:Start on act 3 bonus level + code:4A36-1140+7D36-1110+D83F-15C0 + cheat + description:Start on act 4, level 1 + code:4A36-1140+7D36-1110+DA3F-15C0 + cheat + description:Start on act 4, level 2 + code:4A36-1140+7D36-1110+D23F-15C0 + cheat + description:Start on act 4, level 3 + code:4A36-1140+7D36-1110+D33F-15C0 + cheat + description:Start on act 4 bonus level + code:4A36-1140+7D36-1110+DE3F-15C0 + cheat + description:Start on act 5, level 1 + code:4A36-1140+7D36-1110+FD3F-15C0 + cheat + description:Start on act 5, level 2 + code:4A36-1140+7D36-1110+FF3F-15C0 + cheat + description:Start on act 5, level 3 + code:4A36-1140+7D36-1110+F43F-15C0 + cheat + description:Infinite health (alt) + code:7E0096:1D + cheat + description:Infinite time (alt) + code:7E0098:99 + +cartridge sha256:35dd020cf57fc402417ab6e4a6c49866c5a86bba25218c0aaf7ce85cb134bcf8 + name:Tecmo Super Bowl (USA) + cheat + description:Always 1st down + code:C9BA-14DC + cheat + description:1 play to get a 1st down + code:DFBA-170C + cheat + description:2 plays to get a 1st down + code:D4BA-170C + cheat + description:3 plays to get a 1st down + code:D7BA-170C + cheat + description:5 plays to get a 1st down + code:D9BA-170C + cheat + description:7 plays to get a 1st down + code:D5BA-170C + cheat + description:Extra points worth 0 points - P1 + code:DD61-34DC + cheat + description:Extra points worth 3 points - P1 + code:D761-34DC + cheat + description:Extra points worth 5 points - P1 + code:D961-34DC + cheat + description:Extra points worth 9 points - P1 + code:DB61-34DC + cheat + description:Extra points worth 0 points - P2 + code:DDB5-34AB + cheat + description:Extra points worth 3 points - P2 + code:D7B5-34AB + cheat + description:Extra points worth 5 points - P2 + code:D9B5-34AB + cheat + description:Extra points worth 9 points - P2 + code:DBB5-34AB + cheat + description:Field goals worth 0 points - P1 + code:DD63-37AB + cheat + description:Field goals worth 1 points - P1 + code:DF63-37AB + cheat + description:Field goals worth 5 points - P1 + code:D963-37AB + cheat + description:Field goals worth 9 points - P1 + code:DB63-37AB + cheat + description:Field goals worth 0 points - P2 + code:DDBD-4DDB + cheat + description:Field goals worth 1 points - P2 + code:DFBD-4DDB + cheat + description:Field goals worth 5 points - P2 + code:D9BD-4DDB + cheat + description:Field goals worth 9 points - P2 + code:DBBD-4DDB + cheat + description:Safeties worth 0 points - P1 + code:DDB0-17AB + cheat + description:Safeties worth 1 points - P1 + code:DFB0-17AB + cheat + description:Safeties worth 5 points - P1 + code:D9B0-17AB + cheat + description:Safeties worth 9 points - P1 + code:DBB0-17AB + cheat + description:Safeties worth 0 points - P2 + code:DD67-17DC + cheat + description:Safeties worth 1 points - P2 + code:DF67-17DC + cheat + description:Safeties worth 5 points - P2 + code:D967-17DC + cheat + description:Safeties worth 9 points - P2 + code:DB67-17DC + cheat + description:Touchdowns worth 0 points - P1 + code:DD66-14AC + cheat + description:Touchdowns worth 3 points - P1 + code:D766-14AC + cheat + description:Touchdowns worth 5 points - P1 + code:D966-14AC + cheat + description:Touchdowns worth 8 points - P1 + code:D666-14AC + cheat + description:Touchdowns worth 0 points - P2 + code:DDCE-34A8+DDBB-176B + cheat + description:Touchdowns worth 3 points - P2 + code:D7CE-34A8+D7BB-176B + cheat + description:Touchdowns worth 5 points - P2 + code:D9CE-34A8+D9BB-176B + cheat + description:Touchdowns worth 9 points - P2 + code:DBCE-34A8+DBBB-176B + cheat + description:0 timeouts for the first half - both players + code:DDA5-1F2D + cheat + description:2 timeouts for the first half - both players + code:D4A5-1F2D + cheat + description:7 timeouts for the first half - both players + code:D5A5-1F2D + cheat + description:9 timeouts for the first half - both players + code:DBA5-1F2D + cheat + description:0 timeouts for the first half - P1 + code:10A5-14FD + cheat + description:0 timeouts for the first half - P2 + code:10A5-14BD + cheat + description:0 timeouts for the second half - both players + code:DDAA-14FD + cheat + description:2 timeouts for the second half - both players + code:D4AA-14FD + cheat + description:7 timeouts for the second half - both players + code:D5AA-14FD + cheat + description:9 timeouts for the second half - both players + code:DBAA-14FD + cheat + description:0 timeouts for the second half - P1 + code:10AA-149D + cheat + description:0 timeouts for the second half - P2 + code:10AA-142D + cheat + description:Timeouts are not reset at half-time - P1 + code:C9AA-149D + cheat + description:Timeouts are not reset at half-time - P2 + code:C9AA-142D + cheat + description:Quarters start at 2 minutes 30 seconds + code:7DB3-C705+D4B3-C765 + +cartridge sha256:8cfd4c5525f4bd4bba5af7e2323f1e61f27ce97c6d5617cfa685c9276fbf6407 + name:Tecmo Super Bowl III - Final Edition (USA) + cheat + description:Infinite ability points in the edit menu + code:3C38-C25D + +cartridge sha256:14bce564f976d1431127259edbcb23c52c79361fed9814d307d627c4650e800e + name:Tecmo Super NBA Basketball (USA) + cheat + description:Never miss a shot (hold Y and press the shot button) + code:7D69-CDE7+C269-CD77+D869-CD57+DC69-CD87+FF69-CF77 + +cartridge sha256:5b82cdd6f2da56f43680d6a5021faebe2e06036d30602c1a7917aa414cf8b5f4 + name:Teenage Mutant Ninja Turtles IV - Turtles in Time (USA) + cheat + description:Invincibility + code:3C86-0764+B98B-0D64+CB86-07A4+D48B-0DD4+DD8B-0D04 + cheat + description:Infinite health + code:892F-0DD7 + cheat + description:Infinite lives + code:DDAC-6F67 + cheat + description:One hit kills (disable during Shredder's first fight) + code:6D6C-0F2F + cheat + description:Hit anywhere - P1 + code:EA66-67AA + cheat + description:Hit anywhere - P2 + code:EA6B-67AA + cheat + description:Start with 1 life instead of 3 + code:DD28-67D9 + cheat + description:Start with 5 lives + code:D028-67D9 + cheat + description:Start with 10 lives + code:DB28-67D9 + cheat + description:Start with 25 lives + code:4028-67D9 + cheat + description:Start with 50 lives + code:0B28-67D9 + cheat + description:Start with 75 lives + code:5028-67D9 + cheat + description:Start with 100 lives + code:BB28-67D9 + cheat + description:Start on level 2 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+DFB8-A4BF + cheat + description:Start on level 4 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D7B8-A4BF + cheat + description:Start on level 5 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D0B8-A4BF + cheat + description:Start on level 6 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D9B8-A4BF + cheat + description:Start on level 7 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D1B8-A4BF + cheat + description:Start on level 8 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D5B8-A4BF + cheat + description:Start on level 9 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+D6B8-A4BF + cheat + description:Start on level 10 + code:69B8-A42F+6FB8-A7FF+DDB8-A79F+DBB8-A4BF + cheat + description:Infinite health (alt) (enable after level starts) + code:7E044A:56 + +cartridge sha256:849141370f164d6db3e5709da670726f958ce13ffef69319564db3fb0b12c69d + name:Teenage Mutant Ninja Turtles - Tournament Fighters (USA) + cheat + description:Health doesn't decrease over time + code:DDC1-1D03 + cheat + description:Automatic and infinite continues + code:82A6-4FA4 + cheat + description:Hit anywhere - P1 + code:6D69-149F + cheat + description:Hit anywhere - P2 + code:6D6f-1F9F + cheat + description:Leonardo is replaced by Rat King + code:DCCA-1405 + cheat + description:Leonardo is replaced by Karai + code:D8CA-1405 + cheat + description:Raphael is replaced by Rat King + code:DCCA-14A5 + cheat + description:Raphael is replaced by Karai + code:D8CA-14A5 + cheat + description:Donatello is replaced by Rat King + code:DCCA-1705 + cheat + description:Donatello is replaced by Karai + code:D8CA-1705 + cheat + description:Matches are 10 seconds long (leave menu option on 60) + code:FD86-4F00 + cheat + description:Matches are 15 seconds long (leave menu option on 60) + code:F986-4F00 + cheat + description:Matches are 20 seconds long (leave menu option on 60) + code:4D86-4F00 + cheat + description:Matches are 75 seconds long (leave menu option on 60) + code:5986-4F00 + cheat + description:Ultimate attack can be done any time + code:DFCA-44A3 + cheat + description:Ultimate attack can be done with about 1/4 health + code:F0CA-44A3 + cheat + description:Ultimate attack can be done with about 1/2 health + code:46CA-44A3 + cheat + description:Ultimate attack can be done with about 3/4 health + code:7ACA-44A3 + cheat + description:Health decreases twice as fast + code:D4C1-1D03 + cheat + description:After doing an ultimate attack, health bar goes to about 1/4 + code:F0C3-4463 + cheat + description:After doing an ultimate attack, health bar goes to about 1/2 + code:46C3-4463 + cheat + description:After doing an ultimate attack, health bar goes to about 3/4 + code:7AC3-4463 + cheat + description:Start with 1/4 health - both players + code:F6E9-3D25 + cheat + description:Start with 1/2 health - both players + code:7DE9-3D25 + cheat + description:Start with 3/4 health - both players + code:06E9-3D25 + cheat + description:Start with no continues (leave menu option on 3) + code:DDB1-CF60 + cheat + description:Start with 1 continue + code:D4B1-CF60 + cheat + description:Start with 3 continues + code:D0B1-CF60 + cheat + description:Start with 5 continues + code:D1B1-CF60 + cheat + description:Start with 7 continues + code:D6B1-CF60 + cheat + description:Infinite health + code:7E0EE460 + cheat + description:Full power bar + code:7E1AC060 + cheat + description:Empty power bar - opponent + code:7E1B1000 + cheat + description:Opponent dizzy after every knockdown + code:7E0FC210 + cheat + description:Win one round to win match + code:7E195002 + +cartridge sha256:8620203da71d32d017bb21f542864c1d90705b87eb67815d06b43f09120318aa + name:Tengai Makyou Zero (Japan) + cheat + description:No random battles + code:7E1659:08 + cheat + description:Infinite HP - character 1 + code:7E1694:E7+7E1695:03 + cheat + description:Infinite HP - character 2 + code:7E1696:E7+7E1697:03 + cheat + description:Infinite HP - character 3 + code:7E1698:E7+7E1699:03 + cheat + description:Infinite MP - character 1 + code:7E16C8:E7+7E16C9:03 + cheat + description:Infinite MP - character 2 + code:7E16CA:E7+7E16CB:03 + cheat + description:Infinite MP - character 3 + code:7E16CC:E7+7E16CD:03 + cheat + description:Fast level gain + code:7E1950:FF+7E1951:FF + +cartridge sha256:bd7074ef4a05d790646abe145ffd2587fb48044e4b730286d807abe102841177 + name:Terminator, The (USA) + cheat + description:Infinite lives (not on car stages) + code:C286-17DD + cheat + description:Infinite Grenades + code:4AA3-0F96 + cheat + description:Infinite Missiles + code:C2A5-0D98 + cheat + description:10 Grenades on pick-up + code:DCAB-A7FC + cheat + description:2 Grenades on pick-up + code:D4AB-A7FC + cheat + description:Longer invulnerability after being hit + code:EE81-0D9C + cheat + description:Shorter invulnerability after being hit + code:FE81-0D9C + cheat + description:Don't lose Grenades on dying + code:4AA9-04F6 + cheat + description:Don't lose Missiles on dying + code:4AA9-0F96 + cheat + description:Get Rapid Fire on dying + code:D7A9-0D96 + cheat + description:Start with Rapid Fire + code:D767-CFAD + cheat + description:Start with 9 lives + code:DBA2-C4AF + cheat + description:Start with 1 life + code:DFA2-C4AF + +cartridge sha256:06db3be569a587d79b51bfc684fd2ebdea977863875aedec88218fbb4169c21b + name:Terminator 2 - Judgment Day (USA) + cheat + description:Infinite energy + code:7E1407:C8 + cheat + description:Infinite health - John + code:7E1452:64 + cheat + description:Infinite health - Sarah + code:7E149D:64 + cheat + description:Infinte ammo + code:7E1407:FF + +cartridge sha256:3cdebbd8adc4bb6773a7995f542fdac49adefca71cba583255a1c1bf37ac3946 + name:Tetris & Dr. Mario (USA) + cheat + description:Tetris - Level never increases + code:6DB4-1F65 + cheat + description:Tetris - After the first level your level increases every line + code:DFB4-1405 + cheat + description:Tetris - The same piece always drops + code:CBB7-C460+D4B7-C4A0+DDB7-C7D0 + cheat + description:Tetris - Always at high speed + code:CBB2-3DA9+DCB2-3FD9+3CB2-3F09 + cheat + description:Dr. Mario - The same piece always drops until you hit the change button + code:CBC9-4466+DCC9-44A6+3CC9-47D6 + cheat + description:Dr. Mario - The same piece always drops + code:CB67-37DC+DC67-370C+3C67-376C + cheat + description:Tetris 2 - Select any round - 1P (at round select meter, keep pressing right) + code:9DBD-3DF4 + cheat + description:Tetris 2 - Tile speed always at 0 + code:CBC5-4FDC+DDC5-4F0C+DDC5-4F6C + cheat + description:Tetris 2 - Tile speed always at 255 + code:CBC5-4FDC+EEC5-4F0C+DDC5-4F6C + cheat + description:Tetris 2 - More time to place the blocks where you want them, even after they hit the ground (left and right only) + code:6DB1-346B + +cartridge sha256:70dea29a928c1625def31c862dc74960e39e587e416b45829efc21f13ebd9630 + name:Tetris 2 (USA) (Rev 1) + cheat + description:Select any round + code:9DBD-3DF4 + cheat + description:Tile speed always at 0 + code:CBC5-4FDC+DDC5-4F0C+DDC5-4F6C + cheat + description:Tile speed always at 255 + code:CBC5-4FDC+EEC5-4F0C+DDC5-4F6C + cheat + description:More time to place the blocks where you want them + code:6DB1-346B + +cartridge sha256:accc836c3adabadc810fbe35702c6a64d50a09f4c672d2734fa58b251d7a20aa + name:Tetris 2 (USA) + cheat + description:Select any round + code:9DBD-3DF4 + cheat + description:Tile speed always at 0 + code:CBC5-4FDC+DDC5-4F0C+DDC5-4F6C + cheat + description:Tile speed always at 255 + code:CBC5-4FDC+EEC5-4F0C+DDC5-4F6C + cheat + description:More time to place the blocks where you want them + code:6DB1-346B + +cartridge sha256:4aee5b05ae11643fc6cb7ed32dfd4e82bbb52d03b12aabb080af35e2df6f562f + name:Tetsuwan Atom (Japan) + cheat + description:Invincibility + code:2D65-C05D + cheat + description:Infinite health + code:C2CF-4D61 + cheat + description:Infinite lives + code:C2C1-1409 + +cartridge sha256:d50aaa41e153ca356eee16a9deccb1a763ee56ebbe6c80cd28c5ad1db66a5316 + name:Thunder Spirits (USA) + cheat + description:Infinite lives + code:CBCC-0407 + cheat + description:Infinite lives (alt) + code:C2CC-5407 + cheat + description:Infinite credits + code:3CAC-67DF + cheat + description:Infinite credits (alt) + code:C2A8-8D0F + cheat + description:Hit anywhere + code:40C5-6DD7+40C6-6407+40C9-6FA7+40CC-6D67+40CF-6767 + cheat + description:Keep captured weapon until game ends (except claw and shield) + code:C2C8-0407+C2C8-0767 + cheat + description:Continue with 1 life + code:BAAD-ADDF + cheat + description:Continue with 2 lives + code:DDAE-670F+CBAE-67DF + cheat + description:Continue with 5 lives + code:D7AE-670F+CBAE-67DF + cheat + description:Continue with 7 lives + code:D9AE-670F+CBAE-67DF + cheat + description:Continue with 9 lives + code:D5AE-670F+CBAE-67DF + cheat + description:Start with 1 credit + code:C7BF-0DAD + cheat + description:Start with 2 credits + code:84BF-0DAD + cheat + description:Start with 3 credits + code:B4BF-0DAD + cheat + description:Start with 5 credits + code:BEBF-0DAD + cheat + description:Start with 8 credits + code:68BF-0D6D+C4BF-0DAD + cheat + description:Start with 12 credits + code:D0BF-0D6D+C3BF-0DAD + cheat + description:Start with 1 life + code:EEB3-DD0D+CBB3-DDDD + cheat + description:Start with 2 lives + code:DDB3-DD0D+CBB3-DDDD + cheat + description:Start with 5 lives + code:D7B3-DD0D+CBB3-DDDD + cheat + description:Start with 7 lives + code:D9B3-DD0D+CBB3-DDDD + cheat + description:Start with 9 lives + code:D5B3-DD0D+CBB3-DDDD + cheat + description:Start with 25 lives + code:F5B3-DD0D+CBB3-DDDD + cheat + description:Start with 50 lives + code:7DB3-DD0D+CBB3-DDDD + cheat + description:Start with 100 lives + code:14B3-DD0D+CBB3-DDDD + cheat + description:Stage modifier + code:7E1A98:?? + cheat + description:Start on stage 2 + code:DF65-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 3 + code:D465-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 4 + code:D765-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 5 + code:D065-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 6 + code:D965-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 7 + code:D165-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Start on stage 8 + code:D565-67D4+CB65-64A4+DD65-6704+3C65-6764 + cheat + description:Invincibility + code:7E0418:7B + cheat + description:Invincibility (alt) + code:00AD90:77 + +cartridge sha256:eb958801fd1f08771e5a0933f7701d633262efbfe8d47de21dda18e3b77670de + name:Tick, The (USA) + cheat + description:Infinite lives + code:DDC7-1F6F + cheat + description:Most kicks are stronger + code:DA60-1352 + cheat + description:Most kicks kill most enemies + code:FE60-1352 + +cartridge sha256:8e82f98d2e62bc1e5fcf2386c2b5ca54998398220efcedd67858aaaa92289a42 + name:Time Slip (USA) + cheat + description:Invincibility + code:3CC2-D769 + cheat + description:Infinite health + code:C2B7-6DD0 + cheat + description:Infinite lives + code:C22E-04A7 + cheat + description:Infinite ammo + code:C2C3-AFD0 + cheat + description:Infinite TGS meter + code:C284-A409 + cheat + description:Keep gun power-ups after dying + code:CD24-67A7+CD24-6467 + cheat + description:Flash 2x longer when hit + code:6DB7-6460 + cheat + description:Barely flash at all when hit + code:FDB7-6460 + cheat + description:Fewer enemies + code:C26F-6FD1+C26C-07A1+C26F-ADD1+C26C-0FA1 + cheat + description:Start with all weapons and 9 rounds + code:DB68-6D0D + cheat + description:Start with 16 lives + code:EE6B-670D + cheat + description:Start with 4 health bars - after 1st life + code:DE2E-0F67 + cheat + description:Start with 3 health bars - after 1st life + code:D52E-0F67 + cheat + description:Start with 4 health bars - 1st life + code:DE6C-6F0D + cheat + description:Start with 3 health bars - 1st life + code:D56C-6F0D + cheat + description:Start on stage - Cretaceous + code:CB24-D707+DD24-D7A7+6227-DDD7+DF24-D767 + cheat + description:Start on stage - Egypt + code:CB24-D707+DD24-D7A7+6227-DDD7+D424-D767 + cheat + description:Start on stage - Rome + code:CB24-D707+DD24-D7A7+6227-DDD7+D724-D767 + cheat + description:Start on stage - Invasion 2147 + code:CB24-D707+DD24-D7A7+6227-DDD7+D024-D767 + cheat + description:Start on stage - Tirmat + code:CB24-D707+DD24-D7A7+6227-DDD7+D924-D767 + +cartridge sha256:fa7e2b40093f0cc7233cc77e95bbbea2144c8183dec10446590396fffd7cda37 + name:Time Trax (USA) + cheat + description:Infinite health + code:C2E8-1F60 + cheat + description:Infinite lives + code:C2EF-3FD0 + cheat + description:Invincibility + code:84E948:FF+8187FF:FF + cheat + description:Infinite health (alt) + code:7E14B5:06 + cheat + description:Infinite Time Stall + code:7E14B9:30 + +cartridge sha256:16fb965130e57f37dda2466f23820f091f8b96758aa7e30ba4fd63cb618e5ddb + name:Timecop (USA) + cheat + description:Invincibility + code:DDBA-C4D7 + cheat + description:Don't flash when invincible + code:6DB2-CD07 + cheat + description:Infinite health + code:7E06F3:99 + cheat + description:Infinite Gun + code:7E06F5:99 + cheat + description:Infinite Bombs + code:7E06F7:99 + cheat + description:Infinite time + code:7E0638:63 + +cartridge sha256:271a67b32b3bb00ceb0f4e7d81494888d0d821635f0f936d481dfbe671567c08 + name:Timon & Pumbaa's Jungle Games (USA) + cheat + description:Infinite ammo/balls + code:7E00DC:09 + +cartridge sha256:0503cd93b4d211a825acd47ff3813668b4ce68890c8be2fbfe5ac2b46882dfcf + name:Tin Star (USA) + cheat + description:Infinite health + code:7E09C8:A0 + cheat + description:Infinite lives + code:7E0928:09 + cheat + description:Bosses die automatically + code:7E0B78:00 + cheat + description:Gain money much faster + code:7E182A:50+7E182B:C3 + cheat + description:Max money + code:7E07DD:09+7E07DC:09+7E07DB:09+7E07DA:09+7E07D9:09+7E07D8:09 + cheat + description:Have $9,000,000 + code:7E07D8:09 + +cartridge sha256:5b8a7309910ae040b6301bdc0ad09fa1991b2b7210a6b76931cd91ce0c82c424 + name:Tinhead (Europe) (Proto) + cheat + description:Infinite health + code:C2BD-DDA4 + cheat + description:Infinite lives + code:C26E-AF6F + cheat + description:Infinite Bombs + code:C2BE-ADDF + +cartridge sha256:71de4dec6a8e8be685627b6e929317f7cefb836997059bbd3b438ccc07a60044 + name:Tintin - Prisoners of the Sun (Europe) (En,Fr,De,Es) + cheat + description:Invincibility + code:2D67-C7DD+2D6B-1D0B + cheat + description:Infinite health + code:A289-376C + cheat + description:Infinite time + code:CE89-C4A8 + cheat + description:Infinite lives + code:A285-37AC + cheat + description:Infinite health (alt) + code:7E059B:04 + cheat + description:Infinite time (alt) + code:7F5B7F:63 + +cartridge sha256:da8b8bccebf51b70213adecda37387d1bdb55aeb7bc0805bb1be1cd9b514daf6 + name:Tintin in Tibet (Europe) (En,Fr,De,Nl) + cheat + description:Invincibility (after first hit) + code:7E050F:2C + cheat + description:Infinite health + code:7E05C9:04 + cheat + description:Infinite lives + code:7E05CB:03 + cheat + description:Infinite time + code:7F59AE:06 + +cartridge sha256:ba679a11264e9695895a6c17358a41e8459be06166d056811df9c2738fef3d0d + name:Tiny Toon Adventures - Buster Busts Loose! (USA) + cheat + description:Infinite health (when hit, a fake empty heart appears) + code:3CE9-448A + cheat + description:Infinite lives (except football level) + code:DD34-37D7 + cheat + description:Infinite lives (football level) + code:DDC0-3F07 + cheat + description:Infinite dash meter + code:C927-47AD + cheat + description:Five heart maximum on challenge level + code:D184-C4A1 + cheat + description:1-up gives 2-up (not on mystery weight challenge level, or by collecting stars) + code:D46B-CFAF + cheat + description:Small star worth 2 + code:D43E-C48E + cheat + description:Small star worth 5 + code:D93E-C48E + cheat + description:Small star worth 10 + code:FD3E-C48E + cheat + description:Gold Gogo Dodo Trophy lasts 1/2 as long + code:DF64-14AA + cheat + description:Gold Gogo Dodo Trophy lasts 2x as long + code:D064-14AA + cheat + description:Choose bonus level after completing a level + code:C9CE-1F0F + cheat + description:Passwords work on any difficulty level (not just Children level) + code:7036-C001 + cheat + description:Continue with 1 life + code:DFC0-CFAF + cheat + description:Continue with 5 lives + code:D9C0-CFAF + cheat + description:Continue with 10 lives + code:FDC0-CFAF + cheat + description:Continue with 25 lives + code:49C0-CFAF + cheat + description:Continue with 50 lives + code:9DC0-CFAF + cheat + description:Continue with 99 lives + code:BBC0-CFAF + cheat + description:Start with 1 life + code:DF6F-14DF + cheat + description:Start with 5 lives + code:D96F-14DF + cheat + description:Start with 10 lives + code:FD6F-14DF + cheat + description:Start with 25 lives + code:496F-14DF + cheat + description:Start with 50 lives + code:9D6F-14DF + cheat + description:Start with 99 lives + code:BB6F-14DF + cheat + description:Start with no continues on normal level - handicap + code:DD6D-47D0 + cheat + description:Start with 7 continues on normal level + code:D56D-47D0 + cheat + description:Start with 9 continues on normal level + code:DB6D-47D0 + cheat + description:Start with no continues on challenge level + code:DD6D-4700 + cheat + description:Start with 5 continues on challenge level + code:D96D-4700 + cheat + description:Start with 7 continues on challenge level + code:D56D-4700 + cheat + description:Start with 9 continues on challenge level + code:DB6D-4700 + cheat + description:Start with 1 heart on Children or Normal difficulty levels (don't pick challenge level) + code:DFCD-4FAF + cheat + description:Start with 4 hearts on Children or Normal difficulty levels, 2 on Challenge + code:D0CD-4FAF + cheat + description:Start with 5 hearts on Children or Normal difficulty levels, 3 on Challenge + code:D9CD-4FAF + +cartridge sha256:08d808e9c5851e4301a38a56b350a20ea9e3adbef51546e87e1785d691d0f2d5 + name:TKO Super Championship Boxing (USA) + cheat + description:Infinite punch meters - both players + code:4088-AF00 + cheat + description:Infinite punch meter - P1 + code:40BF-04DD + cheat + description:Infinite punch meter - P2 + code:40B0-076D + cheat + description:9 minutes per round + code:DB60-A7D4 + cheat + description:6 minutes per round + code:D160-A7D4 + cheat + description:1 minute per round + code:DF60-A7D4 + cheat + description:Allowed only 3 punches in punch meter - P1 + code:D7B4-0D6D+D765-A764 + cheat + description:Allowed only 3 punches in punch meter - P2 + code:D7B9-04DD+D765-A764 + +cartridge sha256:4f500da19dbb1557a7bc0ce14437098c1402478d573fb569303b81c011f86fbf + name:Tom and Jerry (USA) + cheat + description:Invincibility + code:7E14C8:33 + cheat + description:Infinite hearts + code:7E1242:04 + cheat + description:Infinite lives + code:7E14FC:09 + cheat + description:Infinite time + code:7E157A:63 + cheat + description:Infinite Cheese Bits + code:7E155E:63 + +cartridge sha256:ca9889f17f184b3d99a2eaaa82af73e366f03ed00313fdd369e5e023b208e788 + name:Top Gear (USA) + cheat + description:Always finish first + code:F6CE-0D6D + cheat + description:Infinite fuel - P1 + code:C225-6429 + cheat + description:Infinite fuel - P2 + code:C223-6D95 + cheat + description:Infinite nitro boosts - P1 + code:3C84-6D64 + cheat + description:Infinite nitro boosts - P2 + code:3C86-64A4 + cheat + description:Nitro boost lasts until end of race - P1 + code:C280-6FA4 + cheat + description:Nitro boost lasts until end of race - P2 + code:C288-6DD4 + cheat + description:Race in any country + code:6DB7-AFEA + cheat + description:Don't slow down offroad + code:C229-D4F1 + cheat + description:Don't slow down against obstacles + code:DD23-6499 + cheat + description:Don't slow down against cars + code:DD38-D7F9+DD38-DF29 + cheat + description:Start with 1/2 fuel + code:972B-0F64 + cheat + description:Start with 3/4 fuel + code:5A2B-0F64 + cheat + description:Start with no nitro boosts instead of 3 + code:DD63-6DDD + cheat + description:Start with 1 nitro boost + code:DF63-6DDD + cheat + description:Start with 2 nitro boosts + code:D463-6DDD + cheat + description:Start with 6 nitro boosts + code:D163-6DDD + cheat + description:Start with 9 nitro boosts + code:DB63-6DDD + +cartridge sha256:76b2702c4be8b668c1017f2817c280283c275eaa41535bf6ffa2b8d2220b68c6 + name:Top Gear 2 (USA) + cheat + description:Infinite nitro + code:A267-CD07 + cheat + description:Infinite nitros - P1 + code:C267-CD07 + cheat + description:Infinite nitros - P2 + code:C2CB-CF0F + cheat + description:Infinite fuel + code:C2B7-C404 + cheat + description:Infinite money + code:82C4-49EE + cheat + description:Fuel never runs out + code:C9BD-1F04 + cheat + description:Always finish first + code:632E-C767 + cheat + description:1st place gives $50,000 instead of $10,000 + code:7430-398E + cheat + description:2nd place gives $50,000 instead of $6,000 + code:7430-317E + cheat + description:3rd place gives $50,000 instead of $4,000 + code:7430-318E + cheat + description:4th place gives $50,000 instead of $3,000 + code:7430-357E + cheat + description:5th place gives $50,000 instead of $2,000 + code:7430-358E + cheat + description:6th place gives $50,000 instead of $1,000 + code:7439-307E + cheat + description:7th place gives $50,000 instead of $0 + code:7439-308E + cheat + description:8th place gives $50,000 instead of $0 + code:7439-397E + cheat + description:9th place gives $50,000 instead of $0 + code:7439-398E + cheat + description:10th place gives $50,000 instead of $0 + code:7439-317E + cheat + description:1st place is worth 20 points instead of 10 + code:F039-355A + cheat + description:2nd place is worth 20 points instead of 6 + code:F039-35EA + cheat + description:3rd place is worth 20 points instead of 4 + code:F031-305A + cheat + description:4th place is worth 20 points instead of 3 + code:F031-30EA + cheat + description:5th place is worth 20 points instead of 2 + code:F031-395A + cheat + description:6th place is worth 20 points instead of 1 + code:F031-39EA + cheat + description:7th place is worth 20 points instead of 0 + code:F031-315A + cheat + description:8th place is worth 20 points instead of 0 + code:F031-31EA + cheat + description:9th place is worth 20 points instead of 0 + code:F031-355A + cheat + description:10th place is worth 20 points instead of 0 + code:F031-35EA + cheat + description:Everything is free (must have enough to buy) + code:0BC4-49EE+52C3-3083 + cheat + description:2nd engine costs $1K instead of $30K + code:DFC5-405E + cheat + description:2nd engine costs $15K instead of $30K + code:DEC5-405E + cheat + description:3rd engine costs $1K instead of $50K + code:DFC5-40EE + cheat + description:3rd engine costs $25K instead of $50K + code:FBC5-40EE + cheat + description:4th engine costs $1K instead of $80K + code:DFC5-495E + cheat + description:4th engine costs $40K instead of $80K + code:46C5-495E + cheat + description:2nd wet tires are free + code:DDC5-415E + cheat + description:3rd wet tires are free + code:DDC5-41EE + cheat + description:4th wet tires are free + code:DDC5-455E + cheat + description:2nd dry tires are free + code:DDC6-405E + cheat + description:3rd dry tires are free + code:DDC6-40EE + cheat + description:4th dry tires are free + code:DDC6-495E + cheat + description:2nd gear box costs $1K instead of $10K + code:DFC6-415E + cheat + description:2nd gear box costs $5K instead of $10K + code:D9C6-415E + cheat + description:3rd gear box costs $1K instead of $30K + code:DFC6-41EE + cheat + description:3rd gear box costs $15K instead of $30K + code:DEC6-41EE + cheat + description:4th gear box costs $1K instead of $50K + code:DFC6-455E + cheat + description:4th gear box costs $25K instead of $50K + code:FBC6-455E + cheat + description:2nd nitro costs $1K instead of $5K + code:DFCB-405E + cheat + description:2nd nitro costs $2K instead of $5K + code:D4CB-405E + cheat + description:3rd nitro costs $1K instead of $15K + code:DFCB-40EE + cheat + description:3rd nitro costs $7K instead of $15K + code:D5CB-40EE + cheat + description:4th nitro costs $1K instead of $30K + code:DFCB-495E + cheat + description:4th nitro costs $15K instead of $30K + code:DECB-495E + cheat + description:2nd side armor costs $1K instead of $5K + code:DFCC-405E + cheat + description:2nd side armor costs $2K instead of $5K + code:D4CC-405E + cheat + description:3rd side armor costs $1K instead of $10K + code:DFCC-40EE + cheat + description:3rd side armor costs $5K instead of $10K + code:D9CC-40EE + cheat + description:4th side armor costs $1K instead of $20K + code:DFCC-495E + cheat + description:4th side armor costs $10K instead of $20K + code:DCCC-495E + cheat + description:2nd rear armor costs $1K instead of $5K + code:DFCC-415E + cheat + description:2nd rear armor costs $2K instead of $5K + code:D4CC-415E + cheat + description:3rd rear armor costs $1K instead of $10K + code:DFCC-41EE + cheat + description:3rd rear armor costs $5K instead of $10K + code:D9CC-41EE + cheat + description:4th rear armor costs $1K instead of $20K + code:DFCC-455E + cheat + description:4th rear armor costs $10K instead of $20K + code:DCCC-455E + cheat + description:2nd front armor costs $1K instead of $5K + code:DFC8-405E + cheat + description:2nd front armor costs $2K instead of $5K + code:D4C8-405E + cheat + description:3rd front armor costs $1K instead of $10K + code:DFC8-40EE + cheat + description:3rd front armor costs $5K instead of $10K + code:D9C8-40EE + cheat + description:4th front armor costs $1K instead of $20K + code:DFC8-495E + cheat + description:4th front armor costs $10K instead of $20K + code:DCC8-495E + cheat + description:Start with 0 nitros + code:DD2A-4D6D + cheat + description:Start with 2 nitros + code:D42A-4D6D + cheat + description:Start with 4 nitros + code:D02A-4D6D + cheat + description:Start with 8 nitros + code:D62A-4D6D + cheat + description:Start with 10 nitros + code:DC2A-4D6D + +cartridge sha256:6be49983976564f1fd9eff2f14f5bb41d3a0ff48573e39318088ecce286aca62 + name:Top Gear 3000 (USA) + cheat + description:Always finish first + code:C3EC-1700 + cheat + description:Infinite fuel + code:C936-1D6E + cheat + description:Infinite Nitro + code:A930-3463 + cheat + description:Infinite time + code:7E005B:00 + cheat + description:Infinite money + code:7E0390:75+7E038F:30 + +cartridge sha256:9bf884be5627d38f060ad7f3a61ea1fea1474d416e1d037d33014ca9d5205c1d + name:Total Carnage (USA) + cheat + description:Invincibility + code:6D27-441E + cheat + description:Infinite lives + code:C932-341E + cheat + description:Infinite Time Bombs + code:4029-3F12 + cheat + description:Shields last longer + code:D6B3-C764 + cheat + description:Shields don't last last as long + code:DDB3-C764 + cheat + description:Weapons don't run out until you die or change weapons + code:C930-4D4A + cheat + description:Join in with 2 lives and 3 Time Bombs + code:DFBC-47D4 + cheat + description:Join in with 10 lives and 9 Time Bombs + code:DBBC-47D4 + cheat + description:Start with 2 lives + code:DFC3-44D2 + cheat + description:Start with 10 lives + code:DBC3-44D2 + cheat + description:Start with 1 Time Bomb + code:DFCD-1DD2+40B5-1DD4 + cheat + description:Start with 9 Time Bombs + code:DBCD-1DD2 + cheat + description:Invincibility (alt) + code:8BDC39:80 + cheat + description:Infinite Shield - P1 + code:7E0463:01 + cheat + description:Infinite Shield - P2 + code:7E04AB:01 + cheat + description:Infinite lives - P1 + code:7E0480:09 + cheat + description:Infinite lives - P2 + code:7E04C8:09 + cheat + description:Infinite Time Bombs - P1 + code:7E0481:09 + cheat + description:Infinite Time Bombs - P2 + code:7E04C9:09 + cheat + description:Rapid Fire - P1 + code:7E0477:03 + cheat + description:Rapid Fire - P2 + code:7E04BF:03 + cheat + description:Always have Speed Shoes - P1 + code:7E045E:01+7E0468:01 + cheat + description:Always have Speed Shoes - P2 + code:7E04A6:01+7E04B0:01 + cheat + description:Have normal Gun - P1 + code:7E0476:00 + cheat + description:Have normal Gun - P2 + code:7E04BE:00 + cheat + description:Have Gatling Ball Gun - P1 + code:7E0476:0F + cheat + description:Have Gatling Ball Gun - P2 + code:7E04BE:0F + cheat + description:Have 3-way Gun - P1 + code:7E0476:1E + cheat + description:Have 3-way Gun - P2 + code:7E04BE:1E + cheat + description:Have Rocket Launcher - P1 + code:7E0476:2D + cheat + description:Have Rocket Launcher - P2 + code:7E04BE:2D + cheat + description:Have Blue Flame Thrower - P1 + code:7E0476:4C + cheat + description:Have Blue Flame Thrower - P2 + code:7E04BE:4C + cheat + description:Have Ball Launcher - P1 + code:7E0476:5A + cheat + description:Have Ball Launcher - P2 + code:7E04BE:5A + cheat + description:Have 150 Keys - P1 + code:7E0485:96 + cheat + description:Have 150 Keys - P2 + code:7E04CD:96 + cheat + description:Disable hurry up timer + code:7E00AF:00+7E00B0:00 + +cartridge sha256:345e795000e74f51704774edfc8049473461761a65eb47cab710caa29e09897b + name:Toy Story (USA) + cheat + description:Invincibility + code:C2B7-3914 + cheat + description:Infinite lives + code:CEB9-3914 + cheat + description:Start with 5 more lives than usual + code:D63D-C7BA + cheat + description:Start with 10 more lives than usual + code:DE3D-C7BA + cheat + description:Start with 25 more lives than usual + code:F33D-C7BA + cheat + description:Start with 50 more lives than usual + code:753D-C7BA + cheat + description:Start on level 2 + code:DFA6-3DC4 + cheat + description:Start on level 3 + code:D4A6-3DC4 + cheat + description:Start on level 4 + code:D7A6-3DC4 + cheat + description:Start on level 5 + code:D0A6-3DC4 + cheat + description:Start on level 6 + code:D9A6-3DC4 + cheat + description:Start on level 7 + code:D1A6-3DC4 + cheat + description:Start on level 8 + code:D5A6-3DC4 + cheat + description:Start on level 9 + code:D6A6-3DC4 + cheat + description:Start on level 10 + code:DBA6-3DC4 + cheat + description:Start on level 11 + code:DCA6-3DC4 + cheat + description:Start on level 12 + code:D8A6-3DC4 + cheat + description:Start on level 13 + code:DAA6-3DC4 + cheat + description:Start on level 14 + code:D2A6-3DC4 + cheat + description:Start on level 15 + code:D3A6-3DC4 + cheat + description:Start on level 16 + code:DEA6-3DC4 + cheat + description:Start on level 17 + code:FDA6-3DC4 + +cartridge sha256:7a6e5da46b026900fba4584a32ad40d940b9ecf9fccfb11f96a205a914014784 + name:Toys - Let the Toy Wars begin! (USA) + cheat + description:Infinite lives + code:C261-3D7B + cheat + description:Protection against most hazards + code:C2B6-3F5C+C2A4-3F8C + cheat + description:Fewer toys gained from floor boxes + code:DC85-4D34 + cheat + description:More toys gained from floor boxes + code:1EB5-4D34+EEB5-440F + cheat + description:Lots more toys gained from floor boxes + code:7985-4D34+EEB5-440F + cheat + description:Fewer toys gained from carousel + code:DC69-CF47 + cheat + description:More toys gained from carousel + code:7969-CF47 + cheat + description:Lots more toys gained from carousel + code:1E69-CF47 + cheat + description:Start with 1 life + code:DF2D-37AC + cheat + description:Start with 9 lives + code:DB2D-37AC + +cartridge sha256:4070a7702dc506a1ceb6f65b5c330b3a162df6f01735c8f206934fd47b810ed4 + name:Troddlers (USA) + cheat + description:Infinite time + code:C269-6464 + +cartridge sha256:5c7b28bb24bad697156ad444ff23bd15ad6744dbf9899b3cccf2aa36d559d825 + name:True Golf Classics - Pebble Beach Golf Links (USA) + cheat + description:All holes are par 4 + code:CE65-D763 + cheat + description:Course is generally harder (par goes down randomly for some holes) + code:8665-D7A3+D728-04DA + +cartridge sha256:72088194a65fc057f2910945a33d9f071682a4cecac8996f0bdabcdb5ef39962 + name:True Golf Classics - Waialae Country Club (USA) + cheat + description:Most holes have new par values + code:1C6A-67D9+D081-046A + cheat + description:All holes are par 5 + code:CE6A-64A9 + cheat + description:All holes are par 4 + code:CE6A-64A9+1A6A-67D9 + +cartridge sha256:47dd8ea2d12a6bb2a9774de1d492259fc4fb9f8ec7976383bbfd922532671f6b + name:True Lies (USA) + cheat + description:Infinite hand gun shells + code:7E00A5:0F + cheat + description:Infinite big gun shells + code:7E00A9:73 + cheat + description:Infinite Grenades on pick-up + code:7E00AB:03 + cheat + description:Infinite lives + code:7E1A57:05 + +cartridge sha256:8f62d014f513a7dcbca5aa76cbe476c3e4526100f34913af831bc05dab029bd1 + name:Tuff E Nuff (USA) + cheat + description:Invincibility + code:6D6A-14A0 + cheat + description:One hit kills + code:CB67-1FA9+EE67-1409 + cheat + description:Allows you to select same player vs. same player in a 1P vs. 2P game (must select 2nd player using right button) + code:DDAE-CDA5 + cheat + description:Allows you to select any character in a vs. computer game + code:EEA3-C7A1 + cheat + description:Syoh and Zazi's High Fist Thrust does more damage + code:F62E-46F3 + cheat + description:Syoh and Zazi's Sliding Heel Kick does more damage + code:4024-3BF3 + cheat + description:Syoh and Zazi's Big Head Thrust Punch does more damage - from close up only + code:402F-16FE + cheat + description:Syoh and Zazi's Big Head Thrust Punch does no damage + code:DD2F-16FE + cheat + description:Syoh and Zazi's Flying Side Kick does more damage - from close up only + code:4020-CCBE + cheat + description:Syoh and Zazi's Ball of Energy does more damage + code:4030-1B9A + cheat + description:Syoh and Zazi's Palm Hit Drop does more damage + code:4C2E-1B2E + cheat + description:Zazi's Blue Thunder Punch and Syoh's Dragon Blade does more damage + code:403D-3CFA + cheat + description:Kotono's Straight Line Slash does more damage + code:F322-3617 + cheat + description:Kotono's Sweeping Knee Kick does more damage + code:F623-CC17 + cheat + description:Kotono's Flying Swallow Double Drop does more damage + code:F339-3614 + cheat + description:Kotono's Flying Side Kick does more damage + code:F624-3C37 + cheat + description:Kotono's Flying Swallow Point Break does more damage + code:F332-3B44 + cheat + description:Kotono's Drawn Sword Mist Slash does more damage + code:F33E-1C3F + cheat + description:Kotono's Double Edge does more damage + code:F633-3B14 + cheat + description:Kotono's Special Kick does more damage + code:403B-364F + cheat + description:Vortz's Middle Kick does more damage + code:4C3B-4BC9 + cheat + description:Vortz's Low Kick does more damage + code:F630-4B49 + cheat + description:Vortz's Low Aerial Drop Kick does more damage + code:4C3C-3830 + cheat + description:Vortz's Big Double Sledge Hammer does more damage + code:4031-CB10 + cheat + description:Vortz's Diving Knee Pad does more damage + code:F33D-3C30 + cheat + description:Vortz's Diving Elbow does more damage + code:4C3B-CB30 + cheat + description:Vortz's Lightning Tackle does more damage + code:4C30-18C9 + cheat + description:Each round is 80 seconds + code:6D65-14D4 + cheat + description:Each round is 60 seconds + code:1D65-14D4 + cheat + description:Each round is 40 seconds + code:0D65-14D4 + cheat + description:Each round is 20 seconds + code:4D65-14D4 + cheat + description:Start with 1/4 health - P1 + code:F1CE-1FD9 + cheat + description:Start with 1/2 health - P1 + code:4ACE-1FD9 + cheat + description:Start with 3/4 health - P1 + code:04CE-1FD9 + cheat + description:Play stage 2 in story (brings you back to level 1) + code:D066-446F + cheat + description:Play stage 3 in story (brings you back to level 1) + code:D166-446F + cheat + description:Play stage 4 in story (brings you back to level 1) + code:D666-446F + cheat + description:Play stage 5 in story (brings you back to level 1) + code:DC66-446F + cheat + description:Play stage 6 in story (brings you back to level 1) + code:DA66-446F + cheat + description:Play stage 7 in story (brings you back to level 1) + code:D366-446F + cheat + description:Play stage 8 in story (brings you back to level 1) + code:FD66-446F + cheat + description:Play stage 9 in story (brings you back to level 1) + code:F466-446F + cheat + description:Play final stage in story (brings you back to level 1) + code:F066-446F + cheat + description:Infinite health - P1 + code:7E0FB7:58 + cheat + description:Infinite health - P2 + code:7E1010:58 + cheat + description:Infinite time + code:7E0B27:99 + cheat + description:Powered moves - P1 + code:7E0FB8:06 + cheat + description:Powered moves - P2 + code:7E1011:06 + +cartridge sha256:dbf11d4c77b9aa3416f687201d57d71a23bb8fb0b8fe5e9e8212db3fac036631 + name:Turbo Toons (Europe) + cheat + description:Start at Final Tournament (press Select at title screen, then in the topmost menu select the trophy) + code:7E1E44:04 + cheat + description:Infinite Turbo - Hong Kong Phooey + code:7E0C9E:E0 + +cartridge sha256:e4343c0fadc00ffdc3dc31345068d751eea5d639f826731f08cb81673d508c40 + name:Turn and Burn - No-Fly Zone (USA) + cheat + description:Infinite health + code:7E10DB:38 + cheat + description:Infinite fuel + code:7E1AC4:99+7E1AC5:74 + cheat + description:Infinite AIM-7 + code:7E05E9:FF + cheat + description:Infinite AIM-9 + code:7E05E7:FF + cheat + description:Infinite AIM-54 + code:7E05EB:BF + cheat + description:Infinite M-61 + code:7E05E5:FF + +cartridge sha256:c8187417a27a2f14ce2be35eebd0f112bd413b57d3589ae6d40b333bc21ba694 + name:TwinBee - Rainbow Bell Adventure (Japan) + cheat + description:Invincibility + code:7E1994:0A + cheat + description:Infinite health + code:7E02EC:03 + cheat + description:Infinite time + code:7E02CE:00 + +cartridge sha256:259c25d4613f97f5fa7992900fb583625d7fb912c7ae09fa9def2e682834dc9f + name:Twisted Tales of Spike McFang, The (USA) + cheat + description:Invincibility + code:CEA5-34DF + cheat + description:Infinite money + code:C260-3766 + cheat + description:Infinite HP + code:7E4CE0:FF+7E4CE1:4F + cheat + description:Infinite money (alt) + code:7E0A57:E7+7E0A58:03 + cheat + description:Start with max hit level + code:7E4DA0:30 + +cartridge sha256:0c169bbb4e6dcb3b23e7b3b05e3bddd590f45cecd803a4e5a7118fd606158b23 + name:U.F.O. Kamen Yakisoban - Kettler no Kuroi Inbou (Japan) + cheat + description:Infinite health + code:7E0175:28 + cheat + description:Infinite lives + code:7E0176:07 + cheat + description:Infinite time + code:7E0AF3:B0 + +cartridge sha256:0b155a54b6134601fc0791252a63ca73efd522667c3d6fd7a44f5b3c500039d7 + name:U.N. Squadron (USA) + cheat + description:Invincibility + code:DD37-D76F+6D34-07FF + cheat + description:Infinite lives + code:A923-DDDF+A923-DD6F + cheat + description:Infinite continues + code:AD2C-0D0F + cheat + description:Infinite shots for all weapons + code:2238-A72F + cheat + description:Infinite money + code:A98E-07D4 + cheat + description:Hit anywhere + code:1830-A79F+3435-A4AD+343F-ADDD+4D35-A7DD+4D3F-AD0D + cheat + description:Shoot without stopping + code:C931-07BF + cheat + description:Max power on first pellet pick-up + code:DDE5-A794 + cheat + description:Start with no money + code:DD80-0DAD + cheat + description:Start with $9,000 + code:BD80-0DAD + cheat + description:Start with 1 life and 1 continue + code:DF89-040D + cheat + description:Start with 5 lives and 5 continues + code:D989-040D + cheat + description:Start with 9 lives and 9 continues + code:DB89-040D + cheat + description:Invincibility (alt) + code:7E00F7:01 + cheat + description:Infinite health + code:7E1008:08 + cheat + description:Infinite shots for all weapons (alt) + code:04E7BF:DD + cheat + description:Infinite money (alt) + code:00B9FC:C5 + cheat + description:Infinite lives (alt) + code:00D4E0:C5+00D4E2:C5 + cheat + description:Infinite continues (alt) + code:7E00F3:03 + cheat + description:Enable all 6 jets selectable for free + code:7E00F6:3F + cheat + description:Loads of money - P1 + code:7E00D9:01 + cheat + description:Infinite Conventional Bombs + code:7E00DD:31 + cheat + description:Infinite Mega Crush Weapons + code:7E00DD:02 + cheat + description:Infinite Thunder Laser + code:7E00DD:14 + +cartridge sha256:094555d5720158ee60c9d5ab9a13110192db5ebf0f6cf69abbb59a00bc470345 + name:Ultima - Runes of Virtue II (USA) + cheat + description:Infinite energy - makes enemies invincible too (Shamino in easy mode) + code:C2C3-47A7 + cheat + description:Stars never recharge (Shamino in easy mode) + code:CB3B-1464 + cheat + description:Almost infinite stars (Shamino in easy mode) + code:CB67-3764 + cheat + description:Start with a stronger armor (Shamino in easy mode) + code:CB6C-4D68+4A6C-4DA8 + cheat + description:Start with less stars (Shamino in easy mode) + code:DF69-4FD8 + cheat + description:Start with Crossbow instead of the Axe (Shamino in easy mode) + code:7760-47D8 + cheat + description:Start with Longbow instead of the Axe (Shamino in easy mode) + code:7060-47D8 + cheat + description:Start with Fireball wand instead of the Axe (Shamino in easy mode) + code:7560-47D8 + cheat + description:Start with Boomerang instead of the Axe (Shamino in easy mode) + code:7660-47D8 + cheat + description:Start with Shuriken instead of the Axe (Shamino in easy mode) + code:4E60-47D8 + cheat + description:Start with 30 intelligence (Shamino in easy mode) + code:7D60-4768 + cheat + description:Start with 5 intelligence (Shamino in easy mode) + code:D960-4768 + +cartridge sha256:11659bd8dd620d50400d16042aeb2d0ddb00c7183fc1ecb95b1a34f07db0431b + name:Ultima - The False Prophet (USA) + cheat + description:Infinite time + code:89C8-D76D + cheat + description:Infinite Gold + code:7E014B:FF+7E014C:FF + cheat + description:Max Karma + code:7E014A:64 + cheat + description:Infinite Energy (Avatar) + code:7E8603:F0 + cheat + description:Infinite Energy (Shamino) + code:7E8607:F0 + cheat + description:Infinite Energy (Iolo) + code:7E8609:F0 + cheat + description:Infinite Energy (Dupre) + code:7E8605:F0 + cheat + description:Infinite MP (Avatar) + code:7E8C02:3C + cheat + description:Infinite MP (Shamino) + code:7E8C06:3C + cheat + description:Infinite MP (Iolo) + code:7E8C08:3C + cheat + description:Infinite MP (Dupre) + code:7E8C04:3C + cheat + description:Infinite Energy (Jaana) + code:7E867D:F0 + cheat + description:Infinite Energy (Gwenno) + code:7E8685:F0 + cheat + description:Infinite Energy (Seggal) + code:7E8741:F0 + cheat + description:Infinite Energy (Katrina) + code:7E86C3:F0 + cheat + description:Infinite Energy (Sentri) + code:7E874D:F0 + cheat + description:Infinite Energy (Leodon) + code:7E86E3:F0 + cheat + description:Infinite Energy (Gorn) + code:7E8757:F0 + cheat + description:Infinite Energy (Leonna) + code:7E86E5:F0 + cheat + description:Infinite Energy (Blaine) + code:7E870F:F0 + cheat + description:Infinite Energy (Beh Lem) + code:7E875D:F0 + cheat + description:Infinite Energy (Julia) + code:7E8687:F0 + cheat + description:Infinite MP (Gwenno) + code:7E8C84:3C + cheat + description:Infinite MP (Jaana) + code:7E8C7C:3C + cheat + description:Infinite MP (Julia) + code:7E8C86:3C + cheat + description:Infinite MP (Katrina) + code:7E8CC2:3C + cheat + description:Infinite MP (Seggal) + code:7E8D40:3C + cheat + description:Infinite MP (Sentri) + code:7E8D4C:3C + cheat + description:Infinite MP (Gorn) + code:7E8D56:3C + cheat + description:Infinite MP (Leodon) + code:7E8CE2:3C + cheat + description:Infinite MP (Leonna) + code:7E8CE4:3C + cheat + description:Infinite MP (Blaine) + code:7E8D0E:3C + cheat + description:Infinite MP (Beh Lem) + code:7E8D5C:3C + cheat + description:Max Experience (Gwenno) + code:7E8884:0F+7E8885:27 + cheat + description:Max Experience (Seggal) + code:7E8940:0F+7E8941:27 + cheat + description:Max Experience (Sentri) + code:7E894C:0F+7E894D:27 + cheat + description:Max Experience (Julia) + code:7E8886:0F+7E8887:27 + cheat + description:Max Experience (Katrina) + code:7E88C2:0F+7E88C3:27 + cheat + description:Max Experience (Jaana) + code:7E887C:0F+7E887D:27 + cheat + description:Max Experience (Blaine) + code:7E890E:0F+7E890F:27 + cheat + description:Max Experience (Beh Lem) + code:7E895C:0F+7E895D:27 + cheat + description:Max Experience (Gorn) + code:7E8956:0F+7E8957:27 + cheat + description:Max Experience (Leonna) + code:7E88E4:0F+7E88E5:27 + cheat + description:Max Experience (Leodon) + code:7E88E2:0F+7E88E3:27 + cheat + description:Max Experience (Avatar) + code:7E8802:0F+7E8803:27 + cheat + description:Max Experience (Dupre) + code:7E8804:0F+7E8805:27 + cheat + description:Max Experience (Shamino) + code:7E8806:0F+7E8807:27 + cheat + description:Max Experience (Iolo) + code:7E8808:0F+7E8809:27 + +cartridge sha256:a31af0e39afb55bbc92a5543b504327fbe7e8cd0a5e08626976bed7b65376737 + name:Ultima - The Black Gate (USA) + cheat + description:Infinite health + code:7E1CFA:E4 + cheat + description:Infinite Keys + code:7E1CFC:63 + cheat + description:65,000 Exp + code:7E1D00:E8+7E1D01:FD + cheat + description:65,000 Gold + code:7E1CE6:E8+7E1CE7:FD + +cartridge sha256:78bf82963cded9162e25035053c8b1a9f760748ff0beacc230d005204992737d + name:Ultimate Fighter (USA) + cheat + description:Invincibility (except projectiles) - P1 + code:DD84-342B + cheat + description:Invincibility (except projectiles) - P2 + code:DD87-17BB + cheat + description:Infinite health + code:7E1402:C8 + cheat + description:Hit anywhere (except projectiles) - P1 + code:6D87-179B + cheat + description:Hit anywhere (except projectiles) - P2 + code:6D84-34BB + cheat + description:Infinite lives - story mode + code:7E09C9:63 + cheat + description:Start with 60,000 score + code:7E09B9:60+7E09BA:EA + +cartridge sha256:cb2fdfce61858063bf4c9da4228381c3ec3abe423f4d378cddd174ae4adb261e + name:Ultimate Mortal Kombat 3 (USA) + cheat + description:Invincibility (throws damage CPU) + code:3D3C-C79F+6D33-3DBF+7D38-CDFF+DF3C-C7BF+E138-CD9F + cheat + description:Infinite health - P1 + code:C172-B27B + cheat + description:Infinite health - P2 + code:C17B-F37C + cheat + description:Infinite run - P1 + code:7D72-B37B + cheat + description:Infinite run - P2 + code:7D7B-FE7C + cheat + description:Max fatality time + code:DF73-2A7C + cheat + description:Hit anywhere - P1 + code:46EB-3FB7+84EB-3497+BD3C-C49F+D4EB-3D97+DDEB-3DB7+D7EB-3FF7+EDEB-3D27+EE3C-C4BF+0AEB-3F97+0AEB-34F7+31EB-34B7+35EB-3F27+3DEB-3DF7 + cheat + description:Blank versus screen + code:EE37-CF02 + cheat + description:Scrambled backgrounds + code:C2B1-1FBF + cheat + description:Black background (wait for title screen to appear before proceeding) + code:C2B6-1FFF + cheat + description:First round / one button fatalities + code:7E3BE3:01 + +cartridge sha256:e9fae4c2e171a1fc4f2bd800abd9e42750aaf7a4db9e40c5b9142e15029500bd + name:Ultraman (USA) + cheat + description:Infinite health + code:4ABA-67DF + cheat + description:Infinite health - P1 + code:7E07EE:53 + cheat + description:No health - P2 + code:7E084E:00 + cheat + description:Infinite chances + code:4024-6FA7 + cheat + description:Infinite time (seconds) + code:7E00A3:63 + cheat + description:Infinite time (minutes) + code:7E00A4:09 + cheat + description:Quicker health replenishment + code:DD8F-DF0D + cheat + description:Less health replenishment for enemies + code:3C80-DDDD + cheat + description:Weaker punch + code:DFAC-D76E + cheat + description:Weaker kick + code:DFA8-DDDE + cheat + description:9 minutes per stage + code:DBB4-DD6D + cheat + description:6 minutes per stage + code:D1B4-DD6D + cheat + description:2 minutes per stage + code:D4B4-DD6D + cheat + description:Start with 1 chance + code:DD6C-0467 + cheat + description:Start with 6 chances + code:D96C-0467 + cheat + description:Start with 9 chances + code:DB6C-0467 + cheat + description:Start on stage 1 - Gudis + code:7E00F8:00 + cheat + description:Start on stage 2 - Bogun + code:7E00F8:01 + cheat + description:Start on stage 3 - Degola + code:7E00F8:02 + cheat + description:Start on stage 4 - Barrangas + code:7E00F8:03 + cheat + description:Start on stage 5 - Gudis II + code:7E00F8:04 + cheat + description:Start on stage 6 - Zebokon + code:7E00F8:05 + cheat + description:Start on stage 7 - Majaba + code:7E00F8:06 + cheat + description:Start on stage 8 - Kodalar + code:7E00F8:07 + cheat + description:Start on final stage - Kilazee + code:7E00F8:08 + +cartridge sha256:794152fc6f55cb15a0b203fa645ac9fa314a293da999d8ec8b3dda080434d175 + name:Uncharted Waters (USA) + cheat + description:Start with 65,000 Gold + code:E2EF-D7D5 + +cartridge sha256:64bc4707f422661a66618088887e2363a5f896ea683c58984fffd96dd21ab5f0 + name:New Horizons (USA) + cheat + description:Joao starts with 156 Leadership instead of 78 + code:BA6D-873D + cheat + description:Joao starts with 250 Leadership instead of 78 + code:EC6D-873D + cheat + description:Joao starts with 150 Seamanship instead of 75 + code:B16F-8D4D + cheat + description:Joao starts with 250 Seamanship instead of 75 + code:EC6F-8D4D + cheat + description:Joao starts with 146 Knowledge instead of 73 + code:B46F-8D1D + cheat + description:Joao starts with 250 Knowledge instead of 73 + code:EC6F-8D1D + cheat + description:Joao starts with 170 Intuition instead of 85 + code:CC6F-8DCD + cheat + description:Joao starts with 250 Intuition instead of 85 + code:EC6F-8DCD + cheat + description:Joao starts with 164 Courage instead of 82 + code:C06F-8D3D + cheat + description:Joao starts with 250 Courage instead of 82 + code:EC6F-8D3D + cheat + description:Joao starts with 164 Dueling Skill instead of 82 + code:C06F-8F4D + cheat + description:Joao starts with 250 Dueling Skill instead of 82 + code:EC6F-8F4D + cheat + description:Joao starts with 178 Likability (Charm) instead of 89 + code:846F-8F1D + cheat + description:Joao starts with 250 Likability (Charm) instead of 89 + code:EC6F-8F1D + cheat + description:Catalina starts with 24 Sail Level instead of 8 + code:F660-841D + cheat + description:Catalina starts with 80 Sail Level instead of 8 + code:9D60-841D + cheat + description:Catalina starts with 30 Battle Level instead of 10 + code:F360-84CD + cheat + description:Catalina starts with 100 Battle Level instead of 10 + code:1060-84CD + cheat + description:Catalina starts with 160 Leadership instead of 80 + code:CD60-8D1D + cheat + description:Catalina starts with 250 Leadership instead of 80 + code:EC60-8D1D + cheat + description:Catalina starts with 158 Seamanship instead of 79 + code:B360-8DCD + cheat + description:Catalina starts with 250 Seamanship instead of 79 + code:EC60-8DCD + cheat + description:Catalina starts with 130 Knowledge instead of 65 + code:6460-8D3D + cheat + description:Catalina starts with 250 Knowledge instead of 65 + code:EC60-8D3D + cheat + description:Catalina starts with 104 Intuition instead of 52 + code:1660-8F4D + cheat + description:Catalina starts with 250 Intuition instead of 52 + code:EC60-8F4D + cheat + description:Catalina starts with 172 Courage instead of 86 + code:CA60-8F1D + cheat + description:Catalina starts with 250 Courage instead of 86 + code:EC60-8F1D + cheat + description:Catalina starts with 184 Dueling Skill instead of 92 + code:8660-8FCD + cheat + description:Catalina starts with 250 Dueling Skill instead of 92 + code:EC60-8FCD + cheat + description:Catalina starts with 190 Likability instead of 95 + code:8360-8F3D + cheat + description:Catalina starts with 250 Likability instead of 95 + code:EC60-8F3D + cheat + description:Ali Vezas starts with 160 Leadership (instead of 80) + code:CD6D-E41D + cheat + description:Ali Vezas starts with 250 Leadership (instead of 80) + code:EC6D-E41D + cheat + description:Ali Vezas starts with 172 Seamanship (instead of 86) + code:CA6D-E4CD + cheat + description:Ali Vezas starts with 250 Seamanship (instead of 86) + code:EC6D-E4CD + cheat + description:Ali Vezas starts with 168 Knowledge (instead of 84) + code:C66D-E43D + cheat + description:Ali Vezas starts with 250 Knowledge (instead of 84) + code:EC6D-E43D + cheat + description:Ali Vezas starts with 130 Intuition (instead of 65) + code:646D-E74D + cheat + description:Ali Vezas starts with 250 Intuition (instead of 65) + code:EC6D-E74D + cheat + description:Ali Vezas starts with 106 Courage (instead of 53) + code:1C6D-E71D + cheat + description:Ali Vezas starts with 250 Courage (instead of 53) + code:EC6D-E71D + cheat + description:Ali Vezas starts with 84 Dueling Skill (instead of 42) + code:906D-E7CD + cheat + description:Ali Vezas starts with 250 Dueling Skill (instead of 42) + code:EC6D-E7CD + cheat + description:Ali Vezas starts with 160 Likability (instead of 80) + code:CD6D-E73D + cheat + description:Ali Vezas starts with 250 Likability (instead of 80) + code:EC6D-E73D + cheat + description:Start a new game with $250 Gold + code:EC63-543D + cheat + description:Start a new game with $1,024 Gold + code:D063-574D + cheat + description:Start a new game with $9,984 Gold + code:4563-574D + cheat + description:Start a new game with $64,000 Gold + code:EC63-574D + cheat + description:Start a new game with $196,608 Gold + code:D763-571D + cheat + description:Start a new game with over one Million Gold + code:FD63-571D + cheat + description:No Storms + code:7E201B:80 + cheat + description:1 D.a.s., No Scurvy + code:7E415E:00 + cheat + description:Joao's Steering Power + code:7E2620:FF + cheat + description:Joao's Battle Power + code:7E2621:FF + cheat + description:Ali's Steering Power + code:7E271A:FF + cheat + description:Ali's Battle Power + code:7E271B:FF + cheat + description:Pietro's Steering Power + code:7E26E8:FF + cheat + description:Pietro's Battle Power + code:7E26E9:FF + cheat + description:Max Adventure For Joao + code:7E25A4:50+7E25A5:C3 + cheat + description:100% Popular In Portugal + code:7E25A6:C8 + cheat + description:100% Popular In Spain + code:7E25A7:C8 + cheat + description:100% Popular In Turkey + code:7E25A8:C8 + cheat + description:100% Popular In England + code:7E25A9:C8 + cheat + description:100% Popular In Italy + code:7E25AA:C8 + cheat + description:100% Popular In Holland + code:7E25AB:C8 + cheat + description:S.1 Infinite Water + code:7E661A:7F + cheat + description:S.2 Infinite Water + code:7E6638:7F + cheat + description:S.3 Infinite Water + code:7E6656:7F + cheat + description:S.4 Infinite Water + code:7E6674:7F + cheat + description:S.5 Infinite Water + code:7E6692:7F + cheat + description:S.6 Infinite Water + code:7E66B0:7F + cheat + description:S.7 Infinite Water + code:7E66CE:7F + cheat + description:S.8 Infinite Water + code:7E66EC:7F + cheat + description:S.9 Infinite Water + code:7E670A:7F + cheat + description:S.10 Infinite Water + code:7E6728:7F + cheat + description:S.11 Infinite Water + code:7E6746:7F + cheat + description:S.12 Infinite Water + code:7E6764:7F + cheat + description:S.13 Infinite Water + code:7E6782:7F + cheat + description:S.14 Infinite Water + code:7E67A0:7F + cheat + description:S.15 Infinite Water + code:7E67BE:7F + cheat + description:S.16 Infinite Water + code:7E67DC:7F + cheat + description:S.17 Infinite Water + code:7E67FA:7F + cheat + description:S.1 Infinite Food + code:7E661C:7F + cheat + description:S.2 Infinite Food + code:7E663A:7F + cheat + description:S.3 Infinite Food + code:7E6658:7F + cheat + description:S.4 Infinite Food + code:7E6676:7F + cheat + description:S.5 Infinite Food + code:7E6694:7F + cheat + description:S.6 Infinite Food + code:7E66B2:7F + cheat + description:S.7 Infinite Food + code:7E66D0:7F + cheat + description:S.8 Infinite Food + code:7E66EE:7F + cheat + description:S.9 Infinite Food + code:7E670C:7F + cheat + description:S.10 Infinite Food + code:7E672A:7F + cheat + description:S.11 Infinite Food + code:7E6748:7F + cheat + description:S.12 Infinite Food + code:7E6766:7F + cheat + description:S.13 Infinite Food + code:7E6784:7F + cheat + description:S.14 Infinite Food + code:7E67A2:7F + cheat + description:S.15 Infinite Food + code:7E67C0:7F + cheat + description:S.16 Infinite Food + code:7E67D7:7F + cheat + description:S.17 Infinite Food + code:7E67FC:7F + cheat + description:S.1 Infinite Crew (Ship HP) + code:7E41E7:22 + cheat + description:S.2 Infinite Crew (Ship HP) + code:7E41F0:22 + cheat + description:S.3 Infinite Crew (Ship HP) + code:7E41F9:22 + cheat + description:S.4 Infinite Crew (Ship HP) + code:7E4202:22 + cheat + description:S.5 Infinite Crew (Ship HP) + code:7E420B:22 + cheat + description:S.6 Infinite Crew (Ship HP) + code:7E4214:22 + cheat + description:S.7 Infinite Crew (Ship HP) + code:7E421D:22 + cheat + description:S.8 Infinite Crew (Ship HP) + code:7E4226:22 + cheat + description:S.9 Infinite Crew (Ship HP) + code:7E422F:22 + cheat + description:S.10 Infinite Crew (Ship HP) + code:7E4238:22 + cheat + description:S.11 Infinite Crew (Ship HP) + code:7E4241:22 + cheat + description:S.12 Infinite Crew (Ship HP) + code:7E424A:22 + cheat + description:S.13 Infinite Crew (Ship HP) + code:7E4253:22 + cheat + description:S.14 Infinite Crew (Ship HP) + code:7E425C:22 + cheat + description:S.15 Infinite Crew (Ship HP) + code:7E4265:22 + cheat + description:S.16 Infinite Crew (Ship HP) + code:7E426E:22 + cheat + description:S.17 Infinite Crew (Ship HP) + code:7E4277:22 + cheat + description:S.1 Speedy + code:7E41EB:FF + cheat + description:S.2 Speedy + code:7E41F4:FF + cheat + description:S.3 Speedy + code:7E41FD:FF + cheat + description:S.4 Speedy + code:7E4206:FF + cheat + description:S.5 Speedy + code:7E420F:FF + cheat + description:S.6 Speedy + code:7E4218:FF + cheat + description:S.7 Speedy + code:7E4221:FF + cheat + description:S.8 Speedy + code:7E422A:FF + cheat + description:S.9 Speedy + code:7E4233:FF + cheat + description:S.10 Speedy + code:7E423C:FF + cheat + description:S.11 Speedy + code:7E4245:FF + cheat + description:S.12 Speedy + code:7E424E:FF + cheat + description:S.13 Speedy + code:7E4257:FF + cheat + description:S.14 Speedy + code:7E4260:FF + cheat + description:S.15 Speedy + code:7E4269:FF + +cartridge sha256:cb8073cf95eace56ba4324a2106164fa540900c2de083aff490c4afe91ae95f7 + name:Undercover Cops (Japan) + cheat + description:Infinite health + code:C266-57D7 + cheat + description:Infinite lives + code:C2E3-77A7 + cheat + description:Infinite time + code:C2D4-8F61 + cheat + description:Infinite continues + code:C203-E4A1 + cheat + description:Hit anywhere + code:6D2E-770F+732E-776F + cheat + description:one hit kils + code:DD20-546F + cheat + description:Infinite health (alt) + code:7E0C36:E8+7E0D36:E8 + cheat + description:Infinite lives (alt) + code:7E0110:0A + cheat + description:Infinite time (alt) + code:7E016C:64 + cheat + description:Infinite continues (alt) + code:7E0112:09 + +cartridge sha256:859ec99fdc25dd9b239d9085bf656e4f49c93a32faa5bb248da83efd68ebd478 + name:Uniracers (USA) + cheat + description:No timer in almost every race + code:3CA4-3F69 + cheat + description:No timer in almost every race (alt) + code:81C726:EA + +cartridge sha256:cf587d72123277f72f658829f1efdb4f52f3bec012a316c1fea25e1f9c292575 + name:Universal Soldier (USA) (Proto) + cheat + description:Infinite health + code:C2E3-0F6F + cheat + description:Infinite lines + code:C26D-0F09 + +cartridge sha256:ecefb4117a6aae117e033c8cc07f0db2797d6be93dd5cdcefc23692a21fae02e + name:Untouchables, The (USA) + cheat + description:Infinite lives + code:7E1B86:09 + cheat + description:Infinite ammo + code:7E1B89:63 + +cartridge sha256:8b3ff3a0ca1c85facb71f42886291dfa916ca74245702c79ca8ae635f28bc864 + name:Ushio to Tora (Japan) + cheat + description:Invincibility + code:7E0222:26 + cheat + description:Infinite health + code:7E021E:40 + cheat + description:Infinite lives + code:7E0608:63 + +cartridge sha256:2500d6c846c78bcb729f15535bf2b852a120411891cabaaaa6fc407906d0214e + name:Utopia - The Creation of a Nation (USA) + cheat + description:1-day buildings + code:DDBB-6D0F + cheat + description:Have 655360000 cash (enable while on map then disable) + code:CBC3-040F+69C3-07DF+5FC3-070F + +cartridge sha256:78bf9d79fb2ff3f9d03ecc1176d070e53ddaca2c6b0cda69e74c19a4e50b195b + name:Vegas Stakes (USA) + cheat + description:Only $34,464 needed for highroller status (glitchy) + code:DDA0-A4AD + cheat + description:Only $38,527 needed to win the game instead of $10 million + code:DDA8-640D + cheat + description:Only $5,019,263 needed to win the game + code:0AA8-640D + cheat + description:Player wins pushes in Blackjack + code:DD87-04EC + cheat + description:Dealer wins pushes in Blackjack + code:DF87-04EC + cheat + description:Start with $488 - P1 + code:DF81-A4D7 + cheat + description:Start with $488 - P2 + code:DF8B-AF07 + cheat + description:Start with $488 - P3 + code:DF8A-AD67 + cheat + description:Start with $488 - P4 + code:DF83-A7A7 + cheat + description:Start with $2280 - P1 + code:D681-A4D7 + cheat + description:Start with $2280 - P2 + code:D68B-AF07 + cheat + description:Start with $2280 - P3 + code:D68A-AD67 + cheat + description:Start with $2280 - P4 + code:D683-A7A7 + cheat + description:Start with $9960 - P1 + code:4181-A4D7 + cheat + description:Start with $9960 - P2 + code:418B-AF07 + cheat + description:Start with $9960 - P3 + code:418A-AD67 + cheat + description:Start with $9960 - P4 + code:4183-A7A7 + cheat + description:Start with $132,072 (highroller status) - P1 + code:D481-A707 + cheat + description:Start with $132,072 - P2 + code:D48B-A467 + cheat + description:Start with $132,072 - P3 + code:D48A-AFA7 + cheat + description:Start with $132,072 - P4 + code:D48E-AFD7 + +cartridge sha256:b72fbbfe737eff49f59dcef9f13b963e50c5bc322d7eb0e7b4c25f3a71aa0815 + name:Venom-Spider-Man - Separation Anxiety (USA) + cheat + description:Infinite health - P1 + code:8935-1FD6 + cheat + description:Infinite lives - P1 + code:5BC9-1FD9 + cheat + description:Infinite health - P2 + code:7E0A5A:99 + cheat + description:Infinite lives - P2 + code:7E1A8B:06 + cheat + description:Infinite Captain America hero icons + code:7E1BC5:05 + cheat + description:Infinite Ghost Rider hero icons + code:7E1BC7:05 + cheat + description:Infinite Daredevil hero icons + code:7E1BC9:05 + cheat + description:Infinite Hawkeye hero icons + code:7E1BCB:05 + cheat + description:Infinite Vault Guardsman hero icon + code:7E1BCD:05 + cheat + description:Use helpers multiple times + code:7E1BC4:00 + cheat + description:Hard mode enabled + code:7E1C3C:FF + cheat + description:Stage select enabled + code:7E1C40:FF + cheat + description:Hit anywhere + code:40C4-3F0C + cheat + description:One hit kills for most enemies and some bosses + code:7E0AD3:00+7E0B4C:00+7E0BC5:00+7E0C3E:00+7E0CB7:00 + +cartridge sha256:29c28188234ddbb0b72fc84253dcd3514e23034779c773db8097b073b73390c8 + name:Virtual Bart (USA) + cheat + description:Infinite time + code:C239-37AF + cheat + description:Infinite health and Tomatoes (Baby Bart takes damage when he walks on grass) + code:053E-44A4 + cheat + description:Infinite continues + code:C238-44A4 + cheat + description:Infinite lives + code:C23C-4704 + +cartridge sha256:41b5561de9e4984276e52987ea46c5f4fa8526d8141c70c738875a9eb9fe9d70 + name:Vortex (USA) (En,Es) + cheat + description:Infinite health + code:7E039A:3D+7E118B:32 + cheat + description:Infinite lives + code:7E120E:0A + cheat + description:Infinite Missiles + code:7E1DE4:63 + cheat + description:Infinite Rockets + code:7E1DE5:63 + cheat + description:Infinite Cannon + code:7E1DE6:63 + cheat + description:Infinite Blasts + code:7E121A:63 + +cartridge sha256:8579dd352d20589072ed5c026bde7adadd6229d18a022e7cb47cf5602b54015e + name:Warlock (USA) + cheat + description:Invincibility + code:CBBE-A4D7+33CC-DD64 + cheat + description:Infinite items on pick-up + code:3C65-D46C + cheat + description:Enter the password GRKKL to go to the final battle + code:7FAC-DD2F + cheat + description:Enter the password GRKKL to go to the ending + code:74AC-DD2F + +cartridge sha256:56ba3d585bf6b701e342d86a0bd164ab0a97dfbd5df46b3a964506842633459c + name:Wayne's World (USA) + cheat + description:Infinite Worthiness + code:C2BC-D728 + cheat + description:Infinite lives + code:C28F-0704 + cheat + description:Worthiness item worth nothing on pick-up + code:C2B5-04BC + cheat + description:Schwing item worth nothing on pick-up + code:C2B0-04BC + cheat + description:Infinite Schwings if you have at least 1 + code:C269-0DBB + cheat + description:Invincibility lasts longer after getting hit + code:EEB3-DF98 + cheat + description:Invincibility does not last as long after getting hit + code:FDB3-DF98 + cheat + description:Invincibility lasts forever after getting hit (Wayne blinks) + code:82BB-0FF8 + cheat + description:Invincibility (Wayne doesn't blink) + code:6DBB-D428 + cheat + description:Amp power-up worth nothing on pick-up + code:DDBB-D4BC + cheat + description:Amp power-up gives you Distortion-type chords + code:D0BB-D4BC + cheat + description:Amp power-up gives you Mega-Amp-type chords + code:D4BB-D4BC + cheat + description:Amp power-up gives you Chorus-type chords + code:D7BB-D4BC + cheat + description:Amp power-up gives you Homer-type chords + code:D9BB-D4BC + cheat + description:Distortion power-up worth nothing on pick-up + code:DDBD-0DFC + cheat + description:Distortion power-up gives you Amp-type chords + code:DFBD-0DFC + cheat + description:Distortion power-up gives you Mega-Amp-type chords + code:D4BD-0DFC + cheat + description:Distortion power-up gives you Chorus-type-chords + code:D7BD-0DFC + cheat + description:Distortion power-up gives you Homer-type-chords + code:D9BD-0DFC + cheat + description:Heart item worth nothing + code:C2BB-079C + cheat + description:Start with 1 life + code:DFAA-A764 + cheat + description:Start with 3 lives + code:D7AA-A764 + cheat + description:Start with 7 lives + code:D5AA-A764 + cheat + description:Start with 9 lives + code:DBAA-A764 + cheat + description:Start with 1 Worthiness point + code:DF87-0764 + cheat + description:Start with 3 Worthiness points + code:D787-0764 + cheat + description:Start with 7 Worthiness points + code:D587-0764 + cheat + description:Start with 9 Worthiness points + code:DB87-0764 + +cartridge sha256:0b1ba31ae95b61d7d9a0f5509b5836fff84f60915802e3b3ba1170a5c50a4b71 + name:WeaponLord (USA) + cheat + description:Infinite health - P1 + code:5C1A-7B3B + cheat + description:Infinite health - both players + code:C21A-7BCB + cheat + description:Infinite time + code:C204-56C5 + cheat + description:Hit anywhere - both players + code:6D5A-EBC0+6D5D-7C19+DD5A-E6C0+DD5D-7639 + cheat + description:Play as Zarak in story mode + code:D13C-561B + +cartridge sha256:e931c3c08f20f78e3a43ad92d16eb472be619abaa17c2d8e2b0fcd5d05dbd74d + name:We're Back! - A Dinosaur's Story (USA) + cheat + description:Infinite health + code:C2B2-C54B + cheat + description:Infinite lives + code:C265-41CB + cheat + description:Infinite Vorb on pick-up for the rest of the stage + code:C2C6-C148 + cheat + description:Infinite Elsa on pick-up for the rest of the stage + code:C2C1-301B + cheat + description:Infinite Dweebs on pick-up for the rest of the stage + code:C2C5-4038 + cheat + description:Infinite Woog on pick-up + code:C2C1-194C + cheat + description:Super-jump + code:FEB1-C14C + cheat + description:Mega-jump + code:4EB1-C14C + cheat + description:Less grain to get for tail swipe + code:D76D-111C + cheat + description:Less grain to get for stomp + code:DB6D-103C + cheat + description:Start with less health + code:D48B-C110+D466-49CC + cheat + description:Start with 9 lives + code:DB8B-C030 + cheat + description:Start with 6 lives + code:D18B-C030 + cheat + description:Start with 1 life + code:DF8B-C030 + cheat + description:Start on Manhattan - Zone 2 + code:CB85-1530+D486-1040+DD86-1010 + cheat + description:Start on the Subway + code:CB85-1530+D786-1040+DD86-1010 + cheat + description:Start on Crazy Crane + code:CB85-1530+D086-1040+DD86-1010 + cheat + description:Start on Construction in the City + code:CB85-1530+D186-1040+DD86-1010 + cheat + description:Start on Thanksgiving - Zone 1 + code:CB85-1530+D586-1040+DD86-1010 + cheat + description:Start on Thanksgiving - Zone 2 + code:CB85-1530+D686-1040+DD86-1010 + cheat + description:Start on Balloon Blow-out + code:CB85-1530+DB86-1040+DD86-1010 + cheat + description:Start on Central Park - Zone 1 + code:CB85-1530+D886-1040+DD86-1010 + cheat + description:Start on Central Park - Zone 2 + code:CB85-1530+DA86-1040+DD86-1010 + cheat + description:Start on the Zoo + code:CB85-1530+D286-1040+DD86-1010 + cheat + description:Start on Prehistoric Panic + code:CB85-1530+D386-1040+DD86-1010 + cheat + description:Start on Outside the Circus + code:CB85-1530+FD86-1040+DD86-1010 + cheat + description:Start on Circus - Zone 1 + code:CB85-1530+FF86-1040+DD86-1010 + cheat + description:Start on Circus - Zone 2 + code:CB85-1530+F486-1040+DD86-1010 + cheat + description:Start on Jack in the Box + code:CB85-1530+F786-1040+DD86-1010 + cheat + description:Start on Empire State Building + code:CB85-1530+F986-1040+DD86-1010 + cheat + description:Start on Spaceship - Zone 1 + code:CB85-1530+F186-1040+DD86-1010 + cheat + description:Start on Spaceship - Zone 2 + code:CB85-1530+F586-1040+DD86-1010 + cheat + description:Infinite health (alt) + code:9A96DC:AD + cheat + description:Infinite lives (alt) + code:9A847A:AD + cheat + description:Super-jump (alt) + code:9A9A68:1F + cheat + description:Mega-jump (alt) + code:9A9A68:2F + +cartridge sha256:12abf1ba063c120c1a98495a1c85e67a0007aff771ef92adcb94b4a0a2fd5adb + name:Wheel of Fortune (USA) + cheat + description:Infinite time to choose + code:C264-DF0F + cheat + description:Don't lose money when landing on bankrupt + code:C2BE-DFDF + cheat + description:3/4 of normal time to choose + code:F3B1-DF64 + cheat + description:1/2 of normal time to choose + code:F0B1-DF64 + cheat + description:1/4 of normal time to choose + code:DCB1-DF64 + cheat + description:Vowels are free is you have at least $250 + code:DD62-DF07 + cheat + description:Vowels cost $50 if you have at least $250 + code:7462-DF07 + cheat + description:Vowels cost $100 if you have at least $250 + code:1062-DF07 + cheat + description:Vowels cost $150 if you have at least $250 + code:B162-DF07 + cheat + description:Vowels cost $200 if you have at least $250 + code:A662-DF07 + +cartridge sha256:0a52dc1e7820f5541f53ce0e1e96144fe079af0efe3dae5c2c89d86365feb8b1 + name:Whizz (USA) + cheat + description:Infinite health + code:C9CC-1FDD + cheat + description:Infinite time + code:C260-37AF + cheat + description:Infinite lives + code:C2C5-37D4 + cheat + description:Infinite time (alt) + code:7E03A4:63 + +cartridge sha256:c8f159e2625ac8078535c06857ea28475706da45df494de8e46f50888272cf71 + name:Wild Guns (USA) + cheat + description:Invincibility + code:4061-DFAA + cheat + description:Hit anywhere + code:40B4-0DDF+40B4-070F+40B7-0FAF+40BD-AD0A+40BF-0F6F+6DBE-DDDF + cheat + description:Infinite specials + code:7E1FA0:05 + cheat + description:Infinite lives + code:7E1FB2:04 + +cartridge sha256:2167fc7c5447b2287668d2f3e4ef1a285361b2292ecc8a4cbd9f966a460ad7a2 + name:Wing Commander (USA) + cheat + description:Increase front shield on Hornet + code:7ABC-3713 + cheat + description:Increase rear shield on Hornet + code:7AB4-4D1E + cheat + description:Increase front armor on Hornet + code:0DBB-4F1E + cheat + description:Increase rear armor on Hornet + code:0DBD-141E + cheat + description:Increase left side armor on Hornet + code:0DBE-1D1E + cheat + description:Increase right side armor on Hornet + code:0DB5-171E + cheat + description:Increase front shield on Scimitar + code:17B8-3D13 + cheat + description:Increase rear shield on Scimitar + code:17B4-4F1E + cheat + description:Increase front armor on Scimitar + code:17BB-441E + cheat + description:Increase rear armor on Scimitar + code:17BD-171E + cheat + description:Increase left side armor on Scimitar + code:17BE-1F1E + cheat + description:Increase right side armor on Scimitar + code:17B6-1D1E + cheat + description:Mega front shields on Hornet + code:EEBC-37C3 + cheat + description:Mega rear shields on Hornet + code:EEB4-4DCE + cheat + description:Mega front shields on Scimitar + code:99B8-3DC3 + cheat + description:Mega rear shields on Scimitar + code:99B4-4FCE + +cartridge sha256:132ca0b6a4888edf7de785d48f4417fac28522646e6c7514f80c5e9ff1438d5f + name:Wing Commander - The Secret Missions (USA) + cheat + description:Infinite blaster power + code:C2A6-4D0D + cheat + description:Infinite fuel + code:C2C8-14AD + cheat + description:Infinite missiles + code:3C66-C7A1 + cheat + description:Start on mission 4 + code:D068-C402 + cheat + description:Start on mission 8 + code:D668-C402 + +cartridge sha256:c3bcd5c716f96e6359ebcfd85c3e9b07b46c5124bf4010d89ceef5b6f2f868f6 + name:Wings 2 - Aces High (USA) + cheat + description:Infinite lives - all pilots (you can still get fired) + code:828A-040B + cheat + description:Infinite power-ups + code:C2C6-DDD8 + +cartridge sha256:025dd3047c474d879e69b91a3918add9cdabedf4182e1c1e10e5f0c13a124bf9 + name:Wizard of Oz, The (USA) + cheat + description:Invincibility + code:2D8D-07A5 + cheat + description:Infinite health + code:823C-AD66 + cheat + description:Infinite lives + code:223E-DDAF + cheat + description:Infinite health - Dorthy + code:7E01E5:00 + cheat + description:Infinite health - Scarecrow + code:7E01E7:00 + cheat + description:Infinite health - Tinman + code:7E01E9:00 + cheat + description:Infinite health - Lion + code:7E01EB:00 + cheat + description:Infinite Star Shot - Dorthy + code:7E01DB:09 + cheat + description:Infinite Throwing Rocks - all + code:7E01D1:09 + cheat + description:Have Flight Shoes + code:7E01D3:01 + +cartridge sha256:621180a73a5552899ff2a437e84f2891ec078e9883f25f6671b620ab4db24270 + name:Wizardry VI - Kindan no Mahitsu (Japan) + cheat + description:The whole party doesn't take damage from normal enemy attacks (doesn't protect from poison or certain magic spells) + code:8288-A491 + cheat + description:Create a character and he has a lot of gold + code:4DBF-DD27 + +cartridge sha256:e0165bafeb8d65be08a5a4079f8651104471f450c60794b761b1255853ca2d98 + name:Wolfchild (USA) + cheat + description:Infinite health + code:3CA3-DFAF + cheat + description:Infinite continues + code:C2EC-6FAD + cheat + description:Infinite lives + code:C9A6-A4AD + cheat + description:Infinite Bombs + code:C9A3-DD0F + cheat + description:Stay in wolf form until next continue + code:C2AE-A4DD+C2AE-A4AD + cheat + description:Start with 254 lives and 255 Bombs + code:E366-D7A4 + cheat + description:Start at final boss + code:D866-DFA4 + +cartridge sha256:9c2b458e8fda5cb437a4c6d28fb430e45c4cfef98420c40546b8e08563a4fc7d + name:Wolfenstein 3-D (USA) + cheat + description:Infinite health + code:C2CC-5D64 + cheat + description:Infinite ammo + code:C28D-7D0F + cheat + description:Infinite lives + code:C228-E7D4 + cheat + description:Infinite ammo for special weapon 1 after first life + code:C289-77DF + cheat + description:Infinite ammo for special weapon 2 after first life + code:C28F-84DF + cheat + description:Start with 1 life + code:DF25-84D4 + cheat + description:Start with 6 lives + code:D125-84D4 + cheat + description:Start with 9 lives + code:DB25-84D4 + cheat + description:Start with more ammo + code:1729-8704+1728-74D4 + cheat + description:Start with chain gun + code:622C-7764 + cheat + description:Start with machine gun + code:622C-74A4 + cheat + description:Start with special weapon 1 (super machine gun) and ammo after first life + code:622A-7DD4+D02C-7DA4 + cheat + description:Start with special weapon 2 (rocket launcher) and ammo after first life + code:6228-7704+D92C-7DAF + +cartridge sha256:44428a3d1c796fbd41da7620e321c45f11cd80a0e5f4ab8c48177106cb960d77 + name:Wolverine - Adamantium Rage (USA) + cheat + description:Infinite health + code:C9ED-3FAF + cheat + description:Infinite time + code:2DA8-3AA5 + cheat + description:No enemies + code:69E9-3A1F + cheat + description:Hit anywhere + one hit kills + code:4060-340D+4060-3D6D+4061-37DD+4061-3DDD+4064-3D6D+4064-376D+4065-37AD+4069-340D+4069-3D6D + cheat + description:One hit kills + code:4065-37AD + cheat + description:Invincibility + code:7E00B8:FF + cheat + description:Infinite health (alt) + code:7E1027:64 + +cartridge sha256:ea76cfdbb2a555a7b6eff8b466a879f9a9189639416e8c2fb45bf074e695105f + name:World Heroes (USA) + cheat + description:Infinite health - P1 + code:4008-8FAF + cheat + description:Hit anywhere - P1 + code:7DFE-776D+ADFE-746D+DDFE-74AD+FDFE-77DD + cheat + description:Always win - P1 + code:7B86-84A4 + cheat + description:Win a draw - P1 + code:D409-8F04 + cheat + description:Win a draw - P2 + code:D509-8F04 + cheat + description:Slow timer down by half + code:CD07-84AF + cheat + description:3 hits to win round - either player + code:FB0C-7D64+DD0B-77A4 + cheat + description:2 hits to win round - either player + code:7F0C-7D64+DD0B-77A4 + cheat + description:1 hit to win (sudden death) - either player + code:1F0C-7D64+DD0B-77A4 + cheat + description:Start with more health - P1 + code:5349-87D4 + cheat + description:Start with 1/2 health - P1 + code:7D49-87D4 + cheat + description:Start with very little health - P1 + code:DF49-87D4 + cheat + description:Start with more health - P2/CPU + code:534A-8F64 + cheat + description:Start with half health - P2/CPU + code:7D4A-8F64 + cheat + description:Start with very little health - P2/CPU + code:DF4A-8F64 + +cartridge sha256:159d5341d13d6801324e8271f7191c0223617c9d30984676319b2df7937c78c0 + name:World Heroes 2 (USA) + cheat + description:Invincibility - P1 + code:1D82-AF6D+1D83-0F64 + cheat + description:Invincibility - P2 + code:1D82-0D0D+1D84-DD04 + cheat + description:Hit anywhere - P1 + code:6D8A-07DD+6D8F-D7D4 + cheat + description:Hit anywhere - P2 + code:6D82-AD0D+6D83-0D04 + cheat + description:Infinite health - P1 + code:7E0574:80 + cheat + description:No health - P2 + code:7E0576:00 + cheat + description:Infinite time + code:7E052C:99 + cheat + description:One win wins the match - P1 + code:7E0570:02 + +cartridge sha256:d4d9f1b41dad7e7a126a9adbe8d86c4b339e120c866156796de1cb0c9a214189 + name:World League Soccer (USA) + cheat + description:Each goal worth 2 - P1 + code:D4AC-ADA3 + cheat + description:Each goal worth 3 - P1 + code:D7AC-ADA3 + cheat + description:Each goal worth 4 - P1 + code:D0AC-ADA3 + cheat + description:Each goal worth 5 - P1 + code:D9AC-ADA3 + cheat + description:Each goal worth 6 - P1 + code:D1AC-ADA3 + cheat + description:Each goal worth 7 - P1 + code:D5AC-ADA3 + cheat + description:Each goal worth 8 - P1 + code:D6AC-ADA3 + cheat + description:Each goal worth 9 - P1 + code:DBAC-ADA3 + cheat + description:Each goal worth 2 - P2 + code:D4AD-D7DE + cheat + description:Each goal worth 3 - P2 + code:D7AD-D7DE + cheat + description:Each goal worth 4 - P2 + code:D0AD-D7DE + cheat + description:Each goal worth 5 - P2 + code:D9AD-D7DE + cheat + description:Each goal worth 6 - P2 + code:D1AD-D7DE + cheat + description:Each goal worth 7 - P2 + code:D5AD-D7DE + cheat + description:Each goal worth 8 - P2 + code:D6AD-D7DE + cheat + description:Each goal worth 9 - P2 + code:DBAD-D7DE + +cartridge sha256:0af7b0d3022acd24a1fb15865a076519f7f56e7a4b33f12b6d851b3a91e5388c + name:WWF Raw (USA) + cheat + description:Start with half health + code:D7ED-1C7D + cheat + description:Nobody gets hurt + code:C231-36E3 + cheat + description:No out of ring timer + code:C2E3-C653 + cheat + description:Infinite health - P1 + code:7E0A78:A0 + cheat + description:Two punch knockouts + code:7E0F44:01 + cheat + description:Max grapple meter - P1 + code:7E0B44:BE+7E0B45:02+7E0B46:00 + +cartridge sha256:51c53e36ed0b959b0695fc6ef036fa7302d1c995eca35c28261d6f3cb77df0ca + name:WWF Royal Rumble (USA) + cheat + description:Max grapple meter - P1 + code:7E06DE:FF+7E06DF:02+7E06E0:00 + cheat + description:Two punch knockouts + code:7E092C:01 + +cartridge sha256:0b9abf2fc25a5f07c71f9d8efbb0d0e616c1494060138fbb63f7398e9c26198e + name:WWF Super WrestleMania (USA) + cheat + description:Punches and kicks (except flying drop kick) do no damage + code:DDB1-DF07 + cheat + description:Punches and kicks (except flying drop kick) do more damage + code:D7B1-DF07 + cheat + description:Punches and kicks (except flying drop kick) do a lot more damage + code:D1B1-DF07 + cheat + description:Stomps do no damage + code:DDB0-0FA7 + cheat + description:Stomps do more damage + code:D7B0-0FA7 + cheat + description:Stomps do a lot more damage + code:D1B0-0FA7 + cheat + description:Elbow drops do no damage + code:DDEE-DF91 + cheat + description:Elbow drops do more damage + code:D9EE-DF91 + cheat + description:Elbow drops do a lot more damage + code:D6EE-DF91 + cheat + description:Flying elbow drops do no damage + code:DDEE-DF21 + cheat + description:Flying elbow drops do more damage + code:D5EE-DF21 + cheat + description:Flying elbow drops do a lot more damage + code:DCEE-DF21 + cheat + description:Headbutts do no damage + code:DDBB-0407 + cheat + description:Headbutts do more damage + code:D1BB-0407 + cheat + description:Headbutts do a lot more damage + code:DBBB-0407 + cheat + description:Start with 1/4 health - both players + code:DAC6-6FDD + cheat + description:Start with 1/2 health - both players + code:F6C6-6FDD + cheat + description:Start with 3/4 health - both players + code:40C6-6FDD + +cartridge sha256:67faa6ed3406a5ab0d7224b811c0960bb36560040ee959bb3304c9293ceaa093 + name:WWF WrestleMania - The Arcade Game (USA) + cheat + description:Infinite time + code:3CF0-7B91 + cheat + description:Do mega damage and don't die + code:C9D2-8FDA + cheat + description:Max combo meter + code:CBF0-84DE+6DF0-84AE + cheat + description:Start with 1/4 health + code:4DD0-7D0A+4DD2-740A + cheat + description:Start with 1/2 health + code:OED0-7D0A+0ED2-740A + cheat + description:Start with 3/4 health + code:56D0-7D0A+56D2-740A + cheat + description:Start with 1/4 health - opponent + code:4DDF-7D6A + cheat + description:Start with 1/2 health - opponent + code:0EDF-7D6A + cheat + description:Start with 3/4 health - opponent + code:56DF-7D6A + +cartridge sha256:71b69490c78d0bbaf47da25217c5dae295190311aa5df75653c3fac0a1b45358 + name:Xardion (USA) + cheat + description:Immune to most collisions + code:4A25-0FB4 + cheat + description:Immune to most bullets + code:4A31-6DFD + cheat + description:Start characters at level 12 + code:DDE2-07CD + +cartridge sha256:dc3792e9fe7ef7aaea4ac675a48ad06129dd3ebdd4b96a513bc8241549cbd579 + name:X-Kaliber 2097 (USA) + cheat + description:Infinite time + code:C260-D767 + cheat + description:Infinite lives + code:3C6C-A76D + cheat + description:Soda Cans give 50% life back + code:9C63-D56D + cheat + description:Infinite health - P1 + code:7E0A18:90 + cheat + description:Infinite lives - P1 + code:7E0A3E:09 + cheat + description:Infinite continues - P1 + code:7E0A46:09 + cheat + description:Infinite time (alt) + code:7E0A21:5A + +cartridge sha256:65fe17fd6b297f52df6ce9812ecb02c3bb1bfda3ebc05a19c4a8decbf9a446ae + name:X-Men - Mutant Apocalypse (USA) + cheat + description:Infinite health + code:33DB-E407 + cheat + description:Infinite health (alt) + code:7E008B:41+7E0C35:41 + cheat + description:Infinite lives - training mode + code:C2D1-8F67 + cheat + description:Infinite lives - mission mode + code:C2D7-5F64 + cheat + description:Hit anywhere + code:40E3-5766+6DEF-84D6 + cheat + description:Easy specials (press X) + code:3344-E701 + cheat + description:Walk through walls + code:C247-84D7+89D2-87A9+C240-8F07 + cheat + description:Invincibility + code:7E0C4C:21 + cheat + description:Infinite lives - Wolverine + code:7E0B7E:08 + cheat + description:Infinite lives - Cyclops + code:7E0B7F:08 + cheat + description:Infinite lives - Beast + code:7E0B82:08 + cheat + description:Infinite lives - Psylocke + code:7E0B80:08 + cheat + description:Infinite lives - Gambit + code:7E0B81:08 + cheat + description:Use 1 button specials from practice mode in mission mode + code:7E0B89:01 + cheat + description:Lava stops flowing + code:7E1685:DB + +cartridge sha256:363c60f924257bf6465efc32093c7749a0e69ea7234e47ebd4f070e7b0e7035d + name:Yogi Bear (Japan) + cheat + description:Infinite health + code:7E021E:06 + cheat + description:Infinite lives + code:7E021C:09 + cheat + description:Super-jump + code:7E0AB0:00 + cheat + description:Start on Snow Business Stage 1 + code:7E009F:23 + cheat + description:Start on Snow Business Stage 2 + code:7E009F:28 + cheat + description:Start on Snow Business Stage 3 + code:7E009F:2D + cheat + description:Start on Snow Business Stage 4 + code:7E009F:32 + cheat + description:Start on Cave Capers Stage 1 + code:7E009F:37 + cheat + description:Start on Cave Capers Stage 2 + code:7E009F:3C + cheat + description:Start on Cave Capers Stage 3 + code:7E009F:41 + cheat + description:Start on Cave Capers Stage 4 + code:7E009F:46 + cheat + description:Start on Redwood Rendevous Stage 1 + code:7E009F:4B + cheat + description:Start on Redwood Rendevous Stage 2 + code:7E009F:50 + cheat + description:Start on Redwood Rendevous Stage 3 + code:7E009F:55 + cheat + description:Start on Redwood Rendevous Stage 4 + code:7E009F:5A + cheat + description:Start on Water Palaver Stage 1 + code:7E009F:5F + cheat + description:Start on Water Palaver Stage 2 + code:7E009F:64 + cheat + description:Start on Water Palaver Stage 3 + code:7E009F:69 + cheat + description:Start on Water Palaver Stage 4 + code:7E009F:6E + cheat + description:Start on Construction Site Shenanigans Stage 1 + code:7E009F:73 + cheat + description:Start on Construction Site Shenanigans Stage 2 + code:7E009F:78 + cheat + description:Start on Construction Site Shenanigans Stage 3 + code:7E009F:7D + cheat + description:Start on Construction Site Shenanigans Stage 4 + code:7E009F:82 + +cartridge sha256:163399c955e6d813056826e53fc1a7d21d8958e3d11c6384854cc284412caffb + name:Yogi Bear's Cartoon Capers (Europe) + cheat + description:Infinite health + code:7E021E:06 + cheat + description:Infinite lives + code:7E021C:09 + cheat + description:Start on Snow Business Stage 1 + code:7E009F:23 + cheat + description:Start on Snow Business Stage 2 + code:7E009F:28 + cheat + description:Start on Snow Business Stage 3 + code:7E009F:2D + cheat + description:Start on Snow Business Stage 4 + code:7E009F:32 + cheat + description:Start on Cave Capers Stage 1 + code:7E009F:37 + cheat + description:Start on Cave Capers Stage 2 + code:7E009F:3C + cheat + description:Start on Cave Capers Stage 3 + code:7E009F:41 + cheat + description:Start on Cave Capers Stage 4 + code:7E009F:46 + cheat + description:Start on Redwood Rendevous Stage 1 + code:7E009F:4B + cheat + description:Start on Redwood Rendevous Stage 2 + code:7E009F:50 + cheat + description:Start on Redwood Rendevous Stage 3 + code:7E009F:55 + cheat + description:Start on Redwood Rendevous Stage 4 + code:7E009F:5A + cheat + description:Start on Water Palaver Stage 1 + code:7E009F:5F + cheat + description:Start on Water Palaver Stage 2 + code:7E009F:64 + cheat + description:Start on Water Palaver Stage 3 + code:7E009F:69 + cheat + description:Start on Water Palaver Stage 4 + code:7E009F:6E + cheat + description:Start on Construction Site Shenanigans Stage 1 + code:7E009F:73 + cheat + description:Start on Construction Site Shenanigans Stage 2 + code:7E009F:78 + cheat + description:Start on Construction Site Shenanigans Stage 3 + code:7E009F:7D + cheat + description:Start on Construction Site Shenanigans Stage 4 + code:7E009F:82 + +cartridge sha256:90ad69a489194aca7ef7b7fd1d30e0105da4934a81ac8b0333ea20f9248df92d + name:Yoshi's Cookie (USA) + cheat + description:In action mode, passing a stage advances to the next round + code:6D8F-DF3B + cheat + description:Immediately complete current Action level whenever effects switch is turned on (keep switch off to play) + code:D48D-AD36 + cheat + description:All 99 Action rounds available without the secret code + code:14C6-0436 + cheat + description:In VS mode, only 1 win is required instead of 3. P2 always wins the set (2P only) + code:DF86-A71C + cheat + description:In VS mode, the fuses don't count down + code:C2A0-DF48 + cheat + description:In VS mode, play against tougher opponents without the secret code + code:D685-A766+DD86-AF66 + cheat + description:In Puzzle mode, passing a stage advances to the next round + code:DD3C-6738 + cheat + description:Unlimited moves in puzzle mode (turn effects switch off to use up moves if the level becomes impossible) + code:C2EA-671B + +cartridge sha256:12fba2aff04c8e39968e828629ebd16caa314bca397a9418d35fdaffe8188e20 + name:Yoshi's Safari (USA) + cheat + description:Almost infinite health + code:C221-116D+C283-4FAE + cheat + description:Infinite power + code:DD6B-1D00+DD26-11AF + cheat + description:Infinite time + code:C2E9-47DE + cheat + description:Infinite lives + code:C228-376D + cheat + description:Don't lose coins when you miss a jump + code:C28F-3D02 + cheat + description:1 minute for stage 1 instead of 4 + code:DFC9-4F82 + cheat + description:9 minutes for stage 1 + code:DBC9-4F82 + cheat + description:1 minute for stage 2 instead of 4 + code:DFC9-4472 + cheat + description:9 minutes for stage 2 + code:DBC9-4472 + cheat + description:Lose power more quickly + code:DF6B-1D60+DF26-15DF + cheat + description:Lose power more slowly + code:D96B-1D00+D926-11AF + cheat + description:Gain power more quickly + code:DF6C-1460+DF2B-156F + cheat + description:Gain power more slowly + code:4D6C-1400+4D2B-150F + cheat + description:1-up with every coin after you get 10 + code:DBEF-1D6E + cheat + description:1-up with every coin after you get 30 + code:F3EF-1D6E + cheat + description:1-up with every coin after you get 99 + code:14EF-1D6E + cheat + description:Start with 1 life + code:DD67-1D50 + cheat + description:Start with 5 lives + code:D067-1D50 + cheat + description:Start with 10 lives + code:DB67-1D50 + +cartridge sha256:fbe8926fc0149d3e8e2aec20f15640ea6814f4f4b01c3960f3c477f5f17e890f + name:Young Merlin (USA) + cheat + description:Faster Merlin + code:D9B7-14F9 + cheat + description:Slower mine cart + code:D46B-1030 + cheat + description:2 hearts from rainbow water bottle + code:D4C0-CD6F + cheat + description:3 hearts from rainbow water bottle + code:D7C0-CD6F + cheat + description:Start with 6 heart containers (new game) + code:D186-C1D1 + cheat + description:Start with 8 heart containers (new game) + code:D686-C1D1 + cheat + description:Infinite health + code:7EEDDE:02 + +cartridge sha256:b0e74f0fe8d1e7fe2fe404341fea7c68e28f3a0ab78552d5092d413f2ecec417 + name:Ys III - Wanderers from Ys (USA) + cheat + description:Invincibility + code:D6FE-BE7C + cheat + description:Infinite health + code:C2B3-D092 + cheat + description:Infinite Amulet shots + code:D7F3-2358 + cheat + description:Items are free if you have enough money + code:6DEB-D46F+DCEB-D4AF + cheat + description:One hit kills on bosses (except final boss) + code:DDF3-2A5B + cheat + description:Gain experience quicker + code:CBBB-A192 + cheat + description:Gain experience much quicker + code:CBBB-A192+79BB-A1B2 + cheat + description:Start with 100 hit points instead of 20 + code:1082-012E + cheat + description:Start with 200 hit points + code:A682-012E + cheat + description:Start with 488 Gold instead of 1,000 + code:DF8E-00BE + cheat + description:Start with 2,024 Gold + code:D58E-00BE + cheat + description:Start with 9,704 Gold + code:498E-00BE + cheat + description:Start with 20,200 Gold + code:038E-00BE + cheat + description:Start with 40,168 Gold + code:BA8E-00BE + cheat + description:Start with 65,512 Gold + code:EE8E-00BE + cheat + description:Invincibility (alt) + code:7E1AFC:08 + cheat + description:Infinite Gold + code:7E1297:FF+7E1298:FF + cheat + description:255 Max HP + code:7E1295:FF + cheat + description:Max Exp + code:7E1299:FF+7E129A:FF + cheat + description:255 Ring + code:7E1296:FF + cheat + description:255 STR + code:7E129D:FF + cheat + description:255 DEF + code:7E129E:FF + cheat + description:1 Exp point to gain next level + code:7E129B:01 + cheat + description:Have all equipment + code:7E12B1:FF+7E12B2:FF+7E12A0:FF+7E12A8:FF+7E12A1:FF+7E12A2:FF+7E12A3:FF+7E12A4:FF+7E12A5:FF+7E12A6:FF+7E12A7:FF+7E12A9:FF+7E12AA:FF+7E12AB:FF+7E12B3:FF+7E12AC:FF+7E12AD:FF+7E12AE:FF+7E12AF:FF+7E12B0:FF + cheat + description:Have all inventory items + code:7E12BF:FF+7E12C0:FF+7E12C1:FF+7E12C2:FF+7E12C3:FF+7E12C4:FF+7E12B9:FF+7E12BA:FF+7E12BB:FF+7E12BC:FF+7E12BD:FF+7E12BE:FF + cheat + description:Have all statues + code:7E12C5:FF+7E12C6:FF+7E12C7:FF+7E12C8:FF + +cartridge sha256:10d94f1acd8108552eaefe9e26069e5d83e8fc3e847df7af318c2e25b53d39c3 + name:Ys IV - Mask of the Sun (Japan) + cheat + description:Infinite HP + code:7E0973:FF + cheat + description:Infinite GP + code:7E0983:FF+7E0984:FF + cheat + description:Max EXP + code:7E097B:FF+7E097C:FF + +cartridge sha256:d8d14c9f599cf915127440ba22fcbb7c33814f5688c9ae4f8855ed1f6ed42128 + name:Yuu Yuu Hakusho Final - Makai Saikyou Retsuden (Japan) + cheat + description:Infinite health + code:7E0A38:50 + cheat + description:Infinite power + code:7E0A3C:50 + cheat + description:One hit kills + code:7E0F38:00 + cheat + description:Opponent has no power + code:7E0F3C:00 + +cartridge sha256:7d414b7f5941f1eddc35259a22accbbbd7b47c517dfcf8bad86c4dcfa9e50b1e + name:Zero the Kamikaze Squirrel (USA) + cheat + description:Jump higher + code:E060-1D62+E060-CF03 + cheat + description:Invincibility + code:7E0E2C:02 + cheat + description:Infinite health + code:7E1674:04 + cheat + description:Infinite lives + code:7E1672:06 + cheat + description:Infinite Shurikens + code:7E1676:99 + +cartridge sha256:25414de02c6805ca62574cfb39c23bf292b3d8c4ff33eb8f212ccdbcd61c5ae3 + name:Zool - Ninja of the 'Nth' Dimension (USA) + cheat + description:Invincibility (blinking) + code:7E1D8B:49 + cheat + description:Invincibility + code:7E05DC:FF + cheat + description:Infinite health + code:7E1CF1:FA + cheat + description:Infinite lives + code:7E020C:63 + cheat + description:Infinite time + code:7E1CEF:09 + cheat + description:Infinite continues + code:7E020C:63 + +cartridge sha256:b27e2e957fa760f4f483e2af30e03062034a6c0066984f2e284cc2cb430b2059 + name:Zombies Ate My Neighbors (USA) + cheat + description:Invincibility, hit anywhere, get items from anywhere (do not use martian gun) - both players + code:6DEC-14D4+DD2F-476D+DD8D-37D7+DD8E-C767 + cheat + description:Invincibility - both players + code:DD2F-476D + cheat + description:Infinite health - both players + code:3C20-4D0D + cheat + description:Infinite weapons - both players + code:DD30-1FA7 + cheat + description:Infinite Keys on pick-up + code:DD3F-1DD4 + cheat + description:Infinite special items (except Keys and random Potions) + code:DD39-34D4 + cheat + description:Infinite lives - both players + code:82AA-CF07 + cheat + description:Victims are invincible + code:18CC-37DA + cheat + description:Package of 99 Squirtgun shots worth 999 + code:DBEC-4704 + cheat + description:Package of 20 Soda Pop Cans worth 99 + code:BBE8-44D4 + cheat + description:Package of 20 Tomatoes worth 99 + code:BBE8-4464 + cheat + description:Package of 5 Bazookas worth 999 + code:BBE8-4FA4 + cheat + description:Each First Aid Kit worth 9 on pick-up + code:DBEF-1F04 + cheat + description:Each Key worth 9 on pick-up + code:DBED-1FA4 + cheat + description:Only 1 victim to rescue per level (no bonus for rescuing all victims, game is over if Zombie eats a victim) + code:DF63-14DF + cheat + description:Can advance to next level after getting 1 victim (no bonus for rescuing all victims, game is over if Zombie eats a victim) + code:BAA1-44A4 + cheat + description:Walk through walls + code:6D3A-47DF+6D3D-14AF + cheat + description:Continue with 1/2 health + code:D921-1DD4 + cheat + description:Start with 1/2 health + code:D965-4464 + cheat + description:Start with 10 lives + code:DB66-4DD4 + cheat + description:Start with 7 lives + code:D166-4DD4 + cheat + description:Start with 1 life + code:DD66-4DD4 + cheat + description:Start with 50 shots in Squirtgun + code:DD6B-4DA4 + cheat + description:Start with 100 shots in Squirtgun + code:DD6B-4D64 + cheat + description:Start with 550 shots in Squirtgun + code:D96B-4DA4 + cheat + description:Start with 950 shots in Squirtgun + code:DB6B-4DA4 + cheat + description:Start with Soda Pop Cans instead of Squirtguns (Press B or Y to get item) + code:266B-4704 + cheat + description:Start with Bazookas (Press B or Y to get item) + code:216B-4704 + cheat + description:Start with Tomatoes (Press B or Y to get item) + code:2C6B-4704 + cheat + description:Start with Fire Extinguishers (Press B or Y to get item) + code:A36B-4704 + cheat + description:Start with Ice Pops (Press B or Y to get item) + code:2A6B-4704 + cheat + description:Start with Peppers (Press B or Y to get item) + code:236B-4704 + cheat + description:Start with Martian Bubble Guns (Press B or Y to get item) + code:2D6B-4704 + cheat + description:Start with Weed-eaters (Press B or Y to get item) + code:246B-4704 + cheat + description:Start with Ancient Artifacts (Press B or Y to get item) + code:206B-4704 + cheat + description:Start with Plates (Press B or Y to get item) + code:3D6B-4704 + cheat + description:Start with Silverware (Press B or Y to get item) + code:346B-4704 + cheat + description:Start with Footballs (Press B or Y to get item) + code:306B-4704 + cheat + description:Start with 9 First Aid Kits instead of 1 + code:DB6B-4F04 + cheat + description:Start with Speed Shoes instead of First Aid Kit (Press B or Y to get item) + code:D36C-4DD4 + cheat + description:Start with a Monster Potion (Press B or Y to get item) + code:FD6C-4DD4 + cheat + description:Start with a Ghost Potion (Press B or Y to get item) + code:F46C-4DD4 + cheat + description:Start with a Random Potion (Press B or Y to get item) + code:F06C-4DD4 + cheat + description:Start with a Pandora's box (Press B or Y to get item) + code:FA6C-4DD4 + cheat + description:Start with a Skeleton key (Press B or Y to get item) + code:F36C-4DD4 + cheat + description:Start with a Decoy (Press B or Y to get item) + code:4D6C-4DD4 + cheat + description:Start on level 2 + code:D46E-1D0F + cheat + description:Start on level 3 + code:D76E-1D0F + cheat + description:Start on level 4 + code:D06E-1D0F + cheat + description:Start on level 5 + code:D96E-1D0F + cheat + description:Start on level 6 + code:D16E-1D0F + cheat + description:Start on level 7 + code:D56E-1D0F + cheat + description:Start on level 8 + code:D66E-1D0F + cheat + description:Start on level 9 + code:DB6E-1D0F + cheat + description:Start on level 10 + code:DC6E-1D0F + cheat + description:Start on level 11 + code:D86E-1D0F + cheat + description:Start on level 12 + code:DA6E-1D0F + cheat + description:Start on level 13 + code:D26E-1D0F + cheat + description:Start on level 14 + code:D36E-1D0F + cheat + description:Start on level 15 + code:DE6E-1D0F + cheat + description:Start on level 16 + code:FD6E-1D0F + cheat + description:Start on level 17 + code:FF6E-1D0F + cheat + description:Start on level 18 + code:F46E-1D0F + cheat + description:Start on level 19 + code:F76E-1D0F + cheat + description:Start on level 20 + code:F06E-1D0F + cheat + description:Start on level 21 + code:F96E-1D0F + cheat + description:Start on level 22 + code:F16E-1D0F + cheat + description:Start on level 23 + code:F56E-1D0F + cheat + description:Start on level 24 + code:F66E-1D0F + cheat + description:Start on level 25 + code:FB6E-1D0F + cheat + description:Start on level 26 + code:FC6E-1D0F + cheat + description:Start on level 27 + code:F86E-1D0F + cheat + description:Start on level 28 + code:FA6E-1D0F + cheat + description:Start on level 29 + code:F26E-1D0F + cheat + description:Start on level 30 + code:F36E-1D0F + cheat + description:Start on level 31 + code:FE6E-1D0F + cheat + description:Start on level 32 + code:4D6E-1D0F + cheat + description:Start on level 33 + code:4F6E-1D0F + cheat + description:Start on level 34 + code:446E-1D0F + cheat + description:Start on level 35 + code:476E-1D0F + cheat + description:Start on level 36 + code:406E-1D0F + cheat + description:Start on level 37 + code:496E-1D0F + cheat + description:Start on level 38 + code:416E-1D0F + cheat + description:Start on level 39 + code:456E-1D0F + cheat + description:Start on level 40 + code:466E-1D0F + cheat + description:Start on level 41 + code:4B6E-1D0F + cheat + description:Start on level 42 + code:4C6E-1D0F + cheat + description:Start on level 43 + code:486E-1D0F + cheat + description:Start on level 44 + code:4A6E-1D0F + cheat + description:Start on level 45 + code:426E-1D0F + cheat + description:Start on level 46 + code:436E-1D0F + cheat + description:Start on level 47 + code:4E6E-1D0F + cheat + description:Start on level 48 + code:7D6E-1D0F + cheat + description:Start on bonus level Son of Dr. Tongue + code:746E-1D0F + cheat + description:Start on bonus level Day of the Tentacle + code:776E-1D0F + cheat + description:Start on bonus level Someplace Very Warm + code:706E-1D0F + cheat + description:Start on bonus level Curse of the Pharaohs + code:796E-1D0F + cheat + description:Start on bonus level Mushroom Men + code:716E-1D0F + cheat + description:Start on bonus level Cheerleaders vs. the Monsters + code:756E-1D0F + cheat + description:Start on credit level Monsters Among Us + code:7F6E-1D0F + cheat + description:Infinite health - P1 + code:7E1CB8:0A + cheat + description:Infinite health - P2 + code:7E1CBA:0A + cheat + description:Infinite lives - P1 + code:7E1D4C:03 + cheat + description:Infinite lives - P2 + code:7E1D4E:03 + cheat + description:Skip Konami and LucasArts intro screens + code:7E0C7C:01 + cheat + description:Only 1 victim to rescue to advance + code:7E1D52:01 + cheat + description:Always have Shoes effect - P1 + code:7E0155:FF + cheat + description:Always have Shoes effect - P2 + code:7E02D5:FF + cheat + description:Infinite Bazooka - P1 + code:7E1CD6:50 + cheat + description:Infinite Bazooka - P2 + code:7E1CF6:50 + cheat + description:Infinite Berries - P1 + code:7E1CDA:50 + cheat + description:Infinite Berries - P2 + code:7E1CFA:50 + cheat + description:Infinite Cold Potion - P1 + code:7E1D12:09 + cheat + description:Infinite Cold Potion - P2 + code:7E1D32:09 + cheat + description:Infinite Dummy Clown - P1 + code:7E1D20:09 + cheat + description:Infinite Dummy Clown - P2 + code:7E1D40:09 + cheat + description:Infinite Extinguisher - P1 + code:7E1CCE:50 + cheat + description:Infinite Extinguisher - P2 + code:7E1CEE:50 + cheat + description:Infinite Flamethrower - P1 + code:7E1CE6:50 + cheat + description:Infinite Flamethrower - P2 + code:7E1D06:50 + cheat + description:Infinite Footballs - P1 + code:7E1CE4:50 + cheat + description:Infinite Footballs - P2 + code:7E1D04:50 + cheat + description:Infinite Holy Cross - P1 + code:7E1CD4:50 + cheat + description:Infinite Holy Cross - P2 + code:7E1CF4:50 + cheat + description:Infinite Keys - P1 + code:7E1D0C:09 + cheat + description:Infinite Keys - P2 + code:7E1D2C:09 + cheat + description:Infinite Martian Gun - P1 + code:7E1CD0:50 + cheat + description:Infinite Martian Gun - P2 + code:7E1CF0:50 + cheat + description:Infinite Medical Kit - P1 + code:7E1D1A:09 + cheat + description:Infinite Medical Kit - P2 + code:7E1D3A:09 + cheat + description:Infinite Monster Potion - P1 + code:7E1D10:09 + cheat + description:Infinite Monster Potion - P2 + code:7E1D30:09 + cheat + description:Infinite Pandoras Box - P1 + code:7E1D1C:09 + cheat + description:Infinite Pandoras Box - P2 + code:7E1D3C:09 + cheat + description:Infinite Plates - P1 + code:7E1CE0:50 + cheat + description:Infinite Plates - P2 + code:7E1D00:50 + cheat + description:Infinite Popsicles - P1 + code:7E1CDC:50 + cheat + description:Infinite Popsicles - P2 + code:7E1CFC:50 + cheat + description:Infinite Random A Potion - P1 + code:7E1D14:09 + cheat + description:Infinite Random A Potion - P2 + code:7E1D34:09 + cheat + description:Infinite Random B Potion - P1 + code:7E1D16:09 + cheat + description:Infinite Random B Potion - P2 + code:7E1D36:09 + cheat + description:Infinite Shoes - P1 + code:7E1D0E:09 + cheat + description:Infinite Shoes - P2 + code:7E1D2E:09 + cheat + description:Infinite Silverware - P1 + code:7E1CE2:50 + cheat + description:Infinite Silverware - P2 + code:7E1D02:50 + cheat + description:Infinite Skeleton Key - P1 + code:7E1D1E:09 + cheat + description:Infinite Skeleton Key - P2 + code:7E1D3E:09 + cheat + description:Infinite Soda Bombs - P1 + code:7E1CD8:50 + cheat + description:Infinite Soda Bombs - P2 + code:7E1CF8:50 + cheat + description:Infinite Squirt Gun - P1 + code:7E1CCC:50 + cheat + description:Infinite Squirt Gun - P2 + code:7E1CEC:50 + cheat + description:Infinite Weed Wacker - P1 + code:7E1CD2:50 + cheat + description:Infinite Weed Wacker - P2 + code:7E1CF2:50 + +cartridge sha256:18746d4607424feca05aee056c3ed5f840195c792409881e9145d4bd96800dbd + name:Addams Family, The - Pugsley's Scavenger Hunt (USA, Europe) + cheat + description:Invincibility + code:C99-15C-3BE + cheat + description:Infinite health + code:BE9-15C-3BE + cheat + description:Infinite hearts + code:009-11C-E6D + cheat + description:Infinite lives + code:FA4-28F-4C1 + cheat + description:Infinite lives (alt) + code:BE4-27F-19E + cheat + description:When game begins, go through any door, enter secret bonus room, disable to exit room + code:AF3-DEE-7F1+3C3-DFE-916+7D3-E1E-197 + cheat + description:Lose 1 heart to become invincible + code:FAA-DCF-4C1 + cheat + description:Start each life with 1 energy heart + code:01F-E98-E66 + cheat + description:Start each life with 5 energy hearts + code:05F-E98-E66 + cheat + description:Start with 1 life + code:012-17F-F7E + cheat + description:Start with 10 lives + code:0A2-17F-F7E + +cartridge sha256:f267738e785f43a09c92511bcbb7f16d2e8acbe43b36f75bee35ff3fb0c21621 + name:Addams Family, The (USA) + cheat + description:Invincibility + code:BEA-DAB-4C1+C99-D7F-4C1 + cheat + description:Infinite health + code:BEF-35E-3BE + cheat + description:Infinite lives + code:BED-CEA-3BE + cheat + description:Infinite weapon + code:BE8-688-3BE + +cartridge sha256:7771919d5f5a114fb8685345eab290be22e99c59d8798ed9c5f29e3079c11c56 + name:Adventure Island (USA, Europe) + cheat + description:Invincibility + code:BE6-53E-4C1 + cheat + description:Infinite time + code:BE6-90E-3BE + cheat + description:Infinite lives + code:BEA-C88-3BE + cheat + description:Hit anywhere + code:000-E1D-3B1+181-02D-4CA + +cartridge sha256:bbb38ee1e9877404dd999ef7067aa238a1039ca603b987f8adeff4488e318331 + name:Adventure Island II - Aliens in Paradise (USA, Europe) + cheat + description:Invincibility + code:C9A-D8E-4C1 + cheat + description:Infinite time + code:C9E-2CF-4C1 + cheat + description:Infinite lives + code:006-DDB-E6E + cheat + description:Infinite lives (alt) + code:BE6-DCB-B31 + cheat + description:No gradual loss of energy, but can still be drained by obstacles and enemies + code:00E-28F-E6E + cheat + description:Once you collect any non-throwable object, you can't lose it from menu + code:00D-51A-E6E + cheat + description:Start with 1 of each power-up + code:3C0-37B-5D4 + cheat + description:Start with 1 life + code:000-6DB-E66 + cheat + description:Start with 6 lives + code:050-6DB-E66 + cheat + description:Start with 9 lives + code:080-6DB-E66 + cheat + description:Start on level 1-4 + code:080-57B-E6E + +cartridge sha256:50c3a2193005c9134699ab00de16510fb946db10cdbc33bfacd8a3132926b72e + name:Adventures of Pinocchio, The (USA) (Proto) + cheat + description:Invincibility + code:C94-C0E-6E9 + +cartridge sha256:ee582fc5f302c430556703c553c3a49db8e05847ba9b13d0f6bc018657ac8593 + name:Adventures of Rocky and Bullwinkle and Friends, The (USA) + cheat + description:Invincibility + code:C94-4CE-E69 + cheat + description:Invincibility after first hit + code:FA4-28E-4C1 + cheat + description:Infinite energy + code:FA4-96E-4C1 + cheat + description:Die in one hit + code:014-53E-08B + cheat + description:Start with 1 life + code:001-5CA-E62 + cheat + description:Start with 10 lives + code:091-5CA-E62 + cheat + description:Start with 15 lives + code:0E1-5CA-E62 + cheat + description:Start with 1 mooseberry - 1st life + code:001-61A-E66 + cheat + description:Start with 5 mooseberries - 1st life + code:041-61A-E66 + cheat + description:Start with 10 mooseberries - 1st life + code:091-61A-E66 + cheat + description:Start with 1 mooseberry - 2nd life + code:004-BCE-E66 + cheat + description:Start with 5 mooseberries - 2nd life + code:044-BCE-E66 + cheat + description:Start with 10 mooseberries - 2nd life + code:094-BCE-E66 + +cartridge sha256:e946c9e9c819cb9ba37eb1718903aa3cd5ea101d5890e27681b370a44fe0f1d8 + name:Adventures of Star Saver, The (USA, Europe) + cheat + description:Invincibility (blinking) + code:C9B-D9E-4C1 + cheat + description:Infinite lives + code:BE1-A7E-3BE + cheat + description:Infinite life ropes + code:003-89D-F71 + cheat + description:Infinite shields on pick-up + code:001-63D-F71+00B-B7E-F71+00B-DBE-F71 + cheat + description:49 life ropes on pick-up + code:75C-94E-3BA + cheat + description:Start with all power-ups (except shields) - 1st life only + code:3C1-7FE-5D4 + cheat + description:Start with 2 lives + code:021-99E-E66 + cheat + description:Start with 4 lives + code:041-99E-E66 + cheat + description:Start with 6 lives + code:061-99E-E66 + +cartridge sha256:cb1d45fca310ef4b7013d094663bddcd209362f272bb3e54ce10540828c8c212 + name:Aerostar (USA, Europe) + cheat + description:Invincibility + code:03A-ADD-A21+17A-AED-2AA+F07-07E-192 + cheat + description:Infinite lives + code:F06-F1E-6E9 + cheat + description:Infinite jump + code:BE8-70E-6E9 + +cartridge sha256:8e45c7d6b5498d4048653e92b2a792bb2eea00b2897a7711fb7be1b6bed0534f + name:Akumajou Dracula - Shikkoku Taru Zensoukyoku - Dark Night Prelude (Japan) (SGB Enhanced) + cheat + description:Fast walk left + code:11D-F3B-F7D + cheat + description:Fast walk right + code:11D-CCB-F7D + cheat + description:Fast jump left + code:114-2CA-F7D + cheat + description:Fast jump right + code:114-0BA-F7D + +cartridge sha256:4940bf228fb2095daa6b382d84ebd0cf05cd81fc2e6e5244a03ab458593e53f5 + name:Aladdin (USA) (SGB Enhanced) + cheat + description:Infinite health + code:BED-CAF-A28 + cheat + description:Infinite lives + code:BEC-E5E-19E + cheat + description:Infinite Apples + code:BE1-6DD-19E + +cartridge sha256:944df9d20c715099ef6bf0e418d928684b284d4a4562391a661a7978fa7f5417 + name:Alfred Chicken (USA) + cheat + description:Invincibility + code:BE5-46E-6E9 + cheat + description:Infinite time + code:BEB-C2E-D51 + cheat + description:Infinite lives + code:BEB-E9E-A24 + +cartridge sha256:4790f55d0917f4418c63d29c5c528362b1c7ae39546f6fc3ae94e867d1e9f270 + name:Alien 3 (USA, Europe) + cheat + description:Almost infinite health + code:FA7-68E-4C1 + cheat + description:Infinite tries + code:FA6-92E-4C1 + cheat + description:Infinite shots per clip on pick-up + code:00F-9CD-E65 + cheat + description:Infinite magazine clips on pick-up + code:FAB-45D-4C1 + cheat + description:50 shots per magazine clip + code:32A-3CA-19A + cheat + description:75 shots per magazine clip + code:4BA-3CA-19A + cheat + description:100 shots per magazine clip + code:64A-3CA-19A + cheat + description:Start with 1/2 health + code:8E4-42D-195 + cheat + description:Start with 4 tries + code:04B-27E-E66 + cheat + description:Start with 6 tries + code:06B-27E-E66 + cheat + description:Start with 10 tries + code:0AB-27E-E66 + +cartridge sha256:073f82f8bf4ab9d15569b5a7a4aa152351c177b9072a9481563b26562215f55b + name:Alien Olympics (Europe) + cheat + description:Meter never decreases + code:C9D-7DB-800 + cheat + description:Hyper velocity + code:BED-7AB-A24 + cheat + description:Freeze time + code:BEC-6DA-19A + +cartridge sha256:e1a71b44a1c5dcacfe90e76907766fd48518482950531bee34208114d4a03e53 + name:Alien vs Predator - The Last of His Clan (USA) + cheat + description:Infinite lives + code:BEF-D4D-3BE + cheat + description:Infinite energy + code:BE4-EFF-19E + cheat + description:Infinite HP + code:BEB-BAC-4C1 + +cartridge sha256:ed8070e011713527bdc03e2b9cec9f9c4a7e3aaa00e57e8786a186b265da1bb2 + name:Alleyway (World) + cheat + description:Infinite lives + code:BE7-EEF-19E + +cartridge sha256:04c5507efe0beb40ea1a887538bd8a04acc70622bf9ef800951a71f4804c9cbc + name:All-Star Baseball 99 (USA) + cheat + description:Infinite time + code:006-5E9-E6E + cheat + description:Computer's 3-pt. shots worth 25 points + code:191-1FD-E66 + cheat + description:Computer's 3-pt. shots worth 17 points + code:111-1FD-E66+111-18D-E6D + cheat + description:Computer makes almost all shots + code:36E-F7D-191+096-F8D-F7A + cheat + description:Computer can't score against you + code:341-15D-3B2+001-16D-E6D + cheat + description:Shot clock for human player is 9 seconds - 1-on-1 game + code:095-FB9-7FA+093-3DD-7FA+095-C49-7FA + +cartridge sha256:4f6450321ee163d5fd8a942816b10af1ce41bbcad62185a550c97b16cac125a1 + name:Altered Space - A 3-D Alien Adventure (USA) + cheat + description:Infinite energy (air) + code:3A4-F1E-B31 + +cartridge sha256:db4e590899aab75bceb31e84a2ec77c34b561838a61fd9dc9fda004a0507a01c + name:Amazing Penguin (USA, Europe) + cheat + description:Infinite lives + code:BE2-28D-19E + cheat + description:Infinite time + code:BE6-C4E-3BE + +cartridge sha256:a52b036d637b59950749de679208785480b8ad2d5e95c0ea2a6f638750cc645e + name:Amazing Spider-Man, The (USA, Europe) + cheat + description:Hit anywhere + code:008-EAD-809+008-8CD-7FF + +cartridge sha256:3f0688ed9219c44ce133647f0668cde50fdcba7ed8f04c34c3a0fc5ce596bfe5 + name:Asteroids (USA, Europe) + cheat + description:Infinite lives + code:003-83F-3BE + cheat + description:No extra rocks as you go up levels + code:00A-7ED-3BA + cheat + description:Rocks go thru you unless you move from the middle + code:01C-B4D-F76+003-9CF-3BE + cheat + description:Start with 1 life + code:013-15F-E66 + cheat + description:Start with 5 lives + code:053-15F-E66 + cheat + description:Start with 9 lives + code:093-15F-E66 + +cartridge sha256:d5306853c8dc7d402808cc340064fdf48d930bbc5a531c8ece3661bfa7f7ff55 + name:Atlantis - The Lost Empire (USA, Europe) + cheat + description:Infinite energy + code:FA2-ACA-4C1 + cheat + description:Infinite lives + code:FAC-3AE-4C1 + cheat + description:Start with 9 lives + code:094-3EC-E66 + +cartridge sha256:2df8eb5d48a204d9609e0c12fed81304cc0b23421c5015ab2296d51ffc8b36ad + name:Atomic Punk (USA) + cheat + description:Invincibility and infinite time + code:092-5EF-F77+752-5DF-B38+919-76F-195 + +cartridge sha256:ac3656cb5b86c13ad67a486d11d21643fdec306500d989fbd770b5939bab22f0 + name:Attack of the Killer Tomatoes (USA, Europe) + cheat + description:Infinite health + code:00A-DBF-3BE + cheat + description:Infinite lives + code:FA9-45C-4C1 + +cartridge sha256:0d80b2ad776053f50c3eb0e0e32c675f24acf94923bf3ac4c156c7c28bc76a6e + name:Avenging Spirit (USA, Europe) + cheat + description:Infinite energy except if weapon is used against you + code:FA5-AFC-4C1+FAE-C2D-4C1 + cheat + description:Infinite L energy except against spikes + code:FAE-B5D-4C1 + cheat + description:Start with 1/2 energy + code:0A3-2BC-B3A + cheat + description:Start with 1/4 energy + code:053-2BC-B3A + cheat + description:Start with 3/4 energy + code:0F3-2BC-B3A + cheat + description:Start on level 2 (brings you back to level 2) + code:029-B9C-E6E + cheat + description:Start on level 4 (brings you back to level 2) + code:049-B9C-E6E + cheat + description:Start on level 6 (brings you back to level 2) + code:069-B9C-E6E + +cartridge sha256:1b48b454bb421836c33c2d572c61f69145a077ebcecbf8194dfb05fc6581ff82 + name:Balloon Kid (USA, Europe) + cheat + description:Invincibility against fire + code:006-04A-C4E + +cartridge sha256:c71663c9172c69b3daded65aaaa3735d1f50379a471af345e8421a6a6c9aaa98 + name:Barbie - Game Girl (USA, Europe) + cheat + description:Infinite HP + code:FAA-A5C-4C1 + cheat + description:Infinite continues + code:FAB-959-4C1 + cheat + description:1 continue + code:017-ADD-E66 + cheat + description:4 continues + code:047-ADD-E66 + cheat + description:8 continues + code:087-ADD-E66 + cheat + description:Start with 2 HP + code:027-7AD-F7E + cheat + description:Start with 4 HP + code:047-7AD-F7E + cheat + description:Start with 8 HP + code:087-7AD-F7E + +cartridge sha256:86e5b7037d7c61248adfdc316d61b5c58fe46c5d3fe376bcdfeda9d6538b197d + name:Bart Simpson's Escape from Camp Deadly (USA, Europe) + cheat + description:Infinite health + code:FA7-FAF-4C1 + +cartridge sha256:0eedbdd6530f30adcc8ee88b32e852b7983de8bba8122ddd2c1adaf2805a454c + name:Bases Loaded for Game Boy (USA) + cheat + description:No walks + code:00C-63B-19A + cheat + description:1 ball and you walk + code:00C-66B-F7A + cheat + description:2 balls and you walk + code:02C-66B-F7A + cheat + description:3 balls and you walk + code:03C-66B-F7A + cheat + description:5 balls and you walk + code:04C-66B-F7A + cheat + description:Outs aren't counted (base runners will still be taken out) + code:00C-77B-19A + cheat + description:Number of outs to retire the side varies + code:003-8F8-E66 + cheat + description:Strikes aren't counted + code:00C-43B-3BA + cheat + description:1 strike and you're out + code:01C-46B-E66 + cheat + description:2 strikes and you're out + code:02C-46B-E66 + cheat + description:5 strikes and you're out + code:05C-46B-E66 + cheat + description:No scoring - disable to score + code:008-1FF-E6E+008-11F-E6E + +cartridge sha256:9ac1f4a299d32ba21cf65f67ab210afeb4c629adbd8e5779f76b6667ca3a0a4a + name:Batman - The Animated Series (USA, Europe) + cheat + description:Almost invincible - disable if you get stuck + code:215-92D-D5D + cheat + description:Infinite energy + code:005-EFD-3B7 + cheat + description:Infinite batarangs + code:00B-A3D-3BE + cheat + description:One hit kills on most enemies + code:AF6-15E-A2C + cheat + description:Each batarang pick-up is worth 9 + code:09A-70B-F7E + cheat + description:Most enemies don't die + code:006-16E-3B7 + cheat + description:Most enemies are harder to kill + code:0AF-CDB-E62 + cheat + description:Start with 7 batarangs + code:004-96D-5D4+FA4-9AD-4C1 + cheat + description:Start with very little energy + code:014-8ED-F76 + cheat + description:Start with about half energy + code:044-8ED-F76 + cheat + description:Start with about 2x energy + code:0E4-8ED-F76 + +cartridge sha256:152fc252bba7130e786d408eed310b3009b8e05834f8003dfbf514ec804cbaea + name:Batman - Return of the Joker (USA, Europe) + cheat + description:Invincibile against enemies + code:004-ADA-A2E+C64-B2A-7F1 + cheat + description:Infinite batarangs on pick-up + code:009-96E-19E + cheat + description:Infinite continues + code:00A-B5D-F75 + cheat + description:Select any weapon from menu + code:006-BCA-7F1 + cheat + description:5 Batarangs on pick-up + code:05D-A0B-C42 + cheat + description:20 Batarangs on pick-up + code:14D-A0B-C42 + cheat + description:40 Batarangs on pick-up + code:28D-A0B-C42 + cheat + description:1 continue + code:022-07F-F7E + cheat + description:9 continues + code:0A2-07F-F7E + cheat + description:Start with max of 3 HP + code:O62-01F-C42 + cheat + description:Start with max of 8 HP + code:102-01F-C42 + +cartridge sha256:b9909506f566ea7998d6170e9610bad62dbda7d38e42830cd187592e262acfed + name:Battle Unit Zeoth (USA, Europe) + cheat + description:Infinite health + code:F02-33E-6E9 + +cartridge sha256:dfa8ec0354c2c364398686cac91545dd2729ab4e0784e6f0b3a23cfe2f7d253b + name:Battletoads (USA, Europe) + cheat + description:Invincibility + code:047-7DD-E6E+367-7CD-4CA + cheat + description:Infinite lives and energy + code:FAC-CAF-4C1+007-B0E-F71 + cheat + description:Infinite continues + code:007-C2E-3BE + cheat + description:One hit kills + code:00E-9AD-B3E + cheat + description:Keep axe after dying + code:FAD-918-4C1 + cheat + description:Big arms that hack at you from caves in level 1 do not move + code:005-42E-E6E + cheat + description:1 continue + code:017-F28-E66 + cheat + description:5 continues + code:057-F28-E66 + cheat + description:10 continues + code:0A7-F28-E66 + cheat + description:Start with 1 life + code:007-ED8-E66 + cheat + description:Start with 6 lives + code:O57-ED8-E66 + cheat + description:Start with 10 lives + code:097-ED8-E66 + cheat + description:Start with 2 extra HP - after 1st life + code:0EE-388-D5A + cheat + description:Start 1st life with 2 extra HP + code:0E3-26F-D5A + cheat + description:Start 1st life with 1/2 energy + code:063-26F-D5A + cheat + description:Start with only 1/2 energy - after 1st life + code:06E-388-D5A + +cartridge sha256:e10716e26a1b4edddc8c8fbf24cdad4decd054e555c77a6c0cd64fe283fa2287 + name:Battletoads in Ragnarok's World (USA) + cheat + description:Invincibility - beat'em up levels + code:EAC-FDD-081 + cheat + description:Infinite health + code:FA8-71F-4C1 + cheat + description:Infinite lives + code:7EA-31E-3BE + +cartridge sha256:ffb240c74aac4527af2c268e1d7cf4f1b44229ff624d22966b5679e301617465 + name:Beast Fighter (Asia) (Unl) + cheat + description:Invincibility + code:007-F6A-C49+008-00A-E69+017-FFA-E6A+3E7-FEA-191 + cheat + description:Infinite time + code:C9D-B6D-C49 + cheat + description:One hit kills on bosses + code:006-FAB-E62 + +cartridge sha256:436918dc75ffe606f458206caad6c063369ecbf650afcf96499eb98b2b85a72f + name:Beetlejuice (USA) + cheat + description:Infinite health + code:FA7-E4C-4C1 + cheat + description:Infinite lives + code:FA7-EFC-4C1 + +cartridge sha256:378435aa66290a4d8a930e000eddf08dcb7b00fd36341991b0abedc488bb8c5d + name:Bill Elliott's NASCAR Fast Tracks (USA) + cheat + description:Start with burst of speed + code:XX1-069-19A + cheat + description:Infinite fuel + code:004-65A-3BE + cheat + description:Collisons with cars don't affect speed + code:00D-46B-3BE + cheat + description:Collisions barely affect speed + code:003-C5B-3B7+002-3FA-3B7+000-BDA-19E + cheat + description:Start with 1 lap - ignore lap timer and counter + code:1E7-31B-B37+027-32B-A26 + cheat + description:Start with 3 laps - ignore lap timer and counter + code:1E7-31B-B37+047-32B-A26 + cheat + description:Start with 9 laps - ignore lap timer and counter + code:1E7-31B-B37+0A7-32B-A26 + +cartridge sha256:692e62d9e0048350256ee124d55c6ef225dc2bb54e0808fd882312d4dcaf0f28 + name:Bionic Commando (USA) + cheat + description:Infinite energy + code:FAE-6EB-4C1 + cheat + description:Infinite lives + code:006-0AE-915 + cheat + description:Infinite continues + code:004-04E-915 + cheat + description:2 continues + code:024-818-E66 + cheat + description:4 continues + code:044-818-E66 + cheat + description:6 continues + code:064-818-E66 + cheat + description:Start with 8 energy + code:845-E0E-5D4 + cheat + description:Start with 2 lives + code:024-0EE-E66 + cheat + description:Start with 4 lives + code:044-0EE-E66 + cheat + description:Start with 6 lives + code:064-0EE-E66 + +cartridge sha256:9338af642104f7f286687b2e6e55759917c0db35bc89ef398a92c18570bff681 + name:Blades of Steel (USA) + cheat + description:Set length of game to 1:00 + code:011-65B-6EA + cheat + description:Set length of game to 3:00 + code:031-65B-6EA + cheat + description:Set length of game to 9:00 + code:091-65B-6EA + cheat + description:Opponent's energy doesn't go up again and yours does + code:007-938-19A + cheat + description:Invincible in fights + code:FA7-9F8-4C1 + cheat + description:3 penalty shots in shoot-out + code:035-B6A-F7E + cheat + description:5 penalty shots in shoot-out + code:055-B6A-F7E + cheat + description:9 penalty shots in shoot-out + code:095-B6A-F7E + +cartridge sha256:04aeb80ff35bd863c3922ad9b8cac7ee379e78feac4ce3cef2d58ccca142fc03 + name:Blues Brothers, The (USA, Europe) + cheat + description:Infinite energy + code:00A-F29-3B7 + cheat + description:Infinite encores + code:FA8-05F-4C1 + cheat + description:Start with 3 encores (continues) + code:033-7CF-E62 + cheat + description:Start with 7 encores + code:073-7CF-E62 + cheat + description:Start with 9 encores + code:093-9CF-E62 + cheat + description:Start with 5 lives + code:050-15B-E62 + cheat + description:Start with 7 lives + code:070-15B-E62 + cheat + description:Start with 9 lives + code:090-15B-E62 + +cartridge sha256:195f5a9e97bfec6f071bfd6b82a39ffa25185b687a26a1f2937f9718c4d4d16e + name:Boggle Plus (USA) + cheat + description:Infinite time + code:005-AFD-E6E + cheat + description:1-minute game + code:016-BCD-E66 + cheat + description:5-minute game + code:056-BCD-E66 + cheat + description:9-minute game + code:096-BCD-E66 + cheat + description:Can re-use shaded letters + code:D48-82A-E61 + cheat + description:Can select any letter on the board - letters don't have to be next to each other + code:30E-A9A-4CA + cheat + description:Boggle - 1 and 2 letter words allowed + code:01B-4CA-E66 + cheat + description:Boggle - Minimum word length 4 letters + code:04B-4CA-E66 + cheat + description:Big Boggle - 1 to 3 letter words allowed + code:01B-8FA-F7A + cheat + description:Big Boggle - Minimum word length 5 letters + code:05B-8FA-F7A + +cartridge sha256:beca58b71a27884d2c2820da0c7eb806fa945b2fab66da271588281e03153900 + name:Bomb Jack (Europe) + cheat + description:Infinite lives + code:F04-79F-6E9 + +cartridge sha256:604db636c45af3cd1fec52e206701a8969a8a3e610df281f7461769bd86729ea + name:Bomber Man GB 3 (Japan) (SGB Enhanced) + cheat + description:Invincibility + code:02C-AEB-E6E + cheat + description:Infinite lives + code:005-17E-19E + cheat + description:Freeze timer + code:009-E0D-19E + cheat + description:Maximum Bombs placable + code:185-158-6EA + cheat + description:Maximum blast range + code:185-238-6EA + +cartridge sha256:16d6a4650566ede0ec9e3e23a85544737faab4154d6381668e8547047340eee6 + name:Bomberman GB (USA, Europe) (SGB Enhanced) + cheat + description:Hit anywhere (press B) + code:3D3-C08-E6A+3D3-C18-D5D+A13-BF8-E6A+C93-C28-E66+F03-BE8-E6E + cheat + description:Bombs can break any block + code:006-C28-F7E + +cartridge sha256:6081309e7f5b63e4f6694965060c68baf82a775eb18e667c2c89898096e6e3d8 + name:Bonk's Adventure (USA) + cheat + description:Infinite energy + code:005-13B-F7D + cheat + description:Infinite lives + code:007-99D-D5D + cheat + description:Start with 3 lives, 1st life as Mad Bonk + code:021-AFF-E66+001-B3F-5D4 + cheat + description:Start 1st life as Turtle Bonk + code:021-AFF-E66+001-B3F-5D4 + cheat + description:Start with 8 lives + code:071-AFF-E66 + cheat + description:Start with 10 lives + code:091-AFF-E66 + +cartridge sha256:9053443a6c786a54bebc2fa9c10acd3875887134c953e5bdf0a07dc554721fb6 + name:Bo Jackson - Two Games in One (USA) + cheat + description:Baseball - 1 ball and you walk + code:01F-13C-F7A + cheat + description:Baseball - 2 balls and you walk + code:02F-13C-F7A + cheat + description:Baseball - 5 balls and you walk + code:05F-13C-F7A + cheat + description:Baseball - Strikes aren't counted - ignore message, you need 4 balls to walk + code:00E-C5C-3BA + cheat + description:Baseball - Outs aren't counted + code:003-E88-3BA + cheat + description:Baseball - 1 strike and you're out + code:01E-87C-E66 + cheat + description:Baseball - 2 strikes and you're out + code:02E-87C-E66 + cheat + description:Baseball - No scoring - disable to score + code:008-3C8-3BA+008-268-3BA + cheat + description:Football - Infinite time + code:F05-6EC-6E9 + cheat + description:Football - Infinite timeouts + code:000-12A-3BE + cheat + description:Football - Always 1st down + code:F07-D0B-6E9 + cheat + description:Football - Start with 1 timeout + code:010-68B-E66 + cheat + description:Football - Start with 2 timeouts + code:020-68B-E66 + cheat + description:Football - Start with 10 timeouts + code:0A0-68B-E66 + +cartridge sha256:b164bafab4da7f92a33a2cdfce706b35407f3aa0ac379cd770fe2f78447bdf7a + name:Bram Stoker's Dracula (USA, Europe) + cheat + description:Invincibility + code:006-72F-80E + cheat + description:Infinite time + code:FAD-50D-4C1 + cheat + description:Infinite ammo + code:FA1-21E-4C1 + +cartridge sha256:c5ddbb08e8509633853346c5f35850cc3abe5afaabb0d0ee294b40e804253b7f + name:Bubble Bobble (USA, Europe) + cheat + description:Hit anywhere + code:00D-22E-C4A+18D-29E-08A + cheat + description:Hit anywhere - Bosses (except final boss) + code:00C-05B-A29+00B-FCB-A29 + cheat + description:Get items from anywhere + code:00C-02D-A29+00C-0BD-A29+00D-56D-A29+375-8FB-6EE+37D-5FD-A29+C95-90B-91E + cheat + description:One hit kill - final boss + code:AF8-B7B-19E + +cartridge sha256:29f17b604be580c0132a6d0bd7a966c82930069ca82f83798c955d532c6b4694 + name:Bubble Bobble Part 2 (USA, Europe) + cheat + description:Infinite hearts + code:FAB-CEE-4C1 + cheat + description:Defeat one enemy to go to next level + code:AFE-33A-19E + cheat + description:No big bubbles appear + code:C97-8AE-E66 + cheat + description:Run into 1 enemy and you remain invincible for the rest of the game + code:FA5-58E-4C1+FAB-46E-4C1+FAB-63E-4C1 + cheat + description:Start with 1 heart + code:015-5CE-E66 + cheat + description:Start with 6 hearts + code:065-5CE-E66 + cheat + description:Start with 9 hearts + code:095-5CE-E66 + cheat + description:Start on round 20 + code:3E8-39F-081+138-3AF-D5E+008-3BF-E6D + cheat + description:Start on round 40 + code:3E8-39F-081+278-3AF-D5E+008-3BF-E6D + cheat + description:Start on round 60 + code:3E8-39F-081+3B8-3AF-D5E+008-3BF-E6D + +cartridge sha256:cf1a8d9c9d4fc9e58740f6e008e5280ff2831c099aecab642e64e5195c0ad0bc + name:Bugs Bunny Crazy Castle 2, The (USA) + cheat + description:Invincibility + code:C92-899-4C1 + cheat + description:Infinite lives + code:BE6-00E-19E + +cartridge sha256:e5abce2a219fe38e53d1a572d371008f3b6d70be4607c1722139a9ea95fa7422 + name:Bug's Life, A (USA) (SGB Enhanced) + cheat + description:Infinite lives + code:006-2FD-3BE + cheat + description:Invincibility (can still drown) + code:000-EEE-081 + +cartridge sha256:2f4254faaa4bda89486c4820c601917cd034c7965eae075ba81acef4295fa8bd + name:BurgerTime Deluxe (World) + cheat + description:Invincibility + code:C9E-98D-3B2 + cheat + description:Infinite lives + code:FE5-CAE-B31 + cheat + description:Infinite weapon + code:FEB-76D-B31 + +cartridge sha256:f0b147eb3429b1b480424a31eb2d800b5676d01a701b494b2c9e9d2de63d31c5 + name:Captain America and the Avengers (USA) + cheat + description:Infinite energy + code:005-CCE-3B7 + cheat + description:Enemy bullets do very little damage + code:017-748-D5A + cheat + description:Enemy bullets do more damage + code:197-748-D5A + cheat + description:Enemy bullets do much more damage + code:337-748-D5A + cheat + description:Start with energy at 153 + code:99A-29F-7FB + cheat + description:Start with energy at 255 + code:FFA-29F-7FB + cheat + description:Start with energy at 34 + code:22A-29F-7FB + cheat + description:Start with 1 lives + code:011-DDF-E66 + cheat + description:Start with 10 lives + code:0A1-DDF-E66 + cheat + description:Start on stage 1-2 + code:3E3-A8F-912+013-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 1-3 + code:3E3-A8F-912+023-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 1-4 + code:3E3-A8F-912+033-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 1-5 + code:3E3-A8F-912+043-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 1-6 + code:3E3-A8F-912+053-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-1 + code:3E3-A8F-912+063-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-2 + code:3E3-A8F-912+073-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-3 + code:3E3-A8F-912+083-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-4 + code:3E3-A8F-912+093-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-5 + code:3E3-A8F-912+0A3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 2-6 + code:3E3-A8F-912+0B3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 3-1 + code:3E3-A8F-912+0C3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 3-2 + code:3E3-A8F-912+0D3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 3-3 + code:3E3-A8F-912+0E3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 3-4 + code:3E3-A8F-912+0F3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 3-5 + code:3E3-A8F-912+103-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-1 + code:3E3-A8F-912+113-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-2 + code:3E3-A8F-912+123-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-3 + code:3E3-A8F-912+133-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-4 + code:3E3-A8F-912+143-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-5 + code:3E3-A8F-912+153-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 4-6 + code:3E3-A8F-912+163-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-1 + code:3E3-A8F-912+173-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-2 + code:3E3-A8F-912+183-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-3 + code:3E3-A8F-912+193-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-4 + code:3E3-A8F-912+1A3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-5 + code:3E3-A8F-912+1B3-A9F-E6A+E03-AAF-2A9 + cheat + description:Start on stage 5-6 + code:3E3-A8F-912+1C3-A9F-E6A+E03-AAF-2A9 + +cartridge sha256:17570ceec1b22153604622c4412d048dd8f7ccb4626daf9ddea96de8a062dbf2 + name:Castlevania II - Belmont's Revenge (USA, Europe) + cheat + description:Invincibility + code:EA5-86B-081 + cheat + description:Hit anywhere + code:009-36C-C4E + cheat + description:Multi-jump + code:872-94B-E62+C82-95B-E69+E62-96B-19E+102-97B-C41+202-98B-B39+152-99B-E67+C9D-47F-809 + +cartridge sha256:edb101e924f22149bdcbcfe6603801fdb4ec0139a40493d700fa0205f6dab30c + name:Castlevania Adventure, The (USA) + cheat + description:Infinite energy + code:00A-F28-3B7 + cheat + description:Infinite time - disable at end of stages + code:004-07F-3B7 + cheat + description:Infinite lives + code:006-94F-3B7 + cheat + description:Hit anywhere + code:002-61D-A22+002-71D-E62 + cheat + description:Multi-jump + code:007-E3E-80A+180-EBF-195+1A0-E8F-195+230-EAF-195+320-E7F-195+C90-ECF-195+CD0-E6F-195+CD0-E9F-195+E67-E2E-6E6 + cheat + description:Slightly improves speed - new games only + code:FF7-3CE-E69 + cheat + description:Don't lose weapon after being hit + code:00A-CF8-3B7 + cheat + description:Start with 5 lives + code:048-5EF-E62 + cheat + description:Start with 7 lives + code:068-5EF-E62 + cheat + description:Start with 2 energy bars + code:025-5CF-C42 + cheat + description:Start with 4 energy bars + code:045-5CF-C42 + cheat + description:Start with 6 energy bars + code:065-5CF-C42 + cheat + description:Start with timer at 2:15 for first stage + code:029-B3F-A26 + cheat + description:Start with timer at 4:15 for first stage + code:049-B3F-A26 + cheat + description:Start with timer at 7:15 for first stage + code:079-B3F-A26 + +cartridge sha256:56d3dee063b8801704a284bd1bc229b94f15a3a448f485d347f04283d9bd16d7 + name:Castlevania Legends (USA, Europe) (SGB Enhanced) + cheat + description:Invincibility + code:C97-3BA-C45 + cheat + description:Infinite lives + code:DA3-45B-4C1 + cheat + description:Infinite time + code:C9D-85D-6E2 + cheat + description:Disable death traps + code:C94-5CA-D5D + cheat + description:Fast walk left + code:11C-9DB-F7D + cheat + description:Fast walk right + code:11C-76B-F7D + cheat + description:Fast jump left + code:112-D6A-F7D + cheat + description:Fast jump right + code:112-B5A-F7D + cheat + description:Hit anywhere + code:4B3-49D-803+C94-5CA-D5D + cheat + description:Multi-jump + code:CD7-34A-F75+FA1-70A-4C1+037-33A-3B6+287-32A-081+517-36A-E62+557-2EA-80A+597-35A-191+677-31A-E69+C97-37A-C49+C9F-E4E-A29+CB7-30A-3B4 + +cartridge sha256:d8e44a2c2aa67f9afa49365f62802160842aef48d2003a69daeb109813f6f20c + name:Contra - The Alien Wars (USA) (SGB Enhanced) + cheat + description:Invincibility + code:3EB-81B-4CA + cheat + description:Infinite smart bombs + code:007-E2C-19E + cheat + description:Hit anywhere + code:003-77E-B3F+003-7CE-A2B+003-82E-C43+003-87E-F7F+003-C3E-3B2 + cheat + description:Get 5 smart bombs after you die + code:052-B1B-E6E + cheat + description:Get 9 smart bombs after you die + code:092-B1B-E6E + cheat + description:Don't flash after getting hit + code:010-6FB-7FB + cheat + description:Longer invincibility after getting hit + code:FF0-6FB-7FB + cheat + description:Start with Flame Thrower + code:017-97B-E6A + cheat + description:Start with Crush Gun + code:077-97B-E6A + cheat + description:Start with Homing shot + code:087-97B-E6A + cheat + description:Start with Spread shot + code:097-97B-E6A + +cartridge sha256:8e765a4e381462a29632b7a3c5421080be3e8445e5913d7e904a8e80d688ca81 + name:Contra (Japan) + cheat + description:Invincibility + code:BEB-3AC-191+BEA-A3C-191+BEA-0FE-191 + cheat + description:Hit anywhere + code:00A-D0C-91A+C3A-EAC-919+C6A-FBC-191 + cheat + description:Multi-jump + code:005-8CA-B3F+260-E6F-195+460-E9F-195+520-E7F-195+550-EAF-195+C90-EBF-195+CD0-E5F-195+CD0-E8F-195+E55-8BA-F73 + +cartridge sha256:d5a1c0e7af970859449c47fcc80a5f4dfa4f456b20fdfcd49e753ce46f2dc3da + name:Cyraid (USA) + cheat + description:Infinite lives + code:00D-8CB-E6E + cheat + description:1st nasty on bottom level of stage 1 is removed from the game + code:000-729-E6E + cheat + description:Collect only 1 energy capsule and all enemy robots are destroyed-can proceed to next room + code:AFA-4EE-19E + cheat + description:Skip to 3rd room after completing 1st + code:3EE-8AF-4CA+03E-8BF-F7E + cheat + description:Skip to 5rd room after completing 1st + code:3EE-8AF-4CA+05E-8BF-F7E + cheat + description:Skip to 8rd room after completing 1st + code:3EE-8AF-4CA+08E-8BF-F7E + cheat + description:Start with 4 lives + code:04E-7CE-F7E + cheat + description:Start with 6 lives + code:06E-7CE-F7E + cheat + description:Start with 9 lives + code:09E-7CE-F7E + +cartridge sha256:06d2f49483cf16f00580ba227d86174fdb9f72e555d9a9afea6aebcbfff012e4 + name:Daedalian Opus (USA) + cheat + description:Infinite time + code:00D-62D-3BA + cheat + description:Get password to select any level after completing level 1 + code:3E1-9AF-191+0A1-9BF-7FA + cheat + description:Start on level 5 or 6 after completing level 1 + code:3E1-9CF-2AA+051-9DF-F7E + +cartridge sha256:30faf530573519d690d066093e9fae3b461d79df37c025a9ec9115f5fc5786e4 + name:Daffy Duck (USA) + cheat + description:Infinite jet pack + code:AF4-01C-19A + cheat + description:Infinite jet pack + hit anywhere + code:AF4-01C-19A+C3D-F2C-E61+18D-D5C-6EA+FAD-EBC-801+FAE-B2C-801 + +cartridge sha256:b482f9a96a292dea1fcc94bdeae24b664a3222c9eb820795388aab274eebdaf0 + name:Darkman (USA, Europe) + cheat + description:Infinite energy + code:BA5-0FF-081 + cheat + description:Infinite lives + code:014-DDF-E69 + cheat + description:Infinite time + code:005-97F-E6E + cheat + description:Start 1st life with mega-energy + code:63F-91C-91A + cheat + description:Start 1st life with 1/2 energy + code:0AF-91C-91A + cheat + description:Start rest of lives with mega-energy + code:636-40D-91A + cheat + description:Start with 9 minutes + code:909-ACA-E6B + cheat + description:Start with 1 life + code:002-4DF-E66 + cheat + description:Start with 8 lives + code:072-4DF-E66 + +cartridge sha256:122a1d3bd99c87a337f770fbdef2b7cf8538673df1595585af6684d4d4807614 + name:Darkwing Duck (USA) + cheat + description:Infinite lives + code:01A-0BF-C4D + cheat + description:Infinite ammo on pick-up + code:FAD-398-4C1 + cheat + description:Invincibility time lasts 4 seconds + code:AA0-64B-A2B + cheat + description:Invincibility time lasts 6 seconds + code:FF0-64B-A2B + cheat + description:1 touch by an enemy kills you + code:010-6FB-A2B + cheat + description:Start with 1 pt. of energy and 1 life - 1st game + code:011-84F-F7A + cheat + description:Start with 5 pts. of energy on 1st life and 5 lives - 1st game + code:051-84F-F7A + cheat + description:Start with 9 pts. of energy on 1st life and 9 lives - 1st game + code:091-84F-F7A + cheat + description:Start with 1 pt. of energy after 1st life + code:019-F0F-F7A + cheat + description:Start with 5 pts. of energy after 1st life + code:059-F0F-F7A + cheat + description:Start with 9 pts. of energy after 1st life + code:099-F0F-F7A + +cartridge sha256:61d632a2e17526cc55cc8e107abaf9aa11830cd4dd94c0b0f94d10a12a0c9f71 + name:David Crane's The Rescue of Princess Blobette starring A Boy and His Blob (USA) + cheat + description:Infinite jellybeans + code:000-56D-E6E + cheat + description:Infinite lives + code:00D-4FD-3BE + cheat + description:Start with 2 honeys + code:02C-0E8-E66 + cheat + description:Start with 4 honeys + code:04C-0E8-E66 + cheat + description:Start with 8 honeys + code:08C-0E8-E66 + cheat + description:Start with 2 root beers + code:02C-0C8-E6A + cheat + description:Start with 4 root beers + code:04C-0C8-E6A + cheat + description:Start with 2 tangerines + code:02C-0A8-F72 + cheat + description:Start with 4 tangerines + code:04C-0A8-F72 + cheat + description:Start with 2 vanillas + code:02C-088-F7E + cheat + description:Start with 4 vanillas + code:04C-088-F7E + cheat + description:Start with 2 limes + code:02C-068-E6A + cheat + description:Start with 4 limes + code:04C-068-E6A + cheat + description:Start with 2 apples + code:02C-048-E6E + cheat + description:Start with 4 apples + code:04C-048-E6E + cheat + description:Start with 2 bananas + code:02C-028-E6A + cheat + description:Start with 4 bananas + code:04C-028-E6A + cheat + description:Start with 2 colas + code:02C-008-E6A + cheat + description:Start with 4 colas + code:04C-008-E6A + cheat + description:Start with 2 coconuts + code:02B-FE8-E66 + cheat + description:Start with 4 coconuts + code:04B-FE8-E66 + cheat + description:Start with 2 strawberries + code:02B-FC8-E6A + cheat + description:Start with 4 strawberries + code:04B-FC8-E6A + cheat + description:Start with 2 licorices + code:02B-FA8-E62 + cheat + description:Start with 4 licorices + code:04B-FA8-E62 + cheat + description:Start with 2 ketchups + code:02C-108-E6E + cheat + description:Start with 4 ketchups + code:04C-108-E6E + cheat + description:Start with 2 punches + code:02C-128-E6A + cheat + description:Start with 4 punches + code:04C-128-E6A + cheat + description:Start with 2 mints + code:02C-148-E6A + cheat + description:Start with 4 mints + code:04C-148-E6A + cheat + description:Start with 2 lives + code:02B-CA8-F7E + cheat + description:Start with 4 lives + code:04B-CA8-F7E + cheat + description:Start with 8 lives + code:08B-CA8-F7E + +cartridge sha256:1a62bbcaff8d12b752826472beac346e5fce9d8640f7ae23c6e390b79e55346d + name:Days of Thunder (USA, Europe) + cheat + description:Infinite time in pits + code:FAE-7B9-4C1 + cheat + description:Infinite fuel + code:002-948-2A3 + cheat + description:Car takes no damage + code:006-9CE-3B7 + cheat + description:Tires take no damage + code:C97-2FD-3BA + +cartridge sha256:d534102be843dc15a465709164e09e82c6bdf6df2ac440930af2e34c2f0e01ce + name:Dead Heat Scramble (USA) + cheat + description:Infinite time + code:004-05F-19E + cheat + description:Start on stage 2 + code:02B-0C8-E6E + cheat + description:Start on stage 3 + code:03B-0C8-E6E + cheat + description:Start on stage 4 + code:04B-0C8-E6E + cheat + description:Start on stage 5 + code:05B-0C8-E6E + cheat + description:Start on stage 6 + code:06B-0C8-E6E + cheat + description:Start on stage 7 + code:07B-0C8-E6E + cheat + description:Start on stage 8 + code:08B-0C8-E6E + cheat + description:Start on stage 9 + code:09B-0C8-E6E + cheat + description:Start on stage 10 + code:0AB-0C8-E6E + +cartridge sha256:a089bea1d6eec0e99f03276744aea293fe3fe3a2889791ab8f3a00b83e2cf58b + name:Deer Hunter (USA) + cheat + description:Infinite time + code:004-1FF-19A + +cartridge sha256:2d8fb80ece07198260fb47b6a2e8d0097e2d6ca27fb21bc3c439f90d7880317d + name:Dig Dug (USA) + cheat + description:Infinite lives + code:008-1BB-19E + cheat + description:When Pookas are partially inflated, they don't shrink + code:004-50C-3BE + cheat + description:1 pump kills monster instantly + code:046-D9C-E6E+043-9ED-E6E+047-8EB-E6E + cheat + description:Start with 6 lives + code:06B-ACA-E66 + cheat + description:Start with 9 lives + code:09B-ACA-E66 + cheat + description:Start with 2 lives + code:02B-ACA-E66 + cheat + description:Start on level 4 (display still says level 1) + code:3EC-D9A-08A+04C-DAA-E62 + cheat + description:Start on level 2 (display still says level 1) + code:3EC-D9A-08A+02C-DAA-E62 + cheat + description:Start on level 9 (display still says level 1) + code:3EC-D9A-O8A+09C-DAA-E62 + +cartridge sha256:2781f6b1014336e3318073f162cadd970329c8148fc62b5e795441cd6fd57051 + name:Donkey Kong (Japan) (En) (SGB Enhanced) + cheat + description:Infinite lives + code:009-4DF-3BE + cheat + description:Infinite time + code:00C-34F-E6E + cheat + description:Timer is 2x faster + code:02C-34F-E6E + cheat + description:Practice stage XX - level indicator doesn't work, can't go on to next level + code:3E4-F3D-081+XX4-F4D-4CE+004-F5D-C49 + cheat + description:Start with 36 lives + code:882-64F-F7A + +cartridge sha256:b490c89efe718633b07381def66ce0ed58a5075aabe40c6e644baf2b408a76f4 + name:Donkey Kong (World) (Rev A) (SGB Enhanced) + cheat + description:Invincibility + code:C93-B4A-3B2+C94-4DA-2A3+C95-46A-3B2 + cheat + description:Invincibility (alt) + code:FA1-F5A-E61 + +cartridge sha256:eaf831ddd75e7cbc9990e478a139ac162034c03377670fdb79615a9aa2cc570d + name:Donkey Kong Land (USA, Europe) (SGB Enhanced) + cheat + description:Invincibility + code:3E0-81B-4CA + cheat + description:Infinite lives + code:00D-9DB-3BE+21D-A0B-E61 + cheat + description:Multi-jump + code:CD5-AFA-081+F65-B4A-2AA+005-B5A-D5E+015-AAA-D5A+1F5-ACA-B36+295-B1A-F71+2D5-B2A-191+305-ADA-08A+365-B3A-F72+BD5-B0A-C46+CA5-ABA-F71 + cheat + description:Always save game at end of level, regardless if you have KONG letters or not + code:C30-CBB-C41 + cheat + description:Lose all your lives when you die + code:C3D-A0B-E61 + cheat + description:If you get hit you don't change characters until you are back at the map screen + code:C9D-FDB-4C1 + cheat + description:Each banana gives you mega lives (disable when you have enough lives) + code:004-C6B-3BE+3E4-C0B-3B2 + cheat + description:Change soundtrack + code:002-1FB-3BE + cheat + description:Start with 1 life + code:00E-899-F7E+00E-958-F7E + cheat + description:Start with 9 lives + code:08E-899-F7E+08E-958-F7E + cheat + description:Start with 15 lives + code:0EE-899-F7E+0EE-958-F7E + cheat + description:Start with 99 lives + code:63E-899-F7E+63E-958-F7E + +cartridge sha256:75f902ab8674c3cd379438fbd54cfe7e87ca3ddf9727679547261d1b77db720b + name:Double Dragon (USA, Europe) + cheat + description:Infinite health + code:012F98C4 + cheat + description:Infinite lives + code:010499C4 + cheat + description:Hit anywhere + code:18E-979-6EE+4CE-989-F78 + cheat + description:One hit kills (bosses die after three hits) + code:00A-DA9-4CA+00B-629-F7A + +cartridge sha256:21639689078496d4c2d000b120d493b69e7df603e5c2b5cd337974665e597878 + name:Double Dragon II (USA, Europe) + cheat + description:Invincibility + code:C94-E6C-6EE + cheat + description:Hit anywhere + code:183-9FC-081+233-A0C-A2B + cheat + description:One hit kills + code:006-F2A-D5E+007-72A-D5A+007-A3A-F7A+016-F4A-F7A + +cartridge sha256:ba60449b8e57d1288e78a2cb69c6df46e1443cc611d139d27f4c5d5fad307fd3 + name:Double Dragon 3 - The Arcade Game (USA, Europe) + cheat + description:Infinite lives + code:000-0E8-19E + cheat + description:Infinite coins + code:00F-1BF-E6E + cheat + description:Start with 4 lives + code:030-9FF-F72 + cheat + description:Start with 10 lives + code:090-9FF-F72 + cheat + description:Start with 13 lives + code:0C0-9FF-F72 + cheat + description:Start with 5 coins + code:049-498-E6E + cheat + description:Start with 10 coins + code:099-498-E6E + cheat + description:Start with 20 coins + code:199-498-E6E + cheat + description:Start 1st life with 5 energy points + code:500-97F-194 + cheat + description:Start 1st life with 15 energy points + code:F00-97F-194 + cheat + description:Start with 5 points of energy - after 1st life + code:500-138-194 + cheat + description:Start with 15 points of energy - after 1st life + code:F00-138-194 + +cartridge sha256:936df4d0f74620c784129259a22fc3216eea04f70c10cab6005457a0f681e313 + name:Double Dribble - 5 on 5 (USA) + cheat + description:Infinite time + code:00B-8CF-E6E + cheat + description:No computer scoring + code:00D-64F-6E2 + cheat + description:Game lasts only 1 quarter, goes straight to 4th quarter + code:04C-E2F-E6E + cheat + description:When selecting skill level, keep pressing down. Bleeping will continue, and computer will become more and more skillful. + code:FFA-0BE-E66 + +cartridge sha256:34f11935cb3c23102462aab9d96c09e25b81b35eef91f5e5456b2c3665734f0e + name:Dragon Warrior III (USA) + cheat + description:Enemies only attack themselves + code:04A-DDA-B3A+F6A-DCA-4CA + cheat + description:HP set to approx 198 every move + code:7CF-5EA-08F + +cartridge sha256:64d791cadae2500ddd7dfd3ebedc48a182fdc0e027f9bfd74c8ff65b56371dbf + name:Druaga no Tou (Japan) + cheat + description:Reset to see ending + code:081-6FF + +cartridge sha256:9eee3454a1198c01c7adb9562507f2eb5791888c63885bea2e933948f66f6321 + name:Extra Bases! (USA) + cheat + description:Outs aren't counted + code:000-0BE-3BA + cheat + description:Strikes aren't counted + code:000-7AB-3BA + cheat + description:Balls aren't counted + code:000-8BB-3BA + cheat + description:Opponents can't score (disable when you're batting so you can score) + code:00B-91A-19A + cheat + description:One strike and you're out + code:01F-D6F-E66 + cheat + description:2 strikes and you're out + code:02F-D6F-E66 + cheat + description:1 out and side is retired + code:01F-F0F-E66 + cheat + description:2 outs and side is retired + code:02F-F0F-E66 + cheat + description:1 ball and you walk + code:01F-C0F-F7A + cheat + description:2 balls and you walk + code:02F-C0F-F7A + +cartridge sha256:571e45610cae528b3c50304c42c946f307d71797fc2029e9ca1978045dd5186d + name:F-15 Strike Eagle (USA, Europe) + cheat + description:Infinite bullets + code:FAA-52D-4C1 + cheat + description:Infinite sidewinders + code:FA8-EEF-4C1 + cheat + description:Infinite mavericks + code:FA8-ABF-4C1 + cheat + description:Infinite E.C.M. + code:FA8-5BF-4C1 + cheat + description:Fly very slowly + code:013-BCC-E62 + cheat + description:Fly at supersonic speed + code:093-BCC-E62 + cheat + description:Start with 10 sidewinders + code:0A3-88C-912 + cheat + description:Start with 50 sidewinders + code:323-88C-912 + cheat + description:Start with 90 sidewinders + code:5A3-88C-912 + cheat + description:Start with 10 mavericks + code:0A3-8DC-D56 + cheat + description:Start with 50 mavericks + code:323-8DC-D56 + cheat + description:Start with 90 mavericks + code:5A3-8DC-D56 + cheat + description:Start with 10 E.C.M. + code:0A3-92C-80A + cheat + description:Start with 50 E.C.M. + code:323-92C-80A + cheat + description:Start with 90 E.C.M. + code:5A3-92C-80A + cheat + description:Start with 513 bullets + code:023-9BC-E66+013-9AC-6EA + cheat + description:Start with 2049 bullets + code:083-9BC-E66+013-9AC-6EA + cheat + description:Start with 4097 bullets + code:103-9BC-E66+013-9AC-6EA + +cartridge sha256:db506cb639b6336bf17c993c597da3990398ec01e235e0d9236e9df87ab0439e + name:Ferrari Grand Prix Challenge (USA, Europe) + cheat + description:Don't lose speed when touching side of track in qualifying round or race. Hitting sign will slow you down (if you accelerate fully, release A and position car in middle of track, it will steer itself). + code:004-58C-19E + cheat + description:When you crash with another car, your speed won't drop to 0 + code:000-22C-C49 + cheat + description:No qualifying timer + code:00A-39B-E6E+00A-1AB-E6E + +cartridge sha256:9b72e7d44d1cb31a06cf4e630c83abc61fb7218e3d55d7dc6aa1ecbf9e490cf0 + name:Fighting Simulator 2 in 1 (USA, Europe) + cheat + description:Infinite energy + code:3D7-3CE-19A + cheat + description:Infinite lives + code:008-D7E-19E + cheat + description:Start with 5 lives + code:057-24E-E66 + cheat + description:Start with 9 lives + code:097-24E-E66 + cheat + description:Start with 15 lives + code:0F7-24E-E66 + +cartridge sha256:5a462f1bbb4e75823c04c7a0b2a7497cbe7e709a425854c71c1fc4d60f16f445 + name:Final Fantasy Adventure (USA) + cheat + description:Most items are free + code:406-06A-E6E + cheat + description:Start with 255 of each ability + code:FFE-6B9-E62 + cheat + description:Start with 65,330 GP + code:FFE-CC9 + +cartridge sha256:e5b1d116a8fb01b7a7213f906b3ef1bcc91a18f6826b01ee1bccd89429a0d906 + name:Final Fantasy Legend, The (USA) + cheat + description:Human male - Start with 1 strength point + code:011-238-C4A + cheat + description:Human male - 5 strength points + code:051-238-C4A + cheat + description:Human male - 2 defense points + code:021-248-E6E + cheat + description:Human male - 6 defense points + code:061-248-E6E + cheat + description:Human male - 3 agility points + code:031-258-F7A + cheat + description:Human male - 7 agility points + code:071-258-F7A + cheat + description:Human male - 4 mana points + code:041-268-E6A + cheat + description:Human male - 8 mana points + code:081-268-E6A + cheat + description:Human male - 1 HP + code:012-588-19A + cheat + description:Human male - Start with 5 HP + code:052-588-19A + +cartridge sha256:2d89231f9e264a024d634bcf7d00de5a66d8a45f6f4ca33e1fc1602a35b9840b + name:Final Fantasy Legend II (USA) + cheat + description:Infinite HP (don't heal or stay and Inn) + code:B90-64B-A9E + cheat + description:Get extra GP and Meat + code:C9D-23B-2AA + cheat + description:Get tons of GP after every battle + code:00D-23B-21A + cheat + description:Engage in a fight every second + code:37F-C5D-36E + cheat + description:All characters start with 15,163 HP (shows only 999) + code:005-96F-08B+005-9CF-08B + cheat + description:Start with 9 HP + code:098-E28-086 + cheat + description:Start with 9 defense points + code:098-E68-E66 + cheat + description:Start with 9 mana points + code:098-E78-E66 + cheat + description:Start with 9 agility points + code:098-E58-F7E + cheat + description:Start with 9 strength points + code:098-E48-F72 + cheat + description:Start with 9 swords (if your character can start with swords) + code:09E-818-2A2 + +cartridge sha256:5ed87f65225b72a74c3c04a4e5d67683fb5cc33e5f1266157350828ab973fc1d + name:Final Fantasy Legend III (USA) + cheat + description:Set initial power to mega-power + code:FFA-928-E6A+FF8-918-2A2+FF8-938-2A2 + cheat + description:Always strike first + code:FFA-A09-343 + cheat + description:Able to run from every battle, even bosses + code:FFA-B4B-AA3 + cheat + description:Gain extra EXP and GP + code:D77-CAA-356 + cheat + description:Defeating leftmost or upper-left enemy defeats all enemies on screen + code:024-CAA-356 + cheat + description:Gain a level after every battle on a new game - Character 1 (Hero - Arthur) + code:FFA-878-E6E + cheat + description:Gain a level after every battle on a new game - Character 2 (Boy - Curtis) + code:FFA-E78-E6E + cheat + description:Gain a level after every battle on a new game - Character 3 (Girl - Gloria) + code:FFB-478-E6A + cheat + description:Gain a level after every battle on a new game - Character 4 (Heroine - Sharon) + code:FFB-A78-E6A + +cartridge sha256:8327ed0d686d223995f86c267eeaf5f450c0d16a9bf9b6925dcb52cd1481f0e1 + name:Fish Dude (USA) + cheat + description:Infinite lives + code:002-A8F-3BE + cheat + description:No timer + code:215-25F-081 + cheat + description:Start with 1 life + code:002-3DF-E62 + cheat + description:Start with 5 lives + code:042-3DF-E62 + cheat + description:Start with 9 lives + code:082-3DF-E62 + cheat + description:Start with 15 lives (ignore counter for first 5 lives) + code:0E2-3DF-E62 + +cartridge sha256:da62ce2133b788e88605fad8f8d15582457d2a08de88124f231ef943ffba8805 + name:Fist of the North Star (USA) + cheat + description:Almost invincible + code:21E-9FF-4C1 + cheat + description:No energy loss from weapons thrown + code:21F-A5F-4C1 + cheat + description:Start on level 5 + code:05B-CCE-E6E + cheat + description:Start on level 9 + code:09B-CCE-E6E + cheat + description:Start with 25% energy + code:40F-F7E-195 + cheat + description:Start with 50% energy + code:7F4-F7E-195 + cheat + description:Start with 75% energy + code:C44-F7E-195 + +cartridge sha256:eededd0318cc5b80a2aa019a9a7eb3dfb9cb9ac11d974d24d704d7d4cf771a94 + name:Flash, The (USA, Europe) + cheat + description:Infinite energy (except against exploding bombs) + code:00A-85F-E6D + cheat + description:Infinite lives + code:003-A8F-E69 + cheat + description:Infinite time (disable at end of each stage) + code:00D-B6C-3BE + cheat + description:Start with 1 life + code:015-9CF-E66 + cheat + description:Start with 6 lives + code:065-9CF-E66 + cheat + description:Start with 1/2 surge power + code:4C5-A1F-D54 + cheat + description:Start with 1/2 energy + code:245-A6F-C4B + +cartridge sha256:44bd5dd98b6ca3730435197d5af7f4fb6fa0f86fecf9b74005d5a76c28870f88 + name:Foreman for Real (USA, Europe) + cheat + description:Enable everyone for tournament mode + code:00C-9BF-E6E+13C-A0F-D56 + +cartridge sha256:af4fda51b28e426f6cab8b48037cf2cbc18ad6c1f02311ad901365aa52c918b7 + name:Ganso!! Yancha Maru (Japan) + cheat + description:Invincibility (the second code kills enemies on contact) + code:007-76B-F76+007-7BB-E6E + cheat + description:Infinite Shurikens on pick-up + code:01B-8DF-E66 + cheat + description:999 coins on pick-up + code:00C-5FF-A29 + cheat + description:Infinite time + code:00B-B9F-3B7 + +cartridge sha256:78d35816612a521315e0b0618886e4b9e1005c58e459248c7e7585d8c04e71ac + name:George Foreman's KO Boxing (USA, Europe) + cheat + description:Infinite health (display still decreases) + code:3E9-CBE-4CA + cheat + description:Infinite time + code:001-89E-E6E + cheat + description:Infinite super punch + code:3E7-EEE-08A + +cartridge sha256:dc898d66af6c2ada73946f1cb68f1539c16240060f72e31da5bee2ba2655fcbc + name:Goal! (USA) + cheat + description:Infinite time + code:009-EFE-E6E + cheat + description:Select time of up to 99 minutes per half + code:633-ECB-5DE + cheat + description:No goals scored against you by computer + code:00A-DAB-19A + cheat + description:Some teammates have a mega-kick + code:225-5BA-C46 + cheat + description:Player 2 is fastest on the pitch + code:FF5-5AA-CDE+FF5-5BA-C46+FF5-5CA-CBE + +cartridge sha256:185f092bbebd5fa29a82ffb7d18c8242f75d6f8fee968cf6dee00b32a879febb + name:God Medicine - Hukkoku Ban (Japan) (SGB Enhanced) + cheat + description:Sell an item to get maximum cash + code:00F-60A-E66 + cheat + description:Gain maximum EXP after each battle + code:006-0CB-809 + cheat + description:No random battles + code:C92-94C-C49 + cheat + description:Enemies have no HP + code:AF0-4AB-802+AF0-52B-802 + cheat + description:Final boss has no HP + code:005-D68-E66 + +cartridge sha256:896d9ffbdfe35c802cdcb66b5a6ce84a4ad6bc356c85067904883944a621cbb4 + name:Golf (World) + cheat + description:Wind power is 10 mph + code:3ED-87E-08A+5ED-88E-C4E + +cartridge sha256:2ed249eb86d4fd01e10efd1787a545f4921c19dc0e00b5c516b8bbdfe4c4aedc + name:Gradius - The Interstellar Assault (USA) + cheat + description:Invincibility + code:C91-18A-081 + +cartridge sha256:bfbed25beef74dec194a7330e3f4864a4b82f28927121cf03d9b871965553420 + name:Heavyweight Championship Boxing (USA) + cheat + description:No ring timer + code:00B-A4E-E6E + cheat + description:No round increase + code:AF6-E1B-19E + cheat + description:Juggle your power - can alter power settings and give full power in all categories + code:008-B2E-19E + cheat + description:Start with punch, life and speed at 1 + code:014-78F-E66 + cheat + description:Start with punch, life and speed at 2 + code:024-78F-E66 + cheat + description:Start with punch, life and speed at 3 + code:034-78F-E66 + cheat + description:Start with punch, life and speed at 4 + code:044-78F-E66 + cheat + description:Start with punch, life and speed at 5 + code:054-78F-E66 + cheat + description:Start with punch, life and speed at 6 + code:064-78F-E66 + cheat + description:Start with punch, life and speed at 7 + code:074-78F-E66 + cheat + description:Start with punch, life and speed at 8 + code:084-78F-E66 + cheat + description:Start with punch, life and speed at 9 + code:094-78F-E66 + cheat + description:Start with super power + code:994-78F-E66 + +cartridge sha256:6bf16580b0047f7b0dbaf2bf9a2d34095e057efe70414feeda48de8dcf8952fd + name:High Stakes (USA) + cheat + description:Once you've collected an item from Shady, you can't lose it - blackjack mission 1 only + code:00C-ADB-3BE+006-6BA-3BE + cheat + description:Betting and cheat tokens cost 0 + code:00B-B1E-A22 + cheat + description:No limit to how much you can buy of each item from Shady + code:3E0-BOB-081+000-B2B-E61 + cheat + description:Start with 1/2 money (display will show $50,000) + code:628-D8F-E65 + cheat + description:Start with over $65,000 (display will show $50,000) + code:FF8-D8F-E65 + +cartridge sha256:f6bdf9f2c4148ce7da23986524781ee844729f360ff9ef27d695ecf0886ff9e0 + name:Hit the Ice (USA, Europe) + cheat + description:Infinite timer + code:00A-54E-E6E + cheat + description:Faster timer + code:02A-54E-E6E + cheat + description:Infinite super shots + code:002-97D-3BA + cheat + description:Only 1 super shot allowed + code:012-99D-C42 + cheat + description:5 super shots allowed + code:052-99D-C42 + cheat + description:10 super shots allowed + code:0A2-99D-C42 + cheat + description:1-minute periods - vs. mode + code:011-F6B-F7E + cheat + description:2-minute periods - vs. mode + code:021-F6B-F7E + cheat + description:10-minute periods - vs. mode + code:0A1-F6B-F7E + cheat + description:Neither team can score + code:1004-39B-E6E + cheat + description:10 seconds in short race after the first shot of 20 seconds + code:0A1-97E-6EA + cheat + description:15 seconds in short race after the first shot of 20 seconds + code:0F1-97E-6EA + cheat + description:5 seconds in short race after the first shot of 20 seconds + code:051-97E-6EA + +cartridge sha256:2449307e540566135734977b01ca488a3feb2ce9d887f69a275a308b5a78cc3f + name:Home Alone (USA, Europe) + cheat + description:Infinite hit points + code:00B-5AD-19E + cheat + description:No enemies + code:214-34F-081 + cheat + description:Need 1 treasure to finish level 1 + code:013-E5D-7FA + cheat + description:Start with 1 hit point + code:013-ADD-E66 + cheat + description:Start with 6 hit points + code:063-ADD-E66 + cheat + description:Start with 9 hit points + code:093-ADD-E66 + +cartridge sha256:f1506c97b36e776a8839187b278efacdfacaa6bb5cf0b3f18e04ced31d0d4a01 + name:Home Alone 2 - Lost In New York (USA, Europe) + cheat + description:Infinite lives + code:007-82E-19E + cheat + description:Infinite hits unless picked up by shoulders + code:007-E9E-19E + cheat + description:Get 111,111 points instantly + code:006-75E-08B + cheat + description:Start with 5 lives + code:056-6FE-E66 + cheat + description:Start with 6 lives + code:066-6FE-E66 + +cartridge sha256:0dc2278500feb3844ba0ceabee289be011da1084903ab1c3fd681c83e7191118 + name:Hook (USA) + cheat + description:Infinite lives + code:3DC-FDD-3BE + +cartridge sha256:a04db245f19a55cd3ff43e2b3fc51cc747fc048a551c4e18639fef4af77553e1 + name:Humans, The (USA) + cheat + description:Infinite humans + code:FA3-E9F-4C1 + cheat + description:Infinite time + code:FA9-B7C-4C1 + cheat + description:Start with 6 humans + code:06D-609-D5A + cheat + description:Start with 9 humans + code:09D-609-D5A + cheat + description:Start with 15 humans + code:0FD-609-D5A + +cartridge sha256:ef563c4a4b063ea045d71b435dd078c19d0738f85079928803167cee8f34a4ec + name:Incredible Crash Dummies, The (USA, Europe) + cheat + description:Infinite time + code:001-3EC-E6E + cheat + description:Faster timer + code:021-3E6-E6E + cheat + description:Don't lose money when you go through fire + code:00B-00A-195 + cheat + description:More cash for each hit + code:851-49C-E64 + cheat + description:Start with 2 lives + code:022-A9F-F7E + cheat + description:Start with 4 lives + code:042-A9F-F7E + cheat + description:Start with 8 lives + code:082-A9F-F7E + +cartridge sha256:a900ffcc69fa1fa94dc99584b94914de46d2fa9f1a38c8c303c493a5ee008fec + name:In Your Face (USA) + cheat + description:Computer can't score - when it scores, you get the points + code:004-E9E-6E6 + cheat + description:Opponents are frozen - 2-on-2 game + code:C38-AAF-E61 + cheat + description:5-second game + code:05A-08E-80F + cheat + description:10-second game + code:0AA-08E-80F + cheat + description:20-second game + code:20A-08E-80F + +cartridge sha256:616202e0c2bea4898268c9b3a4eb22e198f1b559e29406057e039dded3db9637 + name:Jeep Jamboree (USA) + cheat + description:Always finish in 1st place + code:3EC-62E-E68+01C-63E-19A + cheat + description:Mega speed - stay at constant high speed even when off course and hitting rocks + code:799-D49-19F+799-D79-19B + cheat + description:Race 1 lap shorter + code:02B-F0A-E6E + cheat + description:Race 2 laps shorter + code:03B-F0A-E6E + cheat + description:Race 3 laps shorter + code:04B-F0A-E6E + +cartridge sha256:873d813fc51b735571c721c12922e85f200ee66f0cb742a60e4a9a63aea74944 + name:Jetsons, The - Robot Panic (USA, Europe) + cheat + description:Infinite lives + code:00F-C7F-E6E + cheat + description:Infinite energy - some robots can't be killed (disable to fight them) + code:009-088-3B7 + cheat + description:Max collectible energy + code:09F-1EC-F7E + cheat + description:Capped robots on first Elroy stage take 1 hit to kill + code:012-A7B-E62 + cheat + description:Capped robots on first Elroy stage take 8 hits to kill + code:082-A7B-E62 + cheat + description:Start with 4 lives + code:04F-16C-E66 + cheat + description:Start with 7 lives + code:07F-16C-E66 + cheat + description:Start with 9 lives + code:09F-16C-E66 + +cartridge sha256:bbc006dcf175f1fec822c533bed6abc136a98bcb3b6f8d726cc87c8e17c62e1f + name:Joe & Mac (USA) + cheat + description:Infinite lives + code:002-37D-E6E + cheat + description:Infinite energy + code:FAB-E9C-4C1 + cheat + description:Take one hit and lose life + code:AFB-E8C-A2C + cheat + description:No extra energy from pick-ups + code:00B-D8C-3B7 + cheat + description:Start with 1 life + code:01A-81F-E66 + cheat + description:Start with 6 lives + code:06A-81F-E66 + cheat + description:Start with 9 lives + code:09A-81F-E66 + cheat + description:Start on level 3 + code:3EA-89F-6E9+02A-8AF-7FD+E0A-8BF-2A9 + cheat + description:Start on level 6 + code:3EA-89F-6E9+05A-8AF-7FD+E0A-8BF-2A9 + cheat + description:Start on level 9 + code:3EA-89F-6E9+08A-8AF-7FD+E0A-8BF-2A9 + +cartridge sha256:63a7bfef616b1f9c19c90fdbbea1a096fd1ab6aad16f67d619b07842b0ad04c1 + name:Jordan vs Bird - One on One (USA, Europe) + cheat + description:Infinite time of possession-1-on-1 game + code:007-06D-E6E + cheat + description:8 seconds of possession-1-on-1 game + code:08D-D67-7FA + cheat + description:10 seconds of possession-1-on-1 game + code:0AD-E67-7FA + cheat + description:15 seconds of possession-1-on-1 game + code:0FD-D67-7FA + cheat + description:No timer + code:007-48D-E6E + cheat + description:5 points on 3-point shots + code:056-72D-E62+056-81D-E62 + cheat + description:8 points on 3-point shots + code:086-72D-E62+086-81D-E62 + cheat + description:12 points on 3-point shots + code:0C6-72D-E62+0C6-81D-E62 + cheat + description:5 points on 2-point shots + code:056-A1D-E6E+056-ADD-E62 + cheat + description:8 points on 2-point shots + code:086-A1D-E6E+086-ADD-E62 + cheat + description:12 points on 2-point shots + code:0C6-A1D-E6E+0C6-ADD-E62 + +cartridge sha256:6b13a664a3c74e6e61b019f4024f65b3fb301ee5518a9cf9e2a27dc41bbdd561 + name:Jurassic Park (USA) + cheat + description:Infinite hearts + code:00C-46E-19E + cheat + description:Infinite lives + code:00C-11E-E6E + cheat + description:Remove All Objects (Disable this code to collect eggs, enable it to avoid the dinosaurs) + code:9BC-55B-10A+F80-75C-CEF+006-42B-DF0 + cheat + description:Only need 1 card to open the gate + code:AF3-C9B-7F6 + cheat + description:Canメt collect any energy + code:003-DCB-19A + cheat + description:First Aid gives you mega energy + code:AF3-DCB-19A + cheat + description:Get max energy from collecting energy + code:3E3-DAB-4CA+033-DBB-F7E + cheat + description:Die after one hit + code:AFC-46E-19E + cheat + description:Start with 1 lives + code:013-9EF-E66 + cheat + description:Start with 5 lives + code:053-9EF-E66 + cheat + description:Start with 7 lives + code:073-9EF-E66 + cheat + description:Start with 9 lives + code:093-9EF-E66 + cheat + description:Start with 1 heart - after 1st life + code:01C-06E-F7A + cheat + description:Start with 9 hearts - after 1st life + code:09C-06E-F7A + cheat + description:Start with 1 heart - 1st life + code:013-9BF-F7A + cheat + description:Start with 9 hearts - 1st life + code:093-9BF-F7A + +cartridge sha256:b0a1019b6199c923a6a764c15e7bf6d1bb0bef8a042c383f3e3ead74ab171ede + name:Kid Dracula (USA, Europe) + cheat + description:Invincibility + code:008-13F-367 + cheat + description:Infinite lives + code:FAB-F5A-4C1 + cheat + description:Start with 1 energy heart + code:015-43F-E66 + cheat + description:Start with 5 energy hearts + code:055-43F-E66 + cheat + description:Start with 1 life + code:005-4BF-E62 + cheat + description:Start with 5 lives + code:045-4BF-E62 + cheat + description:Start with 10 lives + code:095-4BF-E62 + cheat + description:Start on level 3 + code:030-CD8-E6E + cheat + description:Start on level 5 + code:050-CD8-E6E + +cartridge sha256:92c1fbf422abb8f09ca7fdbb563d1284108cc042e60e1222422986d9a59f9d97 + name:Kid Icarus - Of Myths and Monsters (USA, Europe) + cheat + description:Hit anywhere + code:008-B8B-5D4 + cheat + description:Run into enemies to get Hearts + code:185-67B-4CA + cheat + description:Collected hammers seem to count towards your enemy kill number + code:C9A-D18-08F+7AA-B48-E69 + cheat + description:Maximum kills after killing first enemy + code:00C-CAF-A29 + +cartridge sha256:4a091956a579de541aa2eef831e6d0c07d8324255cff7cc889c8ed9b70847769 + name:Killer Instinct (USA, Europe) (SGB Enhanced) + cheat + description:Infinite health + code:FA7-B0B-4C1 + cheat + description:Infinite time + code:002-199-19E + cheat + description:Round starts with 10 seconds + code:103-1CD-80C + cheat + description:Round starts with 30 seconds + code:303-1CD-80C + cheat + description:Round starts with 50 seconds + code:503-1CD-80C + cheat + description:Round starts with 75 seconds + code:753-1CD-80C + cheat + description:Fierce tiger fury does no damage + code:00B-428-6E2 + cheat + description:Fierce tiger fury does more damage + code:88B-428-6E2 + cheat + description:Fierce tiger fury kills + code:FFB-428-6E2 + cheat + description:Fierce wind kick does no damage + code:00B-698-916 + cheat + description:Fierce wind kick does more damage + code:88B-698-916 + cheat + description:Fierce wind kick kills + code:FFB-698-916 + cheat + description:Fierce laser blade does no damage + code:00B-838-91E + cheat + description:Fierce laser blade does more damage + code:88B-838-91E + cheat + description:Fierce laser blade kills + code:FFB-838-91E + cheat + description:Freeze everything except timer + code:D90-38D-B8A + cheat + description:Start with very little energy + code:012-EAD-919 + cheat + description:Start with 1/4 energy + code:4B2-EAD-919 + cheat + description:Start with 1/2 energy + code:882-EAD-919 + cheat + description:Start with 3/4 energy + code:B42-EAD-919 + +cartridge sha256:0f6dba94fae248d419083001c42c02a78be6bd3dff679c895517559e72c98d58 + name:Kirby's Dream Land (USA, Europe) + cheat + description:Infinite lives + code:FA6-DBB-4C1 + cheat + description:Infinite lives and gain points when hit + code:CA1-DOC-FAB+B1F-F1D-649 + cheat + description:Infinite vitality bars except against end of stage boss + code:FA4-63B-4C1 + cheat + description:Hit anywhere + code:003-E1B-F7E + cheat + description:Inhale from anywhere + code:008-53B-08E+008-67B-7FE + cheat + description:Start with 2 lives + code:021-BBF-F7E + cheat + description:Start with 5 lives + code:051-BBF-F7E + cheat + description:Start with 9 lives + code:091-BBF-F7E + cheat + description:Start with 2 vitality bars + code:021-C0F-F72 + cheat + description:Start with 5 vitality bars + code:051-C0F-F72 + cheat + description:Start with 9 vitality bars + code:091-C0F-F72 + +cartridge sha256:08ddc36709d551b6c2b768e8280e0213ebe89a5088b34e1cc6c0e14977b8e312 + name:Kirby's Dream Land 2 (USA, Europe) (SGB Enhanced) + cheat + description:Invincibility after one hit + code:003-838-19E + cheat + description:Don't flash at all after getting hit + code:012-BFA-6EB + cheat + description:Don't flash as long after getting hit + code:202-BFA-6EB + cheat + description:Infinite energy + code:FA7-CBD-4C1 + cheat + description:Infinite lives + code:FA1-C4B-4C1 + cheat + description:Hit anywhere + code:006-E5D-6EA+187-04D-2AA + cheat + description:Inhale from anywhere + code:005-BED-19E+005-DFD-91A + cheat + description:Get items from anywhere + code:18B-898-08A + cheat + description:One hit and you die + code:AFA-9EC-A28 + cheat + description:Each star worth an extra life + code:01C-DE8-F76 + cheat + description:Can't get extra lives from stars + code:00C-DC8-19A + cheat + description:Each star takes away a life + code:01C-DE8-F76+3DC-878-19A + cheat + description:Start with 1 life + code:00D-589-E62 + cheat + description:Start with 5 lives + code:04D-589-E62 + cheat + description:Start with 7 lives + code:06D-589-E62 + cheat + description:Start with 10 lives + code:09D-589-E62 + +cartridge sha256:43bbc3111fe66b5d87940da810a1a0839ab7d48b50c327807538026241b40295 + name:Kirby's Pinball Land (USA, Europe) + cheat + description:Infinite bonus room time - disable to exit + code:FAF-1AA-4C1 + cheat + description:Infinite balls + code:005-34B-E69 + cheat + description:Infinite M-Tomato + code:743-F6B-C49 + cheat + description:30 seconds allowed in Wispy-Woods bonus room + code:300-B99-6EB + cheat + description:99 seconds allowed in Wispy-Woods bonus room + code:990-B99-6EB + cheat + description:Go straight to end of level bosses + code:3EE-CF9-2A9+01E-D09-A21 + cheat + description:Go straight to bonus games + code:3EE-CF9-2A9+02E-D09-A21 + cheat + description:DeDeDe takes 1 hit + code:01D-1DB-B36 + cheat + description:Start with 5 balls + code:054-7CF-E66 + cheat + description:Start with 1 ball + code:014-7CF-E66 + cheat + description:Start with 9 balls + code:094-7CF-E66 + +cartridge sha256:cca2e1e06b50869a16b0b7bcef0095ff7d53af926419808da2b82fbab3762750 + name:Krusty's Fun House (USA, Europe) + cheat + description:Infinite lives + code:FA3-ACF-4C1 + cheat + description:Infinite pies + code:FA6-EBB-4C1 + cheat + description:Start with 2 pies + code:022-5DF-C42 + cheat + description:Start with 7 pies + code:072-5DF-C42 + cheat + description:Start with 15 pies (only shows 10) + code:0F2-5DF-C42 + cheat + description:Start with 2 lives + code:022-43F-E66+022-58F-E66 + cheat + description:Start with 6 lives + code:062-43F-E66+062-58F-E66 + cheat + description:Start with 9 lives + code:092-43F-E66+092-58F-E66 + +cartridge sha256:dff23b973c6c5e85da109dfb346ee396625fa7f934bc7c4b853ce4f237dfa42a + name:Kung-Fu Master (USA, Europe) + cheat + description:Mostly invincible + code:009-FFF-3BE+00A-42F-A28 + cheat + description:Freeze timer (disable to complete level) + code:00C-8EA-3BE + cheat + description:Touch weak enemies to defeat them + code:009-E6F-F72 + +cartridge sha256:dbcecd9ed9ee70e8f3a231eb0bda95c882ff0e9697d52fe919a02f076962de91 + name:Lamborghini American Challenge (USA, Europe) + cheat + description:Infinite money + code:002-8AC-910 + cheat + description:Infinite turbos + code:009-318-3BE + cheat + description:Increased money + code:99D-1AE-E6A + cheat + description:No Loss Of Speed On Collisions + code:001-C39-6EB + cheat + description:No Loss Of Speed When Off Track + code:00A-189-F7A + cheat + description:Start With 2 Turbos + code:01D-27E-E6E + cheat + description:Start With 6 Turbos + code:05D-27E-E6E + cheat + description:Start With 10 Turbos + code:09D-27E-E6E + +cartridge sha256:2451d61085652f25d36e35f1fa50dc7e6b51c6e20a50120decc33efcf1c91109 + name:Last Action Hero (USA, Europe) + cheat + description:Level select (# = level 1-9 or A for ending credits) + code:0#1-88F-E6E + +cartridge sha256:21f712e213f43f9efb93ca039a5190fc09325d5d932af1fb2f8e90b4f9fd169f + name:Legend of Zelda, The - Link's Awakening (USA, Europe) + cheat + description:Infinite health + code:FAO-999-4C1 + cheat + description:Infinite rupees (rupees aren't deducted for purchases you can afford) + code:FAF-BDA-4C1+FAF-B2A-4C1 + cheat + description:All items you get start at max power. When you get an item, you must have a space open (either A or B). + code:09C-56B-E6E+09C-74A-E6E + cheat + description:Get 5 rupees for each single rupee + code:054-EE9-E6E + cheat + description:Get 50 rupees for each single rupee + code:324-EE9-E6E + cheat + description:Get 255 rupees for each single rupee + code:FF4-EE9-E6E + cheat + description:Walk through walls. Can walk past the edge of walls and objects, but not through people. Be careful of entering doors from the wrong side. If you get stuck on the edge of a screen, try diagonal and straight movement in all directions. Works from locations in the water. Doesn't work for underground passages. + code:AF7-168-3B0 + +cartridge sha256:c95dd3d9cb798e86c28e3269554e458d434bf3277b96cadf5bc81cfacfb5ee60 + name:Legend of Zelda, The - Link's Awakening DX (USA, Europe) (SGB Enhanced) + cheat + description:Walk through walls. Be careful of entering doors from the wrong side. If you get stuck on the edge of a screen, try diagonal and straight movement in all directions to get yourself unstuck. Allows you to go through walls starting from locations in the water. Doesn't work for underground passages. + code:AF4-5B8-3B0 + +cartridge sha256:0b56b78a9e45452e98c33edd111234931f1e034dc097f6f23082eb8db6055474 + name:Legend of Zelda, The - Oracle of Ages (USA) + cheat + description:Defeat 1 enemy for fully grown Gashas/Maple meeting + code:002-46F-E69 + cheat + description:Infinite Seed/Bomb use on pick-up + code:007-D3E-E6E + cheat + description:Each Seed/Gasha/Bomb worth 99 + code:005-92B-E62 + cheat + description:Walk through walls. It's not hard to get stuck, so save where it's safe. + code:AFD-A5A-802 + +cartridge sha256:862a51368fb30539279d336b3fe193b43876d2cb15c87a36f5da517804ab3971 + name:Legend of Zelda, The - Oracle of Seasons (USA) + cheat + description:Defeat 1 enemy for fully grown Gashas/Maple meeting + code:002-46F-E69 + cheat + description:Infinite Seed/Bomb use on pick-up + code:007-ACE-E6E + cheat + description:Each Seed/Gasha/Bomb worth 99 + code:005-98B-E62 + cheat + description:Walk through walls. It's not hard to get stuck, so save where it's safe. + code:AFC-96A-802 + +cartridge sha256:68e708010f14daa6013370d43b9ee00a2305b1a95285e7daafa6642a0677b8c2 + name:Lethal Weapon (USA, Europe) + cheat + description:Infinite weapon energy + code:FA6-01E-4C1 + cheat + description:Infinite life energy (except falling down holes) + code:FAA-1DD-4C1+FAA-A5D-4C1 + cheat + description:No enemies + code:004-5BB-195 + cheat + description:Start with weapon energy on 1/2 + code:1E9-CEE-E6B + cheat + description:Start with life energy on 1/2 + code:239-C3E-E6B + +cartridge sha256:f15722ebebdae93e08bd6642d642614114f2d128778d6a131748c9855603e052 + name:Little Mermaid, The (USA) + cheat + description:Infinite energy + code:C98-22E-3BE + cheat + description:Infinite lives + code:00C-79F-3BE + cheat + description:Start with 2 lives + code:017-F1F-E66 + cheat + description:Start with 6 lives + code:057-F1F-E66 + cheat + description:Start with 10 lives + code:097-F1F-E66 + cheat + description:Start with 1 energy pt + code:018-96F-E66 + cheat + description:Start with 5 energy pts + code:058-96F-E66 + cheat + description:Start with 8 energy pts + code:088-96F-E66 + cheat + description:Start on level 2 + code:018-07F-195 + cheat + description:Start on level 3 + code:028-07F-195 + cheat + description:Start on level 4 + code:038-07F-195 + cheat + description:Start on level 5 + code:048-07F-195 + cheat + description:Start on level 6 + code:058-07F-195 + cheat + description:See end of game credits + code:068-07F-195 + +cartridge sha256:bf4cae27bd0dfdede3838d50f92d03cb7cd183a15091bd2a76c7b3fc7b3e718b + name:Madden '95 (USA, Europe) (SGB Enhanced) + cheat + description:Infinite play clock + code:00C-3BE-19E + cheat + description:Infinite game time + code:00C-62E-19E+F09-33C-6E9 + cheat + description:Start on second down + code:028-8ED-E6E + cheat + description:Start on third down + code:038-8ED-E6E + cheat + description:Start on fourth down + code:048-8ED-E6E + cheat + description:Down never increases + code:005-DED-19A+FAE-F0C-4C1 + +cartridge sha256:eabe2a1c9116871837ddb1d39d643621dc144c18490b5673bd8eedc88b8ceff9 + name:Malibu Beach Volleyball (USA) + cheat + description:Easier to score + code:03D-AAB-F7A + cheat + description:Computer can't score a point. If score is 0-0, makes you change court a lot. + code:00F-0CA-E6D + cheat + description:You always serve + code:00D-0EA-E6E+00D-E0A-E6E + +cartridge sha256:0d479d68a4ac800ab9fde8b3db016af718c13a979163b3eb34b00af96550cd3e + name:Mario's Picross (USA, Europe) (SGB Enhanced) + cheat + description:Infinite time + code:00B-118-19E + cheat + description:Mistakes don't decrease time + code:00C-8F8-A2C + +cartridge sha256:2c45623446cf82896830712223079e9be5e79b3e5faf550c07f92f082bef419e + name:Maru's Mission (USA) + cheat + description:Infinite energy + code:009-7CC-A2C+009-80C-808 + +cartridge sha256:33d16365318411f063edd9100c79458aabb7ea71bb1873e30f38b93814f0ec6e + name:Mega Man - Dr. Wily's Revenge (USA) + cheat + description:Invincibility + code:005-FAA-E6E+418-3F9-190 + cheat + description:Infinite weapons except Flash + code:002-09B-A22+FA1-5AA-4C1+FA9-64B-4C1 + cheat + description:Hit anywhere + code:018-61A-191+15A-3DD-A26+52B-47D-19F+008-1AD-5D4+00B-5AD-6EE+180-D2E-08A+110-D3E-D5A + cheat + description:Multi-jump + code:FAB-249-6EE+3FB-259-C43+E6B-279-193+01B-289-3B4+00B-2B9-3BE+1CC-CE9-3BA+18C-CF9-4CA + cheat + description:One hit kills + code:00B-62D-E6E+00C-87B-E6E + cheat + description:Moon jump + code:00B-2A9-D5F+18B-499-A22+18B-4A9-5D4+2CB-4B9-4C1 + +cartridge sha256:be3fc7ab2d7eb79a9e2538b090bdecc2694740f3beda933f34cb1e4059b10a11 + name:Mega Man II (USA) + cheat + description:Invincibility + code:C95-CEC-E69 + cheat + description:Infinite weapons + code:00A-14C-A28 + cheat + description:Multi-jump + code:012-45E-E6A+CD0-F0F-195+D40-F1F-195+0F0-F2F-195+C90-F3F-195+CD2-26E-081+F02-27E-5D7+002-28E-D55+182-2AE-4CA+002-44E-6EA + +cartridge sha256:7344a36fcfc8151098238529218762e44c5a1546fab7e7fd5d32927e06cbf5a8 + name:Mega Man III (USA) + cheat + description:Infinite energy + code:00C-099-3B7 + cheat + description:Infinite weapons + code:002-35B-A22+FA4-88A-4C1+FA8-A9A-4C1 + cheat + description:One hit kills + code:009-6ED-E6E+00F-25F-E6E + cheat + description:Laser barriers appear and explode immediately on Sparkman stage + code:009-77C-E6E + cheat + description:Takes 1 hit to kill Merciless Matt + code:019-53C-F76 + cheat + description:Takes 15 hits to kill Merciless Matt + code:0F9-53C-F76 + cheat + description:Multi-jump + code:FAE-3F9-6EE+3FE-409-C43+E6E-429-193+01E-439-3B4+00E-469-3BE+1C0-028-3BA+180-038-4CA + cheat + description:Start with 2 lives + code:02B-17F-E66 + cheat + description:Start with 6 lives + code:06B-17F-E66 + cheat + description:Start with 9 lives + code:09B-17F-E66 + +cartridge sha256:4d980ca46a83cd127312dbc445ed1a83e97ed7a8026dce6fdd22a01b1895781b + name:Mega Man IV (USA) + cheat + description:Invincibility + code:21F-EAA-E61 + cheat + description:Infinite energy + code:001-CE9-3B7 + cheat + description:Infinite lives + code:01C-45F-915 + cheat + description:Shoot more than 3 shots at a time + code:005-67B-A29 + cheat + description:Start with 1/4 energy + code:269-F6F-808 + cheat + description:Start with 1/2 energy + code:4B9-F6F-808 + cheat + description:Start with 3/4 energy + code:709-F6F-808 + cheat + description:Start with 1 lives + code:01C-AEF-E66 + cheat + description:Start with 5 lives + code:05C-AEF-E66 + cheat + description:Start with 9 lives + code:09C-AEF-E66 + +cartridge sha256:7a108770a7c1ad592b52d0c46d7ead422d0a20961abaafca3d40086e3f2f588f + name:Mega Man V (USA) (SGB Enhanced) + cheat + description:Invincibility + code:212-269-E61 + cheat + description:Infinite lives + code:01B-75F-915 + cheat + description:Infinite energy + code:004-1D9-3B7 + cheat + description:Walk through enemies (can still take damage from projectiles) + code:002-CDE + cheat + description:Hit anywhere + code:111-FAE-D5A+181-F9E-08A+11A-0E8-D5A+18A-0D8-08A + cheat + description:Multi-jump + code:FA6-829-6EE+406-839-A23+E66-859-193+016-869-3B4+006-899-3BE+1C8-719-C4A+1C8-799-3BA + cheat + description:One hit kills + code:001-85E-E6E+009-0ED-E6E+00A-4E8-E6E + cheat + description:Start with 1 lives + code:01B-EAF-E66 + cheat + description:Start with 5 lives + code:05B-EAF-E66 + cheat + description:Start with 9 lives + code:09B-EAF-E66 + cheat + description:Start with about 1/4 energy + code:269-44F-808 + cheat + description:Start with about 1/2 energy + code:4B9-44F-808 + cheat + description:Start with about 3/4 energy + code:709-44F-808 + +cartridge sha256:56a69d19ba26941a25adad8bdf17c7baba12245097e901999f4c897eec877ddb + name:Metal Gear Solid (USA) + cheat + description:Infinite ammo for all weapons + code:003-189-19E + cheat + description:Enemies don't see you + code:C94-A88-3B4+C94-E89-081 + +cartridge sha256:3080bcc2eb9965de463f5f4e02f0dabbb13b060e1654a18da8b50948c10af4a6 + name:Metroid II - Return of Samus (World) + cheat + description:Invincibility against enemies + code:C9E-E8D-E69 + cheat + description:Infinite energy + code:80F-6DD-7F6 + cheat + description:Infinite missiles + code:00F-36B-E6E + cheat + description:Hit anywhere + code:0D2-70C-3B2+182-6FC-2AA+182-E3A-2AA + cheat + description:Multi-jump + code:14D-46F-A26+98D-45F-91C+CDD-44F-E61+FA4-30E-4C1+FA4-61E-4C1 + +cartridge sha256:fedb0c8100987cb466c116a3ac3a6572675b6aa721a7a8930cec1ae39f677bc6 + name:Mickey's Dangerous Chase (USA) + cheat + description:Invincibility after first hit + code:001-A8E-E6E + cheat + description:Infinite health + code:FAD-A0E-4C1 + cheat + description:Infinite lives + code:FA5-E2F-4C1 + cheat + description:Start with 99 lives + code:634-B6F-E66 + +cartridge sha256:70124937963d44c034d73e3e3c7ecf9c3440cdb934cd1a8b6fd4629381343d02 + name:Milon's Secret Castle (USA, Europe) + cheat + description:Protection against most hazards + code:FAD-368-4C1 + cheat + description:Infinite money on pick-up + code:FA7-8F9-4C1 + cheat + description:Each $ box is worth 99 + code:3E7-138-081+627-148-DC5+007-158-915 + cheat + description:Start with and keep double shot and shield + code:FAC-FD8-4C1+3CC-A8A-5D4 + cheat + description:Start with 3 energy bars + code:036-EA8-F7E + cheat + description:Start with 6 energy bars + code:066-EA8-F7E + cheat + description:Start with 9 energy bars + code:096-EA8-F7E + +cartridge sha256:d74962fe1750b3918c6b5e34dd30851df50e33eaeb27659097d52090c9803705 + name:Miner 2049er (USA) + cheat + description:Infinite time + code:002-239-E6E + cheat + description:Infinite lives + code:002-3DB-E6E + cheat + description:Nasties are invincible + code:039-CAF-E6A + cheat + description:Start with 2 lives + code:026-9ED-E66 + cheat + description:Start with 4 lives + code:046-9ED-E66 + cheat + description:Start with 8 lives + code:086-9ED-E66 + +cartridge sha256:f6d779c4882e032919903b4874dec1b6f06716911f77eb9f8acd1727215eb791 + name:Missile Command (USA, Europe) + cheat + description:Infinite missiles + code:002-9AE-19E+002-4BE-19E+20F-FDE-D56 + cheat + description:Invincible bases + code:FF6-BBD-191 + cheat + description:New York + code:02F-28E-E6A + cheat + description:London + code:04F-28E-E6A + cheat + description:Sydney + code:06F-28E-E6A + cheat + description:Paris + code:08F-28E-E6A + cheat + description:Moscow + code:0AF-28E-E6A + cheat + description:San Francisco + code:18F-28E-E6A + +cartridge sha256:84686cd3c77c533926fc2c56783613ecc5781de1bff7065e00112a69d17a5e69 + name:Mortal Kombat (USA, Europe) + cheat + description:Infinite health - P1 + code:005-94C-B31 + cheat + description:Infinite time + code:00C-B5E-3BE + cheat + description:Infinite continues + code:002-96D-B31 + cheat + description:Foot sweep does less damage + code:109-C7C-E6F + cheat + description:Foot sweep does more damage + code:FF9-C7C-E6F + cheat + description:1 continue + code:010-14B-F72 + cheat + description:5 continues + code:050-14B-F72 + cheat + description:10 continues + code:0A0-14B-F72 + cheat + description:Punches do less damage + code:109-AFC-6EE + cheat + description:Punches do more damage + code:FF9-AFC-6EE + cheat + description:Knees do less damage + code:109-BFC-E6F + cheat + description:Knees do more damage + code:FF9-BFC-E6F + cheat + description:Uppercuts do less damage + code:109-A7C-E60 + cheat + description:Uppercuts do more damage + code:FF9-A7C-E60 + cheat + description:Kicks to stomach do less damage + code:109-CFC-E6F + cheat + description:Kicks to stomach do more damage + code:FF9-CFC-E6F + cheat + description:Kicks to face do less damage + code:109-B7C-6E3 + cheat + description:Kicks to face do more damage + code:FF9-B7C-6E3 + cheat + description:Shoulder throws do less damage + code:10A-17C-E6F + cheat + description:Shoulder throws do more damage + code:FFA-17C-E6F + cheat + description:Sub-Zero's slide does less damage + code:10A-07C-A2F + cheat + description:Sub-Zero's slide does more damage + code:FFA-07C-A2F + cheat + description:Sonya's leg grab does less damage + code:10A-27C-6EF + cheat + description:Sonya's leg grab does more damage + code:FFA-27C-6EF + cheat + description:Kano's cannonball does less damage + code:10A-1FC-6EF + cheat + description:Kano's cannonball does more damage + code:FFA-1FC-6EF + cheat + description:Rayden's lightning does less damage + code:10A-5FC-7F5 + cheat + description:Rayden's lightning does more damage + code:FFA-5FC-7F5 + +cartridge sha256:29d69e0f71b692f348a0954cc3aaa86dcd9a32d8a7268ce6b76ba26b0c0e4629 + name:Mortal Kombat II (USA, Europe) + cheat + description:Infinite health + code:009-48B-91D + cheat + description:Infinite continues + code:00D-ABF-3BE + cheat + description:Infinite time + code:00C-55B-E6E + cheat + description:No continues + code:001-57F-F72 + cheat + description:1 continue + code:011-57F-F72 + cheat + description:3 continues + code:031-57F-F72 + cheat + description:9 continues + code:091-57F-F72 + cheat + description:15 continues + code:0F1-57F-F72 + cheat + description:Much faster timer + code:02C-55B-E6E + cheat + description:Timer starts at 30 + code:2C3-39D-800 + cheat + description:Timer starts at 40 + code:3C3-39D-800 + cheat + description:Timer starts at 50 + code:4C3-39D-800 + cheat + description:Timer starts at 60 + code:5C3-39D-800 + cheat + description:Player can't move from floor + code:006-2EB-3B7+000-1FA-3B7 + cheat + description:Complete round 1 and go to round 3 (disable after end of round) + code:3E1-79E-4CA+031-7AE-A2A+E01-7BE-2A9 + cheat + description:Complete round 1 and go to round 4 (disable after end of round) + code:3E1-79E-4CA+041-7AE-A2A+E01-7BE-2A9 + cheat + description:Computer can't move from floor + code:003-279-19E+003-249-19E + cheat + description:Normal punches do more damage + code:F40-E89-2AE + cheat + description:Uppercuts do less damage + code:311-009-3B9 + cheat + description:Back throws do less damage + code:311-3A9-E69 + cheat + description:Special moves (projectiles) do more damage + code:F41-5A9-E60 + +cartridge sha256:6c2733c0a57bbfe5075bec42e0735c685c934780db45b33f899f62dfea549f69 + name:Mortal Kombat 3 (USA) + cheat + description:Invincibility expect for throws and projectiles + code:00A-25E-081+00A-26E-7F5+7DA-27E-E69+14A-29E-D56+C8A-2AE-E69+C9D-57E-C49 + +cartridge sha256:abc725f10251ae954a23c46b7e33b101bc52203fed4ffad49018858d82361964 + name:Motocross Maniacs (USA) + cheat + description:Infinite tires on pick-up + code:FAD-CDE-4C1 + cheat + description:Infinite jet on pick-up + code:FAD-C7E-4C1 + cheat + description:Infinite time + code:00D-22D-E6E + cheat + description:Faster timer + code:02D-22D-E6E + cheat + description:Start with 7 nitros + code:079-E4F-F7A + cheat + description:Super fast bike + code:FA0-1ED-4C1+009-88E-B30 + +cartridge sha256:e493b87e119d61268af2f97c9e16e65daab3c8223c15261214656667108cc817 + name:Mouse Trap Hotel (USA) + cheat + description:Infinite lives + code:FA2-0CD-4C1 + cheat + description:Collect cookie for invincibility against balls, etc. + code:FA6-E9F-4C1+FA6-DAF-4C1 + cheat + description:Start with 4 lives + code:043-38F-E62 + cheat + description:Start with 6 lives + code:063-38F-E62 + cheat + description:Start with 8 lives + code:083-38F-E62 + +cartridge sha256:c19f7ec9ff29fa438d7ef189f81711dcaedaa55c86b192d6d9020f5f7dc22702 + name:Mr. Do! (USA) + cheat + description:Infinite lives + code:FA7-28C-4C1 + cheat + description:Keep 1 map layout thru game (still will progress from map to map, but layout stays the same) + code:3E8-2CE-191+098-2DE-C42+188-2EE-6EA + cheat + description:Start new game from level you died on + code:235-6AC-6E2+214-78D-4C1 + cheat + description:Start with 1 life + code:015-B2E-E66 + cheat + description:Start with 6 lives + code:065-B2E-E66 + cheat + description:Start with 9 lives + code:095-B2E-E66 + +cartridge sha256:21db857936d7eff3d57d576f0a01a52e012d0dcf5dc8f2a6cdb0e92a131a72b6 + name:Ms. Pac-Man (USA) + cheat + description:Invincibility + code:009-06E-E62 + cheat + description:Get fruit from anywhere + code:00B-21E-D56 + +cartridge sha256:ba1afcea3239c1acc9af228cebe6872f5547ad04480e71652e2e56dcd4e2f08e + name:Mysterium (USA) + cheat + description:Infinite lives + code:FA3-98C-4C1 + cheat + description:Max energy in battle. Works for enemies, disable to defeat them. + code:AF8-78C-E68 + cheat + description:Start with 1/2 energy + code:3AD-B38-E6A + cheat + description:Start with 1 life + code:01D-008-E66 + cheat + description:Start with 5 lives + code:05D-008-E66 + cheat + description:Start with 9 lives + code:09D-008-E66 + +cartridge sha256:424ca9fc4d842444a01c4dbf7375558035f4cb04a7d7056a4c1a1a18b769643d + name:Nail'n Scale (USA, Europe) + cheat + description:Infinite lives + code:00B-7EF-E65 + cheat + description:Start with 1 life + code:004-B5F-F7A + cheat + description:Start with 9 lives + code:084-B5F-F7A + +cartridge sha256:e807eef2018cb12c73a5395a47936ce0b24b1e8876c10e3dff6b2d30873e52f3 + name:Nemesis (Europe) + cheat + description:Hit anywhere - Default weapon + code:008-A7D-A29+008-B8D-A29 + cheat + description:Hit anywhere - Laser + code:009-5FD-A29+009-70D-A29 + cheat + description:Hit anywhere - Missiles + code:009-CBD-A29+009-DCD-A29 + cheat + description:Get items from anywhere + code:007-68D-A29 + +cartridge sha256:58c4da647070388c9e77ddf1a0fce6777c63ff96efcd804d0917f555c3e02369 + name:Nemesis (USA) + cheat + description:Hit anywhere - normal weapon + code:008-A5D-A29+008-94D-A29 + cheat + description:Hit anywhere - Laser + code:009-5DD-A29+009-4CD-A29 + cheat + description:Hit anywhere - Missiles + code:009-C9D-A29+009-B8D-A29 + cheat + description:Get items from anywhere + code:007-55D-A29 + +cartridge sha256:e8b4326469231ba798657cfa8032bc6c2000c0a61e11fbad8406711642a184eb + name:NFL Football (USA) + cheat + description:No game timer + code:009-34A-E6E + cheat + description:Computer can't score on its possessions + code:AF1-EDE-E64 + cheat + description:Touchdown worth 1 point + code:01F-59F-F72 + cheat + description:Touchdown worth 5 points + code:05F-59F-F72 + cheat + description:Touchdown worth 8 points + code:08F-59F-F72 + +cartridge sha256:f513d07ace08618cb2d8a39471b617982f23e0b4f7814a62809b9969ff41635b + name:Ninja Boy (USA, Europe) + cheat + description:Hit anywhere (can get items from anywhere by punching) + code:00E-279-C43 + +cartridge sha256:ea284fad45e612ab2fcd721152ab815fe8e58062155ab6e182195f637d7b6da4 + name:Nintendo World Cup (USA, Europe) + cheat + description:Computer can't score + code:00E-2D8-19A + cheat + description:No timer + code:00D-2C8-E6E + cheat + description:1:59 each half + code:01C-DD8-E66 + cheat + description:4:59 each half + code:04C-DD8-E66 + cheat + description:6:59 each half + code:06C-DD8-E66 + cheat + description:9:59 each half + code:09C-DD8-E66 + +cartridge sha256:79b35e46b8258cccf8a858b6d66caf16855399fdc54bb1c0a5342e409908363f + name:Nobunaga's Ambition (USA) + cheat + description:Train samurais once and they have 100% skill level (must be Oda Nobunaga) + code:3EF-9FB-191 + cheat + description:Start with 75 loyalty pts (must be Oda Nobunaga) + code:4B1-5AA-2A2 + cheat + description:Start with 100 loyalty pts (must be Oda Nobunaga) + code:641-5AA-2A2 + cheat + description:Start with 50 town value pts (must be Oda Nobunaga) + code:321-56A-80E + cheat + description:Start with 75 town value pts (must be Oda Nobunaga) + code:4B1-56A-80E + cheat + description:Start with 100 town value pts (must be Oda Nobunaga) + code:641-56A-80E + cheat + description:Start with 50 castle defense pts (must be Oda Nobunaga) + code:321-5CA-D56 + cheat + description:Start with 75 castle defense pts (must be Oda Nobunaga) + code:4B1-5CA-D56 + cheat + description:Start with 100 castle defense pts (must be Oda Nobunaga) + code:641-5CA-D56 + cheat + description:Start with flood control level at 75 (must be Oda Nobunaga) + code:4B1-5BA-2A2 + cheat + description:Start with flood control level at 100 (must be Oda Nobunaga) + code:641-5BA-2A2 + cheat + description:Start with 2580 rice pts (must be Oda Nobunaga) + code:0AE-B6B-B3A+0AE-B9B-E6A + cheat + description:Start with 788 rice pts (must be Oda Nobunaga) + code:03E-B6B-B3A+03E-B9B-E6A + cheat + description:Start with 276 rice pts (must be Oda Nobunaga) + code:01E-B6B-B3A+01E-B9B-E6A + cheat + description:Start with 999 gold (must be Oda Nobunaga) + code:0AE-B6B-D56+0AE-B7B-E6A + cheat + description:Attributes for Oda Nobunaga are 100% (will show original values, answer no when asked if this is OK, then attributes will be 100%) + code:3E5-7EA-191 + +cartridge sha256:0b6670e44cc2edc6fbf32fc78f499e774cf0802019480f2bf7bdb836ee15c433 + name:Operation C (USA) + cheat + description:Invincibility + code:AFA-BFA-C45+77A-C0A-D53 + cheat + description:Hit anywhere + code:00A-CAC-91A+C3A-E4C-919+C6A-F5C-191 + cheat + description:Multi-jump + code:005-C0A-B3F+5A0-E6F-195+520-E7F-195+550-EAF-195+7A0-E9F-195+CD0-E5F-195+CD0-E8F-195+C90-EBF-195+E55-BFA-083 + +cartridge sha256:efcce0d4264fbfff4b1b3a0843a681194b2d7a597e842d2895c2eadcfc6998c3 + name:Out of Gas (USA) + cheat + description:Infinite lives + code:FA5-DDF-4C1 + cheat + description:Collect only 1 canister to complete each stage + code:AF8-ECE-191 + cheat + description:Start with 2 lives + code:021-ACF-E66 + cheat + description:Start with 4 lives + code:041-ACF-E66 + cheat + description:Start with 8 lives + code:081-ACF-E66 + +cartridge sha256:d07986785d76db33e96ccbbe840ac962542f1c359e5b896e6478afd5cf9586b3 + name:Pac-Man (USA) + cheat + description:Invincibility + code:C97-7DE-A29 + cheat + description:Get fruit from anywhere + code:009-22E-E69+009-28E-E69 + +cartridge sha256:8b81c75dd11e24ba5e1d2f439a6fabf7313024829df397409a20dd37995122cb + name:Pagemaster, The (USA) (SGB Enhanced) + cheat + description:Invincibility + code:008-36B-19E + cheat + description:Infinite Help Books + code:00F-348-19E + cheat + description:Don't flash at all when you start a new stage + code:000-95B-19A + cheat + description:Flash longer when you start a new stage + code:FF0-95B-19A + cheat + description:Get a Help Book for every Gold Token + code:01F-D1E-912 + cheat + description:Get a Help Book for every 2 Gold Tokens + code:02F-D1E-912 + cheat + description:Get a Help Book for every 10 Gold Tokens + code:0AF-D1E-912 + cheat + description:Get a Help Book for every 50 Gold Tokens + code:32F-D1E-912 + cheat + description:Get a Help Book for every 99 Gold Tokens + code:63F-D1E-912 + cheat + description:Start in the Adventure World with 1 life + code:011-BFF-F7E+001-C3F-5D4 + cheat + description:Start in the Fantasy World with 2 lives + code:021-BFF-F7E+001-C3F-5D4 + cheat + description:Start with 1 life + code:011-BFF-F7E + cheat + description:Start with 3 lives + code:031-BFF-F7E + cheat + description:Start with 7 lives + code:071-BFF-F7E + cheat + description:Start with 10 lives + code:0A1-BFF-F7E + cheat + description:Start with 15 lives + code:0F1-BFF-F7E + cheat + description:Start with 11,111,111 points + code:3C1-CDF-5D4 + +cartridge sha256:5c357df199e755eae719588a3424d49bc5212289922f11968e47954276941d6a + name:Paperboy 2 (USA, Europe) + cheat + description:Infinite papers + code:004-C09-3BE + cheat + description:Infinite lives + code:006-91B-3BE + cheat + description:Go on to next day after completing Monday + code:007-0CB-F72 + cheat + description:Start with 15 papers - 1st life only + code:0FC-C6C-C42 + cheat + description:Start with 20 papers - 1st life only + code:14C-C6C-C42 + cheat + description:Start with 10 lives - Paperboy + code:0AA-E6C-F7E + cheat + description:Start with 20 lives - Paperboy + code:14A-E6C-F7E + +cartridge sha256:3bcf1b2fe43907d96e58b9aca893a9124bfb3c35774926279f9368a975665086 + name:Parodius (Europe) + cheat + description:Infinite lives + code:FA3-C6C-4C1 + cheat + description:Infinite super shields once collected + code:FAB-5D8-4C1 + cheat + description:Start with super shields and triple firing + code:FFB-D3D-E6A+FFB-D6D-E6A + cheat + description:Start with 5 lives + code:05A-93D-E66 + cheat + description:Start with 8 lives + code:08A-93D-E66 + cheat + description:Start with 11 lives + code:0BA-93D-E66 + +cartridge sha256:ec2420a8d1b129379435e9a217ef8e6be7fcece10a17d72affa8b1b2449888cb + name:Pinball Dreams (USA, Europe) + cheat + description:Infinite balls + code:008-18F-3BA + cheat + description:Start with 5x bonus, lose it if you collect any other bonus + code:3EB-EDF-4C1+04B-EEF-4C7+00B-EFF-A2D + cheat + description:No tilt - shake the table as much as you want + code:004-BAC-4CA+004-BBC-B32 + cheat + description:Collect 2x bonus and get 6x bonus + code:054-C7D-E62 + cheat + description:Start with 1 ball + code:018-1BF-E66 + cheat + description:Start with 4 balls + code:048-1BF-E66 + cheat + description:Start with 7 balls + code:078-1BF-E66 + cheat + description:Start with 9 balls + code:098-1BF-E66 + +cartridge sha256:027a8bb2843c3f96373ca60830f58fbc2fcf15d51756649e002b87a97f438a41 + name:Play Action Football (USA) + cheat + description:Always kick at full power + code:3E5-DFC-6EA+405-E0C-4C9+005-E5C-19E + cheat + description:Infinite time + code:00A-6BD-19E + cheat + description:Infinite downs + code:013-2A9-E69 + cheat + description:Only get 2 downs + code:02B-84E-F7A + cheat + description:Only need 5 yards for 1st down + code:053-419-C42 + +cartridge sha256:4a1c9750f77deffb8e003b8938d2ffe5f520fb43143aedd309909b8a9907856d + name:Popeye 2 (USA) + cheat + description:Invincibility after first hit until end of level + code:00E-83B-19E + cheat + description:Infinite Pows + code:FA3-C59-4C1 + cheat + description:Infinite lives + code:FA3-AFF-4C1 + cheat + description:Infinite time - disable to advance in some areas + code:2A2-02B-A22 + cheat + description:Infinite continues + code:00A-1AA-19E + cheat + description:Super code - more lives and power + code:88B-68B-E66 + cheat + description:Start with 1 Pow after 1st life + code:013-A7F-E66 + cheat + description:Start with 7 Pows after 1st life + code:073-A7F-E66 + cheat + description:Start with no continues + code:003-F7A-F7E + cheat + description:Start with 2 continues + code:023-F7A-F7E + cheat + description:Start with 9 continues + code:093-F7A-F7E + +cartridge sha256:e1b69e85caebf764bfa6cece5c1d33b67b370cf055480f309644b937e4a7ebdb + name:Prophecy - The Viking Child (USA) + cheat + description:Infinite lives + code:FAE-04C-4C1 + cheat + description:Infinite energy + code:FAD-F5C-4C1 + cheat + description:Each coin gives lots of money + code:00D-9BD-19B + cheat + description:Start with 25 energy - 1st life + code:194-A5F-667 + cheat + description:Start with 50 energy - 1st life + code:324-A5F-667 + cheat + description:Start with 4 lives + code:034-A0F-E6E + cheat + description:Start with 7 lives + code:064-A0F-E6E + cheat + description:Start with 10 lives + code:094-A0F-E6E + +cartridge sha256:567aef8ea27486a4fa38ef4a4ae6ebae2a9138dc8a6a675d155895936e1318d8 + name:Pyramids of Ra (USA) + cheat + description:Energy bar doesn't go down when you make a move + code:FA5-8EB-4C1 + cheat + description:Only 1 pt. of energy per move on first attempt at each level (instead of 3) + code:A2A-C48-6EC+3CA-C68-19B+FAA-C38-4C1 + cheat + description:Start on level 100 + code:641-AB4-E6E+001-ACF-E6A + cheat + description:Start on level 300 + code:2C1-ABF-E6E+011-ACF-E6A + cheat + description:Start on level 500 + code:F41-ABF-E6E+011-ACF-E6A + +cartridge sha256:ed110933b5a41ed89d2b980e6e984733833fa6b2c15e5235eff1f5df54175df4 + name:Qix (World) + cheat + description:Invincibility + code:AFE-DBC-3B4 + +cartridge sha256:7d8e122f6f70f6ca49521f2c24fd987e91f621977da2912702285735438be901 + name:Quarth (USA, Europe) + cheat + description:Select up to level 5 + code:054-9EA-E66 + cheat + description:Super turbo ship + code:00B-31D-08F + cheat + description:Blocks don't drop (push Up to bring blocks down) + code:AF6-32E-A28 + cheat + description:Blocks drop faster + code:3E6-2BE-081+506-2CE-2AB+006-2DE-F79 + cheat + description:Blocks drop super fast + code:3E6-2BE-081+806-2CE-2AB+006-2DE-F79 + +cartridge sha256:4e624ad741077f574c1d0b57cbc45171ed4ca9f23fa89dfd8f282897aa53ab9a + name:Q Billion (USA) + cheat + description:Pressing Select in Game B once gives you 246 seconds + code:00B-9FE-C42 + cheat + description:Infinite timer + code:007-55E-19E + cheat + description:Level select - Game A + code:3EB-61F-08A+0DB-62F-B3E+00B-63F-08F + +cartridge sha256:b3f2838cb64dfa12f93ab4767c3b0786cba0993015fefe1f592146f9d8f47d40 + name:Radar Mission (USA, Europe) + cheat + description:Game B - Infinite money + code:003-33D-3BE + cheat + description:Game B - Move in 1 direction only + code:003-CCA-3BE + cheat + description:Game B - Destroyed fleet disappears from radar screen but game doesn't end + code:00C-C6A-3BE + cheat + description:Game B - Start with 1 money bag + code:011-E0D-E66 + cheat + description:Game B - Start with 1 extra money bag + code:041-E0D-E66 + +cartridge sha256:9e30f9c36cfa1bc1fd6f111fa38a43f3c5907c26d81a65309279eec54a3d05d6 + name:Raging Fighter (USA, Europe) + cheat + description:Infinite energy + code:004-E0B-E6D+007-1AE-3B7 + cheat + description:Infinite time + code:009-1FB-A22 + cheat + description:4th difficulty level - go to options, set difficulty, press Left 3 times (won't show anything), then exit + code:3E1-F2A-4CA+041-F3A-E62+771-F4A-3BA + cheat + description:Start on level 4 - 1P tournament only + code:3EE-5BD-4C1+03E-5CD-4CB+00E-5DD-E61 + cheat + description:Start on final level - 1P tournament only + code:3EE-5BD-4C1+07E-5CD-4CB+00E-5DD-E61 + cheat + description:Start each fight with 10 seconds + code:10A-9AA-89C + cheat + description:Start with 1/2 time + code:50A-9AA-89C + cheat + description:Start with 3/4 time + code:75A-9AA-89C + +cartridge sha256:ad5d681fa599b6cf9dae135c304317ac41f33bee0a5a583d7fa2a178ca66506f + name:Rampart (USA, Europe) + cheat + description:Infinite time - levels don't end, enable at game play screen, disable after battle mode, enable to rebuild castle, disable to go on + code:003-9CF-3BE + cheat + description:Infinite lives + code:017-0EB-F79 + cheat + description:Infinite cannons + code:01E-B3B-F79 + cheat + description:Have 6 seconds to rebuild castle walls + code:3E0-29B-081+090-2AB-7F5+000-2BB-F7D + cheat + description:Have 66 seconds to rebuild castle walls + code:3E0-29B-081+440-2AB-7F5+000-2BB-F7D + cheat + description:Have 118 seconds to rebuild castle walls + code:3E0-29B-081+770-2AB-7F5+000-2BB-F7D + cheat + description:Levels last 10 seconds + code:3E0-40B-081+1A0-41B-B32+000-42B-F71 + cheat + description:Levels last 25 seconds + code:3E0-40B-081+2A0-41B-B32+000-42B-F71 + cheat + description:Levels last 50 seconds + code:3E0-40B-081+430-41B-B32+000-42B-F71 + +cartridge sha256:9ca5b01d04985e0c83c68d5b434f322d2e7ee494fffed08cd747e8ade1569b0a + name:Rayman (USA) (En,Fr,De,Es,It,Nl) + cheat + description:Get items from anywhere + code:00A-ADB-F76+18F-A09-6EA + +cartridge sha256:46cfbba977f7d4cb8df51d5cb51f00dc0a4d9c129868a1ed88f2b0fa97454905 + name:Ren & Stimpy Show, The - Space Cadet Adventures (USA) + cheat + description:Infinite lives + code:F07-54E-6E9 + cheat + description:Infinite energy except when you fall into pits + code:F07-33E-6E9 + cheat + description:Start with 2 life + code:01D-2EA-E62 + cheat + description:Start with 6 lives + code:05D-2EA-E62 + cheat + description:Start with 9 lives + code:08D-2EA-E62 + cheat + description:Start with 5 energy - 1st life only + code:04D-32A-E66 + cheat + description:Start with 6 energy - 1st life only + code:05D-32A-E66 + cheat + description:Start with 7 energy - 1st life only + code:06D-32A-E66 + cheat + description:Start with 4 energy - after 1st life + code:047-5CE-E66 + cheat + description:Start with 5 energy - after 1st life + code:057-5CE-E66 + cheat + description:Start with 6 energy - after 1st life + code:067-5CE-E66 + +cartridge sha256:9a97678cbd8da02c8763e977674e17f460c06ea8b73bad35c52fe6817f506d44 + name:Resident Evil Gaiden (USA) + cheat + description:Infinite ammo on pick-up + code:004-26B-E65 + cheat + description:Infinite Herbs + code:004-E88-3BE + cheat + description:All Herbs cure poison + code:004-908-C49 + +cartridge sha256:d84a2382b358d83a0891d40b2de65494f060d8be1a048d5aa8721282218b04b6 + name:Pinball - Revenge of the 'Gator (USA, Europe) + cheat + description:Infinite supply of balls + code:007-E1F-3BE + cheat + description:Disable left flipper + code:21F-24D-D5D + cheat + description:Disable right flipper + code:C9F-2AD-7F1 + cheat + description:Start with 1 ball + code:016-EDF-E66 + cheat + description:Start with 9 balls + code:096-EDF-E66 + +cartridge sha256:c6d02170734d6b533d4599b6fca10ac83141e5ffe4902c4a98001aa61c00dffc + name:RoboCop 2 (USA) + cheat + description:Infinite health on scrolling levels + code:C95-9CE-C49 + cheat + description:Infinite health on ED-209 (tm) levels + code:AF4-D9A-3B7 + cheat + description:Infinite lives + code:B60-C2D-3BE + cheat + description:Infinite time - except stages 3 and 8 + code:C95-48E-C49 + cheat + description:Start with 2 lives + code:02A-E8E-F7A + cheat + description:Start with 5 lives + code:05A-E8E-F7A + +cartridge sha256:9fb0e41e4c8afe737a688dbdc1b6f7019874f7e9ef4c0a27cba2b8be329ce45b + name:RoboCop vs. The Terminator (USA) + cheat + description:Infinite energy + code:FAE-67B-4C1 + cheat + description:Start on level 2 + code:01D-7DD-E6A + cheat + description:Start on level 3 + code:02D-7DD-E6A + cheat + description:Start on level 4 + code:03D-7DD-E6A + cheat + description:Start on level 5 + code:04D-7DD-E6A + cheat + description:Start on level 6 + code:05D-7DD-E6A + cheat + description:Start with 01010101 points + code:01D-5DD-56A + cheat + description:Start with very little energy - 1st life + code:01D-58D-F76 + cheat + description:Start with more energy - 1st life + code:15D-58D-F76 + cheat + description:Start with very little energy - 2nd life + code:01E-E0B-F76 + cheat + description:Start with more energy - 2nd life + code:15E-E0B-F76 + +cartridge sha256:92e8d1acd4d2d3297a961409d4bb0ed49c784be4a6e91cfceabd05ab11894f3d + name:Roger Clemens' MVP Baseball (USA) + cheat + description:No walks + code:014-68A-F7D + cheat + description:No strikeouts + code:014-87A-F7D + cheat + description:Infinite outs (except strikeouts, base runners will still be taken out) + code:016-B4C-F7D + cheat + description:No outs are called, except strikeouts + code:016-AFC-E66+01B-87C-E66 + cheat + description:No scoring - disable to score runs + code:009-46B-3B7+009-61B-3B7 + +cartridge sha256:e3d0b1ddea8b4ada14c3bb5e990171e6b2e26935d9dbc15e5de90fb5f7f9595d + name:Rolan's Curse (USA) + cheat + description:Infinite energy + code:F0C-96C-6E9 + cheat + description:Start with 2 energy pts + code:025-F5E-F7A + cheat + description:Start with 6 energy pts + code:065-F5E-F7A + +cartridge sha256:cf3f8f41498cdd32f5b3ee0cdccde1901b073798f3edac1a7d9ccc0141cb16be + name:Rolan's Curse II (USA) + cheat + description:Infinite HP + code:FOE-86C-6E9 + cheat + description:Infinite magic + code:F0E-01F-6E9 + cheat + description:Takes 9 MP to use Electric ball + code:094-59A-E6E + cheat + description:Takes 2 MP to use Electric ball + code:024-59A-E6E + cheat + description:Starts you from a new place with power-ups + code:3C3-72E-5D4 + +cartridge sha256:8cebc4b128b79dd1b53a5b5a99450bb2783b86840ec61b22e70245dd6df8c39b + name:R-Type (USA, Europe) + cheat + description:Invincibility + code:C9E-07E-081 + cheat + description:Hit anywhere + code:01B-40D-4C7+18A-DAD-2AA+29A-DBD-4C6+AFB-49D-08F + cheat + description:One hit kills + code:187-9FF-08A+FA8-C1B-E61 + +cartridge sha256:2b059983d79efc5a4f77b41a4efbad68c65ae259715dc008f20a3c11226a943b + name:R-Type II (Europe) + cheat + description:Invincibility + code:C9F-3FE-081 + +cartridge sha256:e0a07f84198e062c9ba8d617ef15679ba044f96510e5c62309ea1f743499a2c9 + name:Samurai Shodown (USA, Europe) (SGB Enhanced) + cheat + description:Computer takes all damage - even when you get hit + code:3EB-60D-7F1 + cheat + description:Infinite time + code:FA2-46D-4C1 + cheat + description:Start timer at 30 seconds + code:3EF-80E-D57+1EF-81E-08F + cheat + description:Start timer at 46 seconds + code:3EF-80E-D57+2EF-81E-08F + cheat + description:Start timer at 62 seconds + code:3EF-80E-D57+3EF-81E-08F + cheat + description:Start timer at 78 seconds + code:3EF-80E-D57+4EF-81E-08F + cheat + description:Start timer at 94 seconds + code:3EF-80E-D57+5EF-81E-08F + cheat + description:Start timer at 110 seconds + code:3EF-80E-D57+6EF-81E-08F + cheat + description:Start timer at 126 seconds + code:3EF-80E-D57+7EF-81E-08F + cheat + description:Start timer at 142 seconds + code:3EF-80E-D57+8EF-81E-08F + cheat + description:Start timer at 158 seconds + code:3EF-80E-D57+9EF-81E-08F + cheat + description:Both players start with 1/3 energy + code:11F-86E-3B6 + cheat + description:Both players start with 2/3 energy + code:21F-86E-3B6 + cheat + description:Both players start with more energy + code:FFF-86E-3B6 + cheat + description:Always fight Genan Shiranui + code:3E8-9A9-2AA+008-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Galford + code:3E8-9A9-2AA+018-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Haohmaru + code:3E8-9A9-2AA+028-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Ukyo Tachibana + code:3E8-9A9-2AA+038-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Charlotte + code:3E8-9A9-2AA+048-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Tam Tam + code:3E8-9A9-2AA+058-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Earthquake + code:3E8-9A9-2AA+068-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Nakoruru + code:3E8-9A9-2AA+078-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Wan Fan + code:3E8-9A9-2AA+088-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Jubei Yagyo + code:3E8-9A9-2AA+098-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Hanzo Hattori + code:3E8-9A9-2AA+0A8-9B9-D5E+E08-9C9-2A9 + cheat + description:Always fight Kyoshiro Senryo + code:3E8-9A9-2AA+0B8-9B9-D5E+E08-9C9-2A9 + +cartridge sha256:384885e8eb8c7396a8c7df08729f61022cc740b3234a8d35bebe17cc7aef3c71 + name:SeaQuest DSV (USA, Europe) (SGB Enhanced) + cheat + description:Invincibility + code:00E-04B-19E + cheat + description:Infinite lives + code:001-EB8-E6E + cheat + description:Lose most energy after first hit + code:AFE-04B-19E + cheat + description:Start with super score + code:03B-37D-E6A + cheat + description:Start with very little hull energy + code:011-FCC-C42 + cheat + description:Start with 1/2 hull energy + code:051-FCC-C42 + cheat + description:Start with 3/4 hull energy + code:071-FCC-C42 + cheat + description:Start with 2 lives + code:01B-2DD-F7A + cheat + description:Start with 5 lives + code:04B-2DD-F7A + cheat + description:Start with 10 lives + code:09B-2DD-F7A + cheat + description:Start with 15 lives + code:0EB-2DD-F7A + +cartridge sha256:52924262f2c60fc1c387a92bfdb43835c84968daf4ba465e7cc6627774e7b8a5 + name:Serpent (USA) + cheat + description:Infinite missiles on pick-up + code:00F-B0E-E69 + cheat + description:Start with 5 missiles + code:057-C9D-E6A + cheat + description:Start with 8 missiles + code:087-C9D-E6A + cheat + description:Start with 15 missiles + code:0F7-C9D-E6A + cheat + description:Start with smaller tail + code:157-C6D-4CA + cheat + description:Start with longer tail + code:407-C6D-4CA + +cartridge sha256:c8979ad731912452dabedff2c9fb23b19aa68cfdedbf5e99fec902547ce1bb76 + name:Simpsons, The - Bart & the Beanstalk (USA, Europe) + cheat + description:Invincibility + code:C97-2CC-E69 + cheat + description:Infinite energy + code:FA7-42C-4C1 + cheat + description:Infinite lives + code:002-83E-E6E + cheat + description:Infinite fire crackers + code:00A-608-19E + cheat + description:Start with 1 life + code:001-ADF-E66 + cheat + description:Start with 5 lives + code:041-ADF-E66 + cheat + description:Start with 10 lives + code:091-ADF-E66 + cheat + description:Start with 1/4 energy + code:106-37E-917 + cheat + description:Start with 1/2 energy + code:306-37E-917 + cheat + description:Start with 3/4 energy + code:456-37E-917 + +cartridge sha256:6ecab90879e06226ed6b2f6bdeb2d3ffa0736ee77c2132891083671465dd6934 + name:Simpsons, The - Bart vs. the Juggernauts (USA, Europe) + cheat + description:Infinite time on all games + code:008-A6F-3B7 + cheat + description:Always qualify with enough money + code:0A6-EB9-4C2 + cheat + description:See end sequence + code:043-5B9-F76 + cheat + description:Start on week 2 + code:023-5B9-F76 + cheat + description:Start on week 3 + code:033-5B9-F76 + cheat + description:Capt. Lance Murdock's Skateboard Bash & Crash - Infinite lives + code:FAF-829-4C1 + cheat + description:Capt. Lance Murdock's Skateboard Bash & Crash - Start with 1 life + code:01E-A89-F76 + cheat + description:Capt. Lance Murdock's Skateboard Bash & Crash - Start with 2 lives + code:02E-A89-F76 + cheat + description:Springfield Nuclear Power Plant Bop 'till You Drop - No hits against you + code:FA8-F38-4C1 + cheat + description:Herman's Military Minefield Mayhem - Infinite hits + code:FAB-F28-4C1 + cheat + description:Herman's Military Minefield Mayhem - Infinite runs + code:FA2-848-4C1 + cheat + description:Kwik-E-Mart Doggie Dodge - Infinite chances + code:FA2-279-4C1 + cheat + description:Kwik-E-Mart Doggie Dodge - Start with 3 lives + code:03D-89A-916 + cheat + description:Kwik-E-Mart Doggie Dodge - Start with 6 lives + code:06D-89A-916 + cheat + description:Kwik-E-Mart Doggie Dodge - Start with 9 lives + code:09D-89A-916 + +cartridge sha256:534478ebd2558ab6a871540062fadbb0ea27808d7f6860942b2e6805fd15e87b + name:Simpsons Itchy & Scratchy, The - Miniature Golf Madness (USA, Europe) + cheat + description:Invincibility + code:00A-07A-C49 + cheat + description:Invincible after getting hit + code:00A-24A-3BE + cheat + description:Infinite lives + code:00A-24D-E6E + cheat + description:Always get a hole in one + code:009-0E9-E6E + cheat + description:Start with 1 life + code:000-7D9-CCE + cheat + description:Start with 5 lives + code:040-7D9-CCE + cheat + description:Start with 15 lives + code:0E0-7D9-CCE + +cartridge sha256:a1e0c6d8385ab8c39569217f28cb335ccac8c85d31e01c9a2343c79494164478 + name:Snoopy - Magic Show (USA, Europe) + cheat + description:Start on level 2 + code:3E7-3FD-4C1+027-40D-087+007-41D-E65 + cheat + description:Start on level 5 + code:3E7-3FD-4C1+057-40D-087+007-41D-E65 + cheat + description:Start on level 9 + code:3E7-3FD-4C1+097-40D-087+007-41D-E65 + cheat + description:Start with 22 seconds + code:108-49A-E6B + cheat + description:Start with 63 seconds + code:3F8-49A-E6B + cheat + description:Start with 100 seconds + code:648-49A-E6B + +cartridge sha256:fece5b09e599c1f8116602fcabd558cc8dbbfe1c6c253853c5e871b0d732c11c + name:SolarStriker (World) + cheat + description:Infinite lives + code:00C-D6F-3BE + cheat + description:When you pick up a power-up, go straight to max power + code:3EF-65E-191+04F-66E-F7E + cheat + description:Bullets are mega-powerful, almost invisible, when you pick up a power-up + code:3EF-65E-191+0BF-66E-F7E + cheat + description:No loss of power-ups on dying + code:006-45E-C41 + cheat + description:Stay on same level + code:00D-EEF-3BA + cheat + description:Start with 2 lives + code:015-D0F-E62 + cheat + description:Start with 6 lives + code:055-D0F-E62 + cheat + description:Start with 10 lives + code:095-D0F-E62 + cheat + description:Start on stage 2 + code:025-0AF-E6E + cheat + description:Start on stage 3 + code:035-0AF-E6E + cheat + description:Start on stage 4 + code:045-0AF-E6E + cheat + description:Start on stage 5 + code:055-0AF-E6E + cheat + description:Start on stage 6 + code:065-0AF-E6E + +cartridge sha256:6ffe31b21d429801b8e5a460e58bd857e41aef888d19297fc558cf25def0d10d + name:Spanky's Quest (USA) + cheat + description:Infinite lives + code:000-60E-19E + cheat + description:Mega ball power-ups - hit it with your head once for full power + code:074-1ED-E6A + cheat + description:Start with 1 life + code:00B-96D-E62 + cheat + description:Start with 6 lives + code:05B-96D-E62 + cheat + description:Start with 9 lives + code:08B-96D-E62 + cheat + description:Start on tower 1, stage 5 (disable after starting stage) + code:3ED-68D-C45+04D-69D-3B6 + cheat + description:Start on tower 1, stage 10 (disable after starting stage) + code:3ED-68D-C45+09D-69D-3B6 + cheat + description:Start on tower 1, last stage (disable after starting stage) + code:3ED-68D-C45+0FD-69D-3B6 + +cartridge sha256:7b96653450c5fb4522a77d46ecfa50d479b3dac28bafb1a13e416e43c42caae3 + name:Speedball 2 - Brutal Deluxe (USA, Europe) + cheat + description:Get lots of money + code:99D-CDB-F7A + cheat + description:Infinite money + code:FAA-E4C-4C1 + cheat + description:No timer + code:00E-D99-3BE + cheat + description:Opponents can't score any points except from bounced stones + code:00C-30F-08B + +cartridge sha256:5bfae99484fe74c42b55a0dd8835861cfeb7d05590882aab8f4253e4e7138b92 + name:Speedy Gonzales (USA, Europe) + cheat + description:Infinite lives + code:FAC-A9B-4C1 + cheat + description:Infinite time + code:FA9-40B-4C1 + cheat + description:Start 1st game with 1 life + code:00A-8A8-E66 + cheat + description:Start 1st game with 7 lives + code:06A-8A8-E66 + cheat + description:Start 1st game with 10 lives + code:09A-8A8-E66 + cheat + description:Start in Forest Zone after entering password 500999 + code:024-5A9-F72+004-5B9-A28 + cheat + description:Start in Desert Zone after entering password 500999 + code:034-5A9-F72+004-5B9-A28 + cheat + description:Start in County Zone after entering password 500999 + code:044-5A9-F72+004-5B9-A28 + cheat + description:Start in Cheese Island Zone after entering password 500999 + code:054-5A9-F72+004-5B9-A28 + cheat + description:Start continued games with 1 life + code:00D-87B-E66 + cheat + description:Start continued games with 7 lives + code:06D-87B-E66 + cheat + description:Start continued games with 10 lives + code:09D-87B-E66 + cheat + description:Start with 1/2 time + code:05E-F6C-C4E + cheat + description:Start with 3/4 time + code:07E-F6C-C4E + +cartridge sha256:89c4151a31f00dc0f20133ee5ec8f71f3023331de93e017e97d66dc497eb2aa9 + name:Spider-Man 2 (USA, Europe) + cheat + description:Infinite lives + code:FA6-FBE-4C1 + cheat + description:Infinite energy + code:FA6-C4E-4C1 + cheat + description:Infinite web power + code:FAD-F6E-4C1 + cheat + description:1 energy point after life lost + code:016-EEE-195 + cheat + description:Start with 1 life + code:00F-78E-E66 + cheat + description:Start with 5 lives + code:04F-78E-E66 + cheat + description:Start with 10 lives + code:09F-78E-E66 + cheat + description:Start with 1 energy point + code:01F-5BE-195 + cheat + description:Start with 4 web points - 1st life only + code:04F-73E-B3A + cheat + description:Start with 5 web points - 1st life only + code:05F-73E-B3A + cheat + description:Start with 9 web points - 1st life only + code:09F-73E-B3A + +cartridge sha256:664dae41e2d08070ead51e76c2d6865e52a122566cf79203b7c6c496968ded6e + name:Spider-Man 3 - Invasion of the Spider-Slayers (USA, Europe) + cheat + description:Infinite energy + code:FA7-ECE-4C1 + cheat + description:Infinite lives + code:FA8-25E-4C1 + cheat + description:Need to shoot 1 enemy to clear level 1-1 + code:01E-3AD-B3A + cheat + description:Start 1st life with 1/2 energy + code:723-ABD-195 + cheat + description:Start lives after 1st with 1/2 energy + code:728-18E-195 + cheat + description:Start 1st level with 1/2 time + code:FA7-6FB-4C1 + cheat + description:Start 1st level with 255 seconds on timer + code:FFE-2DD-B30 + +cartridge sha256:7275c3af129971c53ce901321f6ca85b414ebd84574c420d66c38aa87c219fe3 + name:Spot - The Cool Adventure (USA) + cheat + description:Infinite energy (hearts) except when you fall off screen + code:FA9-0AC-4C1 + cheat + description:Start with 4 lives + code:045-76D-F7A + cheat + description:Start with 6 lives + code:065-76D-F7A + cheat + description:Start with 9 lives + code:095-76D-F7A + cheat + description:Start with 15 lives + code:0F5-76D-F7A + cheat + description:Start with 25 bonus discs + code:255-80D-E6A + cheat + description:Start with 59 bonus discs + code:505-80D-E6A + cheat + description:Start with 5 energy (easy level) + code:052-F7B-F7E + cheat + description:Start with 8 energy (easy level) + code:082-F7B-F7E + cheat + description:Start with 10 energy (easy level) + code:082-F7B-F7E + cheat + description:Start with 5 energy (hard level) + code:055-7BD-E66 + cheat + description:Start with 8 energy (hard level) + code:085-7BD-E66 + cheat + description:Start with 10 energy (hard level) + code:082-7BD-E66 + +cartridge sha256:966883149824ad2542a03a6402278d1397cdf0cbc0a7ba8410265410426ebfb9 + name:Spud's Adventure (USA) + cheat + description:Infinite lives + code:002-67E-19E + cheat + description:Begin each new screen with a key-except 1st screen + code:007-5FE-5D4 + cheat + description:1 EXP pt. for killing a bad guy + code:3E1-D1E-2A9+011-D2E-915 + cheat + description:5 EXP pts. for killing a bad guy + code:3E1-D1E-2A9+051-D2E-915 + cheat + description:9 EXP pts. for killing a bad guy + code:3E1-D1E-2A9+091-D2E-915 + cheat + description:Start with 2 life + code:013-C8E-E62 + cheat + description:Start with 6 lives + code:053-C8E-E62 + cheat + description:Start with 10 lives + code:093-C8E-E62 + +cartridge sha256:f0f1f547332965963ae2f8b3f3b5fd62203e0690cc0299d38e1a3aa56f6a263b + name:Spy vs Spy - Operation Boobytrap (USA) + cheat + description:Infinite time + code:002-D2A-3BE + cheat + description:Both spies start with 4 energy + code:046-9EE-C42 + cheat + description:Both spies start with 6 energy + code:066-9EE-C42 + cheat + description:Both spies start with 8 energy + code:086-9EE-C42 + cheat + description:After death, start with 4 energy - white spy + code:04D-84B-C42 + cheat + description:After death, start with full energy - white spy + code:08D-84B-B42 + cheat + description:No loss of energy during fight - both spies + code:005-14B-3BE + cheat + description:Other spy's punches do not affect your energy + code:005-03B-80A + cheat + description:Walking over floor flowers doesn't affect your energy + code:FA0-5CA-4C1 + cheat + description:Traps do not affect energy - white spy + code:00A-76B-E62 + +cartridge sha256:5b6bdf85e9083f328449b1316f5dd9c2789f4a57bdac5b16d74fe10bbea1b03c + name:Square Deal - The Game of Two-Dimensional Poker (USA) + cheat + description:Infinite time on pause counter + code:01D-A0E-F79 + cheat + description:Timer starts at 30 + code:1EC-83E-10A + cheat + description:No time on pause counter + code:00C-83E-10A + cheat + description:Select up to level 10 in level select + code:0A4-D8D-F7E + cheat + description:Start with 1 replay + code:3E3-AFD-C4E+013-B0D-193 + cheat + description:Start with 3 replays + code:3E3-AFD-C4E+033-B0D-193 + cheat + description:Start with 9 replays + code:3E3-AFD-C4E+093-B0D-193 + +cartridge sha256:2cdf2edac4e6230e063c867c60f92d5bb5f37969a19a32fb65c33fe9fafaa378 + name:Stargate (USA, Europe) + cheat + description:Tile counter doesn't work + code:008-22B-E6E + cheat + description:Tiles all look blank but aren't + code:C92-74D-C49 + cheat + description:The bottom of the tiles are always tile one + code:0E9-7DB-80E+019-7EB-D53 + cheat + description:The bottom of the tiles are always tile two + code:0E9-7DB-80E+029-7EB-D53 + cheat + description:The bottom of the tiles are always tile three + code:0E9-7DB-80E+039-7EB-D53 + cheat + description:The bottom of the tiles are always tile four + code:0E9-7DB-80E+049-7EB-D53 + cheat + description:The bottom of the tiles are always tile five + code:0E9-7DB-80E+059-7EB-D53 + cheat + description:The bottom of the tiles are always tile six + code:0E9-7DB-80E+069-7EB-D53 + cheat + description:The bottom of the tiles are always tile seven + code:0E9-7DB-80E+079-7EB-D53 + cheat + description:The bottom of the tiles are always tile eight + code:0E9-7DB-80E+089-7EB-D53 + cheat + description:The bottom of the tiles are always tile nine + code:0E9-7DB-80E+099-7EB-D53 + cheat + description:The bottom of the tiles are always tile ten + code:0E9-7DB-80E+0A9-7EB-D53 + cheat + description:The bottom of the tiles are always tile eleven + code:0E9-7DB-80E+0B9-7EB-D53 + cheat + description:The bottom of the tiles are always tile twelve + code:0E9-7DB-80E+0C9-7EB-D53 + cheat + description:The bottom of the tiles are always smart bomb tiles + code:0E9-7DB-80E+0D9-7EB-D53 + cheat + description:The bottom of the tiles are always digger tiles + code:0E9-7DB-80E+0E9-7EB-D53 + cheat + description:The bottom of the tiles are always tile wildcard tiles + code:0E9-7DB-80E+0F9-7EB-D53 + +cartridge sha256:3123e4bcd304d84819c589775db3bf4a2b4fa6d23209b3da691ea7eda6045037 + name:Star Hawk (Europe) + cheat + description:Infinite lives + code:FAA-2CF-4C1 + cheat + description:Impenetrable shield + code:008-C0F-19E + cheat + description:Infinite continues + code:006-92F-F7D + cheat + description:Keep power-ups when you die + code:FAF-15F-4C1 + cheat + description:Start with 8 lives + code:081-C1F-E66 + cheat + description:Start with 10 lives + code:0A1-C1F-E66 + cheat + description:Start with 12 lives + code:0C1-C1F-E66 + +cartridge sha256:2085a11062131fd64c2bc836200a6e203c0bd45909d193c8ad82c0f79f2c025b + name:Star Trek Generations - Beyond the Nexus (USA) (SGB Enhanced) + cheat + description:Almost infinite phasers and shields + code:182-56D-2AA + cheat + description:Infinite attempts in sub game + code:013-D48-805 + cheat + description:Start with very little phasers and shields + code:013-F78-7FB + cheat + description:Start with 1/4 phasers and shields + code:223-F78-7FB + cheat + description:Start with 1/2 phasers and shields + code:3F3-F78-7FB + cheat + description:Start with 3/4 phasers and shields + code:4F3-F78-7FB + +cartridge sha256:9c08d6bdf045668d64934c7cc773bb2353ec15e9dc3e3f5d8ea2e02f2a22be40 + name:Star Trek - The Next Generation (USA, Europe) + cheat + description:Infinite shields + code:FA4-27D-4C1 + cheat + description:Damage isn't repaired + code:001-13D-3BA + cheat + description:Damage repaired immediately + code:001-15D-6E7 + cheat + description:Life support starts at 25% power + code:19E-169-7FB + cheat + description:Life support starts at 50% power + code:32E-169-7FB + cheat + description:Life support starts at 75% power + code:4BE-169-7FB + cheat + description:Warp drive starts at 25% power + code:19E-1A9-7FB + cheat + description:Warp drive starts at 50% power + code:32E-1A9-7FB + cheat + description:Warp drive starts at 75% power + code:4BE-1A9-7FB + cheat + description:Impulse drive starts at 25% power + code:19E-1E9-7FB + cheat + description:Impulse drive starts at 50% power + code:32E-1E9-7FB + cheat + description:Impulse drive starts at 75% power + code:4BE-1E9-7FB + cheat + description:Shields start at 25% power + code:19E-229-7FB + cheat + description:Shields start at 50% power + code:32E-229-7FB + cheat + description:Shields start at 75% power + code:4BE-229-7FB + cheat + description:Phasers start at 25% power + code:19E-269-7FB + cheat + description:Phasers start at 50% power + code:32E-269-7FB + cheat + description:Phasers start at 75% power + code:4BE-269-7FB + cheat + description:Photon Torpedoes start at 25% power + code:19E-2A9-7FB + cheat + description:Photon Torpedoes start at 50% power + code:32E-2A9-7FB + cheat + description:Photon Torpedoes start at 75% power + code:4BE-2A9-7FB + cheat + description:Sensors start at 25% power + code:19E-2E9-7FB + cheat + description:Sensors start at 50% power + code:32E-2E9-7FB + cheat + description:Sensors start at 75% power + code:4BE-2E9-7FB + cheat + description:Transporter starts at 25% power + code:19E-329-7FB + cheat + description:Transporter starts at 50% power + code:32E-329-7FB + cheat + description:Transporter starts at 75% power + code:4BE-329-7FB + +cartridge sha256:9cf6aa2b4d6a4bb877d33bb6131562c9f41deb369d08c5b60266941bb276561f + name:Star Wars (USA) + cheat + description:Infinite energy + code:C9B-5CC-3BE + cheat + description:Infinite lives + code:00B-6AC-195 + cheat + description:Infinite continues + code:FA2-F6E-4C1 + cheat + description:No continues + code:003-A2F-C42 + cheat + description:20 continues + code:143-A2F-C42 + cheat + description:More energy - 1st life only + code:990-B7E-C4A + cheat + description:Start with 1/2 energy on all lives except 1st + code:04C-12C-C4A + cheat + description:Start with 1 life + code:013-B7F-E66 + cheat + description:Start with 6 lives + code:063-B7F-E66 + cheat + description:Start with 9 lives + code:093-B7F-E66 + +cartridge sha256:a62719fa767547a11ac20e0ad5d1fd43b68f92908a5c81dd3aba95f921458c51 + name:Star Wars - The Empire Strikes Back (USA) + cheat + description:Infinite continues + code:00E-A1F-19E + cheat + description:Start with all force abilities in inventory - still need to get force power to activate + code:011-D7F-E6A+001-CFF-5D4 + +cartridge sha256:8730c69cb2aa82260ac07257e0e29d61f598de2f8fa3e65da1d694790fa5db16 + name:Street Fighter II (USA, Europe) (Rev A) (SGB Enhanced) + cheat + description:Invincibility + code:18A-8ED-4CA+18A-9FD-4CA+18A-D2D-4CA + cheat + description:Hit anywhere - P1 + code:00A-B1D-F7E + cheat + description:Hit anywhere - P2 + code:00A-8FD-F7E + cheat + description:Fireball kills + code:885-838-B3E + cheat + description:Nobody takes damage from anything but throws/grabs + code:009-249-3B7 + cheat + description:Opponent can't win any normal rounds + code:00B-938-E6D + cheat + description:Allows you to select a higher skill level + code:093-85A-F72 + cheat + description:Fireball doesn't do any damage + code:005-838-B3E + cheat + description:Fireball does more damage + code:405-838-B3E + cheat + description:Player one starts with very little energy + code:013-F89-2AB + cheat + description:Player one starts with 1/4 energy + code:1F3-F89-2AB + cheat + description:Player one starts with 1/2 energy + code:3A3-F89-2AB + cheat + description:Player one starts with 3/4 energy + code:523-F89-2AB + cheat + description:Player one starts with more energy + code:FF3-F89-2AB + cheat + description:Player two starts with very little energy + code:013-FF9-2AB + cheat + description:Player two starts with 1/4 energy + code:1F3-FF9-2AB + cheat + description:Player two starts with 1/2 energy + code:3A3-FF9-2AB + cheat + description:Player two starts with 3/4 energy + code:523-FF9-2AB + cheat + description:Player two starts with more energy + code:FF3-FF9-2AB + cheat + description:Start with seconds on the timer + code:884-619-6E7 + cheat + description:Ryu - Foot sweep doesn't do any damage + code:005-0B8-A2A + cheat + description:Ryu - Foot sweep does more damage + code:405-0B8-A2A + cheat + description:Ryu - Foot sweep kills + code:885-0B8-A2A + cheat + description:Ryu - Crouch punch doesn't do any damage + code:004-F78-A2A + cheat + description:Ryu - Crouch punch does more damage + code:404-F78-A2A + cheat + description:Ryu - Crouch punch kills + code:884-F78-A2A + cheat + description:Ryu - Normal upper cut doesn't do any damage + code:004-A78-A2A + cheat + description:Ryu - Normal upper cut does more damage + code:404-A78-A2A + cheat + description:Ryu - Normal upper cut kills + code:884-A78-A2A + cheat + description:Ryu - Straight punch doesn't do any damage + code:004-CF8-A3A + cheat + description:Ryu - Straight punch does more damage + code:404-CF8-A3A + cheat + description:Ryu - Straight punch kills + code:884-CF8-A3A + cheat + description:Ryu - Standong hack kick doesn't do any damage + code:004-BB8-C42 + cheat + description:Ryu - Standong hack kick does more damage + code:404-BB8-C42 + cheat + description:Ryu - Standong hack kick kills + code:884-BB8-C42 + cheat + description:Ryu - Rolling throw doesn't do any damage + code:005-B58-A22 + cheat + description:Ryu - Rolling throw does more damage + code:405-B58-A22 + cheat + description:Ryu - Rolling throw kills + code:885-B58-A22 + cheat + description:Ryu - Jumping straight up and kicking doesn't do any damage + code:005-338-A2E + cheat + description:Ryu - Jumping straight up and kicking does more damage + code:405-338-A2E + cheat + description:Ryu - Jumping straight up and kicking kills + code:885-338-A2E + cheat + description:Ryu - Standing short kick doesn't do any damage + code:004-D98-C4A + cheat + description:Ryu - Standing short kick does more damage + code:404-D98-C4A + cheat + description:Ryu - Standing short kick kills + code:884-D98-C4A + +cartridge sha256:201aec9eb615f1434100e0db39d6039e3f80670a680b8af9df15915315c170b1 + name:Sumo Fighter (USA) + cheat + description:Infinite energy + code:FAE-C8A-4C1 + cheat + description:At easy or hard level screen, press down three times then A for super hard mode (makes display look weird) + code:092-06F-F7E + cheat + description:Start with 2 energy bars + code:02B-AFA-E66 + cheat + description:Start with 5 energy bars + code:05B-AFA-E66 + cheat + description:Start with 8 energy bars + code:08B-AFA-E66 + cheat + description:Start with 2 lives + code:012-0BF-E62 + cheat + description:Start with 5 lives + code:042-0BF-E62 + cheat + description:Start with 8 lives + code:072-0BF-E62 + +cartridge sha256:79da9658fdd3b92910f0a63ba6c7a45fb680b0e0ebe03ad1ed982d3dc92edae1 + name:Super Battletank - War in the Gulf (USA) + cheat + description:Infinite damage + code:E0B-00C-2A9 + cheat + description:Infinite ammo + code:005-95C-3BE + cheat + description:Infinite fuel + code:C9D-E1D-2A9 + cheat + description:Start with 5 shells + code:05E-42D-2A2 + cheat + description:Start with 99 shells + code:63E-42D-2A2 + cheat + description:Start with 5 laser shots + code:05E-4DD-E6E + cheat + description:Start with 99 laser shots + code:63E-4DD-E6E + cheat + description:Start with 5 smoke shots + code:05E-58D-E6E + cheat + description:Start with 99 smoke shots + code:63E-58D-E6E + cheat + description:Start with 5 bullets + code:05E-63D-B30 + cheat + description:Start with 99 bullets + code:63E-63D-B30 + cheat + description:Start with very little fuel + code:15E-72D-195 + +cartridge sha256:dab87fd694aa1358278b4850371ff1303dea2295b7b7cc14842c969014a73fb1 + name:Super Chase H.Q. (USA, Europe) + cheat + description:Infinite time + code:006-78E-E6E + cheat + description:Infinite turbos + code:007-67E-19E + cheat + description:Turbo boosts last half as long + code:777-47E-081 + cheat + description:Turbo boosts lasts very short + code:157-47E-081 + cheat + description:Turbo boosts lasts forever. Disable to fire a turbo boost then enable while turbo boost is going. + code:007-14E-F79 + cheat + description:Start with lots of points + code:F59-90B-2A1 + cheat + description:Start with 1 turbo boost + code:010-E5A-E66+019-08B-E66 + cheat + description:Start with 2 turbo boosts + code:020-E5A-E66+029-08B-E66 + cheat + description:Start with 5 turbo boosts + code:050-E5A-E66+059-08B-E66 + cheat + description:Start with 9 turbo boosts + code:090-E5A-E66+099-08B-E66 + +cartridge sha256:1a3841dfc6ccf87167d7b1f0ce17f3bbf9fd64445611e249f5902e8824e17483 + name:Super Chinese Land (Japan) + cheat + description:Invincibility (blinking) + code:004-BEE-C4D + cheat + description:Infinite health + code:7C5-0AB-802+125-0BB-3B7 + cheat + description:Infinite lives + code:475-5AA-C4D + +cartridge sha256:49fbd2f61f953d5ef28cab73e357e524c3009ad19fcf30f6a9ee0ae273be41dc + name:Super Mario Land (World) (Rev A) + cheat + description:Enable level select + code:004-D3F-F7F+C34-AAF-A21 + cheat + description:Infinite time - disable at end of stage + code:008-60A-E6E + cheat + description:Always have superballs + code:00A-17B-C49 + cheat + description:Multi-jump + code:009-C2B-2A1+009-C9B-4C5+009-D8B-80E+009-E4B-C4A+189-AEB-6EA+C9B-75B-809+FA9-E7B-4C1 + cheat + description:Disable music + code:C9C-C39-C49 + +cartridge sha256:470d6c45c9bcf7f0397d00c1ae6de727c63dd471049c8eedbefdc540ceea80b4 + name:Super Mario Land (World) + cheat + description:Enable level select + code:004-D3F-F7F+C34-AAF-A21 + cheat + description:Superballs hit anywhere + code:000-4BD-5DE+000-48D-A21+E10-49D-5DE+E50-4AD-5DE + cheat + description:Multi-jump + code:009-C2B-2A1+009-C9B-4C5+009-D8B-80E+009-E4B-C4A+189-AEB-6EA+C9B-75B-809+FA9-E7B-4C1 + cheat + description:Disable music + code:C9D-BD9-C49 + +cartridge sha256:42045a1642f77b568534ab85b9db93c8a33d2b95c38ae84c987f497e8d52f97f + name:Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev B) + cheat + description:Infinite time + code:00D-8DA-E6E + cheat + description:Always have fireballs + code:002-CEC-E69 + cheat + description:Fireballs hit anywhere + code:4E0-4CC-197+640-62C-197 + +cartridge sha256:30d3316d06710cb94c529c477975cae3b051312b88aca9392888614b1c4b3894 + name:Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev A) + cheat + description:Infinite lives + code:001-40C-E6E + cheat + description:Infinite time + code:00D-8DA-E6E + cheat + description:Timer counts down by 2 + code:02D-8DA-E6E + cheat + description:Mushroom turns you into Bunny Mario + code:024-5BC-E6E + cheat + description:Mushroom turns you into Fire Mario + code:034-5BC-E6E + cheat + description:Stay as Super Mario when hit + code:FA1-B9C-4C1 + cheat + description:Stay as Fire or Bunny Mario when hit + code:FA1-C8C-4C1 + cheat + description:Hearts (extra life) worth nothing + code:004-BBC-19A + cheat + description:Play 30 coin game of chance for free + code:004-5F8-2AA + cheat + description:Play 50 coin game of chance for free + code:004-288-A2B + cheat + description:Play 200 coin game of chance for free + code:003-F28-E62 + cheat + description:Play 999 coin game of chance for free + code:003-BB8-C4E+003-BA8-80C + cheat + description:Each coin worth 101 + code:01D-92E-E6A+019-2BA-E6A + cheat + description:Each coin worth 0 + code:009-22A-19A+00D-89E-19A + cheat + description:Each defeated enemy worth 2 + code:023-218-E6E + cheat + description:Each defeated enemy worth 5 + code:053-218-E6E + cheat + description:Can re-enter boss levels + code:181-8DB-4CA + cheat + description:Always have fireballs + code:002-CBC-E69 + cheat + description:Start new game with 1 life instead of 6 + code:002-41B-F7E + cheat + description:Start new game with 10 lives instead of 6 + code:092-41B-F7E + cheat + description:Start new game with 25 lives instead of 6 + code:242-41B-F7E + cheat + description:Start new game with 50 lives instead of 6 + code:492-41B-F7E + cheat + description:Start new game with 75 lives instead of 6 + code:742-41B-F7E + cheat + description:Start new game with 100 lives instead of 6 + code:992-41B-F7E + +cartridge sha256:5450dce1bd0c073964c374b5b5b5729dce8d00f2e807892c34af32b8bce1392e + name:Super Mario Land 2 - 6 Golden Coins (USA, Europe) + cheat + description:Infinite lives + code:001-40C-E6E + cheat + description:Infinite time + code:00D-8DA-E6E + cheat + description:Fireballs hit anywhere + code:4B0-49C-19B+610-5FC-19B + cheat + description:Always have fireballs + code:002-CBC-E69 + +cartridge sha256:91bd1f24827bde4dbb58ead76a8b4e5a507431ec9b6bbc7ef9473b852538a4d5 + name:Super Off Road (USA) + cheat + description:Infinite money + code:FAD-A2B-4C1 + cheat + description:Infinite tires, nitros, etc. when you buy them + code:003-3AD-3BE + cheat + description:Start with 2 credits + code:02B-87F-E66 + cheat + description:Start with 4 credits + code:04B-87F-E66 + cheat + description:Start with 8 credits + code:08B-87F-E66 + +cartridge sha256:f522c83d9dc77825a8bd5933e0877173fcb260fe72c5b032ef38b109250a63e9 + name:Swamp Thing (USA, Europe) + cheat + description:Invincibility + code:C92-85E-A28 + cheat + description:Infinite lives + code:FA3-8FF-4C1 + cheat + description:Infinite environmental meter + code:FAF-CF9-4C1 + cheat + description:Start with half energy + code:205-5AF-E6B + cheat + description:Start with 1/2 environmental meter + code:105-55F-6EA + +cartridge sha256:3e7a15c930db627b82b83f1e2a499436b0419e4d05b85bdfeb2a475e6a07c9b1 + name:Sword of Hope, The (USA) + cheat + description:Infinite HP + code:001-72B-F75 + cheat + description:Start with 11 dexterity points + code:09A-BFD-F7E + cheat + description:12 stamina points + code:09A-C4D-F7E + cheat + description:Shaman is free + code:F04-A0C-6E9 + cheat + description:Forest shop is free + code:F0A-3CC-6E9 + +cartridge sha256:f55e542cc82dc5fbefc0fc5f42e95e882fba7895e73a8ff084ce7aa8408bdd85 + name:T2 - The Arcade Game (USA, Europe) + cheat + description:Infinite energy + code:F0C-9DD-6E9 + cheat + description:Infinite lives + code:F0C-ABD-6E9 + cheat + description:Infinite rockets + code:FA4-B8E-4C1 + cheat + description:Infinite continues + code:FAD-5CE-4C1 + cheat + description:Start with 2 lives + code:023-46F-F7E + cheat + description:Start with 4 lives + code:043-46F-F7E + cheat + description:Start with 8 lives + code:083-46F-F7E + +cartridge sha256:596787d9f1dfeef0151b20ce330ef78220e041d0a360b34dea75ce21c7cbb889 + name:Taz-Mania (USA, Europe) + cheat + description:Invincibility + code:003-658-E69 + cheat + description:Infinite spins + code:FAC-519-4C1 + cheat + description:Infinite hearts + code:FA7-3CC-4C1 + cheat + description:Infinite time + code:FA6-AA8-4C1 + cheat + description:Infinite credits + code:FAA-48D-4C1 + cheat + description:Don't flash after getting hit + code:00A-969-E68 + cheat + description:Don't flash as long after getting hit + code:11A-969-E68 + cheat + description:Flash longer after getting hit + code:F1A-969-E68 + cheat + description:Start with 1 heart - 1st life + code:017-6EF-E66 + cheat + description:Start with 5 hearts - 1st life + code:057-6EF-E66 + cheat + description:Start with 10 hearts - 1st life + code:0A7-6EF-E66 + cheat + description:Start timer at 58 seconds + code:3E8-408-80E+058-418-4C2 + cheat + description:Start timer at 1 minute 48 seconds + code:3E8-408-80E+0A8-418-4C2 + +cartridge sha256:8b5f65da035664baedd19c55ddfe06682e2dd7d45970bcb10917078c855aa19c + name:Taz-Mania 2 (USA) + cheat + description:Invincibility + code:010849DC + cheat + description:Infinite health + code:010060DB + cheat + description:Infinite attack + code:0128BAD3 + cheat + description:Infinite time + code:01387DD3 + +cartridge sha256:1f3c9ff627b0445e57a7425bc433c0476a0eeafe25ea5c6522b102d1ef8f875e + name:Tecmo Bowl (USA) + cheat + description:Infinite time + code:00D-C9A-3BE + cheat + description:Have 49 downs + code:494-D6B-F7A + cheat + description:Have 5 downs + code:054-D6B-F7A + cheat + description:8 minutes 30 seconds per quarter + code:084-EFB-E6E + cheat + description:6 minutes 30 seconds per quarter + code:064-EFB-E6E + cheat + description:1 minutes 30 seconds per quarter + code:014-EFB-E6E + +cartridge sha256:f4ef2ca5506f493f48833c16dff5eaa2b18ba488c352ed5bc03059d150e46620 + name:Teenage Mutant Ninja Turtles - Fall of the Foot Clan (USA) + cheat + description:Hit anywhere + code:B8D-E2C-6EC+B8E-26C-6EC+3ED-DFC-D52+3EE-23C-D52 + +cartridge sha256:b2588721a1a298cfbd1f2fca465ac70f0b2aa488fab8eed1b7f49cac592ac438 + name:Teenage Mutant Ninja Turtles II - Back from the Sewers (USA) + cheat + description:Invincibility + code:186-4CA-2AA+C96-B4A-A29 + cheat + description:Hit anywhere + code:006-F1A-A29 + +cartridge sha256:95c804c1a851b502c15a3418eef75e491aec9371e2fb2a34e4aaa27b37e02023 + name:Teenage Mutant Ninja Turtles III - Radical Rescue (USA) + cheat + description:Invincibility + code:C93-3BD-A29+C98-84B-6EE + cheat + description:Hit anywhere + code:002-47D-A29+002-64D-A29+002-DED-A29+002-FBD-A29 + +cartridge sha256:cdcb6ba23ea2c32a2af47abb267d8bd065a8bc10777b435de6a9be421e5bf919 + name:Tennis (World) + cheat + description:Neither player scores points - disable to score + code:001-DAD-3BA + cheat + description:1 game needed to win set + code:010-9CD-F76 + cheat + description:2 games needed to win set + code:020-9CD-F76 + cheat + description:3 games needed to win set + code:030-9CD-F76 + cheat + description:4 games needed to win set + code:040-9CD-F76 + cheat + description:1st point takes you to 40 points + code:011-9AD-E66 + cheat + description:2nd point takes you to 40 points + code:021-9AD-E66 + cheat + description:Neither player can win game + code:000-99D-3BA+E00-74D-6E5+E00-7ED-6E5 + +cartridge sha256:5fa11359e8147b295bebd1e5631c7b96908c649d9d33fdc45a2dd3de8d69ca73 + name:Terminator 2 - Judgment Day (USA, Europe) + cheat + description:Almost infinite energy + code:C95-00E-4C1 + cheat + description:Infinite time in reprogramming stage + code:001-03B-19E + cheat + description:20 shots kill end of level 1 boss + code:148-54B-4CA + cheat + description:10 shots kill end of level 1 boss + code:0A8-54B-4CA + cheat + description:5 shots kill end of level 1 boss + code:058-54B-4CA + cheat + description:Start with 1/2 energy + code:70E-59D-6E9 + +cartridge sha256:0d6535aef23969c7e5af2b077acaddb4a445b3d0df7bf34c8acef07b51b015c3 + name:Tetris (World) (Rev A) + cheat + description:Keep stack displayed while paused + code:CEC-30E-C45 + cheat + description:Keep current and next pieces displayed while paused + code:D9C-53E-D5D + cheat + description:Only piece 1 will appear + code:000-63D-6E9+3E0-64D-5D0+000-65D-087 + cheat + description:Only piece 2 will appear + code:000-63D-6E9+3E0-64D-5D0+040-65D-087 + cheat + description:Only piece 3 will appear + code:000-63D-6E9+3E0-64D-5D0+080-65D-087 + cheat + description:Only piece 4 will appear + code:000-63D-6E9+3E0-64D-5D0+0C0-65D-087 + cheat + description:Only piece 5 will appear + code:000-63D-6E9+3E0-64D-5D0+100-65D-087 + cheat + description:Only piece 6 will appear + code:000-63D-6E9+3E0-64D-5D0+140-65D-087 + cheat + description:Only piece 7 will appear + code:000-63D-6E9+3E0-64D-5D0+180-65D-087 + +cartridge sha256:d349dc93423c6abcd775d3b6a8797df715a44a42ec837afb21bf17ae43b40a9e + name:Tetris DX (World) (SGB Enhanced) + cheat + description:Score increases a lot + code:1F3-C9A-F70 + cheat + description:Swap over next shape to current shape by pressing A + code:C37-C5A-081+B67-C6A-E60+587-C7A-5D4 + cheat + description:Swap over next shape to current shape by pressing B + code:C38-1EA-081+B68-1FA-E60+588-20A-5D4 + cheat + description:Swap over next shape to current shape by pressing select + code:188-76A-081+3E8-77A-F74 + +cartridge sha256:771d24adf7dd11ff166fc43d3f2be66dd7a24251b8920e813956c62514813051 + name:Tetris 2 (USA) + cheat + description:No next piece screen + code:C98-E9A-081 + cheat + description:Blocks come down fast + code:10D-649-F71+00D-629-081+3ED-639-B30 + cheat + description:Blocks come down very fast + code:70D-649-F71+00D-629-081+3ED-639-B30 + cheat + description:Blocks come down super fast + code:20D-649-F71+00D-629-081+3ED-639-B30 + cheat + description:Can select round above 30 on options screen + code:00A-4BA-A29 + cheat + description:In versus mode, no blocks added to top of screen + code:FA8-CB8-4C1 + +cartridge sha256:379f9034b2702f06247e1dd4a6e21d51a76aff84d12ff851e4e962b105094d10 + name:Tiny Toon Adventures 2 - Montana's Movie Madness (USA, Europe) + cheat + description:Invincibility + code:C3C-DAD-E61 + cheat + description:Infinite health + code:00D-5CD-19E + cheat + description:Infinite time + code:006-14B-19E + cheat + description:Infinite lives + code:00A-5ED-E6E + cheat + description:One hit and you die + code:00D-53D-679 + cheat + description:Don't flash as long after getting hit + code:3FD-53D-679 + cheat + description:Start with 1 heart + code:029-66E-F7A + cheat + description:Start with 2 hearts + code:039-66E-F7A + cheat + description:Start with 1 life + code:00E-1E9-E62 + cheat + description:Start with 5 lives + code:04E-1E9-E62 + cheat + description:Start with 10 lives + code:09E-1E9-E62 + cheat + description:Start with mega points + code:00E-229-5D4 + cheat + description:Start with 100 seconds on the clock + code:01E-319-F7E + cheat + description:Start with 300 seconds on the clock + code:03E-319-F7E + cheat + description:Start with 700 seconds on the clock + code:07E-319-F7E + cheat + description:Start with 900 seconds on the clock + code:09E-319-F7E + +cartridge sha256:fe2f3a9c8af3702b53398fea579951634effbeafaea10865aac8b07d7458e9b1 + name:Tiny Toon Adventures 2 (Japan) + cheat + description:Invincibility + code:C3C-DAD-E61 + cheat + description:Infinite health + code:00D-5CD-19E + cheat + description:Infinite time + code:006-14B-19E + cheat + description:Infinite lives + code:00A-5ED-E6E + cheat + description:One hit and you die + code:00D-53D-679 + cheat + description:Don't flash as long after getting hit + code:3FD-53D-679 + cheat + description:Start with 1 heart + code:029-66E-F7A + cheat + description:Start with 2 hearts + code:039-66E-F7A + cheat + description:Start with 1 life + code:00E-1E9-E62 + cheat + description:Start with 5 lives + code:04E-1E9-E62 + cheat + description:Start with 10 lives + code:09E-1E9-E62 + cheat + description:Start with mega points + code:00E-229-5D4 + cheat + description:Start with 100 seconds on the clock + code:01E-319-F7E + cheat + description:Start with 300 seconds on the clock + code:03E-319-F7E + cheat + description:Start with 700 seconds on the clock + code:07E-319-F7E + cheat + description:Start with 900 seconds on the clock + code:09E-319-F7E + +cartridge sha256:4d078174031509ca7b63c237e176e9f5c0aed88b42352ad23aee98a777d3a0d7 + name:Titus the Fox to Marrakech and Back (USA, Europe) + cheat + description:Infinite energy until level 3 + code:00E-7D9-3BE + cheat + description:Infinite energy from level 3 on + code:002-739-3BE + cheat + description:Infinite lives + code:009-6A9-3BE + cheat + description:Start 1st life with 1 energy unit + code:013-D0A-F7E + cheat + description:Start 1st life with 9 energy units + code:093-D0A-F7E + cheat + description:Start with 1 energy unit after 1st life + code:011-CFD-F7E + cheat + description:Start with 9 energy units after 1st life + code:091-CFD-F7E + cheat + description:Start 1st level with 100-pt. bonus + code:643-DCA-E6A + cheat + description:Start 1st level with 250-pt. bonus + code:FA3-DCA-E6A + cheat + description:Start with 1 life + code:013-D5A-E66 + cheat + description:Start with 6 lives + code:063-D5A-E66 + cheat + description:Start with 9 lives + code:093-D5A-E66 + cheat + description:Start on level 1, part 2 + code:003-BAF-5D4 + +cartridge sha256:597f70c8d600427fee6f3a3714115bad30b24402dd830c36dc010a7b3a92a7a3 + name:Tom & Jerry (USA, Europe) + cheat + description:Infinite lives + code:008-54D-B3D + cheat + description:Infinite balls once collected + code:FA6-84B-4C1 + cheat + description:Infinite energy (may have to die once first) + code:00D-47D-3BA + cheat + description:Infinite time + code:FAC-3FE-4C1+FAC-43E-4C1 + cheat + description:Every time you collect one cheese you get 11 (can't go over 100) + code:110-67B-E6E + cheat + description:Start with 1 life + code:01F-7BB-E66 + cheat + description:Start with 5 lives + code:05F-7BB-E66 + +cartridge sha256:bcd52c83f3662165baaeff2527fd221c04b734214d5dacb8cdda6fbcb95fbc3b + name:Tom and Jerry - Frantic Antics! (USA, Europe) + cheat + description:Infinite lives + code:01E-39E-A25 + cheat + description:Infinite lives + code:00C-E4B-3BE + cheat + description:Infinite time + code:001-43C-E6E+001-51C-E6E + cheat + description:Don't flash after getting hit + code:013-338-08B + cheat + description:Flash longer after getting hit + code:FA3-338-08B + cheat + description:Start with 1 life + code:019-0CC-E66 + cheat + description:Start with 5 lives + code:059-0CC-E66 + cheat + description:Start with 10 lives + code:0A9-0CC-E66 + cheat + description:Start with 1 minutes on the timer + code:010-DEC-F7E + cheat + description:Start with 10 minutes on the timer + code:0A0-DEC-F7E + cheat + description:Start with 15 minutes on the timer - ignore counter + code:0F0-DEC-F7E + +cartridge sha256:bb2f56c5035b47183c55b197bc380ea02df00dd733ce732d062f7c7695bd330f + name:Top Gun - Guts & Glory (USA, Europe) + cheat + description:Infinite missiles + code:FA4-249-4C1 + cheat + description:Infinite lives + code:008-599-F79 + cheat + description:Start with 1 life (do not alter mission on the first menu screen) + code:01B-E4D-E66 + cheat + description:Start with 5 lives (do not alter mission on the first menu screen) + code:05B-E4D-E66 + cheat + description:Start with 10 lives (do not alter mission on the first menu screen) + code:0AB-E4D-E66 + cheat + description:Start on mission 10 (do not alter mission on the first menu screen) + code:004-859-4C1+3E4-869-80C+0A4-879-F7D + +cartridge sha256:13a6106b5548261764b0f0d676b07265e6ed37b4cf2f85fc763b05dde749eb64 + name:Total Carnage (USA, Europe) + cheat + description:Infinite grenades + code:FA2-28D-4C1 + cheat + description:Infinite lives + code:001-ADD-19E + cheat + description:Start with very little energy after 1st life + code:021-B1D-F72 + cheat + description:Start with mega energy after 1st life + code:991-B1D-F72 + cheat + description:Don't take damage from some enemies after getting hit + code:003-55E-19E + cheat + description:Start with very little energy-1st life + code:020-54B-F72 + cheat + description:Start with mega energy-1st life + code:990-54B-F72 + cheat + description:Start with 1 life + code:000-4FB-E66 + cheat + description:Start with 9 lives + code:080-4FB-E66 + cheat + description:Start with 15 lives + code:0F0-4FB-E66 + cheat + description:Start with 33 grenades + code:030-5FB-E6A + +cartridge sha256:eae3b192006eff607dffdae3d7720af579f85335be81e6cacb55276bfc32424c + name:Track & Field (USA, Europe) + cheat + description:Always have 100% power + code:3E7-7FD-4CA+007-80D-E6E + cheat + description:Max angle on long jump + code:45D-999-E68 + cheat + description:Max angle on javelin + code:45A-1EA-E68 + cheat + description:Max angle on triple jump + code:454-D1A-E68 + +cartridge sha256:3990c42543e74387c30ac935eb45067e291b4a5e93702d5520acd0e91d14f34f + name:Tumble Pop (USA, Europe) + cheat + description:Infinite lives + code:FA5-BCD-4C1 + cheat + description:Only have 2 minutes to complete each screen + code:028-8AE-E66 + cheat + description:Only have 5 minutes to complete each screen + code:058-8AE-E66 + cheat + description:Only have 10 minutes to complete each screen + code:0A8-8AE-E66 + cheat + description:Start across river from original position + code:058-17E-E6A + cheat + description:Start at island castle + code:FF8-17E-E6A + cheat + description:Hold enemies inside gun as long as you want + code:00E-68D-3BE + cheat + description:Start with 1 life + code:008-1CE-E66 + cheat + description:Start with 6 lives + code:058-1CE-E66 + cheat + description:Start with 9 lives + code:088-1CE-E66 + +cartridge sha256:954ed263a5133c608636af442c4c0ade7f9b7dfdc768e7bfbf31d2528a8d7796 + name:Turn and Burn (USA) + cheat + description:Infinite missiles + code:00E-1CD-3BE + cheat + description:Gun doesn't overheat + code:001-51C-F7A + cheat + description:Start with more Aim-54 missiles + code:7C2-99E-08F + cheat + description:Start with more Aim-9 missiles + code:7C2-8BE-08F + +cartridge sha256:9008df8d950b4e6966b38218e43bc3baf9bad91ef44b271b558aee6f38c993d7 + name:Ultima - Runes of Virtue (USA) + cheat + description:Infinite energy + code:FA5-F3F-4C1+FA4-00C-4C1 + cheat + description:Infinite money + code:FAB-5BF-4C1 + cheat + description:Start with dexterity of 10 - Shamino codes only - can't use with Journey Onward option + code:106-2B8-B3E + cheat + description:Start with dexterity of 30 - Shamino codes only - can't use with Journey Onward option + code:306-2B8-B3E + cheat + description:Start with dexterity of 50 - Shamino codes only - can't use with Journey Onward option + code:506-2B8-B3E + cheat + description:Start with strength of 10 - Shamino codes only - can't use with Journey Onward option + code:106-2C8-B3E + cheat + description:Start with strength of 30 - Shamino codes only - can't use with Journey Onward option + code:306-2C8-B3E + cheat + description:Start with strength of 50 - Shamino codes only - can't use with Journey Onward option + code:506-2CA-B3E + cheat + description:Start with IQ of 10 - Shamino codes only - can't use with Journey Onward option + code:106-2F8-B3E + cheat + description:Start with IQ of 30 - Shamino codes only - can't use with Journey Onward option + code:306-2F8-B3E + cheat + description:Start with IQ of 50 - Shamino codes only - can't use with Journey Onward option + code:506-2F8-B3E + cheat + description:Start with 15 coins - Shamino codes only - can't use with Journey Onward option + code:155-658-2AA + cheat + description:Start with 40 coins - Shamino codes only - can't use with Journey Onward option + code:405-658-2AA + cheat + description:Start with 60 coins - Shamino codes only - can't use with Journey Onward option + code:605-658-2AA + cheat + description:No energy replacement - Shamino codes only - can't use with Journey Onward option + code:FAC-0AF-4C1 + +cartridge sha256:850a429b64b7ebcb8034da2c25789dff631d64682b1ce65f8de346c9744ae31e + name:Universal Soldier (USA, Europe) + cheat + description:Infinite energy + code:008-7AC-3BE + cheat + description:Infinite time + code:00A-5AF-3BE + cheat + description:Infinite lives + code:C93-EEF-E69 + cheat + description:Fewer enemies on each level + code:00C-50E-3BA+00C-4BE-3BE + cheat + description:Start with 5 lives + code:055-D1E-E66 + cheat + description:Start with 7 lives + code:075-D1E-E66 + cheat + description:Start with 9 lives + code:095-D1E-E66 + cheat + description:Start with 5 power lines + code:056-ACE-E66 + cheat + description:Start with 7 power lines + code:076-ACE-E66 + cheat + description:Start with 9 power lines + code:096-ACE-E66 + +cartridge sha256:1af2d4b29552fb2cf141955e1d77f8dd99e856b1f04fbff5240d5a1c3c2c41bf + name:Wario Blast featuring Bomberman! (USA, Europe) (SGB Enhanced) + cheat + description:Infinite time + code:00A-5BF-3B7 + cheat + description:Collect up to 8 extra bomb power-ups + code:083-F1A-F7A + cheat + description:Extra bomb power-ups don't do anything + code:003-EFA-3B7 + cheat + description:Explosion expanders don't do anything + code:003-D7A-3B7 + cheat + description:Start with 300 seconds + code:03F-87E-E6E + cheat + description:Start with 4 extra bomb power-ups + code:046-C7D-E6E + cheat + description:Start with 4 explosion expander + code:046-CBD-E6A + cheat + description:Start on round 3-3 + code:210-3BB-4C1+000-13B-5D4 + cheat + description:Start on round 3-Boss + code:210-3BB-4C1+3C0-13B-5D4 + +cartridge sha256:ac1682f17abcf590311a233289ee325214c2d71ab3a5aa175004002d85075e56 + name:Wario Land - Super Mario Land 3 (World) + cheat + description:Don't lose current power-up when you get hit or get a new power-up (switchable) + code:FAD-63F-4C1 + cheat + description:Most enemies and obstacles are invisible + code:003-AAB-E62+C96-C0C-4C1 + cheat + description:Multi-jump + code:C41-8EA-E61+C41-93A-E61+181-96A-C45+111-97A-F77 + cheat + description:Get 10 hearts for killing an enemy + code:103-E4F-E6E + cheat + description:Get 25 hearts for killing an enemy + code:253-E4F-E6E + cheat + description:Get 50 hearts for killing an enemy + code:503-E4F-E6E + cheat + description:Get 99 hearts for killing an enemy + code:993-E4F-E6E + cheat + description:Start as Small Wario + code:00B-7E8-E6E + cheat + description:Start as Bull Wario + code:02B-7E8-E6E + cheat + description:Start as Jet Wario + code:03B-7E8-E6E + cheat + description:Start as Dragon Wario + code:04B-7E8-E6E + cheat + description:Start with 10 hearts + code:10B-7C8-E6A + cheat + description:Start with 25 hearts + code:25B-7C8-E6A + cheat + description:Start with 50 hearts + code:50B-7C8-E6A + cheat + description:Start with 99 hearts + code:99B-7C8-E6A + cheat + description:Start with 10 coins + code:10B-7B8-E6A + cheat + description:Start with 25 coins + code:25B-7B8-E6A + cheat + description:Start with 50 coins + code:50B-7B8-E6A + cheat + description:Start with 99 coins + code:99B-7B8-E6A + cheat + description:Start with 10 lives + code:10B-7D8-F7E + cheat + description:Start with 25 lives + code:25B-7D8-F7E + cheat + description:Start with 50 lives + code:50B-7D8-F7E + cheat + description:Start with 99 lives + code:99B-7D8-F7E + cheat + description:Start on course 26 + code:01B-7F8-E6A + cheat + description:No turbo boost + code:002-40E-19A + cheat + description:Infinite turbo boost + code:002-CAE-19E + cheat + description:No lap timer + code:003-B7A-6E2 + cheat + description:Start with 800cc bike + code:3E9-65B-6EA+029-66B-E66+009-67B-5D4 + cheat + description:Start with 650cc bike + code:3E9-65B-6EA+019-66B-E66+009-67B-5D4 + +cartridge sha256:a3bd35fb1d2466868b5308a45e8ad3844925bd5dfa819b27ff67d0391b8e3511 + name:WCW Main Event (USA, Europe) + cheat + description:Infinite time + code:003-3ED-E6E + cheat + description:One hit kills + code:186-06E-2AA+AF6-05E-A28 + cheat + description:Never regain energy + code:C95-D9E-3BA + cheat + description:Computer does massive damage + code:096-3EE-E6E + cheat + description:Faster timer + code:023-3ED-E6E + +cartridge sha256:db8029c84c99c1bff1724656d0887636497986fac02892f4d4334c60f646c84f + name:Wild Snake (USA) (SGB Enhanced) + cheat + description:Infinite time in King Cobra mode + code:FAB-1EF-4C1 + cheat + description:All snakes are shorter + code:3E2-7ED-2AA+032-7FD-3BD + cheat + description:Only plain yellow snakes fall + code:3E3-15D-08F+013-16D-7F4 + cheat + description:Only zig-zag snakes fall + code:3E3-15D-08F+023-16D-7F4 + cheat + description:Only dark dotted snakes fall + code:3E3-15D-08F+033-16D-7F4 + cheat + description:Only light dotted snakes fall + code:3E3-15D-08F+043-16D-7F4 + cheat + description:Only dark striped snakes fall + code:3E3-15D-08F+053-16D-7F4 + cheat + description:Only light striped snakes fall + code:3E3-15D-08F+063-16D-7F4 + cheat + description:Only vertically striped snakes fall + code:3E3-15D-08F+073-16D-7F4 + cheat + description:Only checkered snake snakes fall + code:3E3-15D-08F+083-16D-7F4 + cheat + description:Only skeleton snakes fall + code:3E3-15D-08F+0A3-16D-7F4 + cheat + description:Only temporarily invisible snakes fall + code:3E3-15D-08F+0B3-16D-7F4 + cheat + description:Only dark snakes fall + code:3E3-15D-08F+0C3-16D-7F4 + cheat + description:Only wild snakes fall + code:3E3-15D-08F+0D3-16D-7F4 + cheat + description:Only king cobra snakes fall + code:3E3-15D-08F+0E3-16D.-7F4 + cheat + description:Collect 1 snake in King Cobra mode and finish level + code:3E6-DFD-081+3E6-E1D-C49+306-E2D-19A + cheat + description:Snakes fall very fast + code:3E5-53B-081+015-54B-C47+005-55B-F71 + cheat + description:Snakes fall extremely fast + code:3E5-53B-081+005-54B-C47+005-55B-F71 + cheat + description:Snakes fall slower + code:3E5-53B-081+055-54B-C47+005-55B-F71 + cheat + description:Snakes fall very slow + code:3E5-53B-081+1F5-54B-C47+005-55B-F71 + cheat + description:Snakes fall extremely slow + code:3E5-53B-081+AF5-54B-C47+005-55B-F71 + +cartridge sha256:b396d2a15563b6144630d5ec5f0a8a2928a4b289ca215e6cc581df7a5fe295ff + name:WordZap (USA) + cheat + description:Infinite hints + code:008-70F-3BE + cheat + description:Start with only 1 hint + code:01B-C9E-F7A + cheat + description:Start with 5 hints + code:05B-C9E-F7A + cheat + description:Start with 9 hints + code:09B-C9E-F7A + cheat + description:Start with 1 chance + code:01B-CEE-E66 + cheat + description:Start with 9 chances + code:09B-CEE-E66 + +cartridge sha256:439854d8d2ec85bffb171efe3ec0d6ba98fed2443b26053340daaf8190611859 + name:World Bowling (USA) + cheat + description:Always bowl at full power + code:3E6-94B-F71+FF6-95B-C4E + cheat + description:Get a spare even if you miss + code:3E3-44A-08F+0A3-45A-A28 + +cartridge sha256:246d48cb2a6ed53a7cf78d94fc219762aaaea0111467a5fcf415ca76f9170124 + name:World Circuit Series (USA) + cheat + description:No loss of speed on course you take your finger from acceleration button + code:00C-A0E-19E + cheat + description:No loss of speed when you leave course-except hitting walls + code:00A-E2E-3BE + cheat + description:No qualifying timer + code:003-84F-3BE+C93-85F-E69 + +cartridge sha256:0ba3d3b9be8c615bd29956887584aff9446a88fb2606bfb8ccc75907164c4cf9 + name:WWF King of the Ring (USA, Europe) + cheat + description:No out of ring timer + code:00C-0FD-E6E + +cartridge sha256:3843f2cdb0746ff0cf7dc97e1aab4fc6a15219e7ac8e1970ead475a835c57aea + name:Xenon 2 - Megablast (USA, Europe) + cheat + description:Infinite energy + code:FA4-16D-4C1 + cheat + description:Infinite lives + code:FA2-EBF-4C1 + cheat + description:Purchases at shop are free + code:C96-DBC-6EE + cheat + description:When you die you get an awesome ship (for a while) + code:002-F4F-5D4 + cheat + description:Start with very little energy + code:013-08F-A22 + cheat + description:Start with 1/3 energy + code:053-08F-A22 + cheat + description:Start with 1/2 energy + code:093-08F-A22 + cheat + description:Start with 2,222,222 points + code:002-04F-5D4 + cheat + description:Start with 1 life + code:011-75C-F7E + cheat + description:Start with 5 lives + code:051-75C-F7E + cheat + description:Start with 10 lives + code:0A1-75C-F7E + +cartridge sha256:98fb28e23fa2bdb969317544bf0fd5c24fb377134cac12897b29889bc67f6ca6 + name:Yogi Bear in Yogi Bear's Goldrush (USA) + cheat + description:Power-up after almost every shot + code:007-CB8-4CA + +cartridge sha256:a41d3ab34e91fccdf6b4e3a203dbf606d1097b702039fdf2f252cb18c4c9f925 + name:Yoshi (USA) + cheat + description:At random intervals, 1 block comes down instead of 2 + code:003-BBE-193 + cheat + description:When setup screen appears, go to level select, push right once to start on level 6 + code:3EC-70D-081+06C-71D-2AC+22C-72D-F71 + cheat + description:When setup screen appears, go to level select, push right once to start on level 8 + code:3EC-70D-081+08C-71D-2AC+22C-72D-F71 + cheat + description:No timer for game B + code:00C-71B-3BA + +cartridge sha256:1f6a79c3a548718eea5cf530f30d67f8fd76ee9693cd2da164caef36d310a501 + name:Zen - Intergalactic Ninja (USA) + cheat + description:Infinite lives + code:FA9-6DE-4C1 + cheat + description:Infinite energy against bullets and most enemies + code:FA3-36B-4C1+FA2-A4B-4C1 + cheat + description:Instant staff power-up (hold B) + code:01A-3ED-F7E + cheat + description:No energy loss against fire + code:FA1-B1A-4C1 + cheat + description:No energy loss against hang-on enemies + code:FAF-DAD-4C1 + cheat + description:Start lives with 1/2 energy + code:051-668-C42 + cheat + description:Start each life with 7 energy points + code:071-668-C42 + cheat + description:Start with 1 life + code:015-91F-E66 + cheat + description:Start with 5 lives + code:055-91F-E66 + cheat + description:Start with 10 lives + code:0A5-91F-E66 + diff --git a/higan/data/cheats.xml b/higan/data/cheats.xml deleted file mode 100755 index 1f94df58..00000000 --- a/higan/data/cheats.xml +++ /dev/null @@ -1,106582 +0,0 @@ - - - - 1942 (Japan, USA) - - Don't die when touched - OLZNEE - - - Most enemies die instantly - PAEIXKNY - - - Infinite lives - 1P game - SZXLKEVK - - - Infinite rolls - SZESPUVK - - - Hit anywhere - ALKUTGEL+SXULIKSO+SZELGKSO+SZKULGAX - - - Rapid fire - AEUSGZAP - - - After continue P1 has 6 lives - 2P game - IAKUUAZA - - - After continue P1 has 9 lives - 2P game - AAKUUAZE - - - P2 has 6 lives - 2P game - IASUOAZA - - - P2 has 9 lives - 2P game - AASUOAZE - - - Start with 9 rolls - both players - PASIOALE - - - Start with 6 lives - 1P game - IESUTYZA - - - Start with 9 lives - 1P game - AESUTYZE - - - Invincibility - 048E:88 - - - Infinite rolls (alt) - 0436:03 - - - Infinite lives - 0432:02 - - - - 1943 - The Battle of Midway (USA) - - Infinite energy - OUNLAZGA - - - Infinite energy (alt) - SXVLZXSE+VVOULXVK - - - Infinite power-ups - SUTXGN - - - Infinite weapon upgrade time - SGOUZUVK - - - Don't instantly die from touching boss planes - NSKIELGA - - - Always shoot power shots - LEEPXLAE - - - Hit anywhere - AENSKLAP+GZESEGEL+SLSKOEOO+SXOINUOO+SXXGVEOO+SZKTSXOO+SZVGSVOO - - - 10 power points - ZESNLLLE - - - 20 power points - GOSNLLLA - - - 30 power points - TOSNLLLE - - - Start on mission 5 - AEVYZLAE - - - Start on mission 10 - ZOVYZLAA - - - Start on mission 15 - GOVYZLAE - - - Start on mission 20 - TXVYZLAA - - - Invincibility - 040E:60 - - - Infinite power points - 0347:01 - - - Infinite energy (alt 2) - 0410:09 - - - - 1945 [p1] - - Invincibility - SXOOAZAX+SXVOPGAX - - - Infinite Bombs - SXUAYLAX - - - - 3-D WorldRunner (USA) - - Invincibility - ATPXIG - - - Infinite lives - AEUOLTPA - - - Infinite time - SXUPZGVG - - - Slow down timer - NNXOYGEK - - - Speed up timer - AVXOYGEG - - - Start with and keep laser missiles - AEUOVIGA - - - Autofire - OXUONISX - - - Start with 1 life - PEUPPTLA+PLVOLTLL - - - Start with 6 lives - TEUPPTLA+TLVOLTLL - - - Start with 9 lives - PEUPPTLE+PLVOLTLU - - - Start on world 2 - XZEAUOOZ+PAEAKPAA+VAEASPSA - - - Start on world 3 - XZEAUOOZ+ZAEAKPAA+VAEASPSA - - - Start on world 4 - XZEAUOOZ+LAEAKPAA+VAEASPSA - - - Start on world 5 - XZEAUOOZ+GAEAKPAA+VAEASPSA - - - Start on world 6 - XZEAUOOZ+IAEAKPAA+VAEASPSA - - - Start on world 7 - XZEAUOOZ+TAEAKPAA+VAEASPSA - - - No enemies or pitfalls - 003A:05 - - - - 720 Degrees (USA) - - Infinite continues - SZUYASVK - - - 9 continues - PEXKLZLE - - - 6 continues - TEXKLZLA - - - No continues instead of 2 - PEXKLZLA - - - Start with all equipment - GEKKYZAA - - - Start with half equipment - ZEKKYZAA - - - Start on level 2 - XVXGGXSX+OXXGIXTE+ZEXGTZZA - - - Start on level 3 - XVXGGXSX+OXXGIXTE+LEXGTZZA - - - Start on level 4 - XVXGGXSX+OXXGIXTE+GEXGTZZA - - - Infinite time - 0572:19 - - - Infinite time (one's digit) in half-pipe - 0573:09 - - - Infinite time (ten's digit) in half-pipe - 0574:09 - - - - 8 Eyes (USA) - - Invincibility - Orin - EIUUSLEY - - - Invincibility - Cutrus - EINGVPEY - - - Infinite health - Orin - SXOUSUSE - - - Infinite health - Cutrus - SXNGNOSE - - - Most attacks won't damage Orin - GXOUSUSE - - - Most attacks won't damage Cutrus - GXNGNOSE - - - Start with more health - Orin - AGVXGXYZ - - - Start with more health - Cutrus - AGVXIXYZ - - - Infinite ammo - SXSLKVSE - - - Start with all weapons - SAOVUTVA - - - Start with max ammo - YGVXTXYX - - - Start with some item power - YZVXTZAE - - - Never lose item power once gained - GXSLKVSE - - - Start with Dagger - VTOVNTVA - - - Invincibility - Orin (blinking) - 030E:10 - - - Invincibility - Cutrus (blinking) - 032E:10 - - - Infinite health - Orin (alt) - 0594:4F - - - Infinite health - Cutrus (alt) - 0595:4F - - - Infinite item power - 0596:4F - - - Bosses have no invulnerability time - 034E:00 - - - Bosses defeated instantly - 034F:00 - - - Doors never close once opened - 009D:FA - - - Have Boomerang - 007F:02 - - - Have Ice Ball - 007F:04 - - - Have Power Ball - 007F:08 - - - Have Dagger, Boomerang, Molotov Cocktail, Hand Gun - 007F:33 - - - - Abadox - The Deadly Inner War (USA) - - Invincibility - AVVTXYSZ - - - Invincible against walls - EIUISSOZ+PYUIVIZA - - - Infinite lives - PEIGPN - - - Infinite lives (alt) - VVIGAY - - - Hit anywhere - ESSYIPEP+EUNNZPEI+EUUYPPEP+GZOYAZAL - - - Invincibility (alt) - 0086:00+008A:00 - - - Speed up level 1 - 008B:01 - - - Speed up level 2 - 008B:02 - - - Speed up level 3 - 008B:03 - - - - Action in New York (Europe) - - Invincibility - AVISVG - - - One hit kills - EIKVVIEY - - - No enemies - GXUIZIAI - - - - Addams Family, The (USA) - - Invincibility - SXPATK - - - Infinite life - GXKKZSVK - - - Infinite lives - GXSVAUVK - - - Infinite Things - GXEVLVVK - - - Start with 1 life - 1st game only - PEVGGALA - - - Start with 6 lives - 1st game only - TEVGGALA - - - Start with 9 lives - 1st game only - PEVGGALE - - - Start in the tree - PEKGTAAA - - - Start in the crypt - ZEKGTAAA - - - Start in the hallway - LEKGTAAA - - - Start in Fester's room - AEKGTAAE - - - Start in Pugsly's room - PEKGTAAE - - - Start in the toy room - ZEKGTAAE - - - Start in Wednesday's room - LEKGTAAE - - - Start in the attic - GEKGTAAE - - - Start in a secret room - YEKGTAAE - - - Start in a secret room - AOKGTAAA - - - Start in a secret room - POKGTAAA - - - Start in the bone room - IOKGTAAE - - - Start in the freezer - PXKGTAAA - - - Start in the furnace - ZXKGTAAA - - - Start in Gomez's room - AXKGTAAA - - - - Addams Family, The - Pugsley's Scavenger Hunt (USA) - - Invincibility - ATGKAG - - - Infinite health - SZGKAK - - - Infinite health (alt) - AAKGYGPA - - - Infinite lives - SXUGZKVK - - - Infinite lives (alt) - SULGZK - - - Always able to fly - AASVUGIL - - - Mega-jump - AOVTETAO - - - Start with 1 life - PEVKZTIA - - - Start with 9 lives - PEVKZTIE - - - Start with 1 heart - PENKZTZA - - - Start with 4 hearts - GENKZTZA - - - Infinite health (alt 2) - 0435:02 - - - Infinite lives (alt 2) - 0438:09 - - - - Advanced Dungeons & Dragons - DragonStrike (USA) - - Invincibility - ATGGNY - - - Infinite health - SZGGNN - - - Infinite health (alt) - OTKGSYSV - - - Weapon power doesn't weaken with health - GZKKNNSE - - - Gold dragon has excellent armor class - TTXGIALT - - - Gold dragon flies faster - YGXKAAPG - - - Silver dragon flies faster - ATXGYAGV - - - Bronze dragon flies faster - YIXGTALI - - - Start wtih less health - bronze dragon - GPKZGEAZ - - - Start wtih more health - bronze dragon - AIKZGEAZ - - - Start wtih less health - silver dragon - TPKZIEGU - - - Start wtih more health - silver dragon - AIKZIEGL - - - Start wtih less health - gold dragon - ZZKZTAAS - - - Start wtih more health - gold dragon - ITKZTAAI - - - - Advanced Dungeons & Dragons - Heroes of the Lance (USA) - - Infinite HP for party in most battles - SUOAZGSP - - - - Advanced Dungeons & Dragons - Hillsfar (USA) - - Infinite Knock Rings - SXKUTSVK+AEKUISAI - - - Faster timer when lock-picking - AOULILAZ - - - Slower timer when lock-picking - ASULILAZ - - - Very slow timer when lock-picking - ENULILAZ - - - Start with 50% less gold on a character that you create - IEVANKZA - - - Start with 50% more gold on a character that you create - YEVANKZE - - - Start with 100% more gold on a character that you create - GOVANKZA - - - - Advanced Dungeons & Dragons - Pool of Radiance (USA) - - Create super characters - SOLAUN - - - Girdle Of Giant strength (must be used to be effective) - XGLAUN+GGLAUP - - - Extra EXP points - TLGAXL - - - One hit ends battle with no gold or EXP - AXLALN - - - - Adventure Island II (USA) - - Invincibility - ENUSOTEI - - - Invincibility (alt) - AVSSVVOZ - - - Infinite health - VTUIGEVK - - - Infinite health (alt) - SZUIGEVK - - - Infinite health against hitting objects - AAKSEYZA - - - Infinite Axes - PITXUZ - - - Infinite Axes plus get an extra Red Camptosaurus - NULLEX - - - Infinite lives - SXNLOKVK - - - Hit anywhere - ESKIEIEL+OLEIKVOO+OLXIOVOO+OUEISVOO+SXUSSIAX+TEUSNSNY+ZEUSVIUG - - - Never lose Dinosaur - SXXLEGSA+SZESEYSA+SZVSVYSA - - - Get fruits from anywhere - AAKXINIG - - - Multi-jump (hold jump to float) - KOOUZOYS+UXXLPOYI - - - Hold jump to float - VNXUIZZE - - - Reversible skateboard - AENZTPAZ - - - Faster running - ALKXAAAZ - - - Higher jump - SXSUAOSU+GEXULGPA - - - Start with 2 lives - PEXVAALA - - - Start with 7 lives - TEXVAALA - - - Start with 10 lives - PEXVAALE - - - - Adventure Island 3 (USA) - - Invincibility - AEVXKGPA - - - Infinite health - SXOYOSVK - - - Infinite vitality - SKOYOSVK - - - Infinite lives - SXNLISSE - - - Hit anywhere - AAEZKLLA+AVSXKSOL+OUEXNSOO+OUEXSVOO - - - Hold jump to float - EYSXZAEI - - - Don't die when hitting spikes - AEUZNTPA - - - Don't lose pet when hitting spikes - SAKZSYVT - - - Mega-jumping Master Higgins - SUEZEXLN - - - Gain 99 lives after gaining 100 fruit - AAKXGTZA - - - Keep items after dying - after 1st stage - GXUUGOSO - - - Start a new game to view the ending - AAEZYIGA+LAEZLSZA - - - Start with 2 lives - PESZAALA - - - Start with 7 lives - TESZAALA - - - Start with 9 lives - PESZAALE - - - Start with 2 Red Taylors - VTVZZESE - - - Start with 2 Blue Taylors - VTVZIESE - - - Start with 2 Classies - VTVXAESE - - - Start with 2 Don-Dons - VTVXLESE - - - Start with 2 Poleys - VTVXTESE - - - Start with 2 Boomerangs - VTNZPESE - - - Start with 2 Axes - VTNZGESE - - - Start with 2 invincibility crystals - VTNZYESE - - - - Adventures in the Magic Kingdom (USA) - - Invincibility - ATPNTI - - - Infinite health - AVXNXPVG - - - Infinite time - ATXYKZEL - - - Infinite candles - SZSTGVVK - - - Infinite lives - SXKYUOVK - - - Almost infinite health in attractions - SXXNXPVG - - - All items for free - GXELLXSN+AAXUAXGY - - - Mega-jump - EYKVNKXN - - - 'Life' costs less - LAKUTGTA - - - 'Life' costs more - GAKUTGTE - - - 'Freeze' costs less - GAKUYKAA - - - 'Freeze' costs more - YAKUYKAE - - - 'Invincible' costs less - IASLAKZA - - - 'Invincible' costs more - GPSLAKZA - - - 'Life Up' costs less - TASLPKGA - - - 'Life Up' costs more - APSLPKGE - - - Never lose a life in 'attractions' - SXKYUOVK - - - More 'Freeze' time - NYKULZKU - - - Less 'Freeze' time - AGKULZKL - - - More 'Invincible' time - EGSUYXGL - - - Start with less health in attractions - PAVAZPLA - - - Start with more health in attractions - IAVAZPLA - - - Start with even more health in attractions - PAVAZPLE - - - Start with 1 life - PEVEIALA - - - Start with 6 lives - TEVEIALA - - - Start with 9 lives - PEVEIALE - - - - Adventures of Bayou Billy, The (USA) - - Infinite health - PEKVIZYA+SXOOUKVK - - - Infinite lives - GZOVLLVG - - - Always have pistol - EZNATKKZ+XTNEAGYE+PANAYGOG - - - Always have knife - EZNATKKZ+XTNEAGYE+ZANAYGOG - - - Always have ugly stick - EZNATKKZ+XTNEAGYE+LANAYGOG - - - Always have whip - EZNATKKZ+XTNEAGYE+IANAYGOG - - - Start a new game to view the ending (game A or B) - IEOVAYGA - - - Start with 1 life - AAETAGZA - - - Start with 6 lives - IAETAGZA - - - Start with 9 lives - AAETAGZE - - - Start on level 2 - PAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 3 - ZAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 4 - LAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 5 - GAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 6 - IAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 7 - TAEVZGAA+UYEVGKPU+AAEVAGGA - - - Start on level 8 - YAEVZGAA+UYEVGKPU+AAEVAGGA - - - Infinite health (alt) - 07C5:07 - - - One hit kills - 0510:00+0511:00+0512:00+0513:00+0514:00 - - - Have the Gun - 07C1:01 - - - have the Knife - 07C1:02 - - - Have the Ugly Stick - 07C1:03 - - - Have the Whip - 07C1:05 - - - Infinite bullets - 07C0:99 - - - - Adventures of Dino Riki (USA) - - Invincibility - ATLAEZ - - - Don't fall into the pits (you'll still lose any special ability you currently have) - AEKAOPZA - - - Once Macho, stay Macho - IEVASPIG - - - Start and stay as Macho-Riki - VKEAPISA - - - Start as Macho-Riki - VVEAPISA - - - Start with infinite lives - SZEETTVG - - - Start with 1 life - AESEPGZA - - - Start with 6 lives - IESEPGZA - - - Start with 9 lives - AESEPGZE - - - Start with infinite life hearts - SZUENZVG - - - Start with 4 life hearts - GESEIGZA - - - Start with 8 life hearts - AESEIGZE - - - Start on stage 2-1 - TKSAAGSA+ZEKEIGAA - - - Start on stage 3-1 - TKSAAGSA+GEKEIGAA - - - Start on stage 4-1 - TKSAAGSA+TEKEIGAA - - - Start on stage 4-2 - TKSAAGSA+AEKEIGAE - - - Start on stage 4-3 - TKSAAGSA+ZEKEIGAE - - - Start on stage 4-4 - TKSAAGSA+GEKEIGAE - - - - Adventures of Dr. Franken, The (USA) (Proto) - - Infinite health - SXVVYTVG - - - - Adventures of Gilligan's Island, The (USA) - - Infinite time - SZENLZVG - - - Infinite rope - SZSUAUVK - - - Infinite supply of food - SZXUIUVK - - - Start with 9 units of food - PAXIUIZE - - - Start with 1 unit of food - PAXIUIZA - - - More time for Episode 1 - LANNLXPE - - - More time for Episode 2 - IANNGXLE - - - More time for Episode 3 - GPNNIZLP - - - Start with 9 ropes - PAXSEIZE - - - Start with 1 rope - PAXSEIZA - - - Start on Episode 2 - PAVSXGAA+GZVSUGSA - - - Start on Episode 3 - ZAVSXGAA+GZVSUGSA - - - - Adventures of Lolo (USA) - - Invincibility - ATOKOAVT+AVXUPZVT - - - Infinite lives - SXOPSPVG - - - Always have shot ability - TASLIEUY - - - 1 life for Lolo - PEKPOAIA - - - 9 lives for Lolo - PEKPOAIE - - - - Adventures of Lolo 2 (USA) - - Invincibility - AVUXXLVT - - - Infinite lives - GZXPVLVG - - - Always have shot ability - GENXEEUY - - - Never lose magic shots - GXNXUAVG - - - Start with 1 life - PESPXPIA - - - Start with 10 lives - ZESPXPIE - - - Start with 15 lives - YESPXPIE - - - Start with 2 magic shots - ZAEPSZAA - - - Start with 4 magic shots - GAEPSZAA - - - Start on world 5 - GEUPKPAA - - - Start on world 10 - PEUPKPAE - - - Start on world 15 - TEUPKPAE - - - Start on world 20 - LOUPKPAA - - - Start on world 25 - AOUPKPAE - - - Start on world 30 - IOUPKPAE - - - - Adventures of Lolo 3 (USA) - - Invincibility - AVNPTTVT+ATXAVIVT - - - Always have shot ability - ZEOAKXUY - - - Infinite shots for each room on pick-up - SXOASZVG - - - - Adventures of Rad Gravity, The (USA) - - Infinite health - SUTTXU - - - - Adventures of Rocky and Bullwinkle and Friends, The (USA) - - Infinite health - SXOESKSE - - - Infinite lives - SZNEUKVK - - - Infinite Bombs - SKKAPVVK - - - Rocky loses no health when flying when you have full health - TAVEYGYA - - - Rocky loses more health when flying when you have full health - TAVEAGZA - - - Bullwinkle loses no health when headbutting - AANAIGPA - - - Bullwinkle loses more health when headbutting - AANAPGGE - - - Start with no Bombs - AAOEYEZA+AEEIGXZA - - - Start with 2 lives - PAOEZAGA - - - Start with 30 Bombs - TPOEYEZE - - - - Adventures of Tom Sawyer (USA) - - Infinite lives - VZOGGPVG - - - Hit anywhere - AEEUVAIL+AINVPLEL+ASKLEGEL+ASVKYLEL - - - Only 5 T's lost from skulls - IAXGTSZA - - - Start with 1 Tom - P1 - PEUZIALA - - - Start with 1 Tom - P2 - PANXLLLA - - - Start with 6 Toms - P1 - TEUZIALA - - - Start with 6 Toms - P2 - TANXLLLA - - - Start with 9 Toms - P1 - PEUZIALE - - - Start with 9 Toms - P2 - PANXLLLE - - - Start at the river - P1 - OGSZZSVU - - - Start in the forest - P1 - KISZZSVL - - - Start in the house - P1 - NISZZSVU - - - Start in the sky - P1 - XTSZZSVU - - - Start in the cave - P1 - SYSZZSVL - - - Start at the river - P2 - ZEEZALPA+AEEXZLLE - - - Start in the forest - P2 - LEEZALPA+IEEXZLLE - - - Start in the house - P2 - GEEZALPA+ZOEXZLLA - - - Start in the sky - P2 - IEEZALPA+YOEXZLLA - - - Start in the cave - P2 - TEEZALPA+GOEXZLLE - - - - After Burner (USA) (Unl) - - Invincibility - SZKOLZSA - - - Infinite lives - SKXVPZVG - - - Infinite missiles - SKNAXZVG - - - - After Burner (Japan) - - Infinite lives - SXNTPPVG - - - - Aigina no Yogen - Balubalouk no Densetsu Yori (Japan) - - Invincibility - SXIPPS - - - Infinite lives - SLLOPK - - - - Airball (Unknown) (Proto1) - - Can use float at any difficulty level - AEEGAIAP - - - - Air Fortress (USA) - - Invincibility - ESSXAYEY+ENSXIYEI - - - Infinite energy - SXKKNSSE+SZEGOVSE - - - Don't take damage inside fortress - GXKKSIST+GXNKNIST - - - Infinite lives - SGUPKGVG - - - Infinite lives outside fortress - SZUPKGVG - - - Infinite Beam Bullets - AAKPSTPA - - - Hit anywhere - inside fortress - GGSOXKKU+KPSOKGGV+OZSOUGKZ+SXNOSGSP - - - Hit anywhere - outside fortress - AAOZNULL+GGXZNUSN+GIXXEUGK+SZVZSLSP+UZXXOLIV - - - Double Bombs on pick-up - APKZNGIA - - - Extra energy on pick-up - YYNXUZGV+YNEZEZGV - - - Start with 1 life - PAVPKZLA - - - Start with 6 lives - TAVPKZLA - - - Start with 9 lives - PAVPKZLE - - - Start on level 2 - XZSOXXPZ+PASOUZYA+VASOKZSA - - - Start on level 3 - XZSOXXPZ+ZASOUZYA+VASOKZSA - - - Start on level 4 - XZSOXXPZ+LASOUZYA+VASOKZSA - - - Start on level 5 - XZSOXXPZ+GASOUZYA+VASOKZSA - - - Start on level 6 - XZSOXXPZ+IASOUZYA+VASOKZSA - - - Start on level 7 - XZSOXXPZ+TASOUZYA+VASOKZSA - - - - Airwolf (USA) - - Infinite health - SLTXSN - - - Infinite lives - SUTAPX - - - Start with 1 life - PAUGVILA - - - Start with 6 lives - TAUGVILA - - - Start with 9 lives - PAUGVILE - - - Start at last mission reached - PVXKKKLI - - - Start with 30 missiles - TPVAPXYE - - - Start with 45 missiles - IZVAPXYE - - - Start with infinite missiles - GXSZAPVG - - - Sets missiles to 5 when you refuel - IEVAISYA - - - Sets missiles to 30 when you refuel - TOVAISYE - - - Infinite health (alt) - 00B9:00 - - - Infinite lives (alt) - 036C:02 - - - - Akumajou Dracula (Japan) - - Infinite health - SXKTAYSE - - - Infinite lives - OZOGZLVK - - - Infinite time - SXUZGAAX - - - Clock doesn't use hearts - KXXSXZKA - - - Weapons don't use hearts - KXVISZKA - - - Can't add hearts - KXVVPYSA - - - Keep weapon after losing a life - GZUKLUSE - - - Start with rapid-fire shots - AEELATPA - - - Start with 80 hearts - ASEGUPIA - - - Start with 99 hearts - LVEGUPIA - - - - Akumajou Densetsu (Japan) - - Infinite life - SAXANGSZ - - - Infinite hearts - AANEKLPA - - - Infinite time - IEOESPLA - - - Infinite lives - SZNEKPSE - - - Multi-jump - OZVPEAES+SASOSESX+SAVPXESX+SZUOEASA+SZSOEAGA+ZASOXEAE+AVSANLAP+ASSOGYTS+ASSOGLTS+AZSOOEOK+EIVPUAIV+EPSOUAEL+IAVOEEAA+IAVPOEGA+IAVPVATZ - - - - Akumajou Special - Boku Dracula-kun (Japan) - - Invincibility - AVASEI - - - Infinite health - SXESEIVG - - - Infinite lives - SXXSVGVG - - - - Aladdin (Europe) - - Invincibility - ESNKNGEY+ESEYUPEY - - - Infinite energy - SZEUSZSA - - - Infinite lives - SXKGYXSE - - - Infinite Apples - SXEKKESE - - - - Alfred Chicken (USA) - - Invincibility - SXZNIG - - - Infinite time (alt) - AVGLXA - - - Infinite lives - EVKNKAPA - - - Infinite lives (alt) - SXGNXE - - - Infinite time - AVULEESZ - - - 255 points for each present collected - NNXYKPZU - - - 108 points for each present collected - GVXYKPZL - - - Only need 1 diamond for an extra life - PAKLTPTA - - - 3 balloons needed to complete a level - OZXKXZOU+LAXKUZPI - - - 2 balloons needed to complete a level - OZXKXZOU+ZAXKUZPI - - - 1 balloon needed to complete a level - OZXKXZOU+PAXKUZPI - - - Start with 1 life - AASGITZA - - - Start with 2 lives - PASGITZA - - - Always spring-jump - DD68:90 - - - - Alien 3 (USA) - - Invincibility - SXOPNKVK+YEKVUPGV+YESIGIGV - - - Infinite health - SXUYUXSE - - - Infinite time - SUEUTXSO - - - Infinite lives - SZKVZXVK - - - Infinite gun heat - SXOSNKVT - - - Super-jump - IPUZTALA+IPUXPALA - - - Invincible against long falls - AASGKNYA - - - Always have Radar - NNKVNPAE - - - Infinite Radar - SZVXVXVK - - - Infinite ammo for Machine gun - SXXSNKVK - - - Infinite ammo for Grenade Launcher - SZVSSKVK - - - Infinite ammo for Grenade Launcher 2 - SZKLVSVK - - - Infinite ammo for Flame Thrower - SZEIUOVK - - - Level skip (pause and press any key (except left) - TUVUYLZG - - - Invincibility (alt) - 03C8:4A - - - Infinite health (alt) - 074A:12 - - - Infinite time - 0742:09+0743:09+0744:09 - - - Infinite weapon 1 - 074B:3F - - - Infinite weapon 2 - 074C:20 - - - Infinite weapon 3 - 074E:1C - - - Infinite weapon 4 - 074D:32 - - - Rescue all now - 0747:00 - - - - Alien Syndrome (Japan) - - Infinite lives - OUYKKT - - - Infinite time - SUANPN - - - Don't lose life when touched - OLZEEP - - - - Alien Syndrome (USA) (Unl) - - Infinite time - SZUNYXVK - - - Don't lose life when shot or touched - AEEKXONY - - - Don't lose life from falling down holes - AANGVXNY - - - Set timer to 440 - GUONPPLL - - - 1 life after continue - PEXGGLGA - - - 8 lives after continue - AEXGGLGE - - - Start with 1 life - both players - PAOGPIGA - - - Start with 8 lives - both players - AAOGPIGE - - - Start with Flame Thrower - PAVKGIAA - - - Start with Fireball - ZAVKGIAA - - - Start with Laser - LAVKGIAA - - - Start on round 2 - PENNELAP+KUNNXLAA+LENNULAZ - - - Start on round 3 - ZENNELAP+KUNNXLAA+LENNULAZ - - - Start on round 4 - LENNELAP+KUNNXLAA+LENNULAZ - - - Start on round 5 - GENNELAP+KUNNXLAA+LENNULAZ - - - Start on round 6 - IENNELAP+KUNNXLAA+LENNULAZ - - - Start on round 7 - TENNELAP+KUNNXLAA+LENNULAZ - - - - All Night Nippon Super Mario Brothers (Japan) (Promotion Card) - - All blocks are starmen - SKGEOO - - - Invisible 1-up blocks are visible and all mushroom blocks are 1-ups - OKYEOP - - - Start on level 8-4 - YEUGZGAA+LEUKGGAA - - - - Alpha Mission (USA) - - Invincibility - OUXKZPOP - - - Infinite lives - SXSPYZVG - - - Keep power up after death - GZNAILSA - - - Keep energy after death - GZNAYLSA - - - Thunder uses 25% normal energy - GAEOUEAA - - - Triple energy gained on 'E' pick-up - TEXLPTZA - - - Less energy lost on 'Bad E' pick-ups - ZEULGTGA - - - Shield doesn't use energy - SZEGGASA - - - You can re-use weapon after selecting - IZNAEGSA - - - Start with all weapons available - NYKAYLLE - - - Start with 1 life - PASATLLA - - - Start with double lives - TASATLLA - - - Start with triple lives - PASATLLE - - - - Amagon (USA) - - Invincibility - ESNIZLEY - - - Invincible against enemies - AVOXGOOZ - - - Invincible against bullets - ATXZPOOZ - - - Invincible against area boss - AVNZAOOZ - - - Infinite mega-power - GZSZIZSP - - - Infinite ammo - AAVYLTPA - - - Infinite ammo (alt) - SLVYGTSP - - - Hit anywhere - AEUNYTZT - - - One hit kills - AESYZVTG - - - Multi-jump - AANKKTTA+AEEKVTGA+AEEGNTTE - - - Gain 10 bullets on pick-up - PAVKUIZA - - - Gain 30 bullets on pick-up - LAVKUIZA - - - Start with no bullets - PEOVPZGA - - - Start with 600 bullets - YEOVPZGA - - - Start with infinite lives - AAXGNYPA - - - Start with 1 life - PEOVIZGA - - - Start with 8 lives - AEOVIZGE - - - - American Gladiators (USA) - - Less joust time - GLUOZGLV - - - Stop joust timer - GZXXLUVK - - - Less cannonball time - GLOEGALV - - - Stop cannonball time - GZEPGOVK - - - Less wall time - GLKXXZLV - - - Stop wall timer - GXOXEXVS - - - More assault time - LTXATNIL - - - Less assault time - PZXATNIU - - - Stop assault timer - GZSAINVK - - - More power ball time - level 1 - LTSOZOIL - - - More power ball time - level 2 - LTSOLOAL - - - More power ball time - level 3 - LTSOGPLL - - - More power ball time - level 4 - LTSOIOTZ - - - Start with 1 life - P1 - PEXALTIA - - - Start with 8 lives - P1 - AEXALTIE - - - Start with 10 lives - P1 - ZEXALTIE - - - Start with 20 lives - P1 - GOXALTIA - - - Start with 1 life - P2 - PEVALTIA - - - Start with 8 lives - P2 - AEVALTIE - - - Start with 10 lives - P2 - ZEVALTIE - - - Start with 20 lives - P2 - GOVALTIA - - - Start on level 2 - P1 - PEXAPTAA - - - Start on level 3 - P1 - ZEXAPTAA - - - Start on level 4 - P1 - LEXAPTAA - - - Start on level 2 - P2 - PEVAPTAA - - - Start on level 3 - P2 - ZEVAPTAA - - - Start on level 4 - P2 - LEVAPTAA - - - - Anticipation (USA) - - More time to answer questions - ZUUPYNPP - - - Less time to answer questions - YEUPYNPO - - - Infinite chances - AANZATEG - - - - Arch Rivals - A Basketbrawl! (USA) - - More time for a quarter - ALXLNZGU+ALNLPPGU - - - Less time for a quarter - ZLXLNZGL+ZLNLPPGL - - - Run faster without ball - AVNPLAAZ+ATVPAPAZ - - - Super speed - IXVOPAGA+IZSPGPGA - - - - Archon (USA) - - Unrestricted ground movement - AASSIEUT - - - Unrestricted flying movement - AAKIGAGA - - - - Argus (Japan) - - Invincibility - SZEOKASA - - - Infinite lives - SGXEYPVG - - - - Arkanoid (USA) - - Infinite lives - both players - OZNEATVK - - - Infinite lives - SZNEATVG - - - No lasers - SXVATAAX - - - Square ball - VVZZPP - - - Start with 1 life - P1 - PAOPUGLA - - - Start with 6 lives - P1 - TAOPUGLA - - - Start with 9 lives - P1 - PAOPUGLE - - - Start on boss level - GZOONGPA - - - Start on level 0 - AAOONGPA - - - Start on level 1 - PAOONGPA - - - Start on level 2 - ZAOONGPA - - - Start on level 3 - LAOONGPA - - - Start on level 4 - GAOONGPA - - - Start on level 5 - IAOONGPA - - - Start on level 6 - TAOONGPA - - - Start on level 7 - YAOONGPA - - - Start on level 8 - AAOONGPE - - - Start on level 9 - PAOONGPE - - - Start on level 10 - ZAOONGPE - - - Start on level 11 - LAOONGPE - - - Start on level 12 - GAOONGPE - - - Start on level 13 - IAOONGPE - - - Start on level 14 - TAOONGPE - - - Start on level 15 - YAOONGPE - - - Start on level 16 - APOONGPA - - - Start on level 17 - PPOONGPA - - - Start on level 18 - ZPOONGPA - - - Start on level 19 - LPOONGPA - - - Start on level 20 - GPOONGPA - - - Start on level 21 - IPOONGPA - - - Start on level 22 - YPOONGPA - - - Start on level 23 - YPOONGPA - - - Start on level 24 - APOONGPE - - - Start on level 25 - PPOONGPE - - - Start on level 26 - ZPOONGPE - - - Start on level 27 - LPOONGPE - - - Start on level 28 - GPOONGPE - - - Start on level 29 - IPOONGPE - - - Start on level 30 - TPOONGPE - - - Start on level 31 - YPOONGPE - - - Start on level 32 - AZOONGPA - - - Start on level 33 - PZOONGPA - - - Start on level 34 - ZZOONGPA - - - Start on level 35 - LZOONGPA - - - Start on level 36 - GZOONGPA - - - - Arkanoid II (Japan) - - Infinite lives - SKSGXAVG - - - - Arkista's Ring (USA) - - Infinite health - GZOPTIST - - - Less damage from powerful monsters - LAEPYSYA - - - Infinite lives - SZULXKVK - - - Start with fewer hearts - ZAKATIIA - - - Start with more hearts - PAKATIIE - - - Start with 20 continues - IPUAGSLA - - - Start with 5 continues - TAUAGSLA - - - Start with 1 life - PAKETILA - - - Start with 6 lives - TAKETILA - - - Start with 9 lives - PAKETILE - - - Infinite health (alt) - 03D6:05 - - - Have Ring, Necklace, Mirror - 03DC:FF - - - Have all armor - 03D5:0A+03D6:0A - - - Have Ultimate Bow status - 03D3:07 - - - Have Ultimate Arrow status - 03D4:07 - - - Max item slots - 03D7:03 - - - Unlock doors (enable only when at a door otherwise you'll move very slowly) - 0001:FF - - - Have Fire Ball - 0022:40 - - - Start on stage 02 - 03D0:01 - - - Start on stage 03 - 03D0:02 - - - Start on stage 04 - 03D0:03 - - - Start on stage 05 - 03D0:04 - - - Start on stage 06 - 03D0:05 - - - Start on stage 07 - 03D0:06 - - - Start on stage 08 - 03D0:07 - - - Start on stage 09 - 03D0:08 - - - Start on stage 10 - 03D0:09 - - - Start on stage 11 - 03D0:0A - - - Start on stage 12 - 03D0:0B - - - Start on stage 13 - 03D0:0C - - - Start on stage 14 - 03D0:0D - - - Start on stage 15 - 03D0:0E - - - Start on stage 16 - 03D0:0F - - - Start on stage 17 - 03D0:10 - - - Start on stage 18 - 03D0:11 - - - Start on stage 19 - 03D0:12 - - - Start on stage 20 - 03D0:13 - - - Start on stage 21 - 03D0:14 - - - Start on stage 22 - 03D0:15 - - - Start on stage 23 - 03D0:16 - - - Start on stage 24 - 03D0:17 - - - Start on stage 25 - 03D0:18 - - - Start on stage 26 - 03D0:19 - - - Start on stage 27 - 03D0:1A - - - Start on stage 28 - 03D0:1B - - - Start on stage 29 - 03D0:1C - - - Start on stage 30 - 03D0:1D - - - Start on stage 31 - 03D0:1E - - - - Armadillo (Japan) - - Invincibility - OXXUAKOK+AEXUPGLA - - - - Astro Fang - Super Machine (Japan) - - Infinite fuel - SXESXPSA - - - Infinite Missiles - SZNUAZSA - - - - Astyanax (USA) - - Invincibility - EYNAGPEI - - - Infinite health - SZUGTISA - - - Infinite SP (spell) - AUEKGUAP - - - Hit anywhere - GXKSKPEL+GXUISPAL - - - Double health and SP - AZKAVZGO - - - Keep weapons after death - SZUGEUVK - - - Start with Blast Spell - PAKEKZAA - - - Start with Bind Spell - ZAKEKZAA - - - Start with extra weapon power - GPKAXZGA - - - Start with 1 life - AEUEUGZA+AASAXZZA - - - Start with double lives - IEUEUGZA+IASAXZZA - - - Start with triple lives - AEUEUGZE+AASAXZZE - - - Invincibility (alt) - 007D:03 - - - Infinie lives - 0096:03 - - - - Athena (USA) - - Infinite health (after first 2 units) - GZUZLISA - - - Infinite time - AAULLYPA - - - Collect items from anywhere - AOKEOPEL - - - Start with energy boost - AXKNYOGA - - - Start with extra time - YASVAYIA - - - Start with less time - GASVAYIA - - - Start with 1 life - AEKNLPZA - - - Start with 6 lives - IEKNLPZA - - - Start with 9 lives - AEKNLPZE - - - Infinite health - 0095:0F - - - Infinite lives - 009B:09 - - - Infinite time (alt) - 0092:59 - - - - Attack of the Killer Tomatoes (USA) - - Invincibility - AVTYTP - - - Infinite health - SXYYTO - - - Infinite lives - SKYYGK - - - Invincibility (alt) - 07F4:32 - - - Infinite health (alt) - 0722:3C - - - Infinite lives (alt) - 0718:03 - - - - Atlantis no Nazo (Japan) - - Infinite lives - SUVEAOVK - - - Partial invincibility - SXOUYYAX+SZNUPZAX+SZOLPGAX+SXUAAPAX - - - - Auto-Upturn (Asia) (PAL) (Unl) - - Infinite health (blinking) - SXNZTLVG+SZXXLGVG - - - Infinite lives - SZOZTGVG - - - Infinite time - SXKPTIVG - - - - Baby Boomer (USA) (Unl) - - Infinite lives - SGKTZXVK - - - - Back to the Future (USA) - - Invincibility - Street stages - AENEXZIA+AONENZYL+APUEKLEY - - - Disable all timers - AVVOUZSZ - - - Never lose a life in Hill Valley game - SZKEGOVK - - - Never lose a life in Cafe game - SXOELOVK - - - Never lose a life in School game - SXKALOVK - - - Never lose a life in Dancing Hall game - SXVELOVK - - - Start with 1 life - PEXEGAGA - - - Start with 8 lives - AEXEGAGE - - - - Back to the Future Part II & III (USA) - - Infinite lives - SXXELOVK - - - Infinite fuel - GZEEPZST+GZOEZZST - - - Keep shots - GZKAKGSA - - - Quicker shots - PEKASEPO - - - Start with 20 nuclear fuel units - ZAXKYZPA - - - Start with 30 nuclear fuel units - LAXKYZPA - - - Start with 20 lives - ZAXKZZPA - - - Start with 30 lives - LAXKZZPA - - - - Bad Dudes (USA) - - Invincibility - AIEAZPAP+AVSOYOSZ+ELEAPOZE - - - Infinite health - APEETPEY - - - Infinite health (alt) - SZOEAOSE - - - Infinite lives - SZNKASVK - - - Infinite continues - GXOKASVK - - - Infinite time - SGVYOUVK - - - Hit anywhere - AAUPIOGI - - - One hit kills - AOUSNGEY - - - Start with 1 life and 1 continue - PENXYZLA - - - Start with double lives and continues - TENXYZLA - - - Start with triple lives and continues - PENXYZLE - - - Gain double usual energy from drinks - PESAIYIE - - - Have the Nunchaku - 02A2:01 - - - Have the Knife - 02A2:02 - - - One hit kills on bosses - 032F:00+0344:00 - - - - Bad News Baseball (USA) - - Play as girls team - PYEGZPLP+PAEGAPEP - - - Have 0 outs - 050D:0 - - - Have 2 outs - 050D:02 - - - Team 1 score is 0 - 0305:0 - - - Team 2 score is 0 - 0306:0 - - - - Bad Street Brawler (USA) - - Infinite health - SUNGXOSO - - - Infinite time - SIXILYVI - - - Don't die at time out - SZOITNVK - - - Infinite lives - OZOIYPVK - - - Infinite lives (alt) - SGESGZVG - - - Start with 1 life - PAXITALA - - - Start with 6 lives - TAXITALA - - - Start with 9 lives - PAXITALE - - - Start on level 5 - GEUZZYAA - - - Start on level 10 - PEUZZYAE - - - Start on level 15 - TEUZZYAE - - - Infinite health (alt) - 05F1:14 - - - - Balloon Fight (USA) - - Infinite lives - SUNNIZVI - - - Start with only one balloon - PEUYTLZA - - - Balloons are unburstable - AVXTNYKA - - - Enemies can't burst balloons - LATTEX - - - Start with 1 life - AENYPPZA - - - Start with 6 lives - IENYPPZA - - - Start with 9 lives - AENYPPZE - - - Start on level 5 - 2P only - GENNIPAA - - - Start on level 10 - 2P only - PENNIPAE - - - Start on level 15 - 2P only - TENNIPAE - - - Infinite lives - P1 - 0041:02 - - - Infinite lives - P2 - 0042:02 - - - - Banana Prince (Germany) - - Invincibility - GAUXTAGZ - - - Invincible to enemies - AAXZKZAG - - - Invincible to shots - AESZOPAG - - - Invincible to lava - ASNLSZAL - - - Infinite energy - SGXXXOVK - - - Infinite lives - SKXSLUVK - - - Infinite time - SGXSYKVK - - - Infinite errors in quizes - SZSZSNVK - - - Max health when you die instead of 00 - GEXULGAE - - - Each Ring worth 10 - AYNGOIEP - - - Disable invincibility flickering - AIOSKZAP - - - Dice always at 9 in bonus island - PEUTITAE - - - Don't loose health when you touch lava - SZELVUVK - - - Start with 9 lives - PAVIOTLE - - - Start with max health - GANSOTTE - - - - Barbie (USA) - - Invincibility (blinks) - ESUSAIEY - - - Infinite Z's on Dream Meter - SXKSKNVK - - - Can re-enter Barbie's dream an infinite number of times - SZVAAVVK - - - Cannot re-enter Barbie's dream - AEEEYAZA - - - Start with 9 Z's (1st credit only) - PEEZEZIE - - - Start with 1 Z (1st credit only) - PEEZEZIA - - - - Baseball Simulator 1.000 (USA) - - Strike outs aren't allowed - OXVZITVV - - - Balls aren't counted - SZNAATVT - - - 1 strike and you're out - PESEPTLA - - - 2 strikes and you're out - ZESEPTLA - - - 5 strikes and you're out - IESEPTLA - - - Strikes aren't counted - SZVAYTVT - - - 1 ball and you walk - PESALTGA - - - 2 balls and you walk - ZESALTGA - - - 3 balls and you walk - LESALTGA - - - 9 balls and you walk - PESALTGE - - - - Baseball Stars II (USA) - - Strikes do not count - SZSSZSVV - - - Balls do not count - SXSITKVV - - - One strike for an out - PAVIPILA - - - Two strikes for an out - ZAVIPILA - - - Four strikes for an out - GAVIPILA - - - Five strikes for an out (only 3 show on screen) - IAVIPILA - - - One ball for a walk - PESSIGGA - - - Two balls for a walk - ZESSIGGA - - - Three balls for a walk - LESSIGGA - - - Five balls for a walk (only 3 show on screen) - IESSIGGA - - - Six balls for a walk (only 3 show on screen) - TESSIGGA - - - One out per side instead of 3 (against human players) - PANILTLA - - - Two outs per side (against human players) - ZANILTLA - - - Four outs per side (against human players) - GANILTLA - - - One out per side instead of 3 (against computer) - PAOAILLA - - - Two outs per side (against computer) - ZAOAILLA - - - Four outs per side (against computer) - GAOAILLA - - - Game ends after 1 inning - PEXPVGLZ - - - Game ends after 2 innings - LEXPVGLZ - - - Game ends after 3 innings - TEXPVGLZ - - - Game ends after 4 innings - AEXPVGLX - - - Game ends after 5 innings - ZEXPVGLX - - - Game ends after 6 innings - GEXPVGLX - - - Game ends after 7 innings - TEXPVGLX - - - Game ends after 8 innings - AOXPVGLZ - - - - Bases Loaded II - Second Season (USA) - - 1 strike and you're out - most of the time - PEOGOALA - - - 2 strikes and you're out - most of the time - ZEOGOALA - - - Outs aren't counted - SZOEVXVV - - - Only 2 outs allowed - PAOEUZZA - - - Only 1 out allowed - AAOEUZZA - - - Strikes aren't counted - SXNAXOVV+SXSGUKVV - - - Balls aren't counted - SZEEXXVV+SZEESXVV - - - - Bases Loaded 3 (USA) - - Computer can't score - SZSYGNVV+SZSNTNVN - - - Some strikes aren't counted - SXOPSEVV - - - Balls aren't counted - SXKOXEVV - - - Strike outs aren't counted - SXOAIUVV - - - 1 strike and you're out - AEOPXAZA - - - 2 strikes and you're out - PEOPXAZA - - - Each strike out counts as 3 outs - PEOEGLLA - - - Each strike out counts as 2 outs - ZEOEGLLA - - - 5 strike outs allowed - IEOEGLLA - - - 9 strike outs allowed - PEOEGLLA - - - - Bases Loaded 4 (USA) - - Balls do not count - SZNXGUVV - - - Strikes do not count - SXOXYUVV - - - 2 strikes and you're out - PEOXGLZA - - - 4 strikes and you're out - LEOXGLZA - - - 1 ball and you walk - AANZGLLA - - - 2 balls and you walk - PANZGLLA - - - 3 balls and you walk - ZANZGLLA - - - Some batters start with count of 1 and 1 - 2P mode - PANPUTAA+PEOETGAA - - - Some batters start with count of 2 and 2 - 2P mode - ZANPUTAA+ZEOETGAA - - - - Batman - The Video Game (USA) - - Infinite health - PPOPEZVG - - - Infinite health (alt) - SKGGTT - - - Regenerates health meter (except Joker's gun) - SKGGGT - - - Infinite lives - SZUGGTVG - - - Infinite weapons - SXEPOGSA - - - Infinite bullets on pick-up - GZNOUGST - - - Hit anywhere + one hit kills - SZKPNUGK - - - Extra health on heart pick-up - GEEPOTPA - - - Double usual bullets on pick-up - GPSPXVZA - - - Half usual bullets on pick-up - IASPXVZA - - - Multi-jump - SNUPIKKI - - - Start with 1 life - AEESKGZA - - - Start with 6 lives - IEESKGZA - - - Start with 9 lives - AEESKGZE - - - Invincibility - 00CC:A4 - - - Infinite health (alt 2) - 00B7:08 - - - Infinite weapons (alt) - 00B8:63 - - - Super gun (cannot change weapons) - 00A6:FF - - - - Batman - Return of the Joker (USA) - - Invincible to bosses - SZVUIASE - - - Invincibility lasts until next stage - AAKOPIZA - - - Protection from enemy bullets - SZXZONSE - - - Protection from collisions - SZSZKXSE - - - Protection from electric grids - SXSATXSE - - - Infinite lives - SZXSZSVK - - - Each Backpack Energy Capsule counts as two - GAVXVLZA - - - Each Backpack Energy Capsule counts as four - AAVXVLZE - - - Don't get stunned when hit - GXEUIOSE - - - Stand your ground - AEUUAPGA+GXKLAOKE - - - Intense knock-back when hit (may get stuck if you knock back into a wall) - VNULTONN+PEUUGPAA - - - Continue game with 3 life increments instead of 8 - GASOTOTA - - - Start with 7 Backpack Energy Capsules instead of none - GEOSPKVN - - - Start with 3 life increments instead of 8 - GEOSTKTA - - - Start with 1 life - AEXILGZA - - - Start with 100 lives - GVXILGZA - - - Invincibility after first hit - 0479:00 - - - Infinite health - 0478:08 - - - Bosses lose health quickly - 00AA:00 - - - - Batman Returns (USA) - - Infinite Batarangs - SXSKGKVK - - - Don't lose health from spin attack - AAVASZZA - - - Almost infinite lives and health - GZEGLVSE - - - Small hearts give more health - AUSAPPAP - - - Hit anywhere - ESUXIPEP+ESUZZPEP - - - One hit kills - GZOZIZEL - - - Power punch - YAKZTIZE - - - Power slide attack - YAKXLIIE - - - Power jump kick - ZPKXZIIE - - - Walk faster horizontally - GESAKIPA+GEVEVIPA - - - Start with 9 Batarangs - PAXELAIE - - - Start with full health - YLOALEAX - - - Start with less health - APOALEAZ - - - Invincibility (blinking) - 04C8:15 - - - Infinite health - 0140:41 - - - Infinite Batarangs (alt) - 0141:09 - - - 0 health - Enemy 1 - 0145:00 - - - 0 health - Enemy 2 - 0146:00 - - - 0 health - Enemy 3 - 0147:00 - - - - Battle City (Japan) - - Infinite freeze time once you obtain a clock - SZEIEKVK - - - 256 seconds of freeze time once you obtain a clock - NNNTVOZE - - - - Battle Formula (Japan) - - Infinite life - SXSOEZSA - - - - Battle of Olympus, The (USA) - - Start with less stamina - AAUGPAAO - - - Start with more stamina - AZUGPAAP - - - Start with Sandals of Hermes - AAEGOZZA - - - Start with Staff of Fennel - PAUGYAAA+GZUKGASA+GZUKTASA - - - Start with Sword - ZAUGYAAA+GZUKGASA+GZUKTASA - - - Start with Divine Sword - LAUGYAAA+GZUKGASA+GZUKTASA - - - - Battleship (USA) - - 1 round per level - PEUAUGIA - - - 3 rounds per level - LEUAUGIA - - - Each ship can take only one hit - SZUAOSOU - - - You only have RIM-66 missiles - SAXAOISP - - - Start on level 2 - PASAKGAA+VASEOGSA+VASASGSA - - - Start on level 3 - ZASAKGAA+VASEOGSA+VASASGSA - - - Start on level 4 - LASAKGAA+VASEOGSA+VASASGSA - - - Start on level 5 - GASAKGAA+VASEOGSA+VASASGSA - - - Start on level 6 - IASAKGAA+VASEOGSA+VASASGSA - - - Start on level 7 - TASAKGAA+VASEOGSA+VASASGSA - - - Start on level 8 - YASAKGAA+VASEOGSA+VASASGSA - - - - Battletank (USA) - - Infinite energy - SKOPAAVT - - - Infinite hits - SXOPAAVT+SXSLNPSA - - - Infinite fuel - SKUAANSE - - - Infinite weapons - SIXTEEVS+SGKVINVK - - - Infinite ammo - SLXTEEVS - - - Start with half 150mm ammo - TOVZIAZL - - - Start with double 150mm ammo - LVVZIAZL - - - Start with more wire guided shells - ZUVXTAPA - - - Start with max wire guided shells - LVVXTAPA - - - Start with more smoke shells - ZUNXAAPA - - - Start with max smoke shells - LVNXAAPA - - - Start with less 50mm shells - LGEZPPVO - - - Start with max 50mm shells - NYEZPPVO - - - Start with less 50mm ammo after mission 5 - GTEZIOEG - - - Start with max 50mm ammo after mission 5 - NYEZIOEK - - - - Battletoads (USA) - - Infinite lives - GXXZZLVI - - - One hit kills - OUAILU - - - Enemies easier to kill - GXEILUSO - - - Mega-jumping - EYSAUVEI - - - Double health from flies - AOUKXNAA - - - Maximum health from flies - YXUKXNAE - - - Super fast punching - AEUZITPA - - - Force 2-player mode - AENTAIPL - - - Start with 1 life - PENVZILA - - - Start with 6 lives - TENVZILA - - - Start with 9 lives - PENVZILE - - - Start on level 2 - Wookie Hole - ZAXAALAA - - - Start on level 3 - Turbo Tunnel - LAXAALAA - - - Start on level 4 - Arctic Cavern - GAXAALAA - - - Start on level 5 - Surf City - IAXAALAA - - - Start on level 6 - Karnath's Lair - TAXAALAA - - - Start on level 7 - Volkmire's Inferno - YAXAALAA - - - Start on level 8 - Intruder Excluder - AAXAALAE - - - Start on level 9 - Terra Tubes - PAXAALAE - - - Start on level 10 - Rat Race - ZAXAALAE - - - Start on level 11 - Clinger Winger - LAXAALAE - - - Start on level 12 - The Revolution - GAXAALAE - - - Invincibility - 0574:02 - - - Infinite lives (alt) - 0011:05 - - - - Battletoads-Double Dragon (USA) - - Infinite lives (except stage 4) - GXXLAAVI - - - Infinite lives on stage 4 - GZSOXPVI - - - Bonus score now gives invincibility (instead of invincibility pod) - IYKNIKGX - - - Longer invincibility - YPSYPGIE - - - Even longer invincibility - ILSYPGIA - - - Double Dragon super punch - AOSEVAZA - - - Battletoads super punch - AOUEUAGA - - - Stronger enemies - AXUIPOYA - - - Start with 10 continues - PEVELZZE - - - Start with full lives - IEEOOALA - - - Start with 1 life - AEEOOALA - - - Infinite lives - P1 - 0011:05 - - - Infinite lives - P2 - 0012:05 - - - 0 hits to SMASH! enemies - 051C:00+051D:00+051E:00+051F:00+0520:00+0521:00 - - - - Beauty and the Beast (Europe) - - Infinite hits - SLNKKYVK - - - Infinite lives - SUESZGVK - - - Infinite time - SUXSAZVV - - - - Beetlejuice (USA) - - Invincibility - EIEISGEY - - - Invincibility (blinking) - SZOSYNSE - - - Infinite hits - AAOITYPA - - - Infinite lives - SZOIYKVK - - - Take fewer hits to die - PEOAIAZA+PENSYLZA - - - Start with 1 life - PEOAAALA - - - Start with 6 lives - TEOAAALA - - - Start with 9 lives - PEOAAALE - - - - Bee 52 (USA) (Unl) - - Invincibility - EINTILEY - - - Invincibility (alt) - SXNTLPSA - - - Infinite lives - SXSGOSVK - - - Keep pick-ups - SZXNXTAX - - - Don't get stunned - GZSSTTEI - - - Fly quicker - GXNKNTAL+GZOKUYAP - - - Start with 1 life - PAXYKGLA - - - Start with 6 lives - TAXYKGLA - - - Start with 9 lives - PAXYKGLE - - - - Best of the Best - Championship Karate (USA) - - Infinite time (round never ends) - SXVSAZVG - - - Each round is 0:10 instead of 1:00 - AANIGYPA+VTNIPYSA - - - Each round is 0:20 - AANIGYPA+OZVSYYSE+ZANIANTI - - - Each round is 0:30 - AANIGYPA+OZVSYYSE+LANIANTI - - - Each round is 0:40 - AANIGYPA+OZVSYYSE+GANIANTI - - - Each round is 0:50 - AANIGYPA+OZVSYYSE+IANIANTI - - - Each round is 2:00 - ZANIGYPA - - - Each round is 3:00 - LANIGYPA - - - Each round is 4:00 - GANIGYPA - - - Each round is 5:00 - IANIGYPA - - - Each round is 6:00 - TANIGYPA - - - Each round is 7:00 - YANIGYPA - - - Each round is 8:00 - AANIGYPE - - - Each round is 9:00 - PANIGYPE - - - Each match is 1 round instead of 5 - PAOSUZIA - - - Each match is 2 rounds - ZAOSUZIA - - - Each match is 3 rounds - LAOSUZIA - - - Each match is 4 rounds - GAOSUZIA - - - Each match is 6 rounds - TAOSUZIA - - - Gain more strength and reflex points in training - AAEVVAGE+AEETOPZA - - - Gain more resistance points in training - APEVVAGA+AEETOPZA - - - All physical types are 30 (causes graphic errors near top of screen) - OXNSGIOU+TONSIIZE - - - All physical types are 50 (causes graphic errors near top of screen) - OXNSGIOU+ZUNSIIZA - - - Start with 50 resistance points - ZLEAZETP - - - Start with 50 strength points - ZLEAPEAZ - - - Start with 50 reflex points - ZLEALAGP - - - Start with 70 resistance points - TGEAZETP - - - Start with 70 strength points - TGEAPEAZ - - - Start with 70 reflex points - TGEALAGP - - - - Bible Adventures (USA) (v1.4) (Unl) - - Infinite health - SUVIKXSO - - - - Bible Adventures (USA) (v1.3) (Unl) - - Infinite health - SUVSEXSO - - - - Bible Adventures (USA) (v1.2) (Unl) - - Infinite health - SUNSVXSO - - - - Bible Adventures (USA) (v1.1) (Unl) - - Infinite health - SUXIUXSO - - - - Bible Adventures (USA) (Unl) - - Infinite health - SLOSGVSO - - - - Bigfoot (USA) - - Infinite nitros - SUKXVUVS - - - Longer nitro boost - NNKXXLGV - - - Shorter nitro boost - AXKXXLGT - - - Engines are half price - GEKAOKAA - - - Engines cost more - PEKAOKAE - - - Tires are half price - LEKAXGTA - - - Tires cost more - PEKAXGTE - - - Transmission work is half price - ZEKAUGGA - - - Transmission work is double price - AEKAUGGE - - - Suspension is half price - PEKAKGZA - - - Suspension is triple price - TEKAKGZA - - - P1 gets P2's nitros - VTVUYOVN+SZVUAOSE - - - - Big Nose the Caveman (USA) (Unl) - - Invincibility - SXNNEISA - - - Infinite lives - SXOTPAVG - - - Infinite lives (alt) - SUOTPAVK - - - Slower timer - ANENAKLL - - - Faster timer - AXENAKLL - - - Never lose bones when buying - AEEYYZPA - - - Always enable instant win level - EIXVIPEY - - - Start on Monster Island - XXXYITSZ+VEKYAVSE+AOUGTAE - - - Start on Terror Island - XXXYITSZ+VEKYAVSE+ZOUGTAE - - - Start with 1 life - PEUYITLA - - - Start with 6 lives - TEUAITLA - - - Start with 9 lives - PEUYITLE - - - - Bill & Ted's Excellent Video Game Adventure (USA) - - Infinite skeleton keys - SZKUPXVK - - - Infinite coins for locals - SZEKUOSE - - - Infinite Good Stuff - OUOOUEOO - - - Phone call segments cost only 1 coin - SXOTTOSE - - - Ted starts with 99 coins instead of 15 - OOKKUTIO - - - Bill starts with 99 coins - OOSVAPIO - - - Ted starts with 5 coins - IEKKUTIP - - - Bill starts with 5 coins - IESVAPIP - - - - Bill Elliott's NASCAR Challenge (USA) - - Accelerate faster - EUEKTLEP - - - Infinite 'free time' in the pits - SZUETKVK - - - Freeze timer while crew works on car in pits - SXOAZVVK - - - - Bio Force Ape (Japan) (En) (Proto) - - Infinite health - SZSUNXSE - - - Walk through walls - ATEPAVAL+AVUPAVAL - - - Start on level 2 - PAXAYGAA - - - Start on level 3 - ZAXAYGAA - - - - Bio Miracle Bokutte Upa (Japan).nes - - Hit anywhere - normal enemies - AAKTZTIG+AEOLVGTZ - - - - Bionic Commando (USA) - - Invincibility - AVSTYNVG - - - Infinite lives in main game - SZNUIYVG - - - Infinite lives in sub-game - SXUEZPVG - - - Don't take damage from bullets and collisions - SXSTYNVK - - - Don't take damage from spikes - VTNZXVVK - - - Don't take damange from bullets and collisions in sub-game - SZUOAOVK - - - Hit anywhere - ATOVUGAZ+AVKOPEEP+AVNVUKAL+AVXENVSL+SZKTVUOO - - - Autofire - main game - XYXUUOEN - - - Longer grapple line - sidescrolling levels - AINPTZAL+TSEOGZAG+YIVPAXZU - - - Longest grapple line - sidescrolling levels - EINPYZEP+EIVPPZEP+ESEOIZEP - - - Longer range for normal 3-way gun - sidescrolling levels - YOVUESPA - - - Longer range for fireball 3-way gun - sidescrolling levels - IPKLKVGA - - - Use with BIO Code 11 for improved autofire with normal gun - AAKUOOZA - - - Have all items (using the hidden gun will crash the game) - ELKLZAEY+EIXLTPEY - - - Start with 3 life energy capsules - LAUKOZAA+XTUKUXVU - - - Start with 1 life - AAUGSZZA - - - Start with double lives - IAUGSZZA - - - Start with triple lives - AAUGSZZE - - - Start with 3-way gun - VGKKNXUK - - - - Blades of Steel (USA) - - Invincible in minigame - AINXIYEI - - - Faster timer - GEUGTTYA - - - Slower timer - GOUGTTYA - - - Player with puck don't slow down - AAOSSAAZ - - - Players can take only one punch - PAXZLGIA - - - Players 2/CPU don't throw punches - OXKXTVPK+SXSZZSSU - - - Start a new game to view the ending - YASGITLA - - - - Blaster Master (USA) - - Infinite car health - XVLAKO - - - Enemies are killed instantly - YAASLY - - - Infinite lives - SZUGYIVG - - - Infinite Hover - SZXOALVG - - - Infinite Homing Missiles - GZSOEEVK - - - Infinite Thunderbreaks - GXKPEOVK - - - Infinite Multi-Warheads - GXSOVXVK - - - Start with all abilities - NNKKGZAE - - - Start with 5 of each weapon - IAEKPLAA - - - Start with 10 of each weapon - ZAEKPLAE - - - Start with 15 of each weapon - YAEKPLAE - - - Start with 99 of each weapon - LTEKPLAA - - - Start with 99 of each weapon and max Hover - NYEKPLAE - - - Start with 1 life - AAEGZLZA - - - Start with 6 lives - IAEGZLZA - - - Start with 9 lives - AAEGZLZE - - - Start on world 2 - PENKTXAE - - - Start on world 3 - ZENKTXAE - - - Start on world 4 - LENKTXAE - - - Start on world 5 - GENKTXAE - - - Start on world 6 - IENKTXAE - - - Start on world 7 - TENKTXAE - - - Start on world 8 - YENKTXAE - - - Start at the boss of world 1 - OXNKIXPE+AENKTXAA - - - Start at the boss of world 2 - OXNKIXPE+PENKTXAA - - - Start at the boss of world 3 - OXNKIXPE+ZENKTXAA - - - Start at the boss of world 4 - OXNKIXPE+LENKTXAA - - - Start at the boss of world 5 - OXNKIXPE+GENKTXAA - - - Start at the boss of world 6 - OXNKIXPE+IENKTXAA - - - Start at the boss of world 7 - OXNKIXPE+TENKTXAA - - - Start at the boss of world 8 - OXNKIXPE+YENKTXAA - - - Die to see ending - ZGUKZITP - - - Invincibility - 007E:00 - - - Infinite health (alt) - 040D:FF - - - Infinite Hover (alt) - 0092:FF - - - Infinite lives (alt) - 00DD:03 - - - Infinite Homing Missiles (alt) - 06F0:63 - - - Infinite Thunderbreaks (alt) - 06F1:63 - - - Infinite Multi-Warheads (alt) - 06F2:63 - - - Full Gun Power - Jason - 00C3:FF - - - Most end bosses die instantly - 047D:00 - - - - Blue Marlin, The (USA) - - Line is a 1000 yards long - GENTUIZA - - - Catch fish right after they bite - most of the time - AESVOXEG - - - When fish bite they are close to the boat - PESVOXEK - - - Line is set to 153 feet - OOSVOXEK - - - Pull fish in quicker - PESVXIAA - - - Vitality always at max - OZSVKKPV+YASVSGPE - - - - Blues Brothers, The (USA) - - Invincibility - EIVTVIEY+EIXTAGEY - - - Infinite health - SUOVAEVS - - - Infinite lives - SUUVYEVS - - - Multi-jump - PESYAPAA - - - Invincibility (alt) (blinking) - 03C2:02 - - - Infinite energy (alt) - 042A:03 - - - Infinite lives (alt) - 0428:02 - - - - Bomberman (USA) - - Immune to explosions - OXVGITSX - - - Infinite time - SZIGAT - - - Infinite lives - SXPKAG - - - Hit anywhere (all enemies killed with one bomb) - AAOGTYYL+AAOKIYAL - - - Remove all breakable blocks - AAVKXZZA - - - Never lose Detonator once obtained - GXEKLGSA - - - Increase Bomb detonation time - NYXKUIEX - - - Reduce Bomb detonation time - AYXKUIEZ - - - Use up to 10 Bombs - XZEGNIVZ+PAEKEIGN - - - Walk through walls - OZNKNNPK+AEEGEYPA - - - Decrease time - VPGKGG - - - Increase timer - VYGKGK - - - Start with double power Bomb blasts - AXKKALAP - - - Start with triple power Bomb blasts - AUKKALAP - - - Start with maximum power Bomb blasts - EEKKALAP - - - Start with Detonator, max Bomb power and use up to 10 Bombs - AESKGUIZ - - - Start with and keep Detonator - OXEKVPSX+AESKNKTA - - - Start with 1 life - AEZKLL - - - Start with 10 lives - PEZKLU - - - Start on stage 10 - ZELGYU - - - Start on stage 20 - GOLGYL - - - Start on stage 30 - TOLGYU - - - Start on stage 40 - AXLGYU - - - Start on stage 50 - ZULGYL - - - Invincibility - 005C:00 - - - Immune to explosions (alt) - 0079:01 - - - Infinite time (alt) - 0093:EE - - - Infinite lives (alt) - 0068:09 - - - Max Bomb power - 0073:80 - - - Use up to 10 Bombs (alt) - 0074:0A - - - Walk through walls (alt) - 0076:01 - - - Have Detonator - 0077:01 - - - Start on stage 50 (alt) - 0058:32 - - - - Bomberman II (USA) - - Infinite lives - GXKGKXVK - - - Infinite time - GXXONEVK - - - Super start - GAXKSTAA+GASKKTAA - - - Immune to explosions - OXXAPYSX+PEXAZNVZ - - - Walk through walls - OXOEGYSX+PEOEINSZ - - - Always have Detonator - AEKAZYLA - - - Hit anywhere (kill all enemies with one bomb) - LPXAYUYX+PTXEAUPZ+SZXATLOU+XTXEPLEE - - - Remove all breakable bricks - AAKLVPAZ+SZKUNPAX - - - Slower timer - LVXOUELL - - - Faster timer - TOXOUELU - - - Bomb has a longer fuse - YNEOLXLK - - - Bomb has a shorter fuse - AXEOLXLG - - - Stop Bombs from exploding - GXOLSXVS - - - Dollar sign acts as flame face - EASPTANG - - - Dollar sign acts as Bomb - GYSPTANG - - - Dollar sign acts as heart with Bomb - KASPTANK - - - Dollar sign acts as skate - OPSPTANG - - - Dollar sign acts as vest for a short time - OZSPTANK - - - Start with 1 life - AEEGEPZA - - - Start with 6 lives - IEEGEPZA - - - Start with 9 lives - AEEGEPZE - - - Invincibility (except in normal game) - P1 - 0069:05 - - - Invincibility (except in normal game) - P2 - 006A:05 - - - Invincibility (except in normal game) - P3 - 006B:05 - - - Infinite time (hundred's digit) - 0559:09 - - - Infinite time (ten's digit) - 055A:09 - - - Infinite time (one's digit) - 055B:09 - - - Infinite lives - P1 - 04E5:09 - - - Max Bomb power - P1 - 0093:0C - - - Max Bomb power - P2 - 0094:0C - - - Max Bomb power - P3 - 0095:0C - - - Max Bomb quantity - P1 - 0090:0C - - - Max Bomb quantity - P2 - 0091:0C - - - Max Bomb quantity - P3 - 0092:0C - - - - Bonk's Adventure (USA) - - Infinite lives - SZVZINVK - - - Hit anywhere - AAXXZILA+LINXTZYZ - - - Super-jump when normal - GXEEYEGA - - - Keep speed up after powered down - GXVPIKSE - - - Gain energy from picking up smiles - GASZTYAA - - - Start with less initial energy (but more maximum energy) - GEUAAEGA - - - Start with more energy - AOUAAEGE - - - Start with 1 life - AEKAAAZA - - - Start with 6 lives - IEKAAAZA - - - Start with 9 lives - AEKAAAZE - - - Start on stage 2-1 - YEXELAAA - - - Start on stage 3-1 - IEXELAAE - - - Start on stage 4-1 - ZOXELAAA - - - Start on Stage 5-1 - YOXELAAA - - - Start on stage 6-1 - PXXELAAA - - - - Boulder Dash (USA) - - Infinite lives - SLEZXTVI - - - Infinite time - SXSGSYAX - - - Speed up timer - YOSGXNYU - - - Slow down timer - NNSGXNYU - - - 1 life after continue - PEOXEYLA - - - 6 lives after continue - TEOXEYLA - - - 9 lives after continue - PEOXEYLE - - - Start with 1 life - PAKIELLA - - - Start with 6 lives - TAKIELLA - - - Start with 9 lives - PAKIELLE - - - - Boy and His Blob, A - Trouble on Blobolonia (USA) - - Invincible (restart if you die underwater and get stuck by being unable to call your Blob) - AVOGAEOZ - - - Never take damage from enemies - AVOPVGEI - - - Infinite lives - GXXEOPVG - - - Infinite Jellybeans - AAVKIPPA - - - 1 life only - AAULNGIA - - - Double lives - ZAULNGIE - - - Fast play - SXEEZAAX - - - Gives 10 Orange Jellybeans - APEUUIAA - - - 10 Lime Jellybeans - AONUSGAA - - - 99 Licorice Jellybeans - OONLOGZN - - - Double Strawberry Jellybeans - AUNLUGIP - - - Double Cola Jellybeans - TUNLNKAP - - - Double Cinnamon Jellybeans - AKNUOGGX - - - Double Apple Jellybeans - GXNUUGZP - - - Double Vanilla Jellybeans - AVNUNGAL - - - Double Ketchup Jellybeans - ZPELNITA - - - Triple Coconut Jellybeans - AONLSGTE - - - Triple Rootbeer Jellybeans - APELUITE - - - 10 Vitamin A for Vita-Blaster - APEUSIAA - - - 10 Vitamin B for Vita-Blaster - APEUNIAA - - - 10 Vitamin C for Vita-Blaster - APOLOIAA - - - Start with 101 of all starting Jellybeans - SZXLXKSU+YYXLUGEY - - - - Bram Stoker's Dracula (USA) - - Invincibility - ASVIAPEI - - - Invincibility after getting hit - SZKLVZAX - - - Infinite health (except falling off cliffs) - SUXLISVS - - - Infinite health - SXXLISVS - - - Infinite lives - NUNTZUKU - - - Infinite lives (alt) - SXNTPUVK - - - Infinite time - AEVGPPPA - - - Infinite time (alt) - SXNKGOSE+SXNGYOSE - - - Infinite ammo - SZNVVSVK - - - Infinite weapons (except scene 1 daytime) - UUETEIZE - - - Faster timer - ZEVGPPPA - - - Always have 63 ammo - AANGYZIA - - - Disable axe - NNSNGPZE - - - - BreakThru (USA) - - Infinite lives - both players - GZUKYPVG - - - Infinite weapon time - GZKSLZVG - - - Start each life with 3-way firing and 99 seconds - LTUKTLAA - - - Start with 1 life - P1 - PEUKPZLA - - - Start with 6 lives - P1 - TEUKPZLA - - - Start with 9 lives - P1 - PEUKPZLE - - - Start with 1 life - P2 - PEKGGZLA - - - Start with 6 lives - P2 - TEKGGZLA - - - Start with 9 lives - P2 - PEKGGZLE - - - Start on level 2 - ZANKLZPA - - - Start on level 3 - LANKLZPA - - - Start on level 4 - GANKLZPA - - - Start on level 5 - IANKLZPA - - - - Break Time - The National Pool Tour (USA) - - Start in Milwaukee - VAVEILSA+PAVEGLAA - - - Start in Atlanta - VAVEILSA+ZAVEGLAA - - - Start in Los Angeles - VAVEILSA+LAVEGLAA - - - Start in Las Vegas - VAVEILSA+GAVEGLAA - - - - Bubble Bath Babes (USA) (Unl) - - Infinite credits - SZEOLLVG - - - View slideshow - AAKAIAPE+VTXEXPSA+EAXEUPGV+GAUASOLE - - - - Bubble Bobble (USA) - - Skip only 2 levels - ZAOGOLGA - - - Skip 10 levels - ZAOGOLGE - - - Lots of bubble power - AAUILSPP - - - Monsters move faster - ZANEAGPA+NNEEAKVN - - - Monsters move super fast - LANEAGPA+NNEEAKSN - - - Angry monsters move faster - LANEIGZA+SNEEIKVN - - - Always wear turbo shoes - AANSIGTA+AESIPGTA - - - Start with 1 life - both players - PAUKEZLA - - - Start with 6 lives - both players - TAUKEZLA - - - Start with 9 lives - both players - PAUKEZLE - - - Start on level 10 - ZAUGEZPE - - - Start on level 25 - PPUGEZPE - - - Start on level 50 - ZLUGEZPA - - - Start on level 75 - LGUGEZPE - - - Invincibility - P1 - 003F:2F - - - Invincibility - P2 - 0053:2F - - - Infinite lives - P1 - 002E:09 - - - Infinite lives - P2 - 0042:09 - - - Float - 0032:0A - - - Have Long Shot - 0030:02 - - - Have Rapid Shot - 0030:04 - - - Have Long and Rapid Shot - 0030:06 - - - Have Lightning Shot - 0030:45 - - - - Bucky O'Hare (USA) - - Infinite lives - SZVKOTVG - - - Hit anywhere - GXOEZTEL+GZNEYTEL+OXEAGVPV+OXOEYVPV - - - One hit kills - SLKSVUSO - - - Multi-jump - AEUEOYEL+AEXAUYAP - - - Double Bucky's special health - EPELVNKE - - - Triple Bucky's special health - KZELVNKA - - - All characters always selectable - ENKEVGAP - - - All characters start with normal special health - KAEUXNGE - - - All characters start with 2x special health - EPEUXNGE - - - All characters start with 3x special health - KZEUXNGA - - - 1 life after continue - AEXGVYZA - - - 6 lives after continue - IEXGVYZA - - - 10 lives after continue - PEXGVYZE - - - Press Start to complete the level - AESGILPE+AESKALPA+GOSGYUPE+OXSGGUPK - - - Start a new game to see ending - PEUKEIZE - - - Start with 1/2 health - TAOLKYGP - - - Start with 1 life - AAELXYZA - - - Start with 6 lives - IAELXYZA - - - Start with 10 lives - PAELXYZE - - - Infinite health - all characters - 05A0:14 - - - Infinite lives - all characters - 004C:09 - - - Play as Jenny - 0034:01 - - - Play as Dead Eye - 0034:02 - - - Play as Blinky - 0034:03 - - - Play as Willy DuWitt - 0034:04 - - - - Bugs Bunny Birthday Blowout, The (USA) - - Invincibility - ATYZPL - - - Infinite health - SXEZGUSE - - - Infinite lives - SZVIGKVK - - - Mega-jumping Bugs - LAOANZTE - - - Two hearts of energy gained on pick-up - AEOXPZGE - - - Less energy gained on pick-up - PEOXPZGA - - - Stunned for longer - ATNZALAL - - - Stunned for less time - IPNZALAL - - - Use hammer when stunned - AASAKOTL - - - - Bugs Bunny Crazy Castle, The (USA) - - Invincibility - GXETZZEI - - - Baddies go as fast as Bugs Bunny - GXKGZZEY - - - Make platforms invisible - GASGAAPA - - - Start with super rabbit punches - PXXTGGEN+PXXTAGAO - - - Start with infinite lives - SZOKGPVG - - - Start with 1 life - PAUGPAIA - - - Start with 10 lives - ZAUGPAIE - - - Start on level 10 - SZOKGAAX+PEXYVYAE - - - Start on level 20 - SZOKGAAX+LOXYVYAA - - - Start on level 30 - SZOKGAAX+IOXYVYAE - - - Start on level 40 - SZOKGAAX+YXXYVYAA - - - - Bugs Bunny Fun House (USA) (Beta) - - Infinite turns - SXNKSKVK - - - Slower timer - EAXOLVGL - - - Faster timer - YPXOLVGU - - - Quicker turning - ZESXVGGA - - - More time from Large Glop Clocks - TOVOUEYE - - - Less time from Large Glop Clocks - YEVOUEYA - - - 1 turn after continuing - PAXGSILA - - - 9 turns after continuing - PAXGSILE - - - Start with 1 turn - PEOGXALA - - - Start with 9 turns - PEOGXALE - - - Start on Floor 2 - YEEKSAPA - - - Start on Floor 4 - LOEKSAPA - - - Start on Floor 6 - YOEKSAPE - - - Start on Floor 8 - LXEKSAPE - - - - Bump'n'Jump (USA) - - Jump OK, even with no power - AAVPNLGP - - - Gain double power on every pick-up - ZAUZAIPA - - - Jump OK at any speed - AGVONLAA - - - Set jump OK speed to 190 - PANPNLIE - - - Set jump OK speed to 130 - LANPNLIA - - - Start on scene 5 - GEOAGGAA - - - Start on scene 10 - PEOAGGAE - - - Start on scene 15 - TEOAGGAE - - - - Burai Fighter (USA) - - Infinite lives - VNOTENVK - - - Extra lives for Eagle level - PEOLATIE - - - Extra lives for Albatross level - AEOLPTGE - - - Extra lives for Ace level - TEOLZTLA - - - More power for weapons - LAXTTPPA - - - Maximum power for weapons - ZAXTTPPE - - - Increase cobalt power picked up - PASVTPZE - - - Never lose weapon power - OUVNAXOO - - - Never lose speed up - KXNYLZSA - - - Never lose weapons - KXVNYZSA - - - Never lose rotating pod - KXNYPZSA - - - Never lose anything - AVVNLXOZ - - - Start with laser - VTVNIPSA - - - Start with rotating pod - VTNYPPSA - - - - BurgerTime (USA) - - Anti-gravity shoes - GZVIAZEI - - - Peter Pepper gets super speed - YPESOUGO - - - Fast play for experts - SZKNNIAX - - - Monsters always move slowly - SXVSSXSU - - - Monsters move at double speed - SXVSSXSU+GOVSVXAO - - - Monsters move at quadruple speed - SXVSSXSU+YOVSVXAO - - - Start with infinite lives - SZSTVAVI - - - Start with 8 lives - AASGKLGE - - - Start with infinite peppers - SLKIZYVI - - - Start with double peppers - APVGSLIA - - - - B-Wings (Japan) - - Invincibility - SAUXGISZ - - - Infinite lives - SLNZUSVK - - - Enable unlimited morphs - ASEUZLEY - - - Enable secret weapons morph - TEOLYULE - - - Can always morph - GXEUZLAI - - - Start with secret weapon 1 - LENUGAPE - - - Start with secret weapon 2 - IENUGAPE - - - - Cabal (USA) - - Invincibility - ENNOLGEI - - - Infinite lives - GXEOZZVI - - - Infinite lives (alt) - SSEOZZVI - - - Infinite grenades - AEUXSIPA - - - Shorter immunity - AKOPLZEG - - - Longer immunity - NNOPLLEK - - - 12 Grenades on pick-up - GAVXNGGE - - - 2 Grenades on pick-up - ZAVXNGGA - - - Start with 20 grenades - KYVEOZUY - - - Start with 50 grenades - NYVEOZUY - - - Start with 9 lives - both players - UNUOTTNN - - - Start with 1 life - both players - UNUOTTNY - - - Invincibility - P1 - 009F:02 - - - Invincibility - P2 - 00A0:01 - - - Infinite Grenades - P1 - 00D7:09 - - - Infinite Grenades - P2 - 00D8:FB+00D9:FB - - - - California Raisins - The Grape Escape (USA) (Proto1) - - Infinite health - SZXIKPVG - - - Infinite health (alt) - 0048:04 - - - Infinite lives - 0049:02 - - - - California Raisins - The Grape Escape (USA) (Proto2) - - Invincibility - EIXSTPEY - - - Infinite lives - SKEKOTVG - - - Invincibility (blinking) - 004D:FF - - - Infinite health - 004A:04 - - - Infinite lives (alt) - 004B:03 - - - - Capcom's Gold Medal Challenge '92 (USA) - - Massive run power - OXSYZVON+ASSYLTEY+XVSYGTVN - - - - Captain America and the Avengers (USA) - - Infinite life - Captain America and Hawkeye, 1P mode - OLNUNEOO - - - Infinite continues - SZSULYVG - - - Large power stones worth 20 points - GPNXIUZA - - - Large power stones worth 30 points - TPNXIUZE - - - Large power stones worth 50 points - ZLNXIUZA - - - Small power stones worth 10 points - ZAUZILPE - - - Hawkeye shoots arrows faster - LSUPUELO - - - Faster Captain America and Hawkeye - one direction only - VYNXTXNN+ZEEZAZPA - - - Even faster Captain America and Hawkeye - one direction only - SYNXTXNN+LEEZAZPA - - - Ininite life - Captain America, 1P mode - 03D9:0F - - - Infinite life - Hawkeye, 1P mode - 03DA:0F - - - Have 99 Red Gems - Captain America, 1P mode - 03DD:63 - - - Have 99 Red Gems - Hawkeye, 1P mode - 03DE:63 - - - - Captain Comic - The Adventure (USA) (Unl) - - Invincibility - SZATEK - - - Infinite energy - SLATVK - - - Infinite lives - SZATZN - - - Max blast level - 0316:09 - - - Infinite blast meter - 0318:80 - - - Have Door Key - 05AA:01 - - - Have Corkscrew - 05AB:01 - - - Have Power Boots - 05AC:01 - - - Have Teleport Wand - 05B3:01 - - - Have Lantern - 05B4:01 - - - Have Mystical Gems of Lascorbanos - 05B5:01 - - - Have Coins of Tenure - 05B6:01 - - - Have Crown of the Ages - 05B7:01 - - - - Captain Planet and the Planeteers (USA) - - Invincibility - SZNKNUSE - - - Infinite lives (alt) - SKNLYVVK - - - Infinite lives, outside levels - SXNLYVVK - - - Infinite lives, inside levels - SZSUGVVK - - - Infinite power, outside levels - SZNXGXVK+SZVXPKVK - - - Infinite power, inside levels - SXXXEUVK+SZEUGKVK - - - Start with 2 lives instead of 5, outside levels - PENVIGGA - - - Start with 10 lives, outside levels - PENVIGGE - - - Start with 10 lives, inside levels - PAETITGE - - - Start with 2 lives, inside levels - PAETITGA - - - Start inside level 1 instead of outside. - AANVAEGZ - - - - Captain Skyhawk (USA) (Rev A) - - Infinite lives - OZKAIGVK - - - Infinite lives (alt) - SGKAIGVG - - - Infinite Maverick missiles - OZXPUZVK - - - Infinite Hawk Bombs - OXKPVGVK - - - Double cost of Hawk Bombs - GENXKGZA - - - Double cost of Phoenix missiles - GAXZKIZA - - - Double cost of Maverick missiles - ZAOZEIIE - - - Start with half Hawk Bombs - LESITITA - - - Start with 20 Hawk Bombs - GOSITITA - - - Start with 8 Phoenix and Maverick missiles - AESSZIZE - - - Start with 1 life - PEUITIIA - - - Start with 10 lives - ZEUITIIE - - - - Captain Skyhawk (USA) - - Invincibility (PRG0) - ESOOVIEY - - - Infinite lives - OZKAIGVK - - - Infinite lives (alt) - SGKAIGVG - - - Infinite Maverick missiles - OZXPUZVK - - - Infinite Hawk Bombs - OXKPVGVK - - - Double cost of Hawk Bombs - GENXKGZA - - - Double cost of Phoenix missiles - GAXZKIZA - - - Double cost of Maverick missiles - ZAOZEIIE - - - Start with half Hawk Bombs - LESITITA - - - Start with 20 Hawk Bombs - GOSITITA - - - Start with 8 Phoenix and Maverick missiles - AESSZIZE - - - Start with 1 life - PEUITIIA - - - Start with 10 lives - ZEUITIIE - - - - Casino Kid (USA) - - Always win hand in Blackjack - OXKEPTES - - - Always win hand in Poker - SZOOUKGK - - - Can always bet all money in Blackjack - OXOEIIEO - - - Can always bet all money in Poker - VAVAKXAT - - - - Casino Kid II (USA) - - Can't double down in blackjack (game will say you do not have enough money) - PAOASGIE - - - Can't split in blackjack (game will say you do not have enough money) - PAKAVIIE - - - Start new game with $82 instead of $200 - AZKKYOTG - - - Start new game with $512 - EGKKYOTK - - - Start new game with $21,171 - AZSGGPAA - - - Start new game with $131,272 - EGSGGPAE - - - Start new game with $1,342,377 - AASKPPAE - - - Start new game with $5,368,909 - AZSKPPAA - - - - Castelian (USA) - - Invincibility - SXKTEISA - - - Infinite lives - SLOKZLVI - - - Infinite lives (alt) - SIOKZLVI - - - Infinite time - SZNXYAVG - - - Start with 1 life - PEVGYPLA - - - Start with 6 lives - TEVGYPLA - - - Start with 9 lives - PEVGYPLE - - - Start with 5 continues - IAOGTZZA - - - Start with 8 continues - AAOGTZZE - - - - Castle of Deceit (USA) (Unl) - - Infinite energy - SXNIOUVK - - - Infinite lives - SZOSYSVK - - - - Castle of Dragon (USA) - - Infinite health - YNOLSYAE - - - Super health - NYXKLAGE - - - No harm from most enemy attacks - SZVUSNVK - - - Stop Skeletons from fighting - PEVPULAP - - - Faster fighting - GEOGYZPA - - - Super strong enemies - ZPSLONLP - - - Start with Knives - ZAXGLAAA - - - Start with Knives and Mace - LAXGLAAA - - - Start with Armor - EAXGLAAA - - - Start with Armor, Knives and Mace - UAXGLAAA - - - - Castlequest (USA) - - Invincibility - SXUEXSSE - - - Infinite lives - SXKAVIVG - - - Infinite keys - ATSXATEY - - - 75 lives instead of 50 - LKUZTZZU - - - 25 lives instead of 50 - POUZTZZU - - - Don't lose life from 'reset' or 'back' options - SXKNKLVG - - - Use sword (press 'B') as long as you like - SZOEIUVK - - - Now you can move while using sword - XXOAZGYA - - - Must use with the last code for permanent sword-wielding ability - IAEEALYP - - - Supercharged speed-up - GAXEGIZA+GAUEGIZA - - - Turbo fuel-injected 16-valve speed-up - AAXEGIZE+AAUEGIZE - - - - Castlevania (USA) (Rev A) - - Invincibility - SKSTZTSZ - - - Invincibility after one hit - VXNVXAVG - - - Infinite lives - OXNGLZVK - - - Infinite time - SXXXYAAX - - - Infinite hearts - KZSSEZKA+KXESUZKA - - - Keep weapons after losing a life - GZOGYUSE - - - Gain triple shot on weapon pick-up - ZEUTAYAA - - - Don't get knocked back when hit - NAPOLN - - - Jump 3x as high - SKPPEL - - - Jump 2x as high - EVPPEL - - - Multi-jump - AVOPZYEP+VEEOGGSV+KOEOIGOZ+OZOOIKSE+PAOOTGLG+SAOOYGPE+GTXPAKVV+GAXPPKGT+ZGXPZGGE+AXKOZKSZ+PEKOLGGP+KOKOGGIA - - - Start with 40 hearts - AXOGOPIE - - - Start with 80 hearts - ASOGOPIA - - - Start with 1 life - PANKXPGA+PANGSAGA - - - Start with 8 lives - AANKXPGE+AANGSAGE - - - Start on last level - VXOLEOVE+PEEUEPLE+ZOEUSPAA - - - Invincibility (blinking) - 005B:02 - - - Infinite health - 0045:40 - - - Infinite lives (alt) - 002A:63 - - - Infinite hearts (alt) (disable at end of stage) - 0071:63 - - - Bosses have no health - 01A9:00 - - - Have the Axe - 015B:0D - - - Have the Cross - 015B:09 - - - Have the Holy Water - 015B:0B - - - Have the Knife - 015B:08 - - - Have the Stopwatch - 015B:0F - - - Have the best whip - 0070:02 - - - - Castlevania (USA) - - Infinite time - SXXXYAAX - - - Hit anywhere (Whip) - AAOVLSVG+AAXVLSVL - - - Jump 3x as high - SKPPEL - - - Jump 2x as high - EVPPEL - - - Multi-jump - AVOPZYEP+VEEOGGSV+KOEOIGOZ+OZOOIKSE+PAOOTGLG+SAOOYGPE+GTXPAKVV+GAXPPKGT+ZGXPZGGE+AXKOZKSZ+PEKOLGGP+KOKOGGIA - - - Start on last level - VXOLEOVE+PEEUEPLE+ZOEUSPAA - - - Invincibility (blinking) - 005B:02 - - - Infinite health - 0045:40 - - - Infinite lives - 002A:63 - - - Infinite hearts - 0071:63 - - - Bosses have no health - 01A9:00 - - - Have the Axe - 015B:0D - - - Have the Cross - 015B:09 - - - Have the Holy Water - 015B:0B - - - Have the Knife - 015B:08 - - - Have the Stopwatch - 015B:0F - - - Have the best whip - 0070:02 - - - - Castlevania II - Simon's Quest (USA) - - Infinite health - SZSSYLSA - - - Infinite lives - GXOGGZVG - - - Infinite Laurels - IAXIOPVG - - - Infinite Garlic - SZUISPVG - - - Always daytime - SXOSLYSA - - - Small hearts worth 100 - KATAZY - - - Multi-jump - VVSEVOSV+XVSEKPEN+EESEOPAP+ESSEXPLP+GESEUPEX+GKSESPAX+OESENPVE+PXSEEPLE+SNSANOGT+SXSAVOSZ+UNVEOPAE - - - Whip can destroy any block - AALSPT+AAZSAT+APISIT+XVPIPV - - - Whip destroys all enemies/townspeople on screen - INIEEA - - - Start with 100 Experience (E) - PAZNGO - - - Start with more health - AISKTIAL - - - Start with 25 hearts - IZSKZIAI - - - Start with 75 hearts - IYSKZIAI - - - Start with 1 life - PASGLILA - - - Start with 6 lives - TASGLILA - - - Start with 9 lives - PASGLILE - - - Invincibility - 04F8:02 - - - Infinite health (alt) - 0080:50 - - - Infinite lives (alt) - 0031:03 - - - Infinite hearts - 0048:F0 - - - Infinite Laurels (alt) - 004C:99 - - - Infinite Garlic on pick-up - 004D:08 - - - Always daytime (alt) - 0085:02 - - - Have all Daggers, Holy Water, Diamond, Flame and Oak Stake - 004A:7F - - - Have White Crystal - 0091:20 - - - Have all Dracula's parts and White Crystal - 0091:3F - - - Have Blue Crystal - 0091:40 - - - Have all Dracula's parts and Blue Crystal - 0091:5F - - - Have Red Crystal - 0091:60 - - - Have all Dracula's parts and Red Crystal - 0091:7F - - - Have Garlic, Laurels, Silk Bag and Magic Cross - 0092:0F - - - Have Fire Whip - 0434:04 - - - - Castlevania III - Dracula's Curse (USA) - - Invincibility (disable if you cannot enter a door) - EIOAZPEY - - - Invincibility (disable if you cannot enter a door) (alt) - SZKLPZSA - - - Infinite health - OXEEZZSE - - - Infinite lives - OXOAUPSE - - - Hit anywhere (Whip) - AEELYXAP - - - Multi-jump - SASOUESX+SASPVESX+SZSPOAGA+SZUPOASA+TZSPXEOG+ZASPUEAE+AVVAELAP+EISOKAIV+EPSPKAEL+IASONATZ+IASOXEGA+IAVPOEAA+OZSOOAES+PSSPINYG+PSVPYUYG - - - Start with 9500 seconds - PALUYL - - - Start each stage with 99 hearts - OOKPPAIE - - - Invincibility (blinking) (disable if you cannot enter a door) - 0080:02 - - - Remove invincibility blinking - 001A:00 - - - Infinite health (alt) - 003C:40 - - - Infinite lives (alt) - 0035:99 - - - Infinite hearts - 0084:99 - - - Trevor has best Whip - 008E:02 - - - Alucard has best attack - 008F:02 - - - Enable Sypha - 003A:01 - - - Enable Grant - 003A:02 - - - Enable Alucard - 003A:03 - - - Trevor's sub-weapon - Axe - 0085:01 - - - Trevor's sub-weapon - Cross - 0085:02 - - - Trevor's sub-weapon - Dagger - 0085:03 - - - Trevor's sub-weapon - Holy Water - 0085:04 - - - Partner's sub-weapon - Fire Spell - 0086:05 - - - Partner's sub-weapon - Ice Spell - 0086:06 - - - Partner's sub-weapon - Lightning Spell - 0086:07 - - - Partner's sub-weapon - Dagger - 0086:08 - - - Partner's sub-weapon - Axe - 0086:09 - - - Partner's sub-weapon - Clock - 0086:0B - - - Start on stage 2 (glitchy if you die) - 0032:01 - - - Start on stage 3 (glitchy if you die) - 0032:02 - - - Start on stage 4 (glitchy if you die) - 0032:03 - - - Start on stage 5 (glitchy if you die) - 0032:04 - - - Start on stage 6 (glitchy if you die) - 0032:05 - - - Start on stage 7 (glitchy if you die) - 0032:06 - - - Start on stage 8 (glitchy if you die) - 0032:07 - - - Start on stage 9 (glitchy if you die) - 0032:08 - - - Start on stage 10 (glitchy if you die) - 0032:09 - - - Start on stage 11 (glitchy if you die) - 0032:0A - - - Start on stage 12 (glitchy if you die) - 0032:0B - - - Start on stage 13 (glitchy if you die) - 0032:0C - - - Start on stage 14 (glitchy if you die) - 0032:0D - - - Start on stage 15 (glitchy if you die) - 0032:0E - - - - Challenge of the Dragon (USA) (Unl) - - Infinite health - SZSTZXSO - - - Infinite lives - OUOVZKOO - - - Always have Bombs - ASXTVGEI - - - - Challenge of the Dragon (Asia) (PAL) (Unl) - - Invincibility - ATNXPAEY - - - Infinite health - SZXZAPVG - - - Infinite lives - OZOEXYVK - - - - Championship Pool (USA) - - 1 foul loses the game (instead of 3) - only in 10-ball in party mode - PAOUYALA - - - 2 fouls in a row loses the game - only on 9 and 10-ball in party mode - ZAOUYALA - - - Fouls don't count - only on 9 and 10-ball and rotation in party mode - SLNUKXSO - - - Number of fouls is not cleared after a good shot (3 fouls don't have to be in a row to lose) - only on 10-ball in party mode - SUOLXXSO - - - Always break in 9 or 10-ball - P1 - OZVETASX+AAVEYEST - - - Always break in 9 or 10-ball - P2 - OZVETASX+PAVEYEST - - - - Cheetahmen II (USA) (Unl) - - Infinite health - level 1 and 2 - SXUXGUVK - - - Infinite health - level 3 - SXSXGUVK - - - Infinite health - level 4 - SXEZGUVK - - - Infinite lives - level 1 and 2 - SZNUAUVK - - - Infinite lives - level 3 - SZEUYUVK - - - Infinite lives - level 4 - SXXUIXVK - - - - Chip 'n Dale - Rescue Rangers (USA) - - Infinite health - AOEITEEN - - - Multi-jump - AAKGSGPA+SXXKEOZA - - - Freeze mechanical bulldog - ATUEENSL - - - Freeze mechanical mice - AVKAVNSL - - - Freeze buzzer - AVOPTESL - - - Freeze buzz bomb - AVNOLKSL - - - Freeze racket-rod - AVVPZSSL - - - Freeze ditz - ATSOYKSL - - - Freeze hawk bomber - ATSPANSL - - - Freeze bouncing boxes - AVVOOUSL - - - Mega-jump - ZEXKNPTE - - - Never get stunned - GAEIIEVI - - - Press Start to finish the level - IVEKINEO - - - - Chip 'n Dale - Rescue Rangers 2 (USA) - - Invincibility (glitchy) - EIXZEZEY - - - Infinite health - SSXLLEVS - - - Infinite health - both players - OUXLLEVS - - - Infinite lives - both players - NXKZKTVI - - - Almost infinite lives - both players - GXKZKTVI - - - Infinite credits - OXUNGIVK - - - Never get stunned - XVXXXGVS - - - Start with 1 life - both players - PEUYIILA - - - Start with 2 lives - both players - ZEUYIILA - - - Start with 4 lives - both players - GEUYIILA - - - Start with 5 lives - both players - IEUYIILA - - - Start with 1 heart - both players - PEOYZILA - - - Start with 2 hearts - both players - ZEOYZILA - - - Start with 4 hearts - both players - GEOYZILA - - - Start with 5 hearts - both players - IEOYZILA - - - Start with 1 credit - PANNAILA - - - Start with 2 credits - ZANNAILA - - - Start with 6 credits - TANNAILA - - - Start with 9 credits - PANNAILE - - - Start with 255 credits (ignore the counter) - NYNNAILE - - - - Chubby Cherub (USA) - - Infinite lives - SZEAYZVG - - - Infinite power - SZEXIYSA - - - Half regular power gained from food - GEVAKVAA - - - Slow down power loss on the ground - PENXATZA - - - Slow down power loss in the air - LENXTVPA - - - Infinite Gau (shots) - ZANEVSUT - - - Double Gau (shots) on candy pick-up - AASXOAGE - - - Start with 1 life - AEOAAZZA - - - Start with double lives - IEOAAZZA - - - Start with triple lives - AEOAAZZE - - - Start on Stage 5 - IEOALZPA+GEOAPZAA - - - Start on Stage 10 - ZEOALZPE+PEOAPZAE - - - - Circus Caper (USA) - - Invincibility in normal levels - SYNNPGLA+TANNAGZS+AZNYYKSZ - - - Infinite power (health) - GZEYPSSE - - - Infinite power (health) (alt) - SZEYPSSE - - - Full energy from food - AASVNAZA - - - Start with lots of weapons - NNOTNLAE - - - Start on stage 2 (starts on stage 1 after continuing) - ZEVGGAPA - - - Start on stage 3 (starts on stage 1 after continuing) - LEVGGAPA - - - Start on stage 4 (starts on stage 1 after continuing) - GEVGGAPA - - - Start on stage 5 (starts on stage 1 after continuing) - IEVGGAPA - - - Start on stage 6 (starts on stage 1 after continuing) - TEVGGAPA - - - Infinite power (health) (alt 2) - 0392:7A - - - - City Connection (USA) - - Infinite lives - SZNSTPVG - - - Infinite Oil - SXKPZGVG - - - Start with double lives - IEKEYIZA - - - Start with triple lives - AEKEYIZE - - - Start with extra Oil - AXSAPIIA - - - Start on level 1 - PEKEIIAA - - - Start on level 2 - ZEKEIIAA - - - Start on level 3 - LEKEIIAA - - - Start on level 4 - GEKEIIAA - - - Start on level 5 - IEKEIIAA - - - Infinite lives - both players - 00A2:09 - - - Infinite Oil - both players - 00A4:63 - - - MI is very high - 00A5:FF - - - - Clash at Demonhead (USA) - - Invincibility - ENOPLZEI+ESSPPAEY - - - Infinite health - SZEGZISA - - - Infinite barrier hits - SXNZKSVK - - - Infinite supply of all items bought - SXKZGSVS - - - Don't die when power hits zero - VZSULOVV - - - All items in shop are free - AVUGAGST - - - Start with 1 of each item - VNNGNUSO - - - Start with extra cash - TAUGKGKY+UPUGVKXO - - - Start with 50% power - AAEKVGAO+AEVZNPAO+ZAOGXGGA - - - Start with 150% power - APEKVGAO+TAOGXGGA+AOVZNPAO - - - Start with 200% power - AZEKVGAP+AAOGXGGE+AXVZNPAP - - - Infinite health (alt) - 009F:10 - - - - Cliffhanger (USA) - - Protection from most hits - SZVPOKVK - - - Infinite lives - SXEKKSVK - - - Infinite continues - ULOTSYTN - - - Don't burn money at campfire - SUNPXXSO - - - Some bags contain mega-money, some contain no money - YONKKXAP - - - Start with 2 lives - PASGVGLA - - - Start with 6 lives - IASGVGLA - - - Start with 8 lives - YASGVGLA - - - Start with 10 lives - PASGVGLE - - - Start with 1 continue - PAKGUGLA - - - Start with 5 continues - IAKGUGLA - - - Start with 7 continues - YAKGUGLA - - - Start with 9 continues - PAKGUGLE - - - Start with 2x health (does not show on meter) - AXOKNGAP - - - Start with 1/2 health - AEOKNGAO - - - Start with $100 - VTVKVKSE - - - Start with $10,000 - VTVKUKSE - - - Start with $650,000 (displays $xx0000 until you pick up first money bag) - VGVKUKSE - - - Infinite health - 0405:10 - - - Infinite lives (alt) - 0406:03 - - - - Clu Clu Land (World) - - Infinite lives - both players - GXLILL - - - Infinite time - GZPGSL - - - Increase extra time - TEYIGL - - - Shoot more rays - IEVISZZA - - - Shoot shorter rays - AOVSOZAZ - - - Shoot longer rays - ASVSOZAZ - - - Enemy can go thru gold bars - AASIAYGA - - - Start with 1 life - both players - PAGKGL - - - Start with 10 lives - both players - APGKGL - - - Start with 1 life - P2 - VTSKPLSA - - - - Cobra Command (USA) - - Immune to weapon damage - GZSSNGST - - - Start with infinite lives - SXUAAOVK - - - Start with 1 life - AAUVGZGA - - - Start with 9 lives - AAUVGZGE - - - Start with Infinite lives (alt) - 05BB:09 - - - Start with Dual Gun - 05A5:01 - - - Start with ATG - 05A5:02 - - - Start with Rapid Fire - 05A5:03 - - - Start with 3-Way Gun - 05A5:04 - - - Start with Twin Missiles - 05A6:01 - - - Start with Homing Missiles - 05A6:02 - - - Start with Homing Missiles 1 - 05A6:03 - - - Start with Homing Missiles 2 - 05A6:04 - - - Start with Firebomb - 05A6:05 - - - Start with Mines - 05A6:06 - - - Start with Armor - 05A7:01 - - - Start with Super Armor - 05A7:02 - - - Start with Hyper Armor - 05A7:03 - - - Start with Turbo Engine - 05A8:01 - - - Start with Super Engine - 05A8:02 - - - Start with Hyper Engine - 05A8:03 - - - Start with Rope - 05A9:00 - - - Start with Ladder - 05A9:01 - - - - Cobra Triangle (USA) - - Invincibility - ATVXKLEI - - - Infinite continue options - SZUXZVVK - - - Don't lose life after dying from damage - SZEVNOVK - - - Don't lose life after dying from time running out - SZVTSOVK - - - Never lose your power-ups - ENXTPVSA+LEXTZVAX - - - Hit anywhere - EIXLPGEL+ESKZXGEL+KPULZGNO+OLKXOSOO+TAXLZGZO+YOKZUKZP - - - Gain an extra minute - VVXEAUSE+LOXEPLIP - - - Invincibility (blinking) - 00B9:1A - - - Infinite health - 05F5:0C - - - Infinite lives - 0738:09 - - - Infinite time (disable before finishing a level) - 0714:05 - - - Boss HP will be at minimum - 05FF:00 - - - Max Missile power - 072C:03 - - - Max Speed - 072B:03 - - - One 1 mine needed for mine removing stages - 00A3:00 - - - Start on stage 2 (disable after stage begins) - 0702:02+0737:01 - - - Start on stage 3 (disable after stage begins) - 0702:03+0737:02 - - - Start on stage 4 (disable after stage begins) - 0702:04+0737:03 - - - Start on stage 5 (disable after stage begins) - 0702:05+0737:04 - - - Start on stage 6 (disable after stage begins) - 0702:06+0737:05 - - - Start on stage 7 (disable after stage begins) - 0702:07+0737:06 - - - Start on stage 8 (disable after stage begins) - 0702:08+0737:07 - - - Start on stage 9 (disable after stage begins) - 0702:09+0737:08 - - - Start on stage 10 (disable after stage begins) - 0702:0A+0737:09 - - - Start on stage 11 (disable after stage begins) - 0702:0B+0737:0A - - - Start on stage 12 (disable after stage begins) - 0702:0C+0737:0B - - - Start on stage 13 (disable after stage begins) - 0702:0D+0737:0C - - - Start on stage 14 (disable after stage begins) - 0702:0E+0737:0D - - - Start on stage 15 (disable after stage begins) - 0702:0F+0737:0E - - - Start on stage 16 (disable after stage begins) - 0702:10+0737:0F - - - Start on stage 17 (disable after stage begins) - 0702:11+0737:10 - - - Start on stage 18 (disable after stage begins) - 0702:12+0737:11 - - - Start on stage 19 (disable after stage begins) - 0702:13+0737:12 - - - Start on stage 20 (disable after stage begins) - 0702:14+0737:13 - - - Start on stage 21 (disable after stage begins) - 0702:15+0737:14 - - - Start on stage 22 (disable after stage begins) - 0702:16+0737:15 - - - Start on stage 23 (disable after stage begins) - 0702:17+0737:16 - - - Start on stage 24 (disable after stage begins) - 0702:18+0737:17 - - - Start on stage 25 (disable after stage begins) - 0702:19+0737:18 - - - - Code Name - Viper (USA) - - Invincibility - SZSSGIAX - - - Infinite health - STVPVOON+AASOVZPA - - - Infinite health (alt) - SZVOSOSE - - - Infinite lives - SZOVKNVK - - - Infinite Gun - AENXZPPA - - - Infinite Machine Gun - AAOXLZPA - - - Hit anywhere - AASIVEAL+APOOSGLA+GLXPEGLP+SZOOKKSU - - - Double usual bullets on new life - GTOVEYZL - - - Half bullets on new life - PPOVEYZU - - - Machine Gun with 256 bullets on new life - VTOTONSE - - - Upper level jump - SXKEVNOU+ONEOYEXN - - - Keep Machine Gun after dying - GZOTONSE+GZEVVNSE - - - Have Bomb (can exit level without the Bomb) - AEESIIGA - - - Start with 1 life - PENTAGLA - - - Start with 6 lives - TENTAGLA - - - Start with 9 lives - PENTAGLE - - - Start with Machine Gun and 256 bullets - VVNVGKSE - - - Start with double usual bullets - GTETLIZL - - - Start with half usual bullets - PPETLIZU - - - Infinite health (alt) - 06F8:04 - - - Infinite lives - 06E8:0A - - - Infinite Gun (alt) - 06E0:3F - - - Infinite Machine Gun (alt) - 06E2:3F - - - Have all children rescued - 06EA:09 - - - Have all adults rescued - 06EC:09 - - - Have all adults and children rescued - 0757:FF - - - - Colorful Dragon (Asia) (PAL) (Unl) - - Invincibility - EIEPXZEY - - - Infinite lives - SUUOKPVI - - - Start on level 2 - ZAUAYAPA - - - Start on level 5 - IAUAYAPA - - - Start on level 10 - ZAUAYAPE - - - Start on level 15 - YAUAYAPE - - - Start on level 20 - GPUAYAPA - - - - Commando (USA) - - Invincibility - ATNITPSA - - - Infinite Grenades - XVULASXK - - - Infinite lives - EZEGNOVG - - - Infinite lives (alt) - SZEGNOVK - - - Start with 1 life - both players - AEKKIILA - - - Start with 6 lives - both players - TEKKIILA - - - Start with 9 lives - both players - PEKKIILE - - - Start with double rations of grenades - AOSGIIIA - - - Have all power-ups - both players - 04AB:E9 - - - Have rapid fire - both players - 0074:00 - - - - Conan (USA) - - Invincibility - SXUEYYAX+SZVAPGAX - - - Infinite lives - SXKISTVG+SZVSULVG - - - Infinite health - SXSTOOSE - - - - Conquest of the Crystal Palace (USA) - - Invincibility - ESVIYPEY+SEVIIPSZ - - - Invincibility (alt) - SXOVLIAX - - - Infinite lives - GZVTAPAX - - - Infinite lives (alt) - SZVTLPSA - - - Infinite energy (will display wrong info) - VVKSZOSU - - - Infinite energy for Farron - SXXTAIAX - - - Infinite fire power - SUPILU - - - Maximum energy without Life Crystal - GPEYUXTA - - - Don't use up money when buying things - GZXVPPAX+GZUTZPAX - - - Super-jump without Flight Crystal - AAVIGTZA+PAVITTLA - - - Increase super-jump to mega-jump - IOUSLVTA - - - Increase super-jump to super-mega-jump - IKUSLVTA - - - - Contra (Japan) - - Invincibility - SXNVZPAX - - - Infinite lives - SZUSOPVI - - - - Contra (USA) - - Invincibility - SXKVPZAX - - - Invincibility (blinking) - SLTIYG - - - Invincibility (blinking) (alt) - AAVITGIA - - - Hit anywhere - ESEVALEP+GXXTPLEL+GZNVYLEL+SXKTYLAX - - - Multi-jump - both players - AZNITGSL+NPNIYGEU+VINSAGEY+XTNSPKAE+SUEIAGVI+SUVSOPSP+ATKSZSOZ - - - Jump higher - UNVSYVKN+XNVSPVUN - - - Run 2x as fast - VYVIPNNN+ZASSIYPA - - - Run 4x as fast - GASSIYPA+KYVIPNNN - - - Keep weapons after losing life - GXIIUX - - - Press Select to change weapons - P1 - GGXNIVNN+IZOYLVNY+KZOYZVNY+PZONYVNN+LAOYIVNY+SAXNPVNY+LIOYYVNY+SZXNLVNY+OGXYPVNN+YAXYAVNY+SYXNGVNY+OZXYIVNN+ZAXYGVNY+SZONIVNY+PAXNAVNY+ZPKILAIZ+TAONGVNN+PTXYYVNN+TGXNTVNY+PZONPVNN+VYKIGAEI+XZONTVNN+XZXNZVNN+AZONZVNY+EIONAVNY+EIXNYVNY+EIXYLVNY+EYONLVNY+EYOYGVNY+GAXYZVNY+GGKIZAKX+GGOYTVNN - - - Press Start to complete the level - LLKSIAIX - - - Start with infinite lives - SLAIUZ - - - Start new life with Machine Gun - PEIIXZ - - - Start new life with Fireball - ZEIIXZ - - - Start new life with Spread Gun - LEIIXZ - - - Start new life with Laser - GEIIXZ - - - Start on level 2 - ALNKPKYL+PANGIGAA - - - Start on level 3 - ALNKPKYL+ZANGIGAA - - - Start on level 4 - ALNKPKYL+LANGIGAA - - - Start on level 5 - ALNKPKYL+GANGIGAA - - - Start on level 6 - ALNKPKYL+IANGIGAA - - - Start on level 7 - ALNKPKYL+TANGIGAA - - - Start on level 8 - ALNKPKYL+YANGIGAA - - - Invincibility (star effect) - P1 - 00B0:FE - - - Invincibility (star effect) - P2 - 00B1:FE - - - Invincibility (blinking) (alt 2) - 00AE:41 - - - Have 99 lives - 0032:99 - - - Have Machine Gun - P1 - 00AA:01 - - - Have Fireball - P1 - 00AA:02 - - - Have Spread Gun - P1 - 00AA:03 - - - Have Laser - P1 - 00AA:04 - - - Have Clone Attack (glitch weapon) - P1 - 00AA:18 - - - Have Machine Gun - P2 - 00AB:01 - - - Have Fireball - P2 - 00AB:02 - - - Have Spread Gun - P2 - 00AB:03 - - - Have Laser - P2 - 00AB:04 - - - Have Clone Attack (glitch weapon) - P2 - 00AB:18 - - - - Contra Force (USA) - - Invincibility - SXKXZIAX+SXUZPIAX - - - Infinite lives (alt) - OUOXVKOO - - - Infinite lives - all characters - AANVIAPA - - - Keep weapons after death - OUEXNKOO - - - Start with 9 lives - all characters - PAUYTTLE - - - Start with 6 lives - all characters - TAUYTTLA - - - Start with 1 life - all characters - PAUYTTLA - - - - Cool World (USA) - - Infinite lives - GXUVTKVK - - - Infinite Bombs - SXSTOTVG - - - Infinite Erasers - SXVVKTVG - - - Lots of Erasers - AZNZEYAE - - - Start with 3 Bombs - LEVLGZPA - - - Start with 6 Bombs - TEVLGZPA - - - Start with 9 Bombs - PEVLGZPE - - - Start with 2 lives - PEKGYAZA+PAKZKYZA - - - Start with 7 lives - TEKGYAZA+TAKZKYZA - - - Start with 10 lives - PEKGYAZE+PAKZKYZE - - - Start with 3 Erasers - LEKKGAPA+LAVXXYPA - - - Start with 6 Erasers - TEKKGAPA+TAVXXYPA - - - Start with 9 Erasers - PEKKGAPE+PAVXXYPE - - - Infinite energy - 04E8:00 - - - - Cowboy Kid (USA) - - Infinite lives - OUNKEUOO - - - Infinite health - 0698:08 - - - - Crackout (USA) (Proto) - - Infinite lives - SZNUXAVG - - - - Crash 'n' the Boys - Street Challenge (USA) - - Start with 99 Gold - OOVUAIIE - - - Start with 50 Gold - ASVUAIIA - - - - Crisis Force (Japan) - - Infinite lives - SUNEITVI - - - Infinite Bombs - SLOEGVVS - - - Start on stage 2 - PAOGKLAA - - - Start on stage 3 - ZAOGKLAA - - - Start on stage 4 - LAOGKLAA - - - Start on stage 5 - GAOGKLAA - - - Start on stage 6 - IAOGKLAA - - - Start on stage 7 - TAOGKLAA - - - - Cross Fire (USA) (Proto) - - Invincibility - ENVOALEI+ESVPLLEY - - - Infinite energy - OZNEPYES+SANELNSX - - - Infinite lives - SXUEYOVK - - - Protection from enemies - SXNNUXSE+SZEXLEVK - - - - Crystalis (USA) - - Always fire charged shot - OZNOOKZK+PANOXKZG - - - Always fire bracelet charged shot - OZNOOKZK+LANOXKZG - - - Faster sword charge - AAOPETLA - - - Allow sword charge while moving - SZEPEVGK - - - First pupil gives you more gold - NYVSPZGV - - - Magic doesn't use up MP - SXNOVXSE - - - Immune to poison - AASVVNYA - - - Immune to paralysis - AEKTSNYA - - - Stronger poison - TEOTVYGA - - - Weaker poison - ZEOTVYGA - - - Walk through walls - AEKOUPTA - - - Don't get charged for boarding at Inn - SZUOIVSE+SZKPLVSE - - - Don't get charged for items in shops - SXVPUOSE+SXVOOOSE - - - Start with some gold - VVOGUOSE - - - - Cyberball (USA) - - Infinite level time - SXUYAKVK - - - Start with level time at 1 minute - PENOYLLA - - - Start with level time at 2 minutes - ZENOYLLA - - - Start with level time at 5 minutes - IENOYLLA - - - Start with level time at 9 minutes - PENOYLLE - - - Goals worth 0 points - AAXEZAZA - - - Goals worth 1 points - PAXEZAZA - - - Goals worth 5 points - IAXEZAZA - - - Goals worth 9 points - PAXEZAZE - - - Goals worth mega points - LTXEZAZA - - - - Cybernoid - The Fighting Machine (USA) - - Infinite Bombs - SZNPVOVK - - - Infinite Genocides - SXEUSSVK - - - Infinite Shields - SXOPUSVK - - - Infinite Seekers - SZNOLNVK - - - 20 Genocides on new life - GOOZZPZA - - - Keep rear laser after death - GZKZZOSE - - - Keep mace after death - GZKXAOSE+GZKZIOSE - - - Start with rear laser - NNOEPPAE - - - Start with infinite lives - SZVZGOVK - - - Start new life with 20 shields - GPUETZPA+GOOZYPPA - - - Start with 20 seekers and bouncers - GPKAZZIA+GOOXGPIA - - - Start with double Bombs - AZUALZGO+AXEXIPGO - - - Start with 1 life - NYEATXNY - - - Start with 5 lives - UYEATXNN - - - Start with 18 lives - AAEATXNN - - - Invincibility - 06D4:00 - - - Infinite lives - 06D5:FF - - - - D.J. Boy (Unl) - - Infinite health - SZVAZVSO - - - Infinite time - SZOENISA - - - Infinite lives - SXENAYVG - - - - Danny Sullivan's Indy Heat (USA) - - Infinite turbos - SZELSOVS - - - Infinite fuel - SXVASVSO - - - Everything costs how much you have - SVKLTOSO - - - Don't take damage in the front - OUVZAXOO - - - Start with $255,000 - NYUOZLGV - - - - Darkman (USA) - - Infinite health - SXKGUSSE - - - Infinite health (alt) - 0496:37+04B5:37 - - - Infinite lives - 0497:04 - - - Multi-jump - AAKATNIP+AAUATNTI - - - Hit anywhere - side-scrolling levels - GXEOVGEI+GXEPVGEY+GZVOKGEY - - - Never lose balance - ATSKSLEP - - - - Darkwing Duck (USA) - - Invincibility - EYUEIPEI - - - Infinite health - AVVNSOOG - - - Infinite lives - GZOGSUVK - - - Infinite lives (alt) - SGOGSUVK - - - Infinite gas (if you avoid the "Go" missions) - AVUEUOSZ - - - More gas on pick-up - IYEAKPAY - - - Start with infinite health - SXNYUOSE - - - Start with 2 lives - PYSKXPLY - - - Start with 6 lives - IYSKXPLY - - - Start with 9 lives - AYSKXPLN - - - - Dash Galaxy in the Alien Asylum (USA) - - Invincibility - XVUGLNSX - - - No damage from shots and collisions - AAEPZIPA - - - Infinite Oxygen - SZOPISVK - - - Infinite Bombs in elevator shaft - VTNSEXSX - - - Infinite Bombs in rooms - VVVSXXSX - - - Infinite Detonators in shafts - VVOSSXSX - - - Infinite Detonators in rooms - VTESNUSX - - - Infinite Keys in shafts - VTEZIKSX - - - Infinite Keys in rooms - VVOXTOSX - - - Can't lose lives in rooms - SZVPTOVK - - - Can't lose lives in elevator shaft - SZUPLOVK - - - Oxygen used up more slowly in shaft - NYSXAOAN - - - Oxygen used up more quickly in rooms - AYXXSNNY - - - Start with 1 life - PENPIALA - - - Start with 6 lives - TENPIALA - - - Start with 9 lives - PENPIALE - - - Start with 99 lives - LVNPIALA - - - Start on level 5 - OZEPOISE+IAEPXSVI - - - Start on level 10 - OZEPOISE+ZAEPXSVS - - - Start on level 15 - OZEPOISE+YAEPXSVS - - - Start on level 20 - OZEPOISE+GPEPXSVI - - - - Day Dreamin' Davey (USA) - - Infinite health - SXSPZGSA - - - Hit anywhere - AANLZKZG - - - Infinite health (alt) - 0067:FF - - - Infinite Small Spears - 0411:99 - - - Infinite Long Spears - 0412:99 - - - Infinite One Rock - 0413:99 - - - Infinite Three Rock - 0414:99 - - - Infinite Four Rock - 0415:99 - - - Infinite Potions - 041F:99 - - - Infinite Red Potions - 0420:99 - - - Have Key - 0420:01 - - - Have Ring - 0422:01 - - - Have Pendant - 0423:01 - - - Have Sword - 040E:01 - - - Have Long Lance - 040F:01 - - - Have Long Sword - 0410:01 - - - Walk through walls - CE42:00+CED9:00+CF64:00+CFE0:00 - - - - Days of Thunder (USA) - - Faster acceleration - SXEYPUSU - - - Tires don't burst - AAVOEXNY - - - Better left-hand cornering - SNXOSKEY - - - Maximum acceleration - IEUNLLLA+SXEYPUSU - - - Start with more fuel - NYKNIUNO - - - Start with less fuel - YIKNIUNO - - - Infinite fuel - 021F:FF - - - Always 1st place - 0464:01 - - - Always excellent condition - front left tire - 046C:00 - - - Always excellent condition - front right tire - 046D:00 - - - Always excellent conditon - rear left tire - 046E:00 - - - Always excellent condition - rear right tire - 046F:00 - - - Always excellent condition - engine - 0471:00 - - - Max speed - 0473:15 - - - Lap 02 - 0463:02 - - - Lap 03 - 0463:03 - - - Lap 04 - 0463:04 - - - Lap 05 - 0463:05 - - - Lap 06 - 0463:06 - - - Lap 07 - 0463:07 - - - Lap 08 - 0463:08 - - - Lap 09 - 0463:09 - - - Lap 10 - 0463:0A - - - - Deadly Towers (USA) - - Infinite HP - GXSONPST - - - 1 Ludder gives 10 on pick-up - ZEUPKYPE - - - 5 Ludder gives 20 on pick-up - GOUPUYIA - - - Shopkeeper forgets to charge you - GXUGLVON - - - Start with 127 Ludder - YYXELPZU - - - Start with 75 Ludder - LGXELPZU - - - Always max Ludder - 009B:FA - - - Max HP - 01B3:FF - - - All belts burned (door on the right in the beginning of the game is now open) - 01B4:07 - - - Slot 1 - Splendor (game's best sword) - 0176:10 - - - Slot 2 - Hyper Helm - 0177:04 - - - Slot 3 - Shield Of Kings - 0178:08 - - - Slot 4 - Hyper Armor - 0179:0C - - - Slot 5 - Hyper Boots - 017A:14 - - - Slot 6 - Parallel Shot - 017B:1A - - - - Deathbots (USA) (Rev 1) (Unl) - - Infinite energy - SLNZOXSO - - - Infinite lives - SXXZIEVK - - - Infinite shots - OLUZEVOO - - - - Deathbots (USA) (Unl) - - Infinite energy - SLNZOXSO - - - Infinite lives - SXXZIEVK - - - Infinite shots - OLUZEVOO - - - - Defender II (USA) - - Invincibility - SXVIOTSA - - - Infinite lives - GXTGEY - - - Infinite Smart Bombs - GXYSGI - - - Super speed - YAZVPG+YETVIL - - - Start with 1 life - PELGNY - - - Start with 6 lives - TELGNY - - - Start with 9 lives - PELGNN - - - - Defender of the Crown (USA) - - Only 10 soldiers in your Garrison - ZAVVALGO - - - 40 soldiers in your Garrison - AZVVALGO - - - Soldiers for free - AAEOUPPA - - - Triple the cost of soldiers - LAEOUPPA - - - Halve the cost of knights - GAEOKOAA - - - Double the cost of knights - APEOKOAA - - - Halve the cost of catapults - YAEOSOYA - - - Halve the cost of castles - ZAEOVPGO - - - - Demon Sword - Release the Power (USA) - - Invincibility - SZUEUZAX - - - Infinite health (life) - SZKGTTSA - - - Infinite powers and lives - AESVLTPA - - - Infinite lives - SXSIYASA - - - Phoenix always rescues you - VTVTAESX - - - Infinite Fire, Lightning, Power Beams on pick-up - SLNNANSO - - - Hit anywhere - ALXGAYSU+ATXGPNEP+SXNKPVGK - - - Extra dart strength - VTNXAOSE - - - Start with 44 Red Spheres - XZNZGPSA+VEEZYOSE - - - Start with 44 Black Spheres - XZNZGPSA+VEEXZOSE - - - Start with 44 Fire Spheres - XZNZGPSA+VANXLOSE - - - Start with 44 Lightning Bolts - XZNZGPSA+VANXTOSE - - - Start with 44 Power Beams - XZNZGPSA+VEEZPOSE - - - Start with 1 life - AEVSUIZA - - - Start with 6 lives - IEVSUIZA - - - Start with 9 lives - AEVSUIZE - - - Start on level 2 - ATNXAOSA+PANZLPAA - - - Start on level 3 - ATNXAOSA+ZANZLPAA - - - Start on level 4 - ATNXAOSA+LANZLPAA - - - Start on level 5 - ATNXAOSA+GANZLPAA - - - Start on level 6 - ATNXAOSA+IANZLPAA - - - Infinite health (life) (alt) - 007E:08 - - - Infinite Power - 007C:0F - - - Infinite lives (alt) - 007D:99 - - - Infinite Keys - 0207:99 - - - Infinite Red Spheres - 0208:99 - - - Infinite Black Spheres - 0209:99 - - - Infinite Phoenix - 020A:99 - - - - Dengeki - Big Bang! (Japan) - - Invincibility (blinking) - EOSOPALA+GXSPPAEY+OXSOAAES - - - - Desert Commander (USA) - - Start with 99 Tank units - 0084:63 - - - Start with 99 Tank #2 units - 0085:63 - - - Start with 99 Truck units - 0086:63 - - - Start with 99 Troop units - 0087:63 - - - Start with 99 Grenade units - 0088:63 - - - Start with 99 Stationary Artillery units - 0089:63 - - - Start with 99 Transport Truck units - 008A:63 - - - Start with 99 Heavy Airplane units - 008B:63 - - - Start with 99 Light Airplane units - 008C:63 - - - - Destination Earthstar (USA) - - Infinite lives - SXVSVIVG - - - Less energy - ISNEUUOP - - - More energy - NNNEUUOO - - - Don't lose special weapon in sub-game - XTNVSNXK - - - Start with 1 life - PAVTXGLA - - - Infinite energy (ten-thousand's digit) - 05A8:99 - - - Infinite energy (hundred's digit) - 05A9:75 - - - Infinite energy (ten's and one's digit) - 05AA:76 - - - Infinite Ruby Laser - 05AD:FF - - - Infinite Torpedos - 05AF:FF - - - - Destiny of an Emperor (USA) - - Buy 300 provisions for no money - AEKPZZGT - - - Buy 30,000 provisions for no money - AEKPIZYZ+AEKPTZAP - - - Dagger costs nothing - AENLULZL - - - Bandana costs nothing - AEVLKGZL - - - Flail costs nothing - AENUKLGT - - - Robe costs nothing - AEXLXGGT - - - Elixir A costs nothing - AEUUXLGP - - - Resurrect costs nothing - AEXUVLGT - - - Steed costs nothing - AEXLVUEG - - - Gullwing costs nothing - AEEUKUEG - - - Leather costs nothing - AEXUOKGZ+AEXUXGPA - - - - Dick Tracy (USA) - - Infinite health - GXVOINSV - - - Infinite hand gun bullets - SZXZEOVK - - - Infinite machine gun bullets - SXVXZEVK - - - Infinite super punches - SZKZIXVK - - - Infinite tear gas - SZEXIXVK - - - More super punches on pick-up - GOEPIOZA - - - Mega-jump - KYVZAANY - - - Take more damage - AOVOGNAU - - - Infinite health (alt) - 0663:09 - - - Infinite hand gun bullets (alt) - 0761:31 - - - - Die Hard (USA) - - Infinite health against Pistol ammo - SXEZTYSA - - - Infinite health against Submachine Gun ammo - SXOZIYSA - - - Infinite health against punches - SXXZLYSA - - - Infinite Pistol ammo - ATNALXVG - - - Infinite Submachine Gun ammo - ATNEIXVG - - - Infinite ammo on all guns - ATVEIZSZ - - - Infinite time - AVUNGPSZ - - - Lose foot health very slowly - SXOYYUSE - - - Time runs at 1/4 normal speed - ENUYPOGL - - - Time runs at 1/3 normal speed - KUUYPOGL - - - Time runs at 1/2 normal speed - ANUYPOGU - - - Time runs at 2x normal speed - TOUYPOGU - - - Time runs at 3x normal speed - GOUYPOGL - - - Time runs at 4x normal speed - YEUYPOGU - - - Start with no Pistol shots instead of 15 - AEXGPOYA - - - Start with 5 Pistol ammo - IEXGPOYA - - - Start with 10 Pistol ammo - ZEXGPOYE - - - Start with 20 Pistol ammo - GOXGPOYA - - - Start with 25 Pistol ammo - POXGPOYE - - - Start with 1 life point instead of 16 - PEOKIPAP - - - Start with 2 life points - ZEOKIPAP - - - Start with 4 life points - GEOKIPAP - - - Start with 8 life point - AEOKIPAO - - - Start with 12 life points - GEOKIPAO - - - Start with 20 life points - GOOKIPAP - - - Invincibility - 00A5:05 - - - Infinite health (alt) - 00AC:10 - - - Infinite feet health - 0798:00 - - - Infinite time (alt) - 00AF:60 - - - Immune to flashes - 00A8:00 - - - 0 crooks left - 00AB:00 - - - Have all items - 0779:FF - - - Infinite pistol ammo (alt) - 077A:14 - - - Infinite Submachine Gun ammo (alt) - 077B:64 - - - Infinite Submachine Gun cartridges - 077C:07 - - - Infinite C4 - 077D:05 - - - Infinite flashes - 077E:07 - - - - Digger - The Legend of the Lost City (USA) - - Infinite health - SXSYOPVG - - - Infinite lives - SXVAYTVG - - - Less rocks on pick-up - IAUGZUPA - - - Infinite rocks on pick-up - SZEYTVVK - - - Infinite rope on pick-up - SXEUIUVK - - - Infinite dynamite on pick-up - SXEXTEVK - - - Start with weapons - PAONOGAE - - - Infinite time (disable before exiting stage) - 0187:09 - - - - Dig Dug (Japan) - - Infinite lives - both players - 0060:03 - - - Start on stage 25 (disable after loading stage) - 006E:18 - - - Start on stage 50 (disable after loading stage) - 006E:31 - - - Start on stage 75 (disable after loading stage) - 006E:4A - - - Start on stage 99 (disable after loading stage) - 006E:63 - - - - Dig Dug II - Trouble in Paradise (USA) - - Instant inflate and explode - GZETIZEI - - - Never lose lives from touching water - SZXLSVVK - - - Never lose lives from Fygar's flame - SXVKLVVK - - - Never lose lives from hitting enemies - SXNIPEVK - - - Turbo speed - OZNYPUPX+ZANYZLLA - - - Start with 1 life - both players - PEETOPLA - - - Start with 8 lives - both players - AEETOPLE - - - - Dirty Harry (USA) - - Infinite health - GXXGXGST - - - Infinite lives - SXUKOKVK - - - Maximum health from Chili Dogs - AEVLIPZA - - - Only 10 Magnum Bullets allowed - ZESSTSPO+ZEVIZSPO - - - 50 Magnum Bullets allowed - ZUSSTSPP+ZUVIZSPP - - - Start with 1 life - PANSGIIA - - - Start with 10 lives - ZANSGIIE - - - Infinite Time Bombs - 06D3 63 - - - Infinite Hot Dogs - 06D4 63 - - - Infinite Spear Gun - 06D5 63 - - - Infinite Bazooka - 06D6 63 - - - Infinite Rope - 06D7 63 - - - Infinite Armor Vest - 06D8 63 - - - Infinite Mask - 06D9 63 - - - Infinite Flashlight - 06DA 63 - - - Infinite Prybars - 06DB 63 - - - - Doki! Doki! Yuuenchi (Japan) - - Invincibility - APEPPPAL - - - Infinite hits - SXVXENVK - - - Infinite lives - SXSSKNVK - - - - Donkey Kong (World) (Rev A) - - Invincible against barrels - SXXVKGSA - - - Invincible against fireballs - SXUTXISA - - - Infinite lives - SXNGOZVG - - - Hammer lasts 3.4 times longer - NYUITVLK - - - Start with 1 life - PENKNPLA - - - Start with 9 lives - PENKNPLE - - - - Donkey Kong 3 (World) - - Invincibility - AVVGELEY - - - Reduce the time for pros - ZEKKGYEE - - - Normal spray more powerful - ZAOSZAPA - - - Normal spray longer - ZLOSLAAA - - - Spray cuts through baddies - AASSYPPA - - - Normal bees explode - AAKVZALL - - - Speeding Stanley - TEXKVGLA - - - Start with infinite lives - SZNKOPVI - - - Start with 1 life - PEEGITLA - - - Start with 9 lives - PEEGITLE - - - - Donkey Kong Jr. (World) (Rev A) - - Cannot die from falling from a high platform - PAUIEZIA - - - - Donkey Kong Jr. Math (USA, Europe).nes - - Always get the correct answer - AAKILSZA+AAUILSZP - - - - Donkey Kong Classics (USA, Europe) - - Donkey Kong - Infinite lives - SXYAOP - - - Donkey Kong - Start with 1 life - PETANA - - - Donkey Kong - Start with 6 lives - TETANA - - - Donkey Kong - Start with 9 lives - PETANE - - - Donkey Kong - Controllable jump - AEVAVSIA - - - Donkey Kong - Keep hammer longer - EAKOLSLG - - - Donkey Kong Jr - Infinite lives - SZZGTP - - - Donkey Kong Jr - Start with 1 life - PATLST - - - Donkey Kong Jr - Start with 6 lives - TATLST - - - Donkey Kong Jr - Start with 9 lives - PATLSV - - - Donkey Kong Jr - Controllable jump - AEKGAUIA - - - Donkey Kong Jr - Faster single vine climbing - EAVGVIAG - - - Donkey Kong Jr - Can fall onto platforms - PAXIPAIA - - - Donkey Kong Jr - Speed up - EXSKSGEY+EXUKNGEY - - - - Double Dare (USA) - - Infinite time to answer questions - SXXANUVK - - - - Double Dragon (USA) - - Infinite lives - EEUTLZZE - - - Infinite time - AAUNYLPA - - - Gain hearts quickly - VKKYXLVT - - - Gain a heart every time you hit an enemy - EKINNL - - - More health - P1 - XTKYOEZK - - - More health - P2 or computer - XTKNXEZK - - - No enemies - IIIOOO - - - Enemies will not fight back - IIIEOO - - - Slow motion - KOTKOK - - - Timer will count down faster - AZUYZLAL - - - Timer will count down super-fast - APUYZLAL - - - Disable level 4 wall trap - NYZSIU - - - Start with 1 life - AEUTLZZA - - - Start with 6 lives - IEUTLZZA - - - Start with 9 lives - AEUTLZZE - - - Infinite health - 03B4:64 - - - Start with all hearts - 0040:07 - - - Start on stage 2 (disable after stage begins) - 003D:01 - - - Start on stage 3 (disable after stage begins) - 003D:02 - - - Start on stage 4 (disable after stage begins) - 003D:03 - - - - Double Dragon II - The Revenge (USA) (Rev A) - - No enemies - ZYZPPA - - - Never lose lives from falling - SZXAYKVS - - - Never lose lives from low energy - SXOANXVS - - - Never lose lives from water - SZVESUVS - - - Uppercut after only two punches - PAVUELZA - - - Slow down gameplay - NNEVOIAE - - - Start with 259 lives - P1 - NYSVETGE - - - Start with 8 lives - P1 - AASVETGE - - - Start with 8 lives - P2 - AAVVSTGE - - - Start with 1 life - P1 - PASVETGA - - - Start with 1 life - P2 - PAVVSTGA - - - Start on mission 2 - PAUTXTAA - - - Start on mission 3 - ZAUTXTAA - - - Start on mission 4 - LAUTXTAA - - - Start on mission 5 - IAUTXTAA - - - Start on mission 6 - TAUTXTAA - - - Start on mission 7 - PAUTXTAE - - - Start on mission 8 - GAUTXTAE - - - Start at final boss - TAUTXTAE - - - Start at final boss (alt) - TALTXV - - - Invincibility - 03CC:F0 - - - Enemies die after one knockdown (disable at final boss) - 0420:00+0421:00 - - - - Double Dragon II - The Revenge (USA) - - No enemies - ZYZPPA - - - Never lose lives from falling - SZXAYKVS - - - Never lose lives from low energy - SXOANXVS - - - Never lose lives from water - SZVESUVS - - - Uppercut after only two punches - PAVUELZA - - - Slow down gameplay - NNEVOIAE - - - Start with 259 lives - P1 - NYSVETGE - - - Start with 8 lives - P1 - AASVETGE - - - Start with 8 lives - P2 - AAVVSTGE - - - Start with 1 life - P1 - PASVETGA - - - Start with 1 life - P2 - PAVVSTGA - - - Start on mission 2 - PAUTXTAA - - - Start on mission 3 - ZAUTXTAA - - - Start on mission 4 - LAUTXTAA - - - Start on mission 5 - IAUTXTAA - - - Start on mission 6 - TAUTXTAA - - - Start on mission 7 - PAUTXTAE - - - Start on mission 8 - GAUTXTAE - - - Start at final boss - TAUTXTAE - - - Start at final boss (alt) - TALTXV - - - Invincibility - 03CC:F0 - - - Enemies die after one knockdown (disable at final boss) - 0420:00+0421:00 - - - - Double Dragon III - The Sacred Stones (USA) - - Infinite health - Bill, Jimmy and Chin - SZUUPAAX - - - Infinite special weapons - everyone - AAELIGPA+GZXUPUVS - - - More powerful punch, weapon and high kick - OZVLGASX - - - More health - Billy and Jimmy - GVEPXGGI - - - More health - Ranzou - GVEOXKZG - - - Less health - Billy and Jimmy - ZXEPXGGS - - - Less health - Ranzou - IXEOXKZG - - - Less health - Chin - ZUEONGGT - - - Start with Chin enabled - AEULUKYA - - - Start with Ranzou enabled - AEKLVKAA - - - Start with Jimmy enabled - AEKNPPIA - - - Start with 255 health - Billy and Jimmy - NNEPXGGS - - - Start with 255 health - Chin - NNEONGGV - - - Start with 255 health - Ranzou - NNEOXKZK - - - Start with 99 weapon use - Billy, Jimmy and Chin - LVOPKGIA - - - Infinite health - P1 - 045D:40 - - - Infinite health - P2 - 045E:40 - - - - Double Dribble (USA) (Rev A) - - CPU scores add to your score - KNEKPKEY - - - CPU never scores - KNEKPKEN - - - 50 points - team 1 - 07F4:50 - - - 50 points - team 2 - 07F8:50 - - - - Double Dribble (USA) - - CPU scores add to your score - KNEKPKEY - - - CPU never scores - KNEKPKEN - - - 50 points - team 1 - 07F4:50 - - - 50 points - team 2 - 07F8:50 - - - - Double Moon Densetsu (Japan) - - Play as girl - ESSUGTEY - - - - Drac's Night Out (USA) (Proto) - - Infinite Blood - SZSGAVSE - - - Infinite time - SVNKTSVV - - - - Dragon Fighter (USA) - - Invincibility - EYEVAIEI - - - Invincibility (alt) - 004D:4F - - - Invincible to spikes - AESSILPA - - - Infinite health - SZSVGISA - - - Max Dragon energy - KAUIEGSZ - - - Always shoot special - YYXSYZAE - - - Infinite health (alt) - 0050:08 - - - Max Dragon energy (alt) - 0053:18 - - - Have green shots - 004F:00 - - - Have red shots - 004F:01 - - - Have blue shots - 004F:02 - - - Hard mode - 007B:01 - - - - Dragon Power (USA) - - Infinite health (POW) - SZVOSZVG - - - Start with 128 health (POW) - EAXAILGT - - - Start with 24 Wind Waves (turtle shells) (hold B then press A) - KAOETLSA - - - Infinite health (POW) (alt) - 002E:63 - - - Infinite Wind Waves (turtle shells) (hold B then press A) - 012F:09 - - - Infinite Red Power Pole time (spin attack) - 0036:0F - - - - Dragon Spirit - The New Legend (USA) - - Invincibility and three heads after one hit (blinking) - EXAXEU - - - Infinite health - OZVZOZVG - - - Hit anywhere - OXNLEIES+OXXLOIES - - - Always gold dragon - VEOIKAKA - - - Always blue dragon - KXOIKAKA - - - Invincibility - 0588:00 - - - - Dragon's Lair (USA) - - Infinite E (health) - AEXSGEKY - - - Infinite Candle energy - SXKYUOVK+SXVYXOVK - - - Infinite lives - AAXITVNY - - - Less energy gained on pick-up - IAVNPYAP - - - More energy gained on pick-up - YZVNPYAP - - - Start with Axe - PEUIGIAA - - - Start with Fireball - ZEUIGIAA - - - Start with 1 extra life - NNXSGSUY - - - Start with 6 extra lives - KNXSGSUN - - - Start with 9 extra lives - NNXSGSUN - - - Start on level 2 - PANSZIAA - - - Start on level 3 - ZANSZIAA - - - Start on level 4 - LANSZIAA - - - Infinite E (health) (alt) - 0330:1F - - - Infinite Gold (hundred's digit) - 05EA:FF - - - Infinite Gold (ten's digit) - 05EB:FF - - - Infinite Gold (one's digit) - 05EC:FF - - - - Dragon Warrior (USA) - - Infinite Magic Power - SXOIVLSA - - - Take no damage in swamp - AEVGUIZA - - - Start with 256 gold coins - VVOYYTSA - - - All spells use only one magic point - VKOIVLSA - - - Barriers cause half usual damage - YAKKEVYA - - - - Dragon Warrior II (USA) - - Prince of Midenhall starts with 50 HP - ZUKLUSGP - - - Prince of Midenhall starts with 99 HP - LVKLUSGP - - - Prince of Midenhall starts with 40 strength points - AXKLOIIE - - - Prince of Midenhall starts with 80 strength points - ASKLOIIA - - - Prince of Midenhall starts with 40 agility points - AXKLXIGE - - - Prince of Midenhall starts with 80 agility points - ASKLXIGA - - - Prince of Cannock starts with 50 HP - ZUKLNSYP - - - Prince of Cannock starts with 99 HP - LVKLNSYP - - - Prince of Cannock starts with 40 strength points - AXKLSIGE - - - Prince of Cannock starts with 60 strength points - GUKLSIGE - - - Prince of Cannock starts with 30 agility points - TOKLVIGE - - - Prince of Cannock starts with 60 agility points - GUKLVIGE - - - Prince of Cannock starts with 40 magic points - AXKUEITE - - - Prince of Cannock starts with 60 magic points - GUKUEITE - - - Princess of Moonbrooke starts with 50 HP - ZUKUUIAZ - - - Princess of Moonbrooke starts with 99 HP - LVKUUIAZ - - - Princess of Moonbrooke starts with 25 strength points - POKUOIZE - - - Princess of Moonbrooke starts with 50 strength points - ZUKUOIZA - - - Princess of Moonbrooke starts with 40 agility points - AXKUXITO - - - Princess of Moonbrooke starts with 40 magic points - AXKUKSGO - - - - Dragon Warrior III (USA) - - King gives 255 gold - NYUOYPZU - - - King gives mega-gold - PASPZPAA - - - Player starts with increased strength and/or attack power - YTVUGZYE - - - Player starts with greatly increased strength and/or attack power - VYVUGZYE - - - Player starts with increased agility and/or defense - LTNLPZIA - - - Player starts with greatly increased agility and/or defense - NYNLPZIE - - - Player starts with increased vitality and/or HP - LTNLTZYA - - - Player starts with greatly increased vitality and/or HP - NYNLTZYE - - - Player starts with increased magic, maximum magic points and/or intelligence - LTNULZTA - - - Player starts with greatly increased magic, maximum magic points and/or intelligence - NYNULZTE - - - Player starts with increased luck - ZVELAZGA - - - Player starts with greatly increased luck - VNELAZGE - - - Wizard starts with increased strength and/or attack power - LTVUIZPA - - - Wizard starts with greatly increased strength and/or attack power - VYVUIZPE - - - Wizard starts with increased agility and/or defense - ZTNLZZGA - - - Wizard starts with greatly increased agility and/or defense - NYNLZZGE - - - Wizard starts with increased vitality and/or maximum HP - ZTNLYZZA - - - Wizard starts with greatly increased vitality and/or maximum HP - OPNLYZZE - - - Wizard starts with increased magic, intelligence and/or maximum magic - LTNUGXPA - - - Wizard starts with increased luck - LVELPZZA - - - Wizard starts with greatly increased luck - VNELPZZE - - - Pilgrim starts with increased strength and/or attack power - ZTVUTZLA - - - Pilgrim starts with greatly increased strength and/or attack power - VYVUTZLE - - - Pilgrim starts with increased agility and/or defense - ZTNLLZGA - - - Pilgrim starts with increased vitality and/or maximum HP - LTNUAZLA - - - Pilgrim starts with greatly increased vitality and/or maximum HP - VYNUAZLE - - - Pilgrim starts with increased magic and/or intelligence - LTNUIXAA - - - Pilgrim starts with greatly increased magic and/or intelligence - VYNUIXAE - - - Pilgrim starts with increased luck - ZVELZZLA - - - Pilgrim starts with greatly increased luck - VNELZZLE - - - Soldier starts with increased strength and/or attack power - LTNLAXPA - - - Soldier starts with greatly increased strength and/or attack power - VYNLAXPE - - - Soldier starts with increased agility and/or defense - ZTNLIZZA - - - Soldier starts with increased vitality and/or maximum HP - LTNUZZYA - - - Start with 6 battle-axes - IAOZENNY - - - Start with 6 broadswords - TAOZENNY - - - Start with 6 wizard's wands - YAOZENNY - - - Start with 6 demon's axes - YAOZENNN - - - Start with 6 multi-edge swords - GPOZENNY - - - Start with 6 staffs of force - IPOZENNY - - - Start with 6 swords of illusion - TPOZENNY - - - Start with 6 falcon swords - APOZENNN - - - Start with 6 armor of radiance - AZOZENNN - - - - Dragon Warrior IV (USA) - - No damage and lose no MP - all members (don't combine with the "start with items" codes) - ATVATGSL - - - Start Chapter 1 with 25 gold - POSOAPZU - - - Start Chapter 1 with 100 gold - GVSOAPZL - - - Start Chapter 1 with 255 gold - NNSOAPZU - - - Start Chapter 1 with lots 'o gold - AIXOZAYS - - - Start Chapter 1 with 15 HP - YEEXYXLO - - - Start Chapter 1 with 100 HP - GVEXYXLP - - - Start Chapter 1 with 255 HP - NNEXYXLO - - - Start Chapter 1 with final key - LNKPLONY - - - Start Chapter 1 with metal babble sword - TEKPLONN - - - Start Chapter 1 with multi-edge sword - LOKPLONY - - - Start Chapter 1 with thorn whip - PEKPLONN - - - Start Chapter 1 with shield of strength - AKKPLONY - - - Start Chapter 1 with dragon shield - LKKPLONY - - - Start Chapter 1 with final key and chain sickle - LNKPLONY+GEKPGONY - - - Start Chapter 1 with metal babble sword and boomerang - TEKPLONN+LEKPGONN - - - Start Chapter 1 with multi-edge sword and wizard's ring - LOKPLONY+PSKPGONN - - - Start Chapter 1 with thorn whip and demon hammer - PEKPLONN+ZOKPGONY - - - Start Chapter 1 with shield of strength and meteorite armband - AKKPLONY+ASKPGONY - - - Start Chapter 1 with dragon shield and iron fan - LKKPLONY+IEKPGONN - - - Start Chapter 2 with 50 gold - ZUSOPPGT - - - Start Chapter 2 with 255 gold - NNSOPPGV - - - Start Chapter 2 with lots of gold - AIXOZAYS - - - Start Alena with 100 HP - GVOZAZAP - - - Start Alena with 255 HP - NNOZAZAO - - - Start Alena with final key - LNKOZONY - - - Start Alena with fire claw - ZOKOZONN - - - Start Alena with multi-edge sword - LOKOZONY - - - Start Alena with thorn whip - PEKOZONN - - - Start Alena with boomerang - LEKOLONN - - - Start Alena with final key and fire claw - LNKOZONY+ZOKOLONN - - - Start Alena with multi-edge sword and wizard's ring - LOKOZONY+PSKOLONN - - - Start Alena with thorn whip and demon hammer - PEKOZONN+ZOKOLONY - - - Start Alena with shield of strength and meteorite arm band - AKKOZONY+ASKOLONY - - - Start Alena with dragon shield and iron fan - LKKOZONY+IEKOLONN - - - Start Brey with final key - LNUPLONY - - - Start Brey with magma staff - TOUPLONN - - - Start Brey with multi-edge sword - LOUPLONY - - - Start Brey with thorn whip - PEUPLONN - - - Start Brey with shield of strength - AKUPLONY - - - Start Brey with dragon shield - LKUPLONY - - - Start Brey with boomerang - LEUPGONN - - - Start Brey with final key and magma staff - LNUPLONY+TOUPGONN - - - Start Brey with multi-edge sword and wizard's ring - LOUPLONY+PSUPGONN - - - Start Brey with thorn whip and demon hammer - PEUPLONN+ZOUPGONY - - - Start Brey with shield of strength and meteorite arm band - AKUPLONY+ASUPGONY - - - Start Brey with dragon shield and iron fan - LKUPLONY+IEUPGONN - - - Start Cristo with final key - LNOOLONY - - - Start Cristo with metal babble sword - TEOOLONN - - - Start Cristo with multi-edge sword - LOOOLONY - - - Start Cristo with thorn whip - PEOOLONN - - - Start Cristo with shield of strength - AKOOLONY - - - Start Cristo with dragon shield - LKOOLONY - - - Start Cristo with final key and chain sickle - LNOOLONY+GEOOGONY - - - Start Cristo with metal babble sword and boomerang - TEOOLONN+LEOOGONN - - - Start Cristo with multi-edge sword and wizard's ring - LOOOLONY+PSOOGONN - - - Start Cristo with thorn whip and demon hammer - PEOOLONN+ZOOOGONY - - - Start Cristo with shield of strength and meteorite arm band - AKOOLONY+ASOOGONY - - - Start Cristo with dragon shield and iron fan - LKOOLONY+IEOOGONN - - - Start Chapter 3 with 16 HP - AOEXTZGP - - - Start Chapter 3 with 100 HP - GVEXTZGP - - - Start Chapter 3 with 255 HP - NNEXTZGO - - - Start Chapter 3 with 100 gold - GVSOZPAA - - - Start Chapter 3 with 255 gold - NNSOZPAE - - - Start Chapter 3 with final key - UNUOLONY - - - Start Chapter 3 with metal babble sword - LEUOLONN - - - Start Chapter 3 with multi-edge sword - TOUOLONY - - - Start Chapter 3 with thorn whip - LEUOLONN - - - Start Chapter 3 with shield of strength - PKUOLONY - - - Start Chapter 3 with dragon shield - AKUOLONY - - - Start Chapter 3 with final key and chain sickle - LNUOLONY+GEUOGONY - - - Start Chapter 3 with metal babble sword and boomerang - TEUOLONN+LEUOGONN - - - Start Chapter 3 with multi-edge sword and wizard's ring - LOUOLONY+PSUOGONN - - - Start Chapter 3 with thorn whip and demon hammer - PEUOLONN+ZOUOGONY - - - Start Chapter 3 with shield of strength and meteorite arm band - AKUOLONY+ASUOGONY - - - Start Chapter 3 with dragon shield and iron fan - LKUOLONY+IEUOGONN - - - Start Nara with 100 HP - GVEXLZZP - - - Start Nara with 255 HP - NNEXLZZO - - - Start Nara with final key - LNXPLONY - - - Start Nara with metal babble sword - TEXPLONN - - - Start Nara with multi-edge sword - LOXPLONY - - - Start Nara with thorn whip - PEXPLONN - - - Start Nara with shield of strength - AKXPLONY - - - Start Nara with dragon shield - LKXPLONY - - - Start Nara with final key and chain sickle - LNXPLONY+GEXPGONY - - - Start Nara with metal babble sword and boomerang - TEXPLONN+LEXPGONN - - - Start Nara with multi-edge sword and wizard's ring - LOXPLONY+PSXPGONN - - - Start Nara with thorn whip and demon hammer - PEXPLONN+ZOXPGONY - - - Start Nara with shield of strength and meteorite arm band - AKXPLONY+ASXPGONY - - - Start Nara with dragon shield and iron fan - LKXPLONY+IEXPGONN - - - Start Mara with 100 HP - GVEXGZAP - - - Start Mara with 255 HP - NNEXGZAO - - - Start Mara with final key - LNXOPONY - - - Start Mara with magma staff - TOXOPONN - - - Start Mara with multi-edge sword - LOXOPONY - - - Start Mara with thorn whip - PEXOPONN - - - Start Mara with shield of strength - AKXOPONY - - - Start Mara with dragon shield - LKXOPONY - - - Start Mara with final key and chain sickle - LNXOPONY+GEXOZONY - - - Start Mara with metal babble sword and boomerang - TEXOPONN+LEXOZONN - - - Start Mara with multi-edge sword and wizard's ring - LOXOPONY+PSXOZONN - - - Start Mara with thorn whip and demon hammer - PEXOPONN+ZOXOZONY - - - Start Mara with shield of strength and meteorite arm band - AKXOPONY+ASXOZONY - - - Start Mara with dragon shield and iron fan - LKXOPONY+IEXOZONN - - - Start Chapter 5 with final key - LNOPIONY - - - Start Chapter 5 with zenithian sword - PXOPIONY - - - Start Chapter 5 with zenithian shield - GKOPIONY - - - Start Chapter 5 with zenithian armor - YUOPIONY - - - Start Chapter 5 with zenithian helmet - LKOPIONN - - - - Dr. Chaos (USA) - - Infinite life - GXKIKIST - - - Take minimal damage - OVKIKISV+PEKISIGY - - - Infinite Gun ammo on pick-up - GZEYEEVK - - - More invincibility time - AKSSKIGP - - - Less invincibility time - GESSKIGP - - - Take more damage and Shield Suit has no effect - TVOSSITG+AEOSKIYA - - - Mega-jump - AEEGUZLE - - - Start with Shield Suit - PASKSPAA+ZISKNPLG - - - Start with 99 life - LTKKVPZL - - - Start with less health - PPKKVPZU - - - Invincibility (blinking) - 0073:03 - - - Infinite life (alt) - 0744:FF - - - Infinite Gun ammo - 0746:63 - - - Infinite Machine Gun ammo - 0747:63 - - - Infinite Grenades - 0748:63 - - - - Dr. Jekyll and Mr. Hyde (USA) - - Infinite life - GZXVTKVK+GZXTTSVK - - - Multi-jump - NKNGVYUK+PXNKENOK+PENKOYGA+ENNKXYEI+PENKSYAA+OUNKNYUK - - - Keep coins from previous games - GXNLKVSE - - - Instant game restart - NXNSZEOO - - - Start with 16 coins - KENLKVSE - - - - Dr. Mario (Japan, USA) - - Vitamin capsules don't fall (press down) - GZNEVIVT - - - 5 in a row needed to complete a vertical line instead of 4 - GEXPYGLA - - - 6 in a row needed to complete a vertical line instead of 4 - IEXPYGLA - - - 7 in a row needed to complete a vertical line instead of 4 - TEXPYGLA - - - 5 in a row needed to complete a horizontal line instead of 4 - GAKPPZLA - - - 6 in a row needed to complete a horizontal line instead of 4 - IAKPPZLA - - - 7 in a row needed to complete a horizontal line instead of 4 - TAKPPZLA - - - More pieces sent across to other player when two or more rows or columns are eliminated at once in a 2P game - AUVONUAO - - - No pieces sent across to other player when two or more rows or columns are eliminated at once in a 2P game - GXXOZGVT+GZKPGZVT - - - - Duck Hunt (World) - - Infinite ammo - SZNIPPVG - - - Hit anywhere - AAXSGZSY - - - Always get the perfect bonus - AASIAUZA+ALSIPLEI - - - Ducks never fly away - Game A - IAVKKZVG - - - Enable game "D" (hit select three times) - GEOKTPLA - - - Infinite ammo (alt) - 00BA:03 - - - - Duck Maze (Australia) (Unl) - - Invincibility - SXUUVLAX - - - No breaking eggs from falling - AEEUEUZZ - - - - DuckTales (USA) - - Invincibility - EISVZLEY+EIEEGAEY - - - Infinite health - ATVVXLEZ - - - Infinite health (alt) - AANVSLPA - - - Infinite lives - SXUIEKVK - - - Infinite time - OVUVAZSV - - - Lose half normal health (in easy game) - LAVTNLPA - - - Double usual time - ZAXSKLIE+SXNIUKOU+SZNISESU - - - Multi-jump - EUOTYULU+UVXVALVT+AOUVILEY+NAETLKLL+GXOTPTEY - - - Walk 2x faster - ZEOVYGPA - - - Walk 4x faster - GEOVYGPA - - - Start with 1 life - AAESULZA - - - Start with 6 lives - IAESULZA - - - Start with 9 lives - AAESULZE - - - Invincibility (star effect) - 0075:01 - - - Invincibility (blinking) - 007D:FA - - - Infinite health (alt) - 0342:00+0346:00+034A:00 - - - Infinite time (one's digit) - 0159:09 - - - Infinite time (ten's digit) - 0155:09 - - - Infinite time (hundred's digit) - 0151:09 - - - All levels cleared except the Amazon - 00A0:1E - - - Have the Skeleton Key, Mine Key and Remote Control - 00A1:01+00A3:FF - - - Have $9,000,000 - 0324:09 - - - - DuckTales 2 (USA) - - Invincibility - ESOTVAEY - - - Infinite health - SZONTZSA - - - Infinite lives - GZXGZGVG - - - Infinite lives (alt) - SGXGZGVG - - - Multi-jump - ENVVIPNP+PXVVPOVP+XOVVTPXT+ZKVVGOGK - - - Take more damage - APONPXAA - - - Take less damage - GAONPXAA - - - Take very little damage - ZAONPXAA - - - Have lots of money - PAXSPZAA - - - $5,000 cash from small diamonds - IEKSPLPA - - - $9,000 cash from small diamonds - PEKSPLPE - - - Start with full energy - ASNKPAAL - - - Start with a lot less energy - AONKPAAL - - - Start with 1 life - AAEKAPZA - - - Start with 6 lives - IAEKAPZA - - - Start with 9 lives - AAEKAPZE - - - - Dudes with Attitude (USA) (Rev 1) (Unl) - - Infinite energy - SLUSSIVI - - - Infinite time - SZUSIYVG - - - - Dudes with Attitude (USA) (Unl) - - Infinite energy - SLUSSIVI - - - Infinite time - SZUSIYVG - - - - Dungeon Magic - Sword of the Elements (USA) - - Take no damage except from scorpions - SXVLTLSA - - - Take less damage - OVVLGLSV+ZEVLIUYL - - - Stay at the Inn for free - PXSTLZPG+AXSTYZAG - - - Items at Grocer's shop are free - PXUVXTPG+AXUVVTAG - - - Items at Armory are free - PXENPLPG+AXENILAG - - - Start with 100 gold pieces - GTKIITAA - - - Start with 512 gold pieces - ZAKIITAA+PGKSGTAG - - - - Dynowarz - Destruction of Spondylus (USA) - - Mostly invincible - PANSAEPX+GZNITAVG - - - Infinite shield - AVNTNKXA - - - No harm from spikes - ATSIOGSZ - - - No harm from any dinosaur - AAVNVPLA - - - Mega-jump power - YEXIYLLA - - - Speed up left and right - LANSIZPA - - - Start on level 2 - TAXGLPPA - - - Start on level 3 - ZAXGLPPE - - - Start on level 4 - TAXGLPPE - - - Start on level 5 - ZPXGLPPA - - - - Egypt (Japan) - - Infinite power-ups - OUEPXNOO - - - No steps - SXVAULVT+SXVANLVT - - - No rotates - SZEANGVT+SZEAUGVT - - - - Elevator Action (USA) - - Infinite lives - P1 - GXEUOUVK - - - Can only shoot one bullet - GASTLPTA - - - Slower man - PESIAYLA+NNUSZNSN - - - Faster man - IESIAYLA+XNUSZNSN - - - Faster bullets - ZAVTLOAE+VYVTYOEY - - - Slower bullets - GAVTLOAA+KYVTYOEN - - - Faster enemy - GEONGPZA+XNXNGOVN - - - Slower enemy - PEONGPZA+NNXNGOVN - - - Start with 1 life - P1 - AAULNLZA - - - Start with 6 lives - P1 - IAULNLZA - - - Start with 9 lives - P1 - AAULNLZE - - - Start with 6 lives - P2 - IEVUULZA - - - Start with 9 lives - P2 - AEVUULZE - - - - Eliminator Boat Duel (USA) - - Almost infinite nitros - no on buoy stage - SZVSVNVS - - - Boat starts with full turbo, steering, hull, max engine power - IENEYPPA - - - Have full hull strength - SXUGOEVS - - - Computer boat goes crazy - KAAISZ - - - Start with 0 nitros - AAEEZZGA - - - Start with 36 nitros - IZEEZZGA - - - - Esper Dream 2 - Aratanaru Tatakai (Japan) - - Infinite HP - SZNIIGSA - - - Infinite ESP - SZUTEPSA - - - Quick level up - AEXIYVPE - - - Chests worth lots of gold - AEXOSTPA - - - - Excitebike (Japan, USA) - - Never crash - SZOSKTSP - - - Never crash when holding forward - ATSVIASP+ATVTLASP+ATVSUGSP - - - Never lose speed (even if you crash) - SLNKSTVI - - - Never overheat - SXXTYUVV - - - Recover fast after crashes - YEXIKOYA - - - Reduced enemy bikes in game B - PEXIEZLA - - - Timer runs at half speed - AAUSEYAO - - - Timer runs at quarter speed - GAUSEYAP - - - Turbo speed on button A - ENUKGEAP+GESGPALA - - - Mega turbo speed on button A - EVUKGEAP+TESGPALA - - - Infinite obstacles in design mode - AAEYSAPA - - - Start racing before gate opens - AAEVXXAL+AAXGXSIP+AAXSOXYL+APUSOTEI - - - Press Start to complete current race (uses your race position for the verdict) - AASKOZLA+ZISKEZOL - - - - Exodus - Journey to the Promised Land (USA) (v4.0) (Unl) - - Infinite lives - SZUZKAVI - - - Infinite time - SXNSKIVG - - - - F-1 Race (Japan) - - Invincibility - ATOTPGVT - - - Infinite time - SAUSTPVG - - - Don't lose speed when driving over grass/dirt - SXXIIZSA+SXXSLZSA - - - Don't lose speed when skidding in the road - SXEKYLSA - - - - F15 City War (USA) (v1.1) (Unl) - - Infinite lives - 00E4:09 - - - - F15 City War (USA) (v1.0) (Unl) - - Infinite lives - 00E4:09 - - - - F-15 Strike Eagle (USA) - - Infinite type 1 missiles - 004A:09 - - - Infinite type 2 missiles - 004B:09 - - - Infinite type 3 missiles - 004C:09 - - - Billions of points - 0171:09 - - - - F-117A - Stealth Fighter (USA) - - Invincibility - SXXOATSA - - - Invincibility (alt) - 0026:00 - - - Infinite AAM Missiles - 001F:63 - - - Infinite AGM Missiles - 0020:63 - - - Infinite Flares - 0021:63 - - - Infinite Chaff - 0022:63 - - - Have 5 million+ points - 0175:FF - - - - Family Feud (USA) - - Infinite time to answer a question - SXKKESVK - - - 10 strikes allowed - ZESOGALE - - - - Fantastic Adventures of Dizzy, The (USA) (Unl) - - Infinite lives - SXVIAAVG - - - Spiders, bats, ants and rats do no damage - AAVYPXAA - - - Play bubble sub-game only - YYUZPSTE - - - Play river sub-game only - TYUZPSTE - - - Play mine sub-game only - IYUZPSTE - - - Play puzzle sub-game ony - ZYUZPSTE - - - Start with 10 stars instead of 100 - ZEKYVZGV - - - Start with 10 lives - PAOAZAZE - - - - Fantasy Zone (USA) (Unl) - - Infinite lives - OZEVYTVK - - - Keep bought weapon for a life - OXETOAVK - - - Keep bought weapon until next shop visit - OXETOAVK+OGOVATSE - - - Autofire on all weapons - AAOVKTPA - - - Start with 1 life - PAXVOPLA - - - Start with 6 lives - TAXVOPLA - - - Start with 9 lives - PAXVOPLE - - - Start on level 2 - PASVYYAA - - - Start on level 3 - ZASVYYAA - - - Start on level 4 - LASVYYAA - - - Start on level 5 - GASVYYAA - - - Start on level 6 - IASVYYAA - - - Start on level 7 - TASVYYAA - - - - Faria - A World of Mystery & Danger! (USA) - - Infinite HP - SAOEGPST+SEUUEAST - - - Infinite batteries - SZXGINVK - - - Infinite Bombs - SXOLYOVK - - - Infinite Sede magic - GXSAASVK - - - Infinite Saba magic - GXNEZSVK - - - Get 250 arrows when buying any amount of arrows - AAVZSPZA - - - Don't get charged in shops for items you can afford - GZXXZUSE+GZXXYUSE+GZUZGUSE - - - - Faxanadu (USA) (Rev A) - - Infinite P (health) - GXOGZESV+GXOKLESV - - - Infinite M (magic) - AEENEZZA - - - Infinite Gold - SXXNUOSE+SXUYUOSE+SXUNUOSE - - - Jump in direction you are facing - AVXVGPSZ - - - Slow mode - AAUTAEOY+AAKTPAKY+AAUTZAPA - - - Start with double P (health) - AXXSNTAP - - - Start with triple P (health) - AUXSNTAP - - - Start with half normal amount of Gold - IASEPSZA - - - Start with double normal amount of Gold - GPSEPSZA - - - Invincibility - 00AD:48 - - - Infinite P (health) (alt) - 0431:55 - - - Infinite M (magic) (alt) - 039A:50 - - - Infinite Gold (alt) - 0394:FF - - - Have Wing Boots ability (hold up and A) - 0429:0A - - - Walk faster - 00AA:02 - - - - Faxanadu (USA) - - Infinite P (health) - GXOGZESV+GXOKLESV - - - Infinite M (magic) - AEENEZZA - - - Infinite Gold - SXXNUOSE+SXUYUOSE+SXUNUOSE - - - Jump in direction you are facing - AVXVGPSZ - - - Slow mode - AAUTAEOY+AAKTPAKY+AAUTZAPA - - - Start with double P (health) - AXXSNTAP - - - Start with triple P (health) - AUXSNTAP - - - Start with half normal amount of Gold - IASEPSZA - - - Start with double normal amount of Gold - GPSEPSZA - - - Invincibility - 00AD:48 - - - Infinite P (health) (alt) - 0431:55 - - - Infinite M (magic) (alt) - 039A:50 - - - Infinite Gold (alt) - 0394:FF - - - Have Wing Boots ability (hold up and A) - 0429:0A - - - Walk faster - 00AA:02 - - - - Felix the Cat (USA) - - Infinite time - SUNNGNSO - - - Infinite lives - AEUYKPPA - - - Hearts can't be replenished from bottles - AAEENAZA - - - Bottles replenish more hearts - GAEENAZA - - - Bottles replenish even more hearts - AAEENAZE - - - 1 Felix icon gives 2 - ZAOSOZPA+APNSOXPO - - - Start with 9 lives - APUGAGZO - - - Start with 6 lives - IPUGAGZP - - - Start with 1 life - APUGAGZP - - - Invincibility (blinking) - 03CD:03 - - - Infinite lives (alt) - 03A6:19 - - - Infinite special - 03C0:0A - - - Have 99 Felix icons - 03A7:19+03A8:19 - - - Play as Magic/Balloon Felix - 03C6:01 - - - Play as Buggy/Plane Felix - 03C6:02 - - - Play as Tank Felix - 03C6:03 - - - - Fester's Quest (USA) - - Invincibility - AYIPOG - - - Infinite health - XVEPUKVK - - - Infinite Invisible Potions on pick-up - SZEIYOVK - - - Infinite Missiles on pick-up - SZVVXUVK - - - Infinite Money - SZUSYOSE - - - Infinite Nooses on pick-up - SXUITEVK - - - Infinite Potions on pick-up - SXVSLEVK - - - Infinite T.N.T on pick-up - SZNIYOVK - - - Infinite Vice Grips on pick-up - SXSITEVK - - - Invincibility (alt) - 04F8:C0 - - - Infinite health (alt) - 04E5:03+04E9:03 - - - Max health - 04EA:04 - - - Have level 8 Gun - 04E7:08 - - - Have level 4 Whip - 04E8:04 - - - Infinite Bulbs - 015C:64 - - - Infinite Invisible Potions - 0161:64 - - - Infinite Keys - 015D:64 - - - Infinite Money (alt) - 0162:64 - - - Infinite Missiles - 0163:64 - - - Infinite Nooses - 015E:64 - - - Infinite Potions - 0160:64 - - - Infinite T.N.T - 0164:64 - - - Infinite Vice Grips - 015F:64 - - - - Fighting Road (Japan) - - Infinite health - SXESLTSA - - - - Final Combat (Asia) (PAL) (Unl) - - Infinite health - SXSZAVSE+SXOGGNSE - - - Infinite lives - SZVLOLVI - - - Infinite time - SZNOOSVK - - - - Final Fantasy (USA) - - Almost infinite Gold - GXSZPKSV+GXSXZKSV - - - 999999+ Gold - NYOUTAAE - - - Non-magic users can use level 1 magic - ELEXVLEY+AESGANGA+AESGGNAA - - - LIFE spell never uses up Magic Points - SZULIEVS - - - LIF2 spell never uses up Magic Points - SZVULEVS - - - Magic users start with 6 Magic Points - TESGTYZA - - - Magic users start with 9 Magic Points - PESGTYZE - - - No random battles (enable at start of game) - OOTPVP - - - Double Fighter's Hit Points (enable at start of game) - TGKLPALZ - - - Double Fighter's Hit (enable at start of game) - GPKUAEZA - - - Double Fighter's Evade (enable at start of game) - ZTKUPAIU - - - Double Fighter's Luck (enable at start of game) - ZAKLTAIE - - - Double Thief's Hit Points (enable at start of game) - GLSLPETO - - - Triple Thief's Damage (enable at start of game) - TASLYAZA - - - Double Thief's Hit (enable at start of game) - ZASUAAIE - - - Double Thief's Evade (enable at start of game) - GYSUPEZL - - - Double Thief's Luck (enable at start of game) - TPSLTEYE - - - Double Black Belt's Hit Points (enable at start of game) - ZGVLPAPZ - - - Triple Black Belt's Damage (enable at start of game) - TAVLYAZA - - - Double Black Belt's Hit (enable at start of game) - ZAVUAAIE - - - Double Black Belt's Evade (enable at start of game) - ZTVUPAIU - - - Double Black Belt's Luck (enable at start of game) - ZAVLTAIE - - - Double Red Mage's Hit Points (enable at start of game) - GLNLPETO - - - Double Red Mage's Damage (enable at start of game) - ZANLYAIE - - - Double Red Mage's Hit (enable at start of game) - TANUAAYE - - - Double Red Mage's Evade (enable at start of game) - GYNUPEZL - - - Double Red Mage's Luck (enable at start of game) - ZANLTAIE - - - Double White Mage's Hit Points (enable at start of game) - AUELPEGO - - - Triple White Mage's Damage (enable at start of game) - TEELYAZA - - - Double White Mage's Hit (enable at start of game) - ZEEUAAIE - - - Double White Mage's Evade (enable at start of game) - ZVEUPAIU - - - Double White Mage's Luck (enable at start of game) - ZEELTAIE - - - Double Black Mage's Hit Points (enable at start of game) - ZUOLPEPP - - - Triple Black Mage's Damage (enable at start of game) - LEOLYAPA - - - Double Black Mage's Hit (enable at start of game) - ZEOUAAIE - - - Double Black Mage's Evade (enable at start of game) - GNOUPEZL - - - Double Black Mage's Luck (enable at start of game) - GOOLTEZA - - - Start with 800 Gold - AZOUGAEP+LAOUIAPA - - - More enemies, more difficult - 6D8D:99 - - - No random battles (alt) - 00F5:FF - - - Have Adamant - 6027:01 - - - Have Bottle - 602F:01 - - - Have Canoe - 6031:01 - - - Have Chime - 602C:01 - - - Have Crown - 6022:01 - - - Have Crystal - 6023:01 - - - Have Cube - 602E:01 - - - Have Floater - 602B:01 - - - Have Herb - 6024:01 - - - Have Key - 6025:01 - - - Have Lute - 6021:01 - - - Have Oxyale - 6030:01 - - - Have Rod - 602A:01 - - - Have Ruby - 6029:01 - - - Have Slab - 6028:01 - - - Have Tail - 602D:01 - - - Have TNT - 6026:01 - - - Have first Crystal lit - 6032:01 - - - Have second Crystal lit - 6033:01 - - - Have third Crystal lit - 6034:01 - - - Have last Crystal lit - 6035:01 - - - Character 1 - 255 HP - 610A:FF - - - Character 1 - 99 STR - 6110:63 - - - Character 1 - 99 AGL - 6111:63 - - - Character 1 - 99 INT - 6112:63 - - - Character 1 - 99 VIT - 6113:63 - - - Character 1 - 99 Luck - 6114:63 - - - Character 1 - 255 Damage - 6120:FF - - - Character 1 - 255 Hit % - 6121:FF - - - Character 1 - 255 Absorb - 6122:FF - - - Character 1 - 255 Evade % - 6123:FF - - - Character 1 - Infinite level 1 magic use - 6320:08+6328:08 - - - Character 1 - Infinite level 2 magic use - 6321:08+6329:08 - - - Character 1 - Infinite level 3 magic use - 6322:08+632A:08 - - - Character 1 - Infinite level 4 magic use - 6323:08+632B:08 - - - Character 1 - Infinite level 5 magic use - 6324:08+632C:08 - - - Character 1 - Infinite level 6 magic use - 6325:08+632D:08 - - - Character 1 - Infinite level 7 magic use - 6326:08+632E:08 - - - Character 1 - Infinite level 8 magic use - 6327:08+632F:08 - - - Character 2 - 255 HP - 614A:FF - - - Character 2 - 99 STR - 6150:63 - - - Character 2 - 99 AGL - 6151:63 - - - Character 2 - 99 INT - 6152:63 - - - Character 2 - 99 VIT - 6153:63 - - - Character 2 - 99 Luck - 6154:63 - - - Character 2 - 255 Damage - 6160:FF - - - Character 2 - 255 Hit % - 6161:FF - - - Character 2 - 255 Absorb - 6162:FF - - - Character 2 - 255 Evade % - 6163:FF - - - Character 3 - 255 HP - 618A:FF - - - Character 3 - 99 STR - 6190:63 - - - Character 3 - 99 AGL - 6191:63 - - - Character 3 - 99 INT - 6192:63 - - - Character 3 - 99 VIT - 6193:63 - - - Character 3 - 99 Luck - 6194:63 - - - Character 3 - 255 Damage - 61A0:FF - - - Character 3 - 255 Hit % - 61A1:FF - - - Character 3 - 255 Absorb - 61A2:FF - - - Character 3 - 255 Evade % - 61A3:FF - - - Character 4 - 255 HP - 61CA:FF - - - Character 4 - 99 STR - 61D0:63 - - - Character 4 - 99 AGL - 61D1:63 - - - Character 4 - 99 INT - 61D2:63 - - - Character 4 - 99 VIT - 61D3:63 - - - Character 4 - 99 Luck - 61D4:63 - - - Character 4 - 255 Damage - 61E0:FF - - - Character 4 - 255 Hit % - 61E1:FF - - - Character 4 - 255 Absorb - 61E2:FF - - - Character 4 - 255 Evade % - 61E3:FF - - - - Final Fantasy III (Japan) - - Infinite capacity points. You still have to have enough points to make the job change, but no points will be subtracted from your total - SXOXUUSE - - - All items in shops are free. You must have enough to cover the item, but will not be charged - XVULAASV - - - Knife casts a FIRE spell when used as a item in battle - PUNPGKYY - - - Knife casts a FIRE3 spell when used as a item in battle - TENPGKYN - - - Knife casts a BOLT3 spell when used as a item in battle - IONPGKYY - - - Knife casts a ICE3 spell when used as a item in battle - IONPGKYN - - - Knife casts a DEATH spell when used as a item in battle - PENPGKYY - - - Knife casts a METEO spell when used as a item in battle - ZENPGKYY - - - Knife casts a HEAL spell when used as a item in battle - LENPGKYN - - - Knife casts a CURE4 spell when used as a item in battle - ZENPGKYN - - - Dagger casts a FIRE3 spell when used as a item in battle - TENOGKYN - - - Dagger casts a BOLT3 spell when used as a item in battle - IONOGKYY - - - Dagger casts a ICE3 spell when used as a item in battle - IONOGKYN - - - Dagger casts a DEATH spell when used as a item in battle - PENOGKYY - - - Dagger casts a METEO spell when used as a item in battle - ZENOGKYY - - - Dagger casts a HEAL spell when used as a item in battle - LENOGKYN - - - Dagger casts a CURE4 spell when used as a item in battle - ZENOGKYN - - - Long Sword casts a FIRE3 spell when used as a item in battle - TAXPGSYN - - - Long Sword casts a BOLT3 spell when used as a item in battle - IPXPGSYY - - - Long Sword casts a ICE3 spell when used as a item in battle - IPXPGSYN - - - Long Sword casts a DEATH spell when used as a item in battle - PAXPGSYY - - - Long Sword casts a METEO spell when used as a item in battle - ZAXPGSYY - - - Long Sword casts a HEAL spell when used as a item in battle - LAXPGSYN - - - Long Sword casts a CURE4 spell when used as a item in battle - ZAXPGSYN - - - - Fire Bam (FDS) - - All fire items worth 65,535 - NYEPXZAE - - - Start with 65,534 Fire - VNKIKYOE+NNKISNPE - - - - Fire Dragon (Asia) (Unl) - - One fireball needed to finish the level - 034F:04 - - - Start on stage 50 - 034D:32 - - - - Fire Hawk (USA) (Unl) - - Invincibility - OZOXOTES - - - Start with 1 life - PAOEPALA - - - Start with 6 lives - TAOEPALA - - - Start with 9 lives - PAOEPALE - - - Infinite Missiles - 04DA:1F - - - Infinite ammo - 04DC:1F - - - Infinite fuel - 04F4:26 - - - - Fist of the North Star (USA) - - Invincibility - SXXGAIAX - - - Infinite health - SZSGUGSA - - - Infinite time - SZSVGTVG - - - Infinite lives - SXKKYPVG - - - One hit kills you - OTSGOGSV - - - Sweep kick damages enemies more - TEELTPPA - - - Straight kick damages enemies more - AEOLGPLE - - - Can't be knocked back by big thugs - AAUKVGGA - - - Pogo stick - EISGUPEY - - - Take minimum damage from all enemies - OTSGOGSV+PASGXKOI - - - Any attack mega-damages enemies - OVOUZPSV+ZEOULOOS - - - Start with 1 life - PEKKGALA - - - Start with 6 lives - TEKKGALA - - - Start with 9 lives - PEKKGALE - - - Invincibility (blinking) - 0066 01 - - - Infinite health (alt) - 0073:38 - - - Infinite time (alt) - 0065 09 - - - Infinite power - 006C 07 - - - Infinite Bomb - 0063 07 - - - - Flight of the Intruder (USA) - - Infinite radar-guided missiles - bombing/strafing screen - GZUOZYVG - - - Start with 9 radar-guided missiles - bombing/strafing screen - PAOALZTE - - - Infinite missiles - cockpit screen - GZUOLKVK - - - Start each mission with 6 missiles - OZKZTXOK+AAKXGZPA - - - Start on mission 3 - GAKGKGAA - - - Start on mission 6 - ZAKGKGAE - - - Start on mission 9 - APKGKGAA - - - Start on mission 12 - TPKGKGAA - - - - Flintstones, The - The Rescue of Dino & Hoppy (USA) - - Invincibility - AVOPZOVG - - - Infinite lives - SXOAAEVK - - - Infinite energy (hearts) - SZNTZKVK+SXOPZOVK - - - 15 coins on pick-up - YESTZZIE - - - 2 coins on pick-up - ZESTZZIA - - - Slingshot doesn't use up coins - AAUAXTLA - - - Axe doesn't use up coins - AAUAUTLA - - - Bomb doesn't use up coins - AAUAKVZA - - - Infinite Firepower - AETEKI - - - Max power charge - LOKOEPPA+LPEZLPPA+LOEPLPPA+LPUOLZPA - - - Start with Slingshot - PEEAAPAA - - - Start with Axe - ZEEAAPAA - - - Start with Bomb - GEEAAPAA - - - Start with 1 life - AAVAYPZA - - - Start with 6 lives - IAVAYPZA - - - Start with 9 lives - AAVAYPZE - - - Start with 99 coins - LTNELOZA - - - Infinite energy (hearts) (alt) - 0308:03 - - - Infinite lives - 0305:09 - - - Infinite Coins - 030B:FF - - - Max power charge (alt) - 0312:0C - - - One hit kills on most bosses - 03D7:00 - - - - Flintstones, The - The Surprise at Dinosaur Peak! (USA) - - Invincibility - AVEPKOSA - - - Infinite lives - SXEETEVK - - - Infinite energy - AANONPPA - - - Infinite energy (alt) - SXEPKOSE - - - Infinite stone hammers on pick-up - SXXOUVSE - - - Enemies do more damage (3 hearts) - LANONPPA - - - Get bowling ball instead of stone hammer - ZEEEUYPA - - - Get mystery item instead of stone hammer - LEEEUYPA - - - Continue on Level 2 - PAKAVPAA - - - Continue on Level 3 - ZAKAVPAA - - - Continue on Level 4 - LAKAVPAA - - - Continue on Level 5 - GAKAVPAA - - - Continue on Level 6 - IAKAVPAA - - - Continue on Level 7 - TAKAVPAA - - - Continue on Level 8 - YAKAVPAA - - - Continue on Level 9 - AAKAVPAE - - - Continue on Level 10 - PAKAVPAE - - - Start with max power - GOEATOGA - - - Start with 1 heart - PANELPLA - - - Start with 2 hearts - ZANELPLA - - - Start with 6 hearts - TANELPLA - - - Start with 9 hearts - PANELPLE - - - Start with 1 life instead of 3 - AASALPZA - - - Start with 5 lives - GASALPZA - - - Start with 9 lives - AASALPZE - - - Start on level 2 - VTNEXOSE - - - - Flying Dragon - The Secret Scroll (USA) - - Start with infinite lives - VEKLTAKZ - - - Start with infinite time - GXEEEPVG - - - Start with double KO power - TAOXULLA - - - Start with 1 life - PANATALA - - - Start with 6 lives - TANATALA - - - Start with 9 lives - PANATALE - - - - Flying Hero (Japan) - - Finish levels automatically - 03A9:00 - - - Infinite lives - 0400:03 - - - Max Bounce - 04B0:03 - - - One hit kills on Fires - 0510:80 - - - - Flying Warriors (USA) - - Infinite life - SXNKIKSE - - - Infinite lives - SZVGKOVK - - - Infinite KO's - SXOZPKSE+SZSKLXSE - - - Infnite credits - SZXEZZVG - - - - Formation Z (Japan) - - Invincibility - SZOOTVSE+SZSXPESE+SZSXAKSE+SXXXVUSE+SXEPXNSE+SZVOTNSE+SXOXSXSE+SXUZONSE+SXNXKSSE+SZXOPVSE - - - Infinite fuel - IXSOTTVG - - - - Formula One - Built to Win (USA) - - Infinite nitro - SXUIXEVK - - - Better nitro - ATKSXAAZ - - - Psycho speed - AAVSOAZA - - - Items cost nothing - ATNUVUSZ - - - Items for free - ATNUVUSZ+ATVUKLST - - - - Fox's Peter Pan & the Pirates - The Revenge of Captain Hook (USA) - - Infinite lives - SZOKYLVG - - - Infinite flight meter - SZVSXXVK - - - Slower flight meter - GASSNZGE - - - Faster flight meter - ZASSNZGA - - - Faster flying left and right - ZAUIUZPA+ZAOIVAPA - - - Start with 30 units of health - TONGZKZE+TPXKYUZE - - - Start with 5 units of health - IENGZKZA+IAXKYUZA - - - Start with 1 life - PENKLGLA - - - Start with 6 lives - TENKLGLA - - - Start with 9 lives - PENKLGLE - - - Infinite health - 0051:FF - - - Infinite lives (alt) - 0050:09 - - - Infinite Flight meter (alt) - 0640:FF - - - - Frankenstein - The Monster Returns (USA) - - Invincibility - ZEVKLGAA - - - Invincible after you die once (may get stuck in boss stages) - SZKEPASA+SZEGPASA - - - Infinite health - SXKELLSA+SZNOYASA+SXKEOLSA+SXUOZASA+SXUOGASA - - - Can't collect extra energy - SZEEULSA - - - Die after one hit - EEKAYLEL - - - Start with 0 continue - PEOGYPLA - - - Infinite health (alt) - 007D:08 - - - - Freedom Force (USA) - - Infinite health - GZVAYLSA - - - Infinite ammo - AEUTLYZZ - - - Infinite errors allowed - OXOTYNOK - - - Fewer errors allowed - LEOVAYTA - - - Start with half health - GAKVYVAO - - - Start with half ammo - ZOOTYTGZ - - - Start at level 2 - ZAUTLTPA - - - Start at level 3 - LAUTLTPA - - - Start at level 4 - GAUTLTPA - - - Start at level 5 - IAUTLTPA - - - Infinite health - P1 - 0516:18 - - - Infinite health - P2 - 0526:18 - - - Infinite ammo - P1 - 0515:24 - - - Infinite ammo - P2 - 0525:24 - - - Infinite errors allowed - P1 - 0517:00 - - - Infinite errors allowed - P2 - 0527:00 - - - Infinite time in bonus stages (disable to continue) - 0089:09 - - - Automatically finish stage - 00C2:3C - - - - Free Fall (USA) (Proto) - - Infinite hands - OLNKSVOO - - - Freeze time (disable at end of level so counter can decrease) - SLKIAASP - - - One saved to beat level - OZVSZGSX+IYVSIKEI+PAVSTGGA - - - No score decrease with loss of men - AAOGUTZV+ALOGXTSZ - - - Each dead man, one to score instead of five - LTOGUTZT - - - - Friday the 13th (USA) - - Invincibility - SZEXSYAX - - - Infinite health - SZESKSSE - - - Infinite health for active counselor - OTEIVISV - - - Infinite child save time - SZNUGYAX - - - Infinite children - SZSLUEVK+IYKLSEAY - - - Hit anywhere - AIKIUGEI - - - One hit kills - AEOSOGZP - - - Enemies die automatically - AESGXZZZ - - - No enemies - AEKGKLZA+SXXISXVN - - - Vitamins heal active counselor better - ZZOUAGTE - - - Vitamins heal others better - AZEVXLGE - - - Autofire - INNLIZGY - - - Everyone can jump high - GAEUZIAE - - - Turbo running - SZVLGXOU+YPVLIXAV - - - Throw rocks straight - YEEGIZSZ - - - Start with 55 children - IEVANTPA+YUNESVYA - - - Invincibility (alt) - 0488:03 - - - Infinite health (alt) - 0505:FF - - - Infinite Medicine - 0519:09 - - - Infinite Children - 0504:05 - - - Infinite child save time (alt) - 058D:09 - - - Have the Torch - 0506:00 - - - Have the Knife - 0506:01 - - - Have the Axe - 0506:02 - - - Have the Stone - 0506:03 - - - Have the Cleaver - 0506:04 - - - Have the Pitchfork - 0506:05 - - - Have the Lighter Torch - 0517:01 - - - Have the Flashlight - 0518:01 - - - Have the Key - 051A:01 - - - Jason has no health - 051C:00 - - - Play as George - 0507:00 - - - Play as Mark - 0507:01 - - - Play as Paul - 0507:02 - - - Play as Laura - 0507:03 - - - Play as Debbie - 0507:04 - - - Play as Crissy - 0507:05 - - - Set time - day - 0508:00 - - - Set time - dusk - 0508:01 - - - Set time - night - 0508:02 - - - - G.I. Joe - A Real American Hero (USA) - - Invincibility - ESVOGGEY+XVNPAKAU - - - Infinite health - OLNTYKOO - - - Infinite ammo - SXVXOVSE - - - Infinte time - SXNETUSE - - - Infinite time (alt) - AENATLPA - - - More health - Duke - GOUTKSIA - - - More health - Blizzard - GOUTSSGA - - - More health - Snake Eyes - GOUTVSZA - - - More health - Capt. Grid-Iron - GOUTNSLA - - - More health - Rock and Roll - GOUVESPA - - - Less health - Duke - TEUTKSIA - - - Less health - Blizzard - TEUTSSGA - - - Less health - Snake Eyes - IEUTVSZA - - - Less health - Capt. Grid-Iron - IEUTNSLA - - - Less health - Rock and Roll - GEUVESPA - - - Shorter immunity - ALNVIKAY - - - Longer immunity - NYNVIKAN - - - Max health on pick-up - AAUEPPLA - - - Mega-jump - Duke - AXNVKIYP - - - Mega-jump - Blizzard - AXNVSIZP - - - Mega-jump - Snake Eyes - AXNVVSGP - - - Mega-jump - Capt. Grid-Iron - AXNVNIGP - - - Mega-jump - Rock and Roll - AZETETAP - - - - G.I. Joe - The Atlantis Factor (USA) - - Invincibility - EISPUZEY+XTSPNXAU - - - Infinite health - OUSTLSOO - - - Infinite time - AASEZIPA - - - Infinite Mines - SUOPEUVS - - - Infinite stamina - SXSTLSOP+SUOAISSO - - - Infinite bullets after obtaining a power up shell - GXSUZVSE+GXVLTVSE - - - Don't flash after getting hit - AESVPSAY - - - Flash about half as long after getting hit - PUSVPSAN - - - Each Pow worth increases player level by one - GAXPPYPA - - - Infinite ammo - SXSUZVSE+SXVLTVSE+SXSLIVVK+SXVUPVSE - - - Start with all characters - YUKETLPE - - - Start with 500 bullets - IAEELGPA - - - Start with 1 life - PENVSYIA - - - - Gaiapolis (Asia) (Unl) - - Invincibility - EIKANTEY - - - Infinite time - SZUKVPVG - - - Infinite credits - SXXGSVVK - - - Hit anywhere - AIUPKZEL+APUPSZGX+ASEOEPEL+EUEZTGGN+GKEZIKOS+KXEZYGIA+ZUEOOOAI - - - Get items from anywhere - AINPXZEL+YPNPUXPX - - - - Galactic Crusader (USA) (Unl) - - Invincibility - EIUNTPEY - - - Infinite lives - VXUSUTVG - - - - Galaga - Demons of Death (USA) - - Invincibility - ATNVSAVZ - - - Infinite lives - XVOKVUXK - - - Play challenge stages only - GXOKOTEI - - - Can't be caught by tractor beam - OXSTZPSX+YESTLOPY - - - Press Start for next wave - KPNIPZEA+GANIZZIA+AAVSIZPA - - - Press Start for extra life - GGVSGXOX+EZVSIZPE+UGVSTZSE - - - Start with twin shots - GXEVPAEI - - - Start with 1 life - PAKKKILA - - - Start with 6 lives - TAKKKILA - - - Infinite lives (alt) - 0485:05+0487:05 - - - - Galaga (Japan) - - Invincibility - ATETKOOZ - - - Infinite lives - XVOKVUXK - - - Keep double ship after being destroyed - AVNTKEOZ - - - Only one part to collect - PESEGPGT - - - Always get a perfect bonus - PXVIIEOK+AEVITEAZ - - - Start with double shot - SSVGILEA+PZKGNISO - - - Infinite lives (alt) - 0485:05+0487:05 - - - - Galaxian (Japan) - - Infinite lives - 0042:05 - - - - Galaxy 5000 (USA) - - Infinite time - SLKPAEVS - - - Reduce damage free of charge - GXNXSVSN - - - No damage from falling - SXKZEPAX - - - Take less damage - OXNNVPSX+PENNNOZP - - - More damage from falling - SXUXSOSU+ALVUVYLZ - - - More damage from shots - TEEOZGVV+NUEOLKVN - - - Always in 1st place - P1 - 00AB:00 - - - Always in 1st place - P2 - 00AC:00 - - - Always in 1st place - P3 - 00AD:00 - - - Always in 1st place - P4 - 00AE:00 - - - Infinite time (one's digit) - 069A:09 - - - Infinite time (ten's digit) - 069B:09 - - - Infinite time (hundred's digit) - 069C:09 - - - - Gargoyle's Quest II (USA) - - Invincibility (except Doppelganger when it mimics you) - OESAKAIE - - - Invincible against spikes - KVNVYLIA - - - Infinite fight - OXSELPSX - - - Walk through walls - APOEGLEP - - - - Gauntlet (USA) (Unl) - - Infinite health - SLNAEYSP+SLVPOASP - - - Infinite keys - PAOXVLAE+SAXZOLSZ - - - Infinite time in puzzle and treasure rooms - XVOONAVK - - - Infinite time in puzzle and treasure rooms (alt) - 00C0:1E - - - Have all power-ups - P1 - 00AC:3F - - - Have all power-ups - P2 - 00AD:3F - - - Have Invisibility - P1 - 00AA:01 - - - Have Invisibility - P2 - 00AC:01 - - - Have Invulnerability - P1 - 00AA:20 - - - Have Invulnerability - P2 - 00AC:20 - - - Have Reflective shot - P1 - 00AA:04 - - - Have Reflective Shot - P2 - 00AC:04 - - - Have Repulsiveness - P1 - 00AA:02 - - - Have Repulsiveness - P2 - 00AC:02 - - - Have Super Shot - P1 - 00AA:10 - - - Have Super Shot - P2 - 00AC:10 - - - - Gauntlet (USA) - - Infinite health - SLNAEYSP+SLVPOASP - - - Infinite keys - PAOXVLAE+SAXZOLSZ - - - Infinite time in puzzle and treasure rooms - XVOONAVK - - - Infinite time in puzzle and treasure rooms (alt) - 00C0:1E - - - Have all power-ups - P1 - 00AC:3F - - - Have all power-ups - P2 - 00AD:3F - - - Have Invisibility - P1 - 00AA:01 - - - Have Invisibility - P2 - 00AC:01 - - - Have Invulnerability - P1 - 00AA:20 - - - Have Invulnerability - P2 - 00AC:20 - - - Have Reflective shot - P1 - 00AA:04 - - - Have Reflective Shot - P2 - 00AC:04 - - - Have Repulsiveness - P1 - 00AA:02 - - - Have Repulsiveness - P2 - 00AC:02 - - - Have Super Shot - P1 - 00AA:10 - - - Have Super Shot - P2 - 00AC:10 - - - - Gauntlet II (USA) - - Infinite health - SLXSNNSO+SLETYXSO - - - Take less damage - OTXSSYSV+ZAXSVYAA - - - Infinite keys (new game) - PAOVYAAA+SZVTEUVS - - - Infinite time in treasure rooms - XVOTGXSU - - - Walk through walls - APUVTIEP+ELSVGIEP - - - Weaker poison - ZLVVVIGT - - - Stronger poison - EGVVVIGV - - - 5 super shots on pick-up - IAUTEUZA - - - 20 super shots on pick-up - GPUTEUZA - - - Invincibility lasts longer - AYETVUGU - - - Invincibility doesn't last as long - LPETVUGU - - - Repulsiveness lasts longer - ANNTUXGU - - - Repulsiveness doesn't last as long - LONTUXGU - - - Invisibility lasts longer - AYOTKUGU - - - Invisibility doesn't last as long - LPOTKUGU - - - Infinite health - P1 - 0739:FF - - - Infinite health - P2 - 073A:FF - - - Infinite health - P3 - 073B:FF - - - Infinite health - P4 - 073C:FF - - - Infinite Keys - P1 - 0743:04 - - - Infinite Keys - P2 - 0744:04 - - - Infinite Keys - P3 - 0745:04 - - - Infinite Keys - P4 - 0746:09 - - - Infinite Potions - P1 - 0748:03 - - - Infinite Potions - P2 - 0749:03 - - - Infinite Potions - P3 - 074A:03 - - - Infinite Potions - P4 - 074B:03 - - - Have Invulnerability - P1 - 0707:FF - - - Have Invulnerability - P2 - 0708:FF - - - Have Invulnerability - P3 - 0709:FF - - - Have Invulnerability - P4 - 070A:FF - - - Have Reflective Shot - P1 - 0716:FF - - - Have Reflective Shot - P2 - 0717:FF - - - Have Reflective Shot - P3 - 0718:FF - - - Have Reflective Shot - P4 - 0719:FF - - - Have Repulsiveness - P1 - 0711:FF - - - Have Repulsiveness - P2 - 0712:FF - - - Have Repulsiveness - P3 - 0713:FF - - - Have Repulsiveness - P4 - 0714:FF - - - Have Super Shot - P1 - 071B:0A - - - Have Super Shot - P2 - 071C:0A - - - Have Super Shot - P3 - 071D:0A - - - Have Super Shot - P4 - 071E:0A - - - Have Transportability - P1 - 0720:FF - - - Have Transportability - P2 - 0721:FF - - - Have Transportability - P3 - 0722:FF - - - Have Transportability - P4 - 0723:FF - - - - George Foreman's KO Boxing (USA) - - Infinite health - 036E:43 - - - Knock opponent down with 1 punch - 036F:01 - - - - Ghostbusters (USA) - - Infinite fuel - SXKZAZVG - - - Infinite energy during Gozer fight - SZVYAUSE - - - Immune to ghosts on Zuul stairway - OXOXKPVK - - - Permanent ghost alarm - PAEEXKPX - - - Permanent ghost vacuum - PASPLOPX - - - Self-emptying traps - OXSESGSX - - - Super sprinting up Zuul stairway - AEEZOAPA - - - Stay Puft does not climb building during Gozer fight - SZXYVOVV - - - Gozer dies in one hit - EIUYZLEY - - - No walk up Zuul stairway - AAXXPTYP - - - Start with $1,000,000 - AVVETNTI - - - - Ghostbusters II (USA) - - Invincibility - EINPOYEY+ESVOKIEY - - - Infinite lives - SUKYAUVS - - - Infinite continues - SZXPSXVK - - - Triple continues - TAEGTAZA - - - Rapid-firing proton rifle - ZEEOOXYO - - - All Ghostbusters can mega-jump - KYSOKXVN - - - Shield lasts longer - car scenes - NNXXAPAS - - - Infinite shield - car scenes - SZOXLNVK - - - Start with 1 life - AAXVGGLA - - - Start with 6 lives - IAXVGGLA - - - Start with 9 lives - AAXVGGLE - - - - Ghosts'n Goblins (USA) - - Invincibility - AEVNGIPA - - - Infinite armor - SKITTL - - - Infinite lives - both players - SZEGNOVK - - - Infinite time - SXOITUVK - - - Hit anywhere - ALEYYTEO+ATENATPA+OUKYPSOO+OUUUTVOO - - - Enable stage select (disable after loading stage) - AAVIZEYA - - - Speed up game - ZAKILZLA - - - Slow down game - GAKILZLA - - - Start with Axe - TUNKYIAG - - - Start with Dagger - ZKNKYIAG - - - Start with Fireball - GKNKYIAG - - - Start with Cross - YKNKYIAK - - - Start with Blue Sphere - KXNKYIAK - - - Start with 1 life - both players - PAEKPTLA - - - Start with 6 lives - both players - TAEKPTLA - - - Start with 9 lives - both players - PAEKPTLE - - - Start with 4 lives - P1 - VAEKZVSE - - - Enable stage select (disable after loading stage) - 00A7:0F - - - Automatically complete level - 00BF:01: - - - Game difficulty - normal - 00AA:00 - - - Game difficulty - hard - 00AA:01 - - - Game difficulty - harder - 00AA:02 - - - Game difficulty - hardest - 00AA:03 - - - Game difficulty - expert - 00AA:04 - - - - Ghoul School (USA) - - Invincibility - SZKZOZAX - - - Infinite health - SXSXSUSE - - - Infinite lives - SXEKYVVK - - - Infinite health (alt) - 060A:FF - - - Infinitel lives (alt) - 0467:09 - - - One hit kills on most enemies - 060D:00+060E:00+060F:00+0610:00+0611:00+0612:00+0613:00 - - - - Goal! (USA) - - CPU score adds to your score - OGOKLYEN+OGOKYYEN - - - - Goal! Two (USA) - - Infinite time - Italy, P2 - SZEYAPVG - - - P2 or computer can't score - Italy, P2 - SXNELNSE - - - Start with more KP - Italy, P2 - AZKIANPA - - - Start with a lot of KP - Italy, P2 - AIKIANPA - - - Start with mega KP - Italy, P2 - OPKIANPE - - - Start with more TP - Italy, P2 - AZKIPYYA - - - Start with a lot of TP - Italy, P2 - AIKIPYYA - - - Start with mega TP - Italy, P2 - OPKIPYYE - - - - Godzilla - Monster of Monsters! (USA) - - Infinite life (health) - 018C:30 - - - Infinite power - 0178:30 - - - - Golf Grand Slam (USA) - - Strokes aren't recorded - SXEZGYSA - - - Some shots can be done more accurately - PEXTETIA - - - Wind always at 9 - OZOIPGIX+PAOIZKAX+SXSZZYSA - - - - Golgo 13 - Top Secret Episode (USA) - - Infinite health - SZOETGSA+OXKVXAVK+SXKNNPSA - - - Health does not gradually decrease - SXKVXAVG - - - Infinite bullets in horizontal mode - GXUVXTSA - - - Infinite damage in horizontal mode - GXKNNPSA - - - Infinite damage in pan/zoom mode - GZOEGGST - - - Infinite damage in maze - GZKLZGST - - - Have a health and bullets boost - ZAVKIAAA - - - - Goonies II, The (USA) - - Invincibility - SESEZESX - - - Infinite health - SZSUNTSA - - - Infinite time - SSOOUZVI - - - Infinite lives - SZUGUYVG - - - Infinite Bombs on pick-up - SXUASSVK - - - Infinite Molotov Bombs on pick-up - SZVAESVK - - - Infinite Sling Shots on pick-up - SZNEEVVK - - - Super-jump - YEUAOPZA - - - Mega-jump - LEUAOPZA - - - Better Jumping Boots on pick-up - IEUEKPGA - - - Super-speed - ZESAPAPA - - - Walk through walls - AOSAYVOG+APSAZYEY+SZNAANSE - - - Start with all items - YPVIAGPE - - - Start with Boomerang - IAVIAGPA - - - Start with 4 health cells - GAUIZGZA+AGUIYGAZ - - - Start with 8 health cells - AAUIZGZE+EAUIYGAZ - - - Start with 1 life - PAXSZGLA - - - Start with 6 lives - TAXSZGLA - - - Start with 9 lives - PAXSZGLE - - - Invincibility (alt) - 0516:41 - - - Infinite health (alt) - 0503:20 - - - Infinite lives (alt) - 0022:09 - - - Have all weapons - 050B:FF+050C:FF - - - Have all Implements - 050A:FF - - - Infinite Keys - 0500:08 - - - - Gotcha! - The Sport! (USA) - - Infinite time - AASUTIPA - - - Increase timer to 59 seconds - IAEPOAGA+PAEPVAIE - - - Decrease timer to 25 seconds - ZAEPOAGA+IAEPVAIA - - - Start with double rations of ammo - ZAEOKAPA - - - Enemies never shoot at you - 05F1:63 - - - Infinite ammo - 061A:09+061B:09 - - - Infinite time (alt) - 061E:09+061F:09 - - - - Gradius (USA) - - Infinite lives - both players - SXOOYYVI - - - Keep power capsules - KOXOLYSP - - - Increase force field protection - NNOEKPIE - - - Never lose weapons - YGUONUZS+YGKPUUIL - - - Hit anywhere - AAOKYAAP+AAXKGALA - - - Start with 1 life - both players - AENELZLA - - - Start with 6 lives - both players - IENELZLA - - - Start with 9 lives - both players - AENELZLE - - - - Gradius II (Japan) - - Invincibility - ATENGIAZ - - - - Grand Master (Japan) - - Invincibility - 0420:01 - - - Infinite HP - 044F:20 - - - Infinite MP - 0450:20 - - - Have Armor - 0439:01 - - - Have Axe - 0431:01 - - - Have Boots - 0435:01 - - - Have Cross - 043B:01 - - - Have Diamond - 0437:01 - - - Have Exit Key - 0436:01 - - - Have Harp - 0434:01 - - - Have Hourglass - 043C:01 - - - Have Mirror - 043E:01 - - - Have Morning Star - 0433:01 - - - Have Necklace - 043D:01 - - - Have Potion - 0438:01 - - - Have Red Sword - 0430:01 - - - Have Rod - 0432:01 - - - Have Shield - 043A:01 - - - - Great Waldo Search, The (USA) - - Only need to find Waldo to complete the level - EKEIXTEA - - - Only need to find the magic scroll - EKXSNTAG - - - Faster timer - ZEKKOTPA - - - Much faster timer - GEKKOTPA - - - Play the Super Waldo Challenge - OZSIEEOV+GASIOALA - - - Extra clocks last forever - SXSGKTVG - - - Extra clocks worth nothing - SZXINYVT - - - - Gremlins 2 - The New Batch (USA) - - Invincibility - EYESUIEI - - - Infinite health - SXKEZPVG - - - Infinite lives - SZNETEVK - - - Infinite balloons - SZXEUXVK - - - Start with 5 lives - GAEGEAAA - - - Start with 10 lives - PAEGEAAE - - - Start with 3 balloons - LAEGSAPA - - - Start with 6 balloons - TAEGSAPA - - - Start with only 1 heart - ZAEKXATA+ZEEELATA - - - Start with 4 hearts - AAEKXATE+AEEELATE - - - Invincibility after one hit - 00A9:09 - - - Infinite health (alt) - 00AD:06 - - - Infinite lives (alt) - 057C:03 - - - Infinite Balloons (alt) - 050C:05 - - - Infinite Crystals - 056C:FF - - - One hit kills on bosses - 0360:00 - - - - Guardian Legend, The (USA) - - Invincibility - AVKSLZSZ - - - Infinite health - AAXTIUNY - - - Hit anywhere - AASIYUYT+EGSITLIZ+EISSALEY+PASSPLIE - - - Use up minimum shots - OVOAKLSV+PEOASLAP - - - Never use up shots (To finish the game, save before opening the entrance to corridor 6. Restart with no codes and go through the enterance. Save again, then restart.) - GXOAKLST - - - Start with less health - AXVAIAAG - - - Start with more health - EEVAIAAG - - - Start on area 1 - PAKVELAA - - - Start on area 3 - LAKVELAA - - - Start on area 5 - IAKVELAA - - - Start on area 7 - YAKVELAA - - - Start on area 9 - PAKVELAE - - - Fighter shape (Adventure and Space mode) - 0030:50 - - - Fighter shape in TGL mode (Adventure and Space mode) - 0030:52 - - - Max consecutive firing - 003A:01 - - - Have 2-way shot - 003A:01 - - - Have 3-way shot - 003A:02 - - - Have 4-way shot - 003A:03 - - - Max weapon power - Blue - 003D:01 - - - Max weapon power - Green - 003D:02 - - - Max weapon power - Red - 003D:03 - - - Start on area 10 - 0050:0A - - - Start on Corridor 01 - 0051:01 - - - Start on Corridor 02 - 0051:02 - - - Start on Corridor 03 - 0051:03 - - - Start on Corridor 04 - 0051:04 - - - Start on Corridor 05 - 0051:05 - - - Start on Corridor 06 - 0051:06 - - - Start on Corridor 07 - 0051:07 - - - Start on Corridor 08 - 0051:08 - - - Start on Corridor 09 - 0051:09 - - - Start on Corridor 10 - 0051:0A - - - Start on Corridor 11 - 0051:0B - - - Start on Corridor 12 - 0051:0C - - - Start on Corridor 13 - 0051:0D - - - Start on Corridor 14 - 0051:0E - - - Start on Corridor 15 - 0051:0F - - - Start on Corridor 16 - 0051:10 - - - Start on Corridor 17 - 0051:11 - - - Start on Corridor 18 - 0051:12 - - - Start on Corridor 19 - 0051:13 - - - Start on Corridor 20 - 0051:14 - - - Start on Corridor 21 - 0051:15 - - - Start on Corridor 22 - 0051:16 - - - - Guerrilla War (USA) - - Invincibility - EYSTGGEI+EIETUGEY - - - Infinite lives - both players - SLTKOV - - - Infinite lives - both players (alt) - SZVKOVVS - - - Keep weapon after death - SXUTEUSO - - - Press Start to complete the level - LASKYYPO - - - Start a new game to view the ending - PEXXAEAE - - - Start with 1 life - both players - AELGVP - - - Start with 6 lives - both players - IELGVP - - - Start with 9 lives - both players - PELGVO - - - Invincibility - P1 - 0680:02 - - - Invincibility - P2 - 0681:02 - - - Infinite lives - P1 - 0028:05 - - - Infinite lives - P2 - 0029:04 - - - Infinite time for tank - 04C2:FA - - - Start on stage 2 (disable after loading stage) - 0039:01 - - - Start on stage 3 (disable after loading stage) - 0039:02 - - - Start on stage 4 (disable after loading stage) - 0039:03 - - - Start on stage 5 (disable after loading stage) - 0039:04 - - - Start on stage 6 (disable after loading stage) - 0039:05 - - - Start on stage 7 (disable after loading stage) - 0039:06 - - - Start on stage 8 (disable after loading stage) - 0039:07 - - - Start on stage 9 (disable after loading stage) - 0039:08 - - - Start on stage 10 (disable after loading stage) - 0039:09 - - - - Gumshoe (USA, Europe) - - Gain 1 bullet on pick-up - PASAUALA - - - Gain 6 bullets on pick-up - TASAUALA - - - Timer set to 04:00 - LAKEGYTA - - - Timer set to 10:00 - PAKEGYTE - - - Different attack waves - SAKAVEKE - - - Start with 1 life - PAUENALA - - - Start with 6 lives - TAUENALA - - - Start with 9 lives - PAUENALE - - - Start with 25 bullets - IZSEEAAI - - - Start with 150 bullets - PASEKAAA - - - Start with 250 bullets - ZASEKAAA - - - - Gun Nac (USA) - - Invincibility - AGEZPAAI+AGUXGPAI - - - Infinite lives - SXOZYUSE - - - Infinite special weapons - SXVZTXSE - - - One hit kills - EIEIYYEP - - - Enemies die automatically - AAUZLOAP+AUSSANAO+SAUZTOVK - - - Get items from anywhere - AUVSINKU+AVVSTNAP - - - Invincibility (alt) - 0400:02 - - - Infinite lives (alt) - 018D:03 - - - Infinite Bombs - 018F:04 - - - Weapon level 1 - 0033:00 - - - Weapon level 2 - 0033:01 - - - Weapon level 3 - 0033:02 - - - Weapon level 4 - 0033:03 - - - Weapon level 5 - 0033:04 - - - Weapon level 6 - 0033:05 - - - Weapon level 7 - 0033:06 - - - Weapon level 8 - 0033:07 - - - Weapon type 1 - 0034:00 - - - Weapon type 2 - 0034:01 - - - Weapon type 3 - 0034:02 - - - Weapon type 4 - 0034:03 - - - Weapon type 5 - 0034:04 - - - Bomb power level 2 - 003B:01 - - - Bomb power level 3 - 003B:02 - - - Bomb power level 4 - 003B:03 - - - Turbo power level 2 - 003C:01 - - - Turbo power level 3 - 003C:02 - - - Turbo power level 4 - 003C:03 - - - Turbo power level 5 - 003C:04 - - - Start on level 2 - 0180:02 - - - Start on level 3 - 0180:03 - - - Start on level 4 - 0180:04 - - - Start on level 5 - 0180:05 - - - Start on level 6 - 0180:06 - - - Start on level 7 - 0180:07 - - - Start on level 8 - 0180:08 - - - - Gun.Smoke (USA) - - Infinite lives - SXUYTLVG - - - Keep weapons after death - PEXNALAA - - - Start with all weapons and lots of ammo - PAUTTYAA - - - Start with all weapons, lots of ammo, all 4 boots and all 4 rifle icons - GAUTTYAA - - - Start with 9 lives - PAXVTYLE - - - Start with 25 lives - PPXVTYLE - - - - Gyromite (World) - - Invincible against enemies - SZUZKTAX - - - Invincible against upward crushing - ATOXXOOZ - - - Infinite lives - SUZAAI - - - Climb up through flooring - AESZVZLA - - - Climb down through flooring - AEOZEZLA - - - Slow down timer - ZEAAUS - - - Start with 1 life - PEUAGLIA - - - Start with 10 lives - ZEUAGLIE - - - Start with 20 lives - GOUAGLIA - - - - Gyruss (USA) - - Invincibility - OXSXTASX - - - Infinite lives - AEEOIEZA - - - Never lose twin shots - GEEPIAZA+OEEPYAPA - - - Gain 2 phasers when you die with none - ZEEPYAPA - - - Gain 4 phasers when you die with none - GEEPYAPA - - - Start with 1 ship - PAXEGLGA - - - Start with 10 ships - ZAXEGLGE - - - Start with 4 phasers - GAKEATPA - - - Start with 8 phasers - AAKEATPE - - - Start with twin shots + 1 phaser - OAKEATPA - - - Start with twin shots + 4 phasers - KAKEATPA - - - Start with twin shots + 8 phasers - EAKEATPE - - - - Hammerin' Harry (Europe) - - Infinite energy (except spikes) - SXULUKSE - - - Infinite lives - SZKZKOVK - - - Invincibility - ESSNPTEY+SESYTVSX - - - - Happy Pairs (Asia) (PAL) (Unl) - - Infinite tries - SZKUZAVG - - - Infinite time - SXXUNTVG - - - Infinite autos - SZNLIPVG - - - - Harlem Globetrotters (USA) - - Slower timer - IIUGSOIZ - - - Faster timer - GPUGSOIX - - - Slower shot clock - IIVGKOIZ - - - Faster shot clock - GPVGKOIX - - - - Heavy Barrel (USA) - - Invincibility - AVVUEUPA - - - Invincibility and invisibility on second life - XTOVVEXK - - - Infinite lives - SZOTXTVG - - - Infinite Bombs - SXVVVLVI - - - Infinite Keys - SUKUZISP - - - Infinite Mace - OXNUTNPV - - - Infinite hand weapons on pick-up - both players - ENVVKLEI - - - Infinite hand weapons and firearms on pick-up - both players - OXVVVLVS - - - Hand weapons last 4x longer - AEKVXLII - - - Only 1 hand weapon - ZAOVEPAA - - - Autofire - P1 - ENSTPVSN - - - Autofire - P2 - EYNVINSN - - - Enemies don't fire handguns - XVKZVEXK - - - - Heavy Shreddin' (USA) - - Infinite penalties - SXSOYIVG+SXOPPLVG+SXUOZLVG - - - Select any level - NNUEYLAE - - - Slow timer - AUEXNVAO - - - Faster left and right movement - ZESEKLPA+ZEVEKLPA - - - 1 penalty - PEKAPLGA - - - 8 penalties - AEKAPLGE - - - 16 penalties - AOKAPLGA - - - - Heisei Tensai Bakabon (Japan) - - Invincibility - ESKGLIEY - - - Infinite health - SGOGYPVG - - - Infinite time - SXKEOZSA - - - - Hell Fighter (Asia) (PAL) (Unl) - - Infinite lives - SZSXNSVK+SZVZXSVK - - - - Hello Kitty no Ohanabatake (Japan) - - Invincibility - SXSSLNSE - - - Infinite lives - SLONNKSO - - - - Heracles no Eikou - Toujin Makyou Den (Japan) - - No random battles - AVSVTZAZ - - - - Hogan's Alley (World) - - Hit anywhere - Game B - AAOSIASY+AAXSPGEA - - - 5 misses allowed - Game A - IAEKOIAP - - - 20 misses allowed - Game A - AZEKOIAP - - - Infinite misses allowed - all games - AAOGETPA - - - Each miss counts as 2 - all games - ZAOGETPA - - - Infinite misses allowed - all games (alt) - 00B3:00 - - - - Holy Diver (Japan) - - Invincibility - AVNYNESA - - - Infinite health - SXNYNESE - - - Infinite lives - SXKVTOVK - - - - Home Alone 2 - Lost in New York (USA) - - Infinite power units/life points - SZNYSSVK - - - Become almost invincible after losing 1 life point (against most enemies, vacuum cleaner can still kill you) - SZSVLVVK - - - Infinite lives - SZEYKVVK - - - Infinite slides on pick-up - SZOELKVK - - - Infinite darts on pick-up - SZVETKVK - - - Infinite flying fists on pick-up - SZSAAKVK - - - Every 4 cookies count as 8 - AENYVGGE - - - Every 4 cookies count as 12 - GENYVGGE - - - Every 4 cookies count as 16 - AONYVGGA - - - Every 4 cookies count as 20 (extra life point) - GONYVGGA - - - Extra life with 5 pizza slices instead of 6 - IAOVUGTA - - - Extra life with 4 pizza slices - GAOVUGTA - - - Extra life with 3 pizza slices - LAOVUGTA - - - Extra life with 2 pizza slices - ZAOVUGTA - - - Extra life with every pizza slice - PAOVUGTA - - - Start with 1 life instead of 3 - PEEPILLA - - - Start with 5 lives - IEEPILLA - - - Start with 7 lives - YEEPILLA - - - Start with 9 lives - PEEPILLE - - - Start with 25 lives - POEPILLE - - - Start with 50 lives - ZUEPILLA - - - Start with 75 lives - LKEPILLE - - - Start with 99 lives - LVEPILLA - - - - Hook (USA) - - Infinite health - P1 - GZVIKIST - - - Infinite health - P2 - GZNSNIST - - - Infinite lives - P1 - SZONIEVK - - - Max health from food - P1 - AENIOIIA - - - Max health from food - P2 - AAEINTIA - - - No health from food - AVVIXSGZ - - - Start with 1 life - AEXVNTZA - - - Start with 6 lives - IEXVNTZA - - - Start with 9 lives - AEXVNTZE - - - Infinite health - P1 (alt) - 0365:6F - - - Infinite lives - P1 (alt) - 0367:09 - - - Max Green Balls - 0363:63 - - - Infinite Cakes - 0487:63 - - - Max Green Thimbles - 0364:63 - - - - Hudson Hawk (USA) - - Infinite health - SXETGYSA - - - Infinite lives - OZSKYYUK+OZVGZYEN - - - Infinite continues - OZKKEAAU+OZKGVAVK - - - Start with very little health - first life only - PEVKZVNY - - - Start with 1/4 health - first life only - AKVKZVNY - - - Start with 1/2 health - first life only - ANVKZVNY - - - Start with 3/4 health - first life only - EUVKZVNY - - - Start with 1 continue - PESKPTLA - - - Start with 5 continues - IESKPTLA - - - Start with 9 continues - PESKPTLE - - - Start with 1 life - PEVGTTIA - - - Start with 3 lives - LEVGTTIA - - - Start with 9 lives - PEVGTTIE - - - - Hudson's Adventure Island (USA) - - Invincibility - ATSKZAKZ - - - Infinite health - SXKKIAVG - - - Immune to rocks - GXNGLAKA - - - Keep weapons - GZXEAPSA - - - Hit anywhere - AAKGTOKI+AAKKYPYA+OLSGZOOO - - - Multi-jump - GXVAGGEI+GXVEPGEI - - - Get fruits from anywhere - EIUEOLEL - - - Collectable items never disappear - ATKAEUVI - - - Can mega-jump while at rest - SPEEIIEG - - - Can mega-jump while running - SPEETSOZ - - - Multi-mega-maxi-moon jumps - AAEAYIPA+AEVEZGPZ - - - Skateboard doesn't automatically move forward - ALSAIIEI - - - Hudson can moonwalk - AEKAPIPA+PEEEZIAA - - - Start with infinite lives - SZOEGPVG - - - Start with 1 life - PEEEPALA - - - Start with 6 lives - TEEEPALA - - - Start with 9 lives - PEEEPALE - - - - Hunt for Red October, The (USA) (Rev A) - - Infinite lives - SXEZXZVG - - - Infinite time - SXEUPUVK - - - Infinite horizontal torpedoes - SXUXYSVK - - - Infinite vertical torpedoes - SZUZPVVK - - - Maximum power horizontal torpedoes on pick-up - OZEUEKOK+AAEUVGPA - - - Maximum power vertical torpedoes on pick-up - OZSLNKOK+AASUSGPA - - - Start with 10 horizontal torpedoes - ZANLVKPO - - - Start with 50 horizontal torpedoes - ZLNLVKPP - - - Start with 99 horizontal torpedoes - LTNLVKPP - - - Start with 5 vertical torpedoes - IANUUKYA - - - Start with 50 vertical torpedoes - ZLNUUKYA - - - Start with 99 vertical torpedoes - LTNUUKYA - - - Start with 5 caterpillars - IEELSKZA - - - Start with 50 caterpillars - ZUELSKZA - - - Start with 99 caterpillars - LVELSKZA - - - Start with 5 ECM's - IEEUXKZA - - - Start with 50 ECM's - ZUEUXKZA - - - Start with 99 ECM's - LVEUXKZA - - - Start with 1 life - PEVLYAIA - - - Start with 10 lives - ZEVLYAIE - - - - Hydlide (USA) - - Boost strength, life, magic - AZKAAVZE - - - Super boost strength, life, magic - GTKAAVZA - - - Don't take damage from most enemies - SXSGYYSA - - - Rapid healing - AEUEKVIA - - - Rapid magic healing - AANOVZZA - - - Infinite life - 0038:64 - - - Max STR - 0039:64 - - - Max EXP - 003A:64 - - - Max Magic - 003B:64 - - - Have the Sword - 0059:FF - - - Have the Shield - 005A:FF - - - Have the Lamp - 005B:FF - - - Have the Cross - 005C:FF - - - Have the Pot - 005D:FF - - - Have the Medicine - 005E:FF - - - Have the Key - 005F:FF - - - Have the Ruby - 0060:FF - - - Have the Ring - 0061:FF - - - Have the Jewel - 0062:FF - - - Have 3 Fairies - 0063:FF+0064:FF+0065:FF - - - - Ice Climber (USA, Europe) - - Invincibility - ATKSALAZ - - - Infinite lives - OKEIPGVS - - - Super-jump - GPUKOAZX - - - Enemies bump you instead of killing you - ELKITLEY - - - Double speed - VNSKXUNN+ZESKULPA - - - Triple speed - SNSKXUNN+LESKULPA - - - Start with 1 life - AEXKTGLA - - - Start with 6 lives - IEXKTGLA - - - Start with 9 lives - AEXKTGLE - - - - Ikari Warriors (USA) (Rev A) - - Invincibility - SXVYAUGK - - - Invincibility (except against bombs) - ESVLZYEY - - - Invincibility (blinking) - KAXTLAEA - - - Infinite lives - SXSNZTVI - - - Infinite Missiles for Tank - SXXNVUVS - - - Infinite Bullets - SZONZSVS - - - Infinite Grenades - SXEYZSVS - - - Enemies die automatically - AAKLAYLY+AAOPYOGP+ASUUSPEL+GXOEATEP - - - Hit anywhere (except tanks and helicopters) - AEXUOPPA+LUXUUPLO+OKXUEOPX - - - Start with 1 life - PAUYPTLA - - - Start with 6 lives - TAUYPTLA - - - Start with 9 lives - PAUYPTLE - - - Start with 50 Bullets - ZUNNLZLT - - - Start with 99 Grenades - LTEYALZL - - - Start with 25 Grenades - PPEYALZU - - - Infinite lives - P1 - 00E4:09 - - - Infinite lives - P2 - 00E5:09 - - - Infinite Bullets - P1 - 067F:63 - - - Infinite Bullets - P2 - 0682:63 - - - Infinite Grenades - P2 - 0680:63 - - - Infinite Grenades - P1 - 0681:63 - - - Infinite Fuel for tank - P1 - 0683:FF - - - Infinite Fuel for tank - P2 - 0684:FF - - - Have 3-Way Shot, B Grenades, Super Speed, Knife - P1 - 0674:DF - - - Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P1 - 0674:EF - - - Have 3-Way Shot, B Grenades, Super Speed, Knife - P2 - 0675:DF - - - Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P2 - 0675:EF - - - - Ikari Warriors (USA) - - Invincibility - SXVYAUGK - - - Invincibility (except against bombs) - ESVLZYEY - - - Invincibility (blinking) - KAXTLAEA - - - Infinite lives - SXSNZTVI - - - Infinite Missiles for Tank - SXXNVUVS - - - Infinite Bullets - SZONZSVS - - - Infinite Grenades - SXEYZSVS - - - Enemies die automatically - AAKLAYLY+AAOPYOGP+ASUUSPEL+GXOEATEP - - - Hit anywhere (except tanks and helicopters) - AEXUOPPA+LUXUUPLO+OKXUEOPX - - - Start with 1 life - PAUYPTLA - - - Start with 6 lives - TAUYPTLA - - - Start with 9 lives - PAUYPTLE - - - Start with 50 Bullets - ZUNNLZLT - - - Start with 99 Grenades - LTEYALZL - - - Start with 25 Grenades - PPEYALZU - - - Infinite lives - P1 - 00E4:09 - - - Infinite lives - P2 - 00E5:09 - - - Infinite Bullets - P1 - 067F:63 - - - Infinite Bullets - P2 - 0682:63 - - - Infinite Grenades - P2 - 0680:63 - - - Infinite Grenades - P1 - 0681:63 - - - Infinite Fuel for tank - P1 - 0683:FF - - - Infinite Fuel for tank - P2 - 0684:FF - - - Have 3-Way Shot, B Grenades, Super Speed, Knife - P1 - 0674:DF - - - Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P1 - 0674:EF - - - Have 3-Way Shot, B Grenades, Super Speed, Knife - P2 - 0675:DF - - - Have F Shot, Long Range, Rapid Fire, B Grenades, Super Speed, Knife - P2 - 0675:EF - - - - Ikari Warriors II - Victory Road (USA) - - Infinite health - OUOUIUOO - - - Don't take damage from most enemies - GXOLYLST - - - Start with half normal health - AUNYIYAT - - - Maximum weapon power on pick-up - OZUXVEPV+GAUXNAPA - - - Infinite health (alt) - 06D1:32 - - - Infinite hearts - 00F8:80 - - - Have Machine Gun - 06C3:04 - - - Start with and keep Arrow - 00F2:01 - - - Start with and keep Bazooka - 06C5:04 - - - Start with and keep Boomerang - 06C7:04 - - - Start with and keep Earthquake - 00EC:01 - - - Start with and keep Elixir - 00F6:01 - - - Start with and keep Grenades - 06CB:04 - - - Start with and keep Land Mines - 06CD:04 - - - Start with and keep Lightning - 00EA:01 - - - Start with and keep Shield - 00F0:01 - - - Start with and keep Sword - 06C9:04 - - - Start with and keep Time Stopper - 00F4:01 - - - Start with and keep Wings - 00EE:01 - - - - Ikari III - The Rescue (USA) - - Invincibility - SZKLUZAX - - - Infinite health - SLSUNESO - - - Infinite lives - AEUGNYPA - - - Infinite lives (alt) - SUUKKNSO - - - Immune to most kicks and punches - GZSUOAST - - - 3-way firing, instead of punching - YESKVGPA - - - Always throw grenades instead of punches - PESKVGPE - - - 1 life after continue - PEXKZLLA - - - 6 lives after continue - TEXKZLLA - - - 9 lives after continue - PEXKZLLE - - - Start with 1 life - PEOKUALA - - - Start with 6 lives - TEOKUALA - - - Start with 9 lives - PEOKUALE - - - - Image Fight (USA) - - Invincibility - ENKXYGEI+ENOPLPEI - - - Infinite lives - both players - SXSZTPVG - - - Never lose Pods - ATSLTKOZ - - - Start with V Cannon - PAELGGAA - - - Start with Reflecting Ball - ZAELGGAA - - - Start with Drilling Laser - LAELGGAA - - - Start with Seeking Missile - GAELGGAA - - - Start with Seeking Laser - IAELGGAA - - - Start with 1 life - both players - PAVXLPLA - - - Start with 6 lives - both players - TAVXLPLA - - - Start with 9 lives - both players - PAVXLPLE - - - Start at Combat Simulation Stage 2 - PAVZLPAA - - - Start at Combat Simulation Stage 3 - ZAVZLPAA - - - Start at Combat Simulation Stage 4 - LAVZLPAA - - - Start at Combat Simulation Stage 5 - GAVZLPAA - - - Start at Real Combat - 1st Target - IAVZLPAA - - - Start at Real Combat - 2nd Target - TAVZLPAA - - - - Immortal, The (USA) - - Enemy's fatigue level doesn't go down - GZOLIXVK - - - Your fatigue level doesn't go down - GZOUIXVK - - - Your fatigue level goes down faster - YLEUIXYN - - - Your fatigue level goes down slower - NYEUIXYN - - - Don't lose energy from fighting - SZSLTXVK - - - Your fatigue level never rises - SZNLPXVV - - - More damage from fireballs - ZAKSIYPA - - - Instant kills on enemies - 0362:00 - - - Infinite health in battle sequences - 0363:0F - - - Infinite Gold - 042C:FF - - - - Incredible Crash Dummies, The (USA) - - Invincibility - EIUXYYEY - - - Infinite health - KZVGGNKE - - - Infinite lives - KZNKANKE - - - Invincibility (blinking) - 053C:01 - - - - Indiana Jones and the Last Crusade (USA) (UBI Soft) - - Infinite health (you can get trapped in certain areas) - VYONKZGE - - - Infinite time - AEEOYTPA - - - Infinite credits - SXXXIEVK - - - Infinite lives - KYSTEGGE - - - Infinite lives on bike section - SZUEEIVG - - - More lives on ship section - PAVAGYIE - - - Fewer lives on ship section - PAVAGYIA - - - More lives on tank section - PAEPIITE - - - Fewer lives on tank section - PAEPIITA - - - More lives on castle section - PEXPTALE - - - Fewer lives on castle section - PEXPTALA - - - Heart does nothing (may goof up energy bar) - AEKPXLPA - - - Super-jump - IAVTKAPA - - - Mega-jump - PAVTKAPE - - - Continue with 1 life - PEUZPALA - - - Continue with 5 lives - IEUZPALA - - - Continue with 7 lives - YEUZPALA - - - Continue with 9 lives - PEUZPALE - - - Start with 1 life - PAVKGALA - - - Start with 5 lives - IAVKGALA - - - Start with 7 lives - YAVKGALA - - - Start with 9 lives - PAVKGALE - - - Start on level 2 (after completing the level you'll go back to level 1) - PANGPAAA - - - Start on level 3 (after completing the level you'll go back to level 1) - ZANGPAAA - - - Start on level 4 (after completing the level you'll go back to level 1) - LANGPAAA - - - Start on level 5 (after completing the level you'll go back to level 1) - GANGPAAA - - - Start on level 6 (after completing the level you'll go back to level 1) - IANGPAAA - - - - Indiana Jones and the Last Crusade (USA) (Taito) - - Infinite health - SAOOLOIE - - - - Indiana Jones and the Temple of Doom (USA) (Rev A) - - Infinite lives - SZEXOKVK - - - Infinite time - SZXZAEVK - - - Always keep Sword - SZSZGUVK - - - Always keep Gun - SZUXZVVK - - - Start with less time - GLKUXGLV+LVEXUUGL+LTOXVKGL - - - Start with 1 life - AEKLULGA - - - Start with 10 lives - PEKLULGE - - - Start with 15 lives - TEKLULGE - - - Start on level 2 - PPKLEKYA - - - Start on level 4 - IPKLEKYA - - - Start on level 6 - PPKLEKYE - - - Start on level 8 - IPKLEKYE - - - 0 Maps left - 012F:00 - - - Have all 3 Keys - 011D:B0 - - - - Indiana Jones and the Temple of Doom (USA) - - Infinite lives - SZEXOKVK - - - Infinite time - SZXZAEVK - - - Always keep Sword - SZSZGUVK - - - Always keep Gun - SZUXZVVK - - - Start with less time - GLKUXGLV+LVEXUUGL+LTOXVKGL - - - Start with 1 life - AEKLULGA - - - Start with 10 lives - PEKLULGE - - - Start with 15 lives - TEKLULGE - - - Start on level 2 - PPKLEKYA - - - Start on level 4 - IPKLEKYA - - - Start on level 6 - PPKLEKYE - - - Start on level 8 - IPKLEKYE - - - 0 Maps left - 012F:00 - - - Have all 3 Keys - 011D:B0 - - - - Infiltrator (USA) - - Infinite time - SZKLIKVK - - - Never lose Grenades outside buildings - SXKXXIVG - - - Never lose Grenades inside buildings - SZVKAIVG - - - Never lose Spray outside buildings - SXUXKIVG - - - Never lose Spray inside buildings - SZUKYIVG - - - Start with less time - ILOULXPL - - - Start with more Grenades - ZPSLPXZA - - - Start with fewer Grenades - IASLPXZA - - - Start with no Grenades - AASLPXZA - - - Start with less Spray - LPKUIZTZ - - - Start with no Spray - AAKUIZTZ - - - - Insector X (Japan) - - Invincibility - 00CA:00 - - - Infinite lives - 00D8:03 - - - Max shot power-up - 00CC:06 - - - - Iron Tank - The Invasion of Normandy (USA) - - Infinite health - SLUVKESO - - - Infinite lives - OIOGIIPA+SXUKTKVK - - - Start with 1 life - OIOGIIPA+AAUKGGZA - - - Start with 6 lives - OIOGIIPA+IAUKGGZA - - - Start with 9 lives - OIOGIIPA+AAUKGGZE - - - Infinite health (alt) - 0306:FF - - - Infinite lives (alt) - 01D1:09 - - - - IronSword - Wizards & Warriors II (USA) - - Infinite lives - OXXANAVK - - - Infinite continues - OZUAXPVK - - - Infinite spells - GXXSNKVS - - - Infinite money - ZEOSEGAA - - - Infinite keys once one is obtained - SEOOTISZ - - - Super-jump - OTUIGLSV+PAUIILVE - - - Food gives full health - AEEOEAZA - - - Drink gives full health - AAOPNPZA - - - Fleet foot jumping - AASIYPLA - - - Fleet foot running - OXKSYUPX - - - Start with Axe and Helmet - LEVEXZAA - - - Start with Shield - ZEVAVXNY - - - Start with Ironsword - AAOAGUGA - - - Start on wind level - LEEEPZAE - - - Start on tree level - GOEEPZAA - - - Start on water level - TOEEPZAA - - - Start on outer fire level - IOEEPZAA - - - Start on lower earth level - LUEEPZAA - - - Start on lower icefire mountain - PUEEPZAA - - - Start a new game with full magic - NYEAVLAE - - - Start with 1 life - PENAEZLA+PESEXPLA - - - Start with 6 lives - TENAEZLA+TESEXPLA - - - Infinite health (disable at end of stage) - 006A:FF - - - Infinite magic once obtained (disable at end of stage) - 006B:FF - - - Infinite Keys - 006C:08 - - - Infinite money (alt) - 0096:0A+008B:64 - - - Have the Sindarin Treasures - 00F7:0F - - - Have the Dagger - 0067:00 - - - Have the Sword - 0067:01 - - - Have the Long Sword - 0067:02 - - - Have the Axe - 0067:03 - - - Have the Large Sword - 0067:04 - - - Have the Ironsword - 0067:05 - - - Have the Diamond Sword - 0067:06 - - - Have the Helmet - 0068:01 - - - Have the Horned Helmet - 0068:02 - - - Have the Diamond Helmet - 0068:03 - - - Have the Large Shield - 0069:01 - - - Have the Diamond Shield - 0069:02 - - - - Isolated Warrior (USA) - - Invincibility - OXOPKZAU+SEOPVZSZ+UVKTAYXZ - - - Infinite health - XTVSGGTX - - - Infinite lives - SZUVPAVG - - - Infinite Bombs - SZXOXSVK - - - More health restored on pick-up - TEOAAYZA - - - Less health restored on pick-up - PEOAAYZA - - - Start with maximum health and Bombs - AASVTXPA - - - Start with 1 life - PAXTIZLA - - - Start with 6 lives - TAXTIZLA - - - Start with 9 lives - PAXTIZLE - - - Start on Scene 2 - PANEGAAA+VANEYESE+VEEAZESE - - - Start on Scene 3 - ZANEGAAA+VANEYESE+VEEAZESE - - - Start on Scene 4 - LANEGAAA+VANEYESE+VEEAZESE - - - Start on Scene 5 - GANEGAAA+VANEYESE+VEEAZESE - - - Start on Scene 6 - IANEGAAA+VANEYESE+VEEAZESE - - - Invincibility (alt) - 00E3:00 - - - Full Power Gun #1 - 00A4:0C - - - Full Power Gun #2 - 00A5:0C - - - Full Power Bombs - 06A8:04 - - - Full speed - 00DA:04 - - - - Ivan 'Ironman' Stewart's Super Off Road (USA) - - Infinite money - GGUTGGOU+GGUTIGAV+KTUTTKAL - - - Infinite nitro boosts - AEKISPPA - - - Lots of money and full equipment - TEKTYGAA - - - Computer starts with no nitro boosts - AAUEIEPP - - - Computer starts with double nitro boosts - ZLUEIEPP - - - Start with double nitro boosts - ZLEVZSPP - - - Start with 1 life - PENTYGLA - - - Infinite lives - P1 - 075D:03 - - - Infinite money - P1 - 0305:09+0306:09+0307:09+0308:09 - - - Infinite nitro boosts - P1 - 0310:63 - - - - Jackal (USA) - - Invincibility - both players - ASUVZIEI - - - Infinite lives - both players - SZPTSI - - - Keep weapons after death - GXZTSG - - - Full weapons after death - LEZTKG - - - Start with 1 life - both players - PAPKXZ - - - Start with 9 lives - both players - PAPKXX - - - Invincibility - P1 - 0053:01 - - - Invincibility - P2 - 0531:01 - - - Infinite lives - 0031:09 - - - Max Score - 07E4:99+07E5:99+07E6:99 - - - Start on level 2 - 0030:01 - - - Start on level 3 - 0030:02 - - - Start on level 4 - 0030:03 - - - Start on level 5 - 0030:04 - - - Start on level 6 - 0030:05 - - - - Jackie Chan's Action Kung Fu (USA) - - Invincibility - ESSINLEY - - - Infinite health - VXEGXXSE - - - Infinite special attacks - SXSKEXVK - - - Take less damage - PTYSEK - - - Hit anywhere - GKKEAZSK+OVKEPXPA+XEKEZZEP - - - Multi-jump - AEOTTIGA - - - 9 Tornado Attacks on pick-up - PESIKYYE - - - 9 360o Spin Kicks on pick-up - PESIVYYE - - - 9 Sky Attacks on pick-up - PESINYYE - - - 0 Tornado Attacks on pick-up - AESIKYYA - - - 0 180o Spin Kicks on pick-up - AESISNPA - - - 0 360o Spin Kicks on pick-up - AESIVYYA - - - 0 Sky Attacks on pick-up - AESINYYA - - - Max health from Energy Bowl - TAVGXZZA - - - Less health from Energy Bowl - PAVGXZZA - - - Infinite health (alt) - 0702:07 - - - Infinite first special move - 0703:05 - - - Infinite second special move - 0705:09 - - - One hit kills on bosses - 0039:00 - - - - James Bond Jr (USA) - - Invincibility - EINLYPEY+EYNUYPEI - - - Infinite health - SZNYASSO - - - Infinite weapons (Bombs, Flares, Nukes, Bullets) - AANNSLPA - - - Immune to most damage - GZVYPIST - - - Infinite lives - SXEKSOVK - - - Slow down rate of air loss (scuba mode) - YUSOENYO - - - Speed up rate of air loss - YESOENYO - - - Shield doesn't take damage from bullets - GZUYZIST - - - Start with some weapons - XVOTAEXE - - - Start with 2 lives - PANTTATA - - - Start with 15 lives - TANTTATE - - - Infinite Pistol ammo - 040F:63 - - - Infinite lives - 042C:09 - - - Infinite time (minute ten's digit) - 01F9:09 - - - Infinite time (minute one's digit) - 01FA:09 - - - Infinite time (second ten's digit) - 01FB:09 - - - Infinite time (second one's digit) - 01FC:09 - - - - Jaws (USA) - - Infinite lives - SZSATSVK - - - Infinite shells - SZVEYNSE - - - Jaws has no health - AEKEPIGP+AESEGZGP+SZKEISSE - - - Hit anywhere - AAOOEPIP - - - Hit anywhere - bonus stages - ASXILLEP+GXKITLEL+GXKIZLEI - - - Don't lose shells on dying - SZSELSTK - - - Don't lose power on dying - SZSETSVK - - - Collect Crabs from anywhere - AENXLSTP - - - Collect Shells from anywhere - AANZPTTZ - - - Collect Stars from anywhere - AEVZTVZZ - - - 99 Shells on pick-up - AEEZITIA - - - Start with 1 life - PEOAGZLA - - - Start with double lives - TEOAGZLA - - - Invincibility (disable to collect items) - 9966:07 - - - Infinite lives (alt) - 0387:09 - - - Infinite Strobes - 0393:09 - - - Exit stage when hit instead of dying - 8515:3A - - - Jaws has very little health - 0389:00 - - - Jaws is attacked without actually shooting him - 993D:10 - - - - Jetsons, The - Cogswell's Caper (USA) - - Infinite lives - SZSLXVVK - - - Infinite hearts - SZEELUVK - - - Better start (more lives and hearts) - IEEPPILA - - - Don't lose extra hearts on dying - GXVLEVVK - - - 2 power packs on pick-up - ZEVEZLPA - - - 5 power packs on pick-up - IEVEZLPA - - - Small hearts gives full health - AAKAIGTA - - - Defenses don't use up powerpacks - GXUENESE - - - Shield uses fewer powerpacks - IAUAKAAZ - - - Flashlight uses fewer powerpacks - ZENEIYAP - - - Start with 30 powerpacks - AUEOGIAP - - - Start with 50 powerpacks - ASEOGIAP - - - Invincibility - 0126:00 - - - Invincibility (blinking) - 0127:02 - - - Infinite health - 0141:03 - - - Infinite lives - 0142:0A - - - - Jimmy Connors Tennis (USA) - - Only need 15 points to win game - AEVTIPLA - - - Only need 30 points to win game - PEVTIPLA - - - Only need 40 points to win game - ZEVTIPLA - - - Only need 1 game to win set instead of 6 - AEEVAZTA - - - Only need 2 games to win set - PEEVAZTA - - - Only need 3 games to win set - ZEEVAZTA - - - Only need 4 games to win set - GEEVAZTA - - - Only need 5 games to win set - IEEVAZTA - - - Must get 2 points after 40 to win and no deuces (always shows advantage after 40) - EEVVIPEI - - - Don't need to win by 2 to win tiebreaker - PEKVGPZA - - - 2 points needed to win tiebreaker instead of 7 - ZEUVIPYA - - - 3 points needed to win tiebreaker - LEUVIPYA - - - 4 points needed to win tiebreaker - GEUVIPYA - - - 5 points needed to win tiebreaker - IEUVIPYA - - - 6 points needed to win tiebreaker - TEUVIPYA - - - 10 points needed to win tiebreaker - ZEUVIPYE - - - - Joe & Mac (USA) - - Invincibility - ESXIZTEY+ENXSGTEI - - - Infinite health - SZKVOKVK - - - Infinite lives - both players - SZNXTEVK - - - Protection from most enemy hits - SZKVOKVK - - - Protection from water - SXUVYVVK - - - Stone axe and flint do more damage to bosses - AAKUEAPE - - - Stone axe and flint do a lot more damage to bosses - YAKUEAPE - - - Stone wheel and boomerang do more damage to bosses - AASLOAZE - - - Stone wheel and boomerang do a lot more damage to bosses - APSLOAZA - - - Fire does more damage to bosses - APSLVAGA - - - Fire does a lot more damage to bosses - AZSLVAGA - - - Apple and hamburger worth nothing - SZVTKUSE - - - Apple and hamburger restore health to 1/2 - AAVTULAO - - - Start with 1/2 health (die when bar is 1/2 empty) - AEXZGLAO - - - Start with stone wheel instead of stone axe - P1 - OVUXZAET - - - Start with flint instead of stone axe - P1 - XVUXZAET - - - Start with fire instead of stone axe - P1 - UVUXZAET - - - Start with boomerang instead of stone axe - P1 - KVUXZAET - - - Start with 1 life instead of 3 - P1 - PEUXYALA - - - Start with 5 lives - P1 - IEUXYALA - - - Start with 7 lives - P1 - YEUXYALA - - - Start with 9 lives - P1 - PEUXYALE - - - Start somewhere in level 2 - ZEKZGAAA - - - Infinite health (alt) - 0499:0F - - - One hit kills on bosses - 064D:00 - - - - Joshua & the Battle of Jericho (USA) (v6.0) (Unl) - - Exit always open - 075F:05+003F:FF - - - Infinite Bombs - 003E:01 - - - Immune to explosions (disable at end of level) - 004B:C2 - - - - Joshua & the Battle of Jericho (USA) (v5.0) (Unl) - - Exit always open - 075F:05+003F:FF - - - Infinite Bombs - 003E:01 - - - Immune to explosions (disable at end of level) - 004B:C2 - - - - Journey to Silius (USA) - - Invincibility - SZXTSAAX+SXUTKAAX - - - Invincibility after first hit (blinking) - SZOAPAVG - - - Infinite health - SZUVUZSA - - - Infinite weapon power - SZUAUTSA - - - Infinite lives - SXNGYLVG - - - Protection against most aliens - OTUVOZSV - - - Some aliens are tougher - AAXTKAZE - - - Some aliens are weaker - PAXTKAZA - - - Mega-jump - TOOETOLA - - - Speed jump - AZVALPPA+EVNEYENY - - - Super speed - LPSEYPGA+KVNELEKN - - - 1 life after continue - PEVIULLA - - - 6 lives after continue - TEVIULLA - - - 9 lives after continue - PEVIULLE - - - Start with all six weapons - YOKSOGZE - - - Start with Machine Gun - PEKSOGZA - - - Start with Laser Gun - GEKSOGZA - - - Start with Homing Missiles - AEKSOGZE - - - Start with Grenade Launcher - AOKSOGZA - - - Start with Machine Gun and Laser Gun - IEKSOGZA - - - Start with 1 life - PAOSOTLA - - - Start with 6 lives - TAOSOTLA - - - Start with 9 lives - PAOSOTLE - - - Infinite health (alt) - 00B0:0F - - - Infinite lives (alt) - 0053:09 - - - Infinite weapon power (alt) - 00B1:3F - - - Have Machine Gun - 00B8:01 - - - Have Shot Gun - 00B8:02 - - - Have Laser Gun - 00B8:03 - - - Have Homing Missile - 00B8:04 - - - Have Grenade Launcher - 00B8:05 - - - One hit kills on bosses - 040F:00+04FF:00 - - - Start on stage 2 - 0170:01 - - - Start on stage 3 - 0170:02 - - - Start on stage 4 - 0170:03 - - - Start on stage 5 (final stage) - 0170:04 - - - - Joust (USA) - - Infinite lives - SXXKKZVI - - - Turbo flying - PASGKGAA - - - Heavens above? - GXVKOZSP - - - Start with 1 life - PEOGLAIA - - - Start with 9 lives - ZEOGLAIE - - - Start on last level reached - GXSKTASA+GXSKGASA+GXVGGASA - - - - Jovial Race (Asia) (PAL) (Unl) - - Infinite lives - SZNOUKVK - - - Start with 5 lives - IAVEZLLA - - - Start with 10 lives - ZAVEZLLE - - - Sart with 100 lives - GTVEZLLA - - - - Jovial Race (Unknown) (Unl) - - Infinite lives - SZNOUKVK - - - Start with 5 lives - IAVEZLLA - - - Start with 10 lives - ZAVEZLLE - - - Sart with 100 lives - GTVEZLLA - - - - Jungle Book, The (USA) - - Infinite lives - GZVEOSSE - - - Infinite time - AAVEEYPA - - - Infinite weapons - PENEEIAA - - - Need 2 gems to finish levels 1, 3, 4, 7, 9 - ZEKKULAP+SXXNLKOU - - - Need 4 gems to finish levels 1, 3, 4, 7, 9 - GEKKULAP+SXXNLKOU - - - Need 8 gems to finish levels 1, 3, 4, 7, 9 - AEKKULAO+SXXNLKOU - - - Start practice level with 1 life - PAEGVGTA - - - Start practice level with 3 lives - LAEGVGTA - - - Start practice level with 9 lives - PAEGVGTE - - - Start normal level with 1 life - PAEGNGIA - - - Start normal level with 3 lives - LAEGNGIA - - - Start normal level with 9 lives - PAEGNGIE - - - Start with 5 of each weapon - IAVYZLAA - - - Start with 10 of each weapon - APVYZLAA - - - Start with 20 of each weapon - AZVYZLAA - - - Start with 30 of each weapon - ALVYZLAA - - - Start with 90 of each weapon - EPVYZLAA - - - - Jurassic Park (USA) - - Invincibility - EIUZUAEY - - - Infinite health - SZVGZOSE - - - Immune to most attacks - ATVGZOSA - - - Infinite lives (first two levels only) - GZEULOVK - - - Infinite ammo on pick-up - GZUXXKVS - - - More bullets picked up from small dinosaurs - PAVPAGZE - - - Fewer bullets picked up from small dinosaurs - PAVPAGZA - - - 3-ball bolas picked up (from small dinosaurs instead of normal bullets) - VEXASASA+VEUAXASA - - - Explosive multi-shots (from small dinosaurs instead of normal bullets) - NEXASASA+NEUAXASA - - - - Just Breed (Japan) - - No health - all enemies - 69E3:00+69E4:00+69E5:00+69E6:00+69DA:00+69DB:00+69DC:00+69DD:00+69DE:00+69DF:00+69E0:00+69E1:00+69E2:00 - - - Lots of EXP after battle - 6F6E:FF - - - Max EXP after battle - 6F6E:FF+6F6F:FF - - - Max gold after battle - 6F6C:FF+6F6D:FF - - - Max Health (Swordsman/Archer, Etc. 1) - 69C4:FF - - - Max Magic (Swordsman/Archer, Etc. 1) - 6A04:FF - - - Max Health (Swordsman/Archer, Etc. 2) - 69C6:FF - - - Max Magic (Swordsman/Archer, Etc. 2) - 6A06:FF - - - Max Health (Swordsman/Archer, Etc. 3) - 69C5:FF - - - Max Magic (Swordsman/Archer, Etc. 3) - 6A05:FF - - - Max Health (Swordsman/Archer, Etc. 4) - 69C3:FF - - - Max Magic (Swordsman/Archer, Etc. 4) - 6A03:FF - - - - Kabuki - Quantum Fighter (USA) - - Invincibility - AVUUZPSZ+ESUZGAEY - - - Infinite health - VZNGNNSE - - - Infinite chip power - SXEUAESU - - - Infinite lives - SZVGSNSE - - - Don't lose a life from health loss - AAVGKYPA - - - Don't lose a life from timer - AASSAAPA - - - 1 continue - PENUXLZA - - - 6 continues - IENUXLZA - - - 9 continues - AENUXLZE - - - Slower timer - NYXIZEYU - - - Faster timer - YZXIZEYU - - - Special weapons use minimum chip power - SXEUAESU+AOEUPEYA - - - Start with maximum health - YENUNUZE+YEXLLUZE - - - Start with less health - IENUNUZA+IEXLLUZA - - - Start with 1 life - AENLSLZA - - - Start with 6 lives - IENLSLZA - - - Start with 9 lives - AENLSLZE - - - Invincibility (blinking) - 0089:03 - - - Infinite health (alt) - 068C:0A - - - Infinite lives (alt) - 06C0:09 - - - Infinite time - 0691:09 - - - - Kame no Ongaeshi - Urashima Densetsu (Japan) - - Invincibility - OXNGYLEN+SENKPUVK - - - - Karate Champ (USA) (Rev A) - - One hit wins round - 0069:20 - - - One hit wins stage - 005D:02 - - - - Karate Champ (USA) - - One hit wins round - 0069:20 - - - One hit wins stage - 005D:02 - - - - Karate Kid, The (USA) - - Infinite health - SZSUYZSA - - - Infinite chances (lives) - SZOEKAVG - - - Infinite Crane Kicks - SXEXLYVG - - - Infinite Drum Punches on pick-up - SZNXAYVG - - - Hit anywhere - ASVOKAEL+GXVOSALA - - - Prevent girl from moving in final stage - AAUXOGPA - - - Start with 1 chance - PENEZTLA - - - Start with 6 chances - TENEZTLA - - - Start with 9 chances - PENEZTLE - - - Start with 8 Crane Kicks - 1P game - AAKVUGGE - - - Start with 8 Crane Kicks - 2P game - AAKVKGGE - - - Start with 5 Crane Kicks - P1, one on one game - IAKVSGAA - - - Start on stage 2 - 1P game - ZAKVVGPA - - - Start on stage 2 - 2P game - ZAKVNGPA - - - Start on stage 3 - 1P game - LAKVVGPA - - - Start on stage 3 - 2P game - LAKVNGPA - - - Start on stage 4 - 1P game - GAKVVGPA - - - Start on stage 4 - 2P game - GAKVNGPA - - - Infinite health (alt) - 0085:0F - - - Infinite Drum Punches (alt) - 0089:63 - - - Infinite Crane Kicks (alt) - 008A:63 - - - Enemy has no health - 008B:00 - - - - Karnov (USA) - - Invincibility after one hit - ASENYZEI - - - Invincibility - SZVKNLSA+SXEGXLSA+SZNGULSA - - - Infinite lives - SXKISXVK - - - Infinite time - GZVZNIVG - - - Jump higher - ZXLNTS - - - Gain 3 of most items - LEEGOYPA - - - Gain 97 of most items - NOEGOYPA - - - Never lose most items - AEOKSYPA - - - Start with 1 life - AAOSIAZA+AESIVTZA - - - Start with 6 lives - IAOSIAZA+IESIVTZA - - - Start with 9 lives - AAOSIAZE+AESIVTZE - - - Start on stage 2 - PAUSAAAA - - - Start on stage 3 - ZAUSAAAA - - - Start on stage 4 - LAUSAAAA - - - Start on stage 5 - GAUSAAAA - - - Start on stage 6 - IAUSAAAA - - - Start on stage 7 - TAUSAAAA - - - Start on stage 8 - YAUSAAAA - - - Start on stage 9 - AAUSAAAE - - - Invincibility after one hit (blinking) (alt) - 0069:FA - - - Infinite lives (alt) - 040B:09 - - - Infinite time (alt) - 0094:A7 - - - Have 99 Ks - 00BA:99 - - - Have Double Flame Shot - 0065:01 - - - Have Triple Flame Shot - 0065:02 - - - - Kekkyoku Nankyoku Daibouken (Japan) - - Infinite time - SZKNALVT - - - - Kick Master (USA) - - Invincibility - APOSXTSA+SZOIOVSE+TAOSUTXI - - - Invincibility after one hit - OZVZOLEN - - - Infinite health - SZOIOVSE - - - Infinite magic points - SUELOISP - - - Infinite lives - SXULYUVK+OXUSZLEN - - - Don't flash at all after getting hit - AAOSOVGL - - - Barely flash at all after getting hit - IAOSOVGL - - - Don't flash as long after getting hit - IPOSOVGL - - - Start with more EXP and magic points - ITUSLLAT - - - Start with twice as much health - EEVYEIAG - - - Start with half health - AXVYEIAG - - - Start with very little health - LEVYEIAG - - - Start with 1 life - PAXSGLLA - - - Start with 5 lives - IAXSGLLA - - - Start with 9 lives - PAXSGLLE - - - - Kickle Cubicle (USA) - - Invincibility - SEEXPAOL+SANXAPOL - - - Infinite lives - SXEAATVG - - - Infinite time - SXNGSVVK - - - Infinite time (alt) - ANTKVT - - - Faster timer - YENKXVZA - - - Slower timer - YENKXVZE - - - Win level now - ESSATLEY - - - Start on land 2 - GZKATXSE+GZUISOSE+PAUIOPAA - - - Start on land 3 - GZKATXSE+GZUISOSE+ZAUIOPAA - - - Start on land 4 - GZKATXSE+GZUISOSE+LAUIOPAA - - - - Kid Icarus (USA, Europe) - - Invincibility - OTXSVLON - - - Hit anywhere - AANIOPPP+AOEIEPZE+XTNSNPEU - - - 99 Hammers on pick-up - EOSTEXOZ+KNSTOZPA - - - Small hearts worth 135 - NAKSXTPA - - - Small hearts worth 2 - ZAKSXTPA - - - Small hearts worth 5 - IAKSXTPA - - - Big hearts worth 255 - NYKSSVZA - - - Big hearts worth 20 - GPKSSVZA - - - Lave restores health - VVXGUYVG - - - Immune to becoming eggplant - AAUEVAPA - - - No damage from Medusa - SZSLAPSA - - - No damage from floor hazards - SKXGUYVG - - - Get best ending with 8uuuuu uuuuuu uuuuuu uuuuuu code - PEEEZPAA - - - - Kid Klown in Night Mayor World (USA) - - Invincibility - EYNZVYEI - - - Infinite health - SZKEOESE - - - Infinite lives - AANAUAPA - - - Full health from hearts - AAEAUGLA - - - Less health from hearts - ZENANLIA - - - More health from hearts - ZENANLIE - - - Mega-jump (don't hold jump down too long or you might get stuck) - GXEZYVVV - - - Infinite chances in sub-game (press Start to re-enter the main game) - GZSEIYVG - - - Infinite health (alt) - 043F:19 - - - Infinite Chips - 0117:63 - - - Infinite lives (alt) - 043E:09 - - - - Kid Kool and the Quest for the Seven Wonder Herbs (USA) - - Invincibility - SEVILPSZ - - - Infinite time - VZOEOGVT - - - Infinite lives - SZKKXIVG - - - Press Start to complete the level - GEXGUALU+LEXGSALU+OXXGXAIK - - - Hit anywhere - throwing - ELXKKESZ+TIXKSAYA - - - Multi-jump when falling - ESXPZZEY+KOXPLZKS+OKOOYZOX+PEXPPXSG+PXXPAZES - - - One life after continue - PASKOILA - - - Start with one life - PAVGIALA - - - Start with double lives - TAVGIALA - - - Start with triple lives - PAVGIALE - - - Invincibility (alt) - 0031:09 - - - Infinite lives (alt) - 0015:09 - - - - Kid Niki - Radical Ninja (USA) (Rev A) - - Invincibility (glitchy) - SZEESTSA+SXVEUISA - - - Infinite lives - GXSOKIVG - - - Infinite time - AESUEGPA - - - Hit anywhere - AOUAESXE+ATOKTXSY+AVUAOSAG - - - Higher jump - NYUEXOEV - - - Multi-jump - KTEYSNNN+NNOOKXOE+OAENXNNN+OZEYKNNN+PPEYNNNN+SAEYVNNY+YIEYONNY+AANOVZAP+AEEPKXZA+AEOOUXIZ+APEYXNNY+ATENUNNY+AZENENNY+GAEYUNNY+GZEYENNY+IZENONNN - - - Less time - GAUELZTA+GEEPOTTA - - - Start with 1 life - PAOATZLA - - - Start with 6 lives - TAOATZLA - - - Start on round 2 - PEVAYPAA+PEUETPAA - - - Start on round 3 - ZEVAYPAA+ZEUETPAA - - - Start on round 4 - LEVAYPAA+LEUETPAA - - - Start on round 5 - GEVAYPAA+GEUETPAA - - - Start on round 6 - IEVAYPAA+IEUETPAA - - - Invincibility (glitchy) (alt) - 0088:00+00F4:00 - - - Infinite lives - 00CC:03 - - - Infinite time - 0621:3B - - - - Kid Niki - Radical Ninja (USA) - - Invincibility - EEKEPPAA - - - Hit anywhere - AOOENSXE+ATUKLXSY+AVXAESAG - - - Multi-jump - LPENONNN+NYNPUXOE+OAENXNNN+OZEYKNNN+PPEYNNNN+SAEYVNNY+YIEYONNY+AANPXXLP+APEYXNNY+ATENUNNY+AZENENNY+GAEYUNNY+GZEYENNY+GZSOXZEY+GZSPKZEY+KTEYSNNN - - - Invincibility (glitchy) - 0088:00+00F4:00 - - - Infinite lives - 00CC:03 - - - Infinite time - 0621:3B - - - - King Kong 2 - Ikari no Megaton Punch (Japan) - - Infinite health and lives - SLSYTPSP - - - Infinite Rocks - SZVEPSSE - - - Start with max health - PESVAAPE+OOSTYAAE - - - Start with 9 lives - PAXVOPZE - - - - King Neptune's Adventure (USA) (Unl) - - Infinite health - SXXSTVVK+SXUILKVK+SZNIIVSE - - - Infinite lives - SZSKVVVK - - - Infinite Bubble Bombs - SXXYSPVG - - - Start with all treasures (removes all items from level) - AEUGLKEY - - - Start with 99 Bubble Bombs and Money - LVUKGGAA - - - Start with 99 Seahorses and Keys - LTUKSIAA - - - - King of Kings, The (USA) (v5.0) (Unl) - - Infinite health - 0512:06 - - - - King of Kings, The (USA) (v1.3) (Unl) - - Infinite health - 0512:06 - - - - King of Kings, The (USA) (v1.2) (Unl) - - Infinite health - 0512:06 - - - - King of Kings, The (USA) (v1.1) (Unl) - - Infinite health - 0512:06 - - - - King's Knight (USA) - - Infinite health - GZVXTPSA - - - Only lose 1 HP when hit - OTVXAPSV+PAVXPPAP - - - Start with double usual health - AOSUAOGE - - - Start with half usual health - TESUAOGA - - - Start with a better character - PESUTPAA - - - Start with the best character normally possible - ZESUTPAA - - - Start with a super character, better than normally Possible - IESUTPAA - - - Infinite health (alt) - 009A:0C - - - - Kirby's Adventure (USA) (Rev A) - - Invincibility - EINELGEY - - - Infinite health - SZEPSVSE - - - Infinite lives - SXKTPKVG - - - Hit anywhere (spitting) - AOOEIOOV+AOOETPYE+EANEZAAT+GGNEAESN+GXKEIPEL+VGNEPAGY - - - Inhale from anywhere - AASELZZG+AINEYZEP+SZNEGXSV - - - Less health from 'pep drinks' - ZAKLLXAA - - - More health from 'pep drinks' - APKLLXAA - - - Full health from 'pep drinks' - YZKLLXAE - - - Start with less health - YONZZNYX - - - Start with more health - YKNZZNYX - - - Start with 2 lives - PEVXIYGA - - - Start with 9 lives - AEVXIYGE - - - Start with 17 lives - AOVXIYGA - - - Invincibility (alt) - 05F9:02 - - - Infinite health (alt) - 0597:2F - - - Infinite lives (alt) - 0599:09 - - - - Kirby's Adventure (USA) - - Invincibility - EINELGEY - - - Infinite health - SZEPSVSE - - - Infinite lives - SXKTPKVG - - - Hit anywhere (spitting) - AEKAIEIA+AEXAIPTL+AOOAGEOV+AOOAIAYE+GXKEIPEL - - - Inhale from anywhere - AASELZZG+GXEAGZEL - - - Less health from 'pep drinks' - ZAKLLXAA - - - More health from 'pep drinks' - APKLLXAA - - - Full health from 'pep drinks' - YZKLLXAE - - - Start with less health - YONZZNYX - - - Start with more health - YKNZZNYX - - - Start with 2 lives - PEVXIYGA - - - Start with 9 lives - AEVXIYGE - - - Start with 17 lives - AOVXIYGA - - - Invincibility (alt) - 05F9:02 - - - Infinite health (alt) - 0597:2F - - - Infinite lives (alt) - 0599:09 - - - - Kiwi Kraze - A Bird-Brained Adventure! (USA) - - Invincibility - EIUKGIEY - - - Super-jump - XYKTISKN - - - Infinite lives - SUSKLYVI - - - Infinite continues - GZEKXPVS - - - 1 life after continue - AAEGNPZA - - - 6 lives after continue - IAEGNPZA - - - 9 lives after continue - AAEGNPZE - - - Start with 1 life (and 1 continue) - AANGLLZA - - - Start with 6 lives (and 6 continues) - IANGLLZA - - - Start with 9 lives (and 9 continues) - AANGLLZE - - - Start on level 2 - GZVKAUSE+GAVGYLAA - - - Start on level 3 - GZVKAUSE+AAVGYLAE - - - Start on level 4 - GZVKAUSE+GAVGYLAE - - - Start on level 5 - GZVKAUSE+PPVGYLAA - - - - KlashBall (USA) - - Very little team stamina - select the middle team - IAUUOOAZ - - - More team stamina - select the middle team - AGUUOOAZ - - - Mega team stamina - select the middle team - OPUUOOAX - - - Power is doubled for the whole team - select the middle team - GAUUKPZA - - - Power is tripled for the whole team - select the middle team - TAUUKPZA - - - Mega power for the whole team - select the middle team - PAUUKPZE - - - Never lose stamina - select the middle team - GXEZAVSO - - - Computer can't score - select the middle team - SZSEZGVT - - - Everyone including computer has 255 skill - select the middle team - GZSXTEAU+GZSXTESN - - - - Klax (USA) (Unl) - - Infinite drops - SXXLUGVT - - - When starting on level 6, 0 drops allowed - PANENGGA - - - When starting on level 6, 5 drops allowed - IANENGGA - - - When starting on level 11, 0 drops allowed - PEOAXGIA - - - When starting on level 11, 3 drops allowed - LEOAXGIA - - - Start with 0 drops allowed - PAVESGLA - - - Start with 5 drops allowed - IAVESGLA - - - - Knight Rider (USA) - - Infinite shield - SZXSYTSA - - - Infinite missiles - SZEXUNVK - - - Infinite laser - GXXZSVVK - - - Infinite lives - SXXEGEVK+SXKEIEVK - - - Start with 1 life after continue - AEVALAZA - - - Start with 6 lives after continue - IEVALAZA - - - Start with 9 lives after continue - AEVALAZE - - - Start with 1 life - AANKOAZA+VTNKSESE - - - Start with 6 lives - IANKOAZA+VTNKSESE - - - Start with 99 missiles - SZKZYOSU+LYKXAOTT - - - Start with 99 lasers - SZSZLOSU+PYSZGPGN - - - Start with full gasoline - SZUZAOSU+ATUZPPTV - - - Start with full shield - SZUXGOSU+ITUXIOZV - - - - Krion Conquest, The (USA) - - Infinite health - SXNIVLSA - - - Infinite lives - SXVLOIVG - - - Float spell - AEOKYTTP - - - Quicker supershot - PEVGOIGA - - - Less energy used for fire spell - GEXYLEAA+IEOYTEPA - - - Start with 1 life - AAKAAPZA - - - Start with 6 lives - IAKAAPZA - - - Start with 9 lives - AAKAAPZE - - - Start on stage 2 - PAXEZPAA+EZXEPOOZ+KAXEIPSA - - - Start on stage 3 - ZAXEZPAA+EZXEPOOZ+KAXEIPSA - - - Start on stage 4 - LAXEZPAA+EZXEPOOZ+KAXEIPSA - - - Invincibility - 03DE:02+03E0:3A - - - Infinite health (alt) - 004C:28 - - - Infinite lives (alt) - 0043:02 - - - Infinite oxygen in underwater stage - 0318:05 - - - Moon-jump (disable in underwater stage) - 0057:1F - - - - Krusty's Fun House (USA) - - Infinite health - AAUXAEZA - - - Infinite pies - first life only - GXKZPKVK - - - Pick-up Super Balls instead of Custard Pies - AEOXSLPA - - - Start with 1 life - PAKATALA - - - Start with 6 lives - TAKATALA - - - Start with 9 lives - PAKATALE - - - Start with 6 pies - TAKELEPA - - - Start with 18 pies - ZPKELEPA - - - - Kung Fu (Japan, USA) - - Infinite health - AUVZEGTA+VEVZOKSX - - - Infinite time - SZUAOAAX - - - Infinite lives - both players - SUAAXA - - - Invincibility against knives - GXSLVYEI - - - Don't die when time runs out - GZVKIYSA+ATVKYNGG - - - Hit anywhere - AASGYXOG - - - Enemies die when trying to grab you - GXKZTIEI+KVKXPSIK+SXKXZIVZ+AVOZLNGG - - - Enemies easier to shrug off - AEVXLSPT - - - Enemies harder to shrug off - ZEVXPIGE - - - Give P2 an advantage - SEZEGG - - - Knife thrower harder to beat - XYUXEUZK - - - Normal enemies do more damage - LEEXSYPA - - - Walk 2X faster - VYNONUNN+ZANOVLPA - - - Walk 4X faster - GANOVLPA+KYNONUNN - - - Start at last level reached - P1 - GZLATG - - - Start at last level reached - P2 - GZLEPG - - - Start with 1 life - both players - PEZELG - - - Start with 9 lives - both players - PEZELK - - - Infinite health (disable at end of level) - 04A6:1E - - - Infinite lives (alt) - 005C:09 - - - Knife Thrower doesn't throw knives - 03E8:00+03E9:00+03EA:00+03EB:00 - - - Max score - 0536:09+0535:09+0534:09+0533:09+0532:09+0531:09 - - - Start on floor 2 - 005F:01 - - - Start on floor 3 - 005F:02 - - - Start on floor 4 - 005F:03 - - - Start on floor 5 - 005F:04 - - - - Kung-Fu Heroes (USA) - - Invincibility - AAXGYOZA+AVUSPVSL - - - Infinite lives - AESLZLPA - - - Infinite Miracle Kicks - AEVSPAPA - - - Hit anywhere (most enemies) - SXNIALAX - - - 2 E-balls for an extra life - ZAXUEGIA - - - Use with warp to start with 1 life - PASZNPLA - - - Use with warp to start with 6 lives - TASZNPLA - - - Use with warp to start with 9 lives - PASZNPLE - - - Mega-jumps left and right - GAOKOGPA+KYXGOKNN - - - Start with 20 Miracle Kicks - GPVZXPAA - - - Start with 1 life - PASXSPIA - - - Start with 9 lives - PASXSPIE - - - Start on Castle 2 - OZSZXPSX+GASZUOSG - - - Start on Castle 3 - OZSZXPSX+AASZUOSK - - - Start on Castle 4 - OZSZXPSX+GASZUOSK - - - Start on Castle 5 - OZSZXPSX+APSZUOSG - - - Start on Castle 6 - OZSZXPSX+GPSZUOSG - - - Start on Castle 7 - OZSZXPSX+APSZUOSK - - - Start on Castle 8 - OZSZXPSX+GPSZUOSK - - - - Last Action Hero (USA) - - Infinite health - SXOLSGTG - - - One hit kills on bosses - ESXZLAEY - - - Infinite lives - SXXLOGVG - - - Infinite continues - SZEVZIVG - - - Red hearts worth nothing - VZSAEYVT - - - Continue with 1 life - AASTAILA - - - Continue with 2 lives - PASTAILA - - - Continue with 3 lives - ZASTAILA - - - Start with 1 life - AAUVSTLA - - - Start with 7 lives - TAUVSTLA - - - Start with 10 lives - PAUVSTLE - - - Start with 0 continues - AAKTOTZA - - - Start with 5 continues - IAKTOTZA - - - Start with 9 continues - PAKTOTZE - - - Start on stage 2 - Hamlet - ZENTAAAA - - - Start on stage 3 - The House - GENTAAAA - - - Start on stage 4 - The Freeway - IENTAAAA - - - Start on stage 5 - The Office block - TENTAAAA - - - Start on stage 6 - The Helicopter - YENTAAAA - - - Start on stage 7 - The Film Premiere - AENTAAAE - - - Start on Stage 8 - The Cinema - PENTAAAE - - - Start on the end-of-level bad guy - ZENTAAAE - - - Invincibility (blinking) - 008C:19 - - - Infinite health (alt) - 002E:2F - - - Infinite lives (alt) - 0092:09 - - - - Last Ninja, The (USA) - - Infinite health - SXSEEZSA - - - Press Select on controller 2 to skip to next level, A for next screen, B for previous screen - EYETYIEI - - - Infinite lives - 007D:09 - - - Infinite time (seconds) - 0369:00 - - - - Last Starfighter, The (USA) - - Infinite lives - both players - SZVPATVG - - - Stop irritating shake - GXUPLGSA - - - Start with 1 life - both players - PANENLIA - - - Start with 6 lives - both players - TANENLIA - - - Start with 9 lives - both players - PANENLIE - - - Start with 1 life - P2 - KEEAVLSA - - - Start on level 5 - P1 - GAVEKLAA+GZVENLSA+GZNAOLSA - - - Start on level 10 - P1 - PAVEKLAE+GZVENLSA+GZNAOLSA - - - Start on level 14 - P1 - IAVEKLAE+GZVENLSA+GZNAOLSA - - - - Layla (Japan) - - Infinite energy - SXSTTPVG - - - Infinite Machine Gun ammo - SXVIPGVG - - - Infinite Dynamite Sticks - SXVSPIVG - - - Infinite Grenades - SZOSYIVG - - - - Legacy of the Wizard (USA) - - Infinitel ife - GXVTZYSA - - - Infinite magic - GXNTYYVG - - - Never lose items - GXSVLGVI - - - Shopkeeper forgets to charge - GZKVUASA - - - No enemies - OUOVNPOP - - - Walk through walls - GKPSOS - - - Lyll's strength tripled - LEUYKYPA - - - Lyll's jumping improved - AUUYUNZP - - - Roas' strength tripled - LEUYEYPA - - - Roas' jumping improved - ZXXNNYGO - - - Xemn's strength tripled - PEXNEYLE - - - Xemn's jumping improved - AXXYNYZP - - - Menya's strength tripled - TEXNKYZA - - - Menya's jumping improved - AXXNUYGP - - - - Legendary Wings (USA) - - Almost infinite health - AAEEGLPA+AEEATIPA - - - Hit anywhere - AEEEELXY+AASEAUNT+AAUEZKKT+AEOEELXT+AEOAEUXT+SXEAZUOO+SXOEZUOO - - - Gain double powers on pick-up - ZANAIZPA+ZEVAPIPA - - - Gain triple powers on pick-up - LANAIZPA+ZEVAPZPA - - - Start with 1 life - P1 - PEEALYLA - - - Start with 6 lives - P1 - TEEALYLA - - - Start with 9 lives - P1 - PEEALYLE - - - Start with 1 life - both players - PANEAYLA - - - Start with 6 lives - both players - TANEAYLA - - - Start with 9 lives - both players - PANEAYLE - - - Infinite health - P1 - 0520:63 - - - Infinite lives - P1 - 0058:09 - - - Have Double shot - 007A:01 - - - Have Rapid Fire shot - 007A:02 - - - Have Crazy Ball shot - 007A:03 - - - Have Firebird ability - 007A:04 - - - One hit kills on bosses - 04B0:00 - - - - Legends of the Diamond - The Baseball Championship Game (USA) - - 1 ball and you walk - PEKLAIGA - - - 2 balls and you walk - ZEKLAIGA - - - 6 balls to walk - TEKLAIGA - - - 1 strike and you're out (fouls don't count as strikes) - PASUGILA - - - 2 strikes and you're out (fouls don't count as strikes) - ZASUGILA - - - 5 strikes and you're out (fouls don't count as strikes) - IASUGILA - - - - Legend of Kage, The (USA) - - Invincibility - SZNPVLSA - - - Infinite lives - both players - SXVALZVG - - - Hit anywhere with Shurikens - AESXNKZA+AESZUGTP+AEXXNKLT - - - Hit anywhere with Sword - AAEZVIGP+AAOZXSAA+AEXXNKLT - - - Kill the white boss (you do not need to kill the butterfly) - AEXXNKLT - - - Super-ninja-power running ability - GASAOLZA - - - Super-ninja-power jumping ability - YAKXYPGE+YASZAPGE+YASZPPGE - - - Start with 28 lives - both players - KEOATAVA - - - Infinite lives - P1 - 002B:63 - - - - Legend of the Ghost Lion (USA) - - Infinite Courage points - SZUPNNSE - - - Infinite Dream points - SXXKTSSE - - - Buy items for free in most shops (must have enough rubies to purchase item) - SXSKLKSE - - - Infinite health - main character - 04A1:FF - - - Max Dream - main character - 04A3:FF+04A4:FF - - - Max Dream total - main character - 04A5:FF - - - Max Hope - main character - 04A0:FF - - - Max Rubies - 041A:FF - - - Have #2 Whip - 0562:2A - - - Have F-Sword - 0562:2B - - - - Legend of Zelda, The (USA) (Rev A) - - Infinite health - AVVLAUSZ - - - Have the Pink Ring (infinite health) - ZTSPSTIP - - - Infinite Bombs - SZNZVOVK - - - Have Blue Ring effect - ESKUILTA - - - Have Red Ring effect - OSKUILTA - - - All items are free - SZVXASVK+AEVEVALG - - - Fewer enemies - AEOANAEG - - - No dark rooms - AOEUYTEY - - - No Zolas - AEVATVAA - - - Reset counter to zero - PALZZI - - - Speed writing - OPPEEA - - - Walk faster - OXELYLSX+EUEUALAA - - - Walk through walls in dungeons - SXXOPPSA+ATKOLPEY - - - Create character with 8 life hearts - YYKPOYZZ - - - Create character with 16 life hearts - NYKPOYZX - - - Invincibility - 7AA7:60 - - - Invincibility (blinking) - 04F0:09 - - - Infinite health (alt) - 0670:FF - - - Hit anywhere - 7BF2:24+7C28:AD - - - Get items from anywhere - 7353:24+735F:24 - - - Infinite Bombs (alt) - 0658:FF - - - Infinite Keys - 066E:03 - - - Infinite Rupies - 066D:FF - - - Enemies don't shoot anything - 034C:FF - - - Turbo Sword - 03DD:01 - - - Have all Tri-Force pieces - 0671:FF - - - Have Maps for Dungeons 1-8 and Compass for Dungeon 9 - 0668:FF+0669:FF - - - Have Map for Dungeon 9 - 066A:FF - - - Have Arrows - 0659:01 - - - Have Blue Candle - 065B:01 - - - Have Bow - 065A:01 - - - Have Enemy Bait - 065D:01 - - - Have Flute - 065C:01 - - - Have Ladder - 0663:01 - - - Have Magic Book - 0661:01 - - - Have Magic Boomerang - 0675:01 - - - Have Magic Wand - 065F:01 - - - Have Magical Key - 0664:01 - - - Have Magical Shield - 0676:01 - - - Have Magical Sword - 0657:03 - - - Have Power Bracelet - 0665:01 - - - Have Raft - 0660:01 - - - Have Red Candle - 065B:02 - - - Have Silver Arrows - 0659:02 - - - Have White Sword - 0657:02 - - - Have Wooden Sword - 0657:01 - - - - Legend of Zelda, The (USA) - - Infinite health - AVVLAUSZ - - - Have the Pink Ring (infinite health) - ZTSOOTIP - - - Infinite Bombs - SZNZVOVK - - - All items are free - SZVXASVK+AEVEVALG - - - Almost no enemies in Overworld - AAXPILGA+AAXPTLIA+AAXPYLTA - - - Fewer enemies - AEOANAEG - - - No dark rooms - AOEUYTEY - - - No Zolas - AEVATVAA - - - Reset counter to zero - PALZZI - - - Speed writing - OPPEEA - - - Walk faster - OXELYLSX+EUEUALAA - - - Walk through walls in dungeons - SXOOYPSA+ATKPPPEY - - - Create character with 8 life hearts - YYKPOYZZ - - - Create character with 16 life hearts - NYKPOYZX - - - Invincibility - 7AA7:60 - - - Invincibility (blinking) - 04F0:09 - - - Infinite health (alt) - 0670:FF - - - Hit anywhere - 7BF2:24+7C28:AD - - - Get items from anywhere - 7353:24+735F:24 - - - Infinite Bombs (alt) - 0658:FF - - - Infinite Keys - 066E:03 - - - Infinite Rupies - 066D:FF - - - Enemies don't shoot anything - 034C:FF - - - Turbo Sword - 03DD:01 - - - Have all Tri-Force pieces - 0671:FF - - - Have Maps for Dungeons 1-8 and Compass for Dungeon 9 - 0668:FF+0669:FF - - - Have Map for Dungeon 9 - 066A:FF - - - Have Arrows - 0659:01 - - - Have Blue Candle - 065B:01 - - - Have Bow - 065A:01 - - - Have Enemy Bait - 065D:01 - - - Have Flute - 065C:01 - - - Have Ladder - 0663:01 - - - Have Magic Book - 0661:01 - - - Have Magic Boomerang - 0675:01 - - - Have Magic Wand - 065F:01 - - - Have Magical Key - 0664:01 - - - Have Magical Shield - 0676:01 - - - Have Magical Sword - 0657:03 - - - Have Power Bracelet - 0665:01 - - - Have Raft - 0660:01 - - - Have Red Candle - 065B:02 - - - Have Silver Arrows - 0659:02 - - - Have White Sword - 0657:02 - - - Have Wooden Sword - 0657:01 - - - - Lemmings (USA) - - Infinite time - SXUTLAVG - - - Infinite climbers - SZVVTPVG - - - Infinite floaters - SXOVAPVG - - - Infinite bombers - SXKTYPVG - - - Infinite blockers - SZOTPZVG - - - Infinite builders - SZVTPZVG - - - Infinite bashers - SXXVLZVG - - - Infinite miners - SZETGLVG - - - Infinite diggers - SZSTYLVG - - - - Lethal Weapon (USA) - - Infinite ammo when shooting on the ground - OLSSGSOO - - - Infinite ammo when shooting in the air - OUSSISOO+OUXIPSOO - - - E restores health completely - AKVIXAAP - - - E worth nothing - AEVIXAAP - - - Extra ammo restores ammo completely - AKKSEAAP - - - Extra ammo worth nothing (if you run out of ammo you can't use gun till next stage) - AEKSEAAP - - - No health lost when falling off screen - AEUYXAAZ - - - Falling off screen is fatal - AKUYXAAZ - - - Bullet proof vest lasts longer - NNNISAAU - - - Bullet proof vest lasts until end of stage, except when you die from punches or falling off screen - XVUKOOXK - - - Bullet proof vest does not last as long - ZENISAAU:or:AONISAAL - - - Start on Level 2 - XTUGTXXK - - - Start on Level 3 - XZUGLXVL+LAUGGZNP+XTUGIZEK - - - Invincibility (blinking) - P1 - 05ED:09 - - - Infinite health - 05C0:3F - - - Infinite ammo - 003F:3A - - - One hit kills on bosses - 05C4:00 - - - - Life Force (USA) - - Infinite lives - GZKGILVI - - - Keep pods after death - GZSGLTSP - - - Hit anywhere - AAUIPXTP+AAUSTXIA+ATNILXOZ+EIKSZZEP - - - One hit kills most enemies - OXOSPXOV - - - Press Start to finish the level - TKOYVIGX+ZEOYKIPA - - - Start with Speed - PEKGPTAA - - - Start with Missile - ZEKGPTAA - - - Start with Ripple - LEKGPTAA - - - Start with Laser - GEKGPTAA - - - Start with Option - IEKGPTAA - - - Start with Force Field - TEKGPTAA - - - Start at the volcanic stage - PEUTSTAA - - - Start at the prominence stage - ZEUTSTAA - - - Start at cell stage 2 - LEUTSTAA - - - Start at the temple stage - GEUTSTAA - - - Start at the mechanical city stage - IEUTSTAA - - - Start with 1 life - PEKVNTLA - - - Start with 6 lives - TEKVNTLA - - - Invincibility - P1 - 0084:C0 - - - Invincibility - P2 - 0085:C0 - - - Infinite lives (alt) - 0034:63 - - - Complete the level - 004E:02 - - - Progress through the level faster - 003A:02 - - - Have 30 lives option - 07EF:01 - - - Have upgraded Laser - 0076:03 - - - Have double Speed - 0080:02 - - - Have triple Speed - 0080:03 - - - Have Shield - 0082:09 - - - Have double Missile - 0086:02 - - - Have Option - 0091:01 - - - - Lightgun Game 2 in 1 - Cosmocop + Cyber Monster (Asia) (Unl) - - Cosmo Cop - Infinite lives - SXXKNUVK - - - Cosmo Cop - Infinite ammo - SZXGXUSE - - - Cosmo Cop - Infinite energy - SZVKEUVK+SZVKUUVK - - - Cyber Monster - Infinite misses - ATSPASVG - - - - Lightgun Game 2 in 1 - Tough Cop + Super Tough Cop (Asia) (Unl) - - Infinite health - 037A:06 - - - - Lion King, The (Europe) - - Invincibility - EINEILEY+EIVLYGEY - - - Infinite lives - SXNEAKVK - - - - Little Mermaid, The (USA) - - Invincibility - ESSGSPEY+ESEELPEY - - - Invincibility after one hit - SXSGNPVG - - - Infinite lives - SZSSPLVG - - - Keep red pearls after dying - GZSILLSA - - - Keep green pearls after dying - GZSIILSA - - - Get all pearls after dying - LASIZLAA - - - Start with all red pearls - LAKKGTAA+ILKKTVOV - - - Start with all green pearls - LAKKGTAA+TLKKTVOV - - - Start with 1 heart - PASGGTLA+PAXGAYLA - - - Start with 5 hearts - IASGGTLA+IAXGAYLA - - - Start with 1 life - AASGATZA - - - Start with 6 lives - IASGATZA - - - Start with 9 lives - AASGATZE - - - Start on Ursula stage - IAKKGTAA - - - Start on stage 2 - PAKKGTAA - - - Start on stage 3 - ZAKKGTAA - - - Start on stage 4 - LAKKGTAA - - - Start on stage 5 - GAKKGTAA - - - - Little Nemo - The Dream Master (USA) - - Infinite life - SXKTGEVK - - - Infinite lives - SZOKSLVG - - - Mega-jump - TOKZKNZA - - - Speed jumps - GESLYPPA+UYUUIOVN - - - Super speed - ZEXLLPPA+SYEUPOVN - - - Start with 1 life - PEKKSZLA - - - Start with 6 lives - TEKKSZLA - - - Start with 9 lives - PEKKSZLE - - - Start on stage 2 - PEUKOZAA - - - Start on stage 3 - ZEUKOZAA - - - Start on stage 4 - LEUKOZAA - - - Start on stage 5 - GEUKOZAA - - - Start on stage 6 - IEUKOZAA - - - Start on stage 7 - TEUKOZAA - - - Start on stage 8 - YEUKOZAA - - - Invincibility (blinking) - 0630:03 - - - Infinite life (alt) - 05D0:05 - - - Infinite lives (alt) - 008E:09 - - - Infinite Keys - 008C:09 - - - Fly - 0540:FF - - - - Little Ninja Brothers (USA) - - Invincibility - AIULZPEI - - - Invincibility to water - SXSZXNTS - - - Infinite Life - OLKUAOOO - - - Infinite Dragon Kicks - AEUUYKIA - - - Infinite money - AVSIOOSZ - - - Mighty Ball always available - AEEOKZPA - - - T-Star always available - ATUOSUSZ - - - All T-Stars - OZXONUPX - - - Max money after fights - AEOSKPZA - - - Quick level up - AAXIVOZP - - - Start with 255 Life - NYUSKXZE - - - Start with 50 Attack - ZLUSSZPA - - - Have Batteries - 0449:02 - - - Have Marks - 042A:06 - - - Have Meat Bun - 044D:01 - - - Have Medicine - 044B:01 - - - Have Prism Claw - 0439:08 - - - Have Prism Sword - 043B:05 - - - Have Prism Shield - 043C:04 - - - Have Sacred Robe - 043D:04 - - - Have Sweet Buns - 044C:08 - - - Have T-Stars - 042B:08 - - - Have Whirly Birds - 044A:01 - - - - Little Samson (USA) - - Invincibility against enemies - APSELZEI - - - Infinite health - GZVEPXSN - - - Infinite lives - GXOVAGVG - - - Hit anywhere - ALUAIGEL - - - Collectable items never disappear - AVKXSXVI - - - Increase Samson's health gauge - AOKTPSAE - - - Increase Kikira's health gauge - AOKTZSAE - - - Increase Gamm's health gauge - AXKTLIAP - - - Increase K.O.'s health gauge - AOKTGIGA - - - Increase Samson's health - AOKTISAE - - - Increase Kikira's health - AOKTTSAE - - - Increase Gamm's health - AXKTYIAP - - - Increase K.O.'s health - AOKVAIGA - - - Crystal ball adds 4 units to health gauge - AAUZEZGE - - - Small hearts give 4 health units - AESXVPZE - - - Infinite health - Little Samson - 0097:08 - - - Infinite health - Dragon - 0098:08 - - - Infinite health - Golem - 0099:0F - - - Infinite health - Mouse - 009A:04 - - - - Locksmith (Asia) (PAL) (Unl) - - Infinite health - 0573:23 - - - Infinite time - 056A:01 - - - Instantly beat puzzle - 0043:FF - - - - Lode Runner (USA) - - Invincibility - GXOKIGEY+GXOGTGEY+GZNGLGEY - - - Infinite lives - GZNGYIVG - - - Moonwalk - APOIGPAL - - - Heavy gravity - GAUGVGYA+AAKGEGGA - - - Start with 1 life - PASKLTIA - - - Start with 10 lives - ZASKLTIE - - - - Lone Ranger, The (USA) - - Infinite health - side views only - GZKKYPSA - - - Infinite regular and silver bullets - AASXUAPA - - - Cheaper silver bullets - IEUZTNZA - - - Cheaper standard bullets - ZEUZIYIA - - - Don't lose money when shooting bystanders - GZSZNATG+GZSXOATT - - - Start with 255 dollars - NNKNTIGV - - - Start with 10 silver bullet rounds - ZESYTIIE - - - Start with 15 silver bullet rounds - YESYTIIE - - - Start with 15 standard bullet rounds - YESYZSZE - - - Start with 30 standard bullet rounds - TOSYZSZE - - - Infinite health - 005F:0C - - - Infinite money - 0050:FF+DF30:FF - - - Infinite regular and silver bullets (alt) - 0052:06 - - - Infinite T.N.T. - 0055:63 - - - - Low G Man - The Low Gravity Man (USA) - - Invincibility - ATOXTPEY+YZSXTKZZ - - - Infinite life (blinking) - SZEENESE - - - Infinite ammo - secondary weapon - SXUEKUVS - - - Infinite vehicle fuel - SZVSKOVK - - - Infinite time - GZKINOVK - - - Infinite lives - SZNIEEVK - - - Hit anywhere - AEXXZELP+SXVZLAAX - - - Get items from anywhere - AEOXLOZA - - - Full life gained from capsules - AAEZATZE - - - Less life gained from capsules - PAEZATZA - - - Full EMDP on a new life - LAVSKAPA - - - Full AGM on a new life - ZAVIKAAA - - - 10 Boomerangs on pick-up - ZEOZZTLE - - - 10 Fireballs on pick-up - ZAVXGTLE - - - 10 Bombs on pick-up - ZEUXATLE - - - 10 Waves on pick-up - ZESXTTLE - - - 1 life after continue - PEOSKALA - - - 6 lives after continue - TEOSKALA - - - 9 lives after continue - PEOSKALE - - - Start with 1 life - PEXIZTLA - - - Start with 6 lives - TEXIZTLA - - - Start with 9 lives - PEXIZTLE - - - Infinite life - 0639:08 - - - Infinite lives (alt) - 06D6:09 - - - Infinite time (alt) - 0738:FF - - - Enemies die instantly - 050A:00+050E:00 - - - Jump higher - 0647:35 - - - Rank is 03/03 - 0651:03 - - - Rank left is 99/99 - 0656:63+0657:63 - - - - M.C. Kids (USA) - - Infinite lives - GXKSUOSE - - - Infinite hearts - EGETYTIA - - - Don't lose Golden Arches when hit - EKNVYIIA - - - Multi-jump - GLXEIPEK+OZXEGOSX+XTXETPGE - - - Super-jump - AOVEGTGE+AEVEPTLA - - - 1 heart per life - AAKSAYZA+AEKSNPZA - - - 8 hearts per life - YAKSAYZA+YEKSNPZA - - - Always find all cards in level - AAVNIVGA+OZVNPVSX+PAVNZVPP+XTVNLTGE - - - Access any level on the map - AEXALGPA - - - Start with 2 lives - PAKILYLA - - - Start with 7 lives - TAKILYLA - - - Start with 10 lives - PAKILYLE - - - - M.U.L.E. (USA) - - 4 'months' for beginner game - GEKALTTA - - - 9 'months' for beginner game - PEKALTTE - - - 6 'months' for standard game - TEXAIVGA - - - 20 'months' for standard game - GOXAIVGA - - - Humanoids start with $400 - EPOEPNAI+PAOETYZA - - - Humanoids start with $800 - AZOEPNAI+LAOETYZA - - - Flappers start with $1300 - GPUAAYAG+IAUAIYTA - - - Flappers start with $2000 - EIUAAYAG+YAUAIYTA - - - - M.U.S.C.L.E. - Tag Team Match (USA) - - Invincibility - P1 team - OZUEPZSX+LTUEZXYG - - - Set bout length timer to 20 - ZESELPLA - - - Set bout length timer to 60 - TESELPLA - - - Set bout length timer to 90 - PESELPLE - - - Computer controlled players jump faster - ZEUOUPPA - - - Computer controlled players speed up - ZASXAAPA - - - - Mad Max (USA) - - Infinite ammo - SXVAEVVK - - - No damage done to car - AENEPYAP - - - Less damage done to car - GENEPYAP - - - More damage done to car - AXNEPYAP - - - No damage done to you - AAUAUEAA - - - Less damage done to you - GAUAUEAA - - - More damage done to you - APUAUEAA - - - A better tune-up - AVKVLPAZ - - - Dynamite is free - AANEPZPA - - - Ammo is free - AAVEGZPA - - - Cheaper arena pass - GEEATZYA+GLKELZYL - - - Start with full food and water - NYEYVYAX - - - Start with less ammo - AGOYUYEA - - - - Mafat Conspiracy, The (USA) - - Infinite bullets - GXOGZZVG - - - Infinite time - XTNIVXXK - - - Immune to physical damage - GZNGOTOY - - - Immune to weapon damage - GZOKSSON - - - Immune to damage in maze - GXNGPOSN - - - Fewer bullets on pick-up - IASGUSZA - - - More bullets on pick-up - GPSGUSZA - - - Faster timer - AZNIEXGL - - - Slower timer - AYNIEXGL+AYVISXGL - - - - Magic Carpet 1001 (Unl) - - Invincibility - AVEAYKAL - - - - Magic Jewelry (Asia) (Unl) - - Bypass checksum check - GXUTAYEI+GXXVAYEI - - - Speed never increases - AEETNKIT+XXETVGVZ - - - Disable Game Over - GXUVYYEP - - - - Magician (USA) - - Start on area 2 - Wilderness - 0051:01 - - - Start on area 3 - Lake - 0051:02 - - - Start on area 4 - Forest - 0051:03 - - - Start on area 5 - Caverns - 0051:04 - - - Start on area 6 - Dungeons - 0051:05 - - - Start on area 7 - Castle - 0051:06 - - - Start on area 8 - Tower - 0051:07 - - - Start on the Tower Top boss - 0051:08 - - - - Magic of Scheherazade, The (USA) - - Invincibility - OXUYZKPX - - - Infinite HP - OTSXLGSV - - - Infinite lives - SXEVPLVG - - - Hit anywhere - AEEYYGLA+ALNNIGEP+SZNNLGSG+TZNNTKPA+UGNNGKPE - - - Never lose Mashroobs - SZEAEKVK - - - Get coins from anywhere - TEXAXLLA - - - Less energy gained from Bread - POKAOZZU - - - Less magic gained from Mashroobs - ZAEEXGIA - - - Start with only 20 Gold Coins - ZAUTAZIA - - - Start with 1 life - PAKTAZLA - - - Start with 6 lives - TAKTAZLA - - - Start with 9 lives - PAKTAZLE - - - Infinite HP (alt) - 0081:FF - - - Infinite MP - 008D:18 - - - Infinite Bread - 0306:25 - - - Infinite Carpets - 0311:10 - - - Infinite Mashroob - 0307:25 - - - Infinite R. Seeds - 0310:05 - - - Infinite Troopers - 03D7:08 - - - Gain 65280 EXP for each kill - 0086:FF - - - - Magmax (USA) - - Infinite lives - 1P game - SZVVYTVG - - - Infinite lives - 2P game - AEEVITPA - - - Start with 1 life - both players - AEKGKLZA - - - Start with 6 lives - both players - IEKGKLZA - - - Start with 9 lives - both players - AEKGKLZE - - - Infinite lives - P1 - 0058:02 - - - Infinite lives - P2 - 0059:05 - - - Max upgrades - P1 - 008B:05 - - - Max upgrades - P2 - 008C:05 - - - - Maniac Mansion (USA) - - All codes start out as 0000 - SEXGKASZ - - - - Mappy (Japan) - - Invincibility - ASSSXZEI+GXEIOZEY - - - Disable Hurry! timer - GZENZLVT - - - Infinite time - Bonus stages - GZEKUZVG - - - Press Start to complete stage - ATXKIZIA+OZXKAZIK+PAXKGZEY+SAXKZZSE+TLXKLZLX+VAXKPZLZ - - - Ropes don't change color when jumping on them - SZOSNKVS+SZOVZXVS - - - Disable trap floors - SXKYTEOO - - - Collect items from anywhere - normal stages - GXKNTPEI+GXSNPPEL - - - Collect Red Balloons from anywhere - Bonus stages - GXKNTPEI+GXSNPPEL - - - - Mappy-Land (USA) - - Infinite lives - SZKXITVG - - - Start with 1 toy - PESXALLA - - - Start with coins, not toys - LESZALAA - - - Start with fish, not toys - PESZALAA - - - Start with pots, not toys - ZESZALAA - - - Start with 1 life - AEXXTAZA - - - Start with 6 lives - IEXXTAZA - - - Start with 6 toys - TESXALLA - - - - Marble Madness (USA) - - Infinite time - OXVXLZVS - - - Don't break from falling - EYNGALEI - - - Cannot fall into bottomless pits - OZGGYO+SZAEUA+SZEGPXOX - - - Extra 20 seconds to complete beginner race - GOOZPLAA - - - Extra 40 seconds to complete beginner race - AXOZPLAE - - - Bonus time not added - GXEXTLEL - - - Infinite time (alt) - 0044:3C - - - Max score - P1 - 004A:63+004B:63+004C:63 - - - - Mario Bros. (World) - - Invincibility - AVVIEGVI - - - Infinite time - bonus rounds - SZNTPUVK - - - Infinite power blocks - SXNIIZVG - - - Infinite lives - SXTIEG - - - Stops green fireball from appearing - AVOTINSZ - - - Stops red fireball from appearing - AEETXZPA - - - Move faster - PENGSAAA - - - Move much faster - ZENGSAAA - - - Enemies move faster - EZEKEPKZ+ZAEKOPNG - - - Enemies move much faster - EZEKEPKZ+LAEKOPNG - - - Mega-jump - VYSYAUKY+VYSYPUKY - - - Coins kill you - AEUIUGAG - - - Start with 1 life - AAISPL - - - Start with 6 lives - IAISPL - - - Start with 9 lives - AAISPU - - - Infinite lives - P1 - 0048:04 - - - Infinite lives - P2 - 004C:04 - - - - Mario's Time Machine (USA) - - Get an item after killing one Koopa - ZEUUGYAA - - - - Master Chu and the Drunkard Hu (USA) (Unl) - - Invinicibility - SUVOIEVN - - - Infinite health - SLUPANVS - - - Infinite lives - SLXOTYVI - - - Start on round 2 - ZAEALPPA - - - Start on round 3 - LAEALPPA - - - Start on round 4 - GAEALPPA - - - Start on round 5 - IAEALPPA - - - Start on round 6 - TAEALPPA - - - Start on round 7 - YAEALPPA - - - - Mechanized Attack (USA) - - Infinite lives - SXUNPEVK - - - Infinite grenades - SZUNTOVK - - - Infinite bullets - SZEYIOVK - - - Reduce damage by half - AEVOAPLA - - - Magazine holds half normal amount of bullets after first magazine used - GPONAOAZ+GPEYLEAZ - - - Start with only 1 life - EZOKIAXZ+PAOKTAAA+KANKPEVE - - - Start with 6 lives - EZOKIAXZ+TAOKTAAA+KANKPEVE - - - Start with 9 lives - EZOKIAXZ+PAOKTAAE+KANKPEVE - - - Start with only 1 magazine - EZOKIAXZ+AAOKTAAA+KANKTEVE - - - Start with 8 magazines - EZOKIAXZ+YAOKTAAA+KANKTEVE - - - Start with only 1 grenade - EZOKIAXZ+PAOKTAAA+KEEGZEVE - - - Start with 8 grenades - EZOKIAXZ+AAOKTAAE+KEEGZEVE - - - - Mega Man (USA) - - Infinite health - SZKZGZSA - - - Invincibility (except against bosses) - AVVXLPSZ - - - Infinite weapons on pick-up - IESZXESN - - - Infinite weapons on pick-up (alt) - SUSZSASP - - - Infinite lives - OZSKPZVK - - - One hit kills - AAOGSOLA+ESSUNTEP - - - One hit kills on bosses - AUZYGL - - - Collectable items never disappear - SUULTVVN - - - Climb up ladders faster - PENOAYAA - - - Climb down ladders faster - VYXOXENN - - - Disable boss invulnerability after hit - GZVKEPSA - - - Maximum points for shooting enemies - OXSLEEPV+AUSLOEAZ - - - Mega-jump - TAOOYTGA - - - Multi-jump - GOUOTSAP+GXKPVGEL+SUEPLSPX+SOEPGIVP - - - Enemies always drop extra lives - PGOUONLL+XTXLONEK - - - Enemies always drop large health refill - AGOUONLL+XTXLONEK - - - Enemies always drop large weapon refill - XTXLONEK+YLOUONLU - - - Start with half energy - TAXOIOGO - - - Start with 1 life - AASPLAZA - - - Start with 6 lives - IASPLAZA - - - Start with 9 lives - AASPLAZE - - - Invincibility - 0055:5A - - - Infinite health (alt) - 006A:1C - - - Infinite lives (alt) - 00A6:03 - - - Have all weapons and all stages cleared - 005D:FF - - - Bosses have no invulnerability time - 0056:00 - - - - Mega Man 2 (USA) - - Invincibility - EIUGVTEY - - - Invincibility (alt) - AIUGVTEY+SAUGKTSZ - - - Infinite health - SXXTPSSE - - - Infinite lives - SXUGTPVG - - - Infinite Heat Man - SXSSOISA - - - Infinite Air Man - SXSSNZSA - - - Infinite Wood Man - SZVIUYSA - - - Infinite Bubble Man - SZUIKLVG - - - Infinite Quick Man - SZVSNLVG - - - Infinite Metal Man - SXKSOLVG - - - Infinite Clash Man - SXESKLVG - - - Infinite 1 - SZNIVGVG - - - Infinite 2 - SZXTGZVG - - - Infinite 3 - SZKTALVG - - - Burst-fire from normal weapon - LZVSSZYZ - - - Maximum weapon energy on pick-up - GZKEYLAL - - - Hit anywhere (except bosses) - EIUTZTEP+GXETTTEL+GZSVPTEI+GZVTGTEY+GZXTPTEL - - - One hit kills - GXETTTEL+GZUZGTEL - - - Power-jumps - TANAOZGA - - - Super power-jumps - AANAOZGE - - - Mega power-jumps - APNAOZGA - - - Multi-jump - AXEAUUSZ+LXEEYIYZ+SEEASLGA+VEEAKLEX - - - Moonwalking - PGEAKOPX - - - Collectable items never disappear - SSNLNKVS - - - Enemies always drop extra lives - ASUNZZEP+SSUNLXKK - - - Enemies always drop large health refill - ASUNZZEP+OSUNLXKK - - - Enemies always drop large weapon refill - ASUNZZEP+SSUNLXKG - - - Special items re-appear after being collected - OUVVASOO - - - Able to access already defeated boss stages - AEVAZEKI - - - Start with half health - TEKAIEGO - - - Start with 1 life - PANALALA - - - Start with 6 lives - TANALALA - - - Start with 9 lives - PANALALE - - - Invincibility (blinking) - 004B:02 - - - Infinite health (alt) - 06C0:1E - - - Have all weapons and all stages cleared - 009A:FF+009B:FF - - - Infinite Heat Man once obtained - 009C:1E - - - Infinite Air Man once obtained - 009D:1E - - - Infinite Wood Man once obtained - 009E:1E - - - Infinite Bubble Man once obtained - 009F:1E - - - Infinite Quick Man once obtained - 00A0:1E - - - Infinite Flash Man once obtained - 00A1:1E - - - Infinite Metal Man once obtained - 00A2:1E - - - Infinite Crash Man once obtained - 00A3:1E - - - Infinite 1 once obtained - 00A4:1E - - - Infinite 2 once obtained - 00A5:1E - - - Infinite 3 once obtained - 00A6:1E - - - Infinite energy tanks - 00A7:03 - - - Infinite lives (alt) - 00A8:04 - - - Atomic Fire always fully charged - 00AC:FF - - - Bosses have no invulnerability time - 05A8:00 - - - - Mega Man 3 (USA) - - Invincibility - ENXETAEI - - - Infinite health - GXVAAASA - - - Infinite health (alt) - SXVAAASA - - - Infinite lives - AEEGXLPA - - - Infinite weapons (except Top Man) - OUNIVVOO - - - Infinite Top Man - SXOAZZSA - - - Hit anywhere - AOSYXUAU+AVSYUUSL - - - One hit kills - AEKEZPZA - - - Mega-jump - YEUKOTGA - - - Multi-jump - TUOKUIYA+VKUGOIES+GZUKOTEP - - - Longer slides - ASXSTLGP - - - Faster slides - NNKIALEE - - - Move faster - NYKGXSGK - - - Move mega-fast - ZAKGNIPA - - - Collectable items never disappear - SIUUNVVS - - - Enemies always drop extra lives - EZNLXYEP+IANLUNPA+TANLVNEY - - - Enemies always drop large health refill - EZNLXYEP+LANLUNPA+TANLVNEY - - - Enemies always drop large weapon refill - EZNLXYEP+PANLUNPA+TANLVNEY - - - Special items re-appear after being collected - AEXOXGKI - - - Able to access already defeated boss stages - AAOOGLSI - - - Start with 1 life - AENKKAZA - - - Start with 6 lives - IENKKAZA - - - Start with 9 lives - AENKKAZE - - - Start with 1 life after continue - PAOONPZA - - - Start with 6 lives after continue - IAOONPZA - - - Start with 9 lives after continue - AAOONPZE - - - Invincibility (alt) - 0039:39 - - - Infinite health (alt 2) - 00A2:9C - - - Infinite lives - 00AE:03 - - - Infinite slide time - 0033:FF - - - Mega-jump (alt) - CEB9:09 - - - Infinite Gemini Man - 00A3:9C - - - Infinite Needle Man - 00A4:9C - - - Infinite Hard Man - 00A5:9C - - - Infinite Magnet Man - 00A6:9C - - - Infinite Top Man (alt) - 00A7:9C - - - Infinite Snake Man - 00A8:9C - - - Infinite Rush Coil - 00A9:9C - - - Infinite Spark Man - 00AA:9C - - - Infinite Rush Sub - 00AB:9C - - - Infinite Shadow Man - 00AC:9C - - - Infinite Rush Jet - 00AD:9C - - - - Mega Man 4 (USA) (Rev A) - - Infinite health - GXVEIPSA - - - Infinite health (alt) - SXVEIPSA - - - Infinite weapons - OUENESOO - - - Infinite weapon power - GXENESOO - - - Always have 10 E-Tanks - VENOEASZ - - - Infinite lives - SZUGUAVG - - - Infinite energy pods on pick-up - GXNPZTVG - - - Instant full Mega Buster - AEOAIEPA - - - Instant full Mega Buster (alt) - LXKESKAP - - - Hit anywhere - APKYKXOU+ATKYSXAZ - - - Hit anywhere continually - APKYKXOU+ATKYSXAZ+GZKYXZEY - - - Longer slides - YXEAIOZO - - - Shorter slides - ZOEAIOZP - - - Faster slides - GEOAGPZA - - - Mega-jump - AAKEYPIE - - - Multi-jump - AUNELEEG+OAEEYPXA+GZUALPEP - - - Move faster - ZANKPTPA+ZEVALLPA - - - Cosack can't hurt you - SXEAEASA - - - Collectable items never disappear - SIUUNVVS - - - Enemies always drop extra lives - AEOLNLTA+LEOUXUEY - - - Enemies always drop large health refill - AEOLNLTA+LEOUXUEY+ZEOLELGA - - - Enemies always drop large weapon refill - AEOLNLTA+LEOUXUEY+IEOLELGA - - - Special items re-appear after being collected - AEXOXGKI - - - Start with 1 life - AAUKZIZA - - - Start with 6 lives - IAUKZIZA - - - Start with 79 lives - AAUKZIZE - - - Invincibility - 003C:1F - - - Infinite health (alt 2) - 00B0:9C - - - Infinite lives (alt) - 00A1:03 - - - Infinite Bright Man - 00BC:9C - - - Infinite Dive Man - 00B7:9C - - - Infinite Drill Man - 00B9:9C - - - Infinite Dust Man - 00BA:9C - - - Infinite Pharaoh Man - 00BB:9C - - - Infinite Ring Man - 00B8:9C - - - Infinite Skull Man - 00BD:9C - - - Infinite Toad Man - 00B4:9C - - - Infinite Rush Coil - 00B1:9C - - - Infinite Rush Jet - 00B2:9C - - - Infinite Rush Marine - 00B3:9C - - - Infinite Balloon - 00B6:9C - - - Infinite Wire - 00B5:9C - - - Infinite time for 1st Balloon - 046B:FE - - - Infinite time for 2nd Balloon - 046A:FE - - - Infinite time for 3rd Balloon - 0469:FE - - - Instant full Mega Buster (alt 2) - 0559:23 - - - Bosses have no invulnerability time - 05CF:00 - - - - Mega Man 4 (USA) - - Infinite health - GXVEIPSA - - - Infinite health (alt) - SXVEIPSA - - - Infinite weapons - OUENESOO - - - Infinite weapon power - GXENESOO - - - Always have 10 E-Tanks - VENOEASZ - - - Infinite lives - SZUGUAVG - - - Infinite energy pods on pick-up - GXNPZTVG - - - Instant full Mega Buster - AEOAIEPA - - - Instant full Mega Buster (alt) - LXKESKAP - - - Hit anywhere - APKYKXOU+ATKYSXAZ - - - Hit anywhere continually - APKYKXOU+ATKYSXAZ+GZKYXZEY - - - Longer slides - YXEAIOZO - - - Shorter slides - ZOEAIOZP - - - Faster slides - GEOAGPZA - - - Mega-jump - AAKEYPIE - - - Multi-jump - AUNELEEG+OAEEYPXA+GZUALPEP - - - Move faster - ZANKPTPA+ZEVALLPA - - - Collectable items never disappear - SIUUNVVS - - - Enemies always drop extra lives - AEOLNLTA+LEOUXUEY - - - Enemies always drop large health refill - AEOLNLTA+LEOUXUEY+ZEOLELGA - - - Enemies always drop large weapon refill - AEOLNLTA+LEOUXUEY+IEOLELGA - - - Special items re-appear after being collected - AEXOXGKI - - - Start with 1 life - AAUKZIZA - - - Start with 6 lives - IAUKZIZA - - - Start with 9 lives - AAUKZIZE - - - Invincibility - 003C:1F - - - Infinite health (alt 2) - 00B0:9C - - - Infinite lives (alt) - 00A1:03 - - - Infinite Bright Man - 00BC:9C - - - Infinite Dive Man - 00B7:9C - - - Infinite Drill Man - 00B9:9C - - - Infinite Dust Man - 00BA:9C - - - Infinite Pharaoh Man - 00BB:9C - - - Infinite Ring Man - 00B8:9C - - - Infinite Skull Man - 00BD:9C - - - Infinite Toad Man - 00B4:9C - - - Infinite Rush Coil - 00B1:9C - - - Infinite Rush Jet - 00B2:9C - - - Infinite Rush Marine - 00B3:9C - - - Infinite Balloon - 00B6:9C - - - Infinite Wire - 00B5:9C - - - Infinite time for 1st Balloon - 046B:FE - - - Infinite time for 2nd Balloon - 046A:FE - - - Infinite time for 3rd Balloon - 0469:FE - - - Instant full Mega Buster (alt 2) - 0559:23 - - - Bosses have no invulnerability time - 05CF:00 - - - - Mega Man 5 (USA) - - Infinite health - GXSEYZSA - - - Invincible against spikes - SAKEZAIA - - - Infinite lives - GXXAAIVG - - - Infinite weapons - OLKOYSOO+OUNUZSOO+SZSAGZSA - - - Infinite energy for most weapons - OVNLZISV+OTKPYISV - - - Infinite mega-tanks on pick-up - GXSEPZVG - - - Infinite energy tanks on pick-up - GZSATPVG - - - Hit anywhere - APOYYEOU+ATONAEAZ - - - Hit anywhere continually - APOYYEOU+ATONAEAZ+GZOYIAEY - - - One hit kills - AEUAZOIZ - - - Starting weapons use less energy - PEVLLPGA - - - Super-jump - YEXETAIA+ONUELEUN - - - Mega-jump - PEXETAIA+NNUELEUY - - - Multi-jump - SAKATAIO+EAVEZAXA+GXOAAAEP - - - Collectable items never disappear - ATKXOVVI - - - Enemies always drop extra lives - ASEZVTEP+LEEZETGA - - - Enemies always drop large health refill - ASEZVTEP+PEEZETGA - - - Enemies always drop large weapon refill - ASEZVTEP - - - Special items re-appear after being collected - AEUOVPSI - - - Start with at least 2 energy tanks - XAKSUTEA - - - Start with at least 6 energy tanks - VAKSUTEA - - - Start with at least 2 mega-tanks - XASIOTEA - - - Start with at least 6 mega-tanks - VASIOTEA - - - Invincibility - 05B8:2D - - - Infinite health (alt) - 00B0:9C - - - Infinite lives (alt) - 00BF:03 - - - Infinite Beat - 00BC:9C - - - Infinite Charge Kick - 00B8:9C - - - Infinite Crystal Eye - 00B3:9C - - - Infinite Gravity Hold - 00B7:9C - - - Infinite Gyro Attack - 00B2:9C - - - Infinite Napalm Bomb - 00B4:9C - - - Infinite Power Stone - 00B6:9C - - - Infinite Star Crash - 00B9:9C - - - Infinite Super Arrow - 00B5:9C - - - Infinite Water Wave - 00B1:9C - - - Infinite Rush Coil - 00BA:9C - - - Infinite Rush Jet - 00BB:9C - - - Bosses have no invulnerability time - 05C0:00 - - - - Mega Man 6 (USA) - - Invincibility - ESXAKTEY - - - Infinite health - SXEAVNSE - - - Infinite health (except fires, falling into pits and spikes) - GXEAKYST - - - Infinite weapons - OUXPXVOO - - - Infinite Rush Jet - SZVAIZVG - - - Infinite lives (can sometimes die and go to another part of the game) - SXEEXTVG - - - Normal shots do more damage - LOOEKGPP - - - Mega shots do more damage - TOKENGLP - - - Hit anywhere and shoot to pick-up items - LEVVNGIA - - - One hit kills - AEVVUUZA+OXVVXLOU - - - Multi-jump - AGEEYOYA+EAOAPOEG+EIOAZPIA+PZOAAOSX+SZEETPEI+XGOALPAU+XTOAGOZE - - - Collectable items never disappear - UKXOTXVI - - - Enemies always drop extra lives - AENAIOPP+YLOEGXPG+YLOELXZG+YLOEPXPL+YLOEZXAL - - - Enemies always drop large health refill - AENAIOPP+PLOEGXPK+PLOEIZYU+PLOELXZK+PLOEZXAU - - - Enemies always drop large weapon refill - AENAIOPP+ZGOEGXPK+ZGOEIZYU+ZGOEPXPU+ZGOEZXAU - - - Start with 9 lives - AAUKVIZE - - - Start with 6 lives - IAUKVIZA - - - Start with 1 life - AAUKVIZA - - - Invincibility (alt) - 00A2:36 - - - Infinite health (alt) - 03E5:1B - - - Infinite lives - 00A9:03 - - - Super Moonwalk (enable during stages only) - 05B1:00 - - - Infinite Beat - 0689:1B - - - Infinite C Flash - 0690:1B - - - Infinite Centaur - 0691:1B - - - Infinite F Blast - 068C:1B - - - Infinite Knight - 068E:1B - - - Infinite Plant B - 068D:1B - - - Infinite W Storm - 068B:1B - - - Infinite Yamato - 068A:1B - - - Have the Energy Balancer - 0696:01 - - - Bosses have no invulnerability time - 0640:00 - - - - Menace Beach (USA) (Unl) - - Infinite health and one hit kills (levels 1-9, 11, 12 only) - ETVVPOAL+EYVVLPPP+TAVVGPEL+XTVVIPZE+AAVVZPST - - - Infinite health and one hit kills (level 10 only) - ETVVPOAL+EYVVLPPP+TAVVGPEL+XTVVIPZE+PAVVZPST - - - Multi-jump - OZKYPGSX+XAKYZGZT - - - - Mendel Palace (USA) - - Infinite lives - SLSIXXVS - - - More stars on pick-up - IEXIAIPA - - - P1 gains P2's speed-ups - SZUIOOSU+VTUSEOVN - - - More lives - P1 - KEXLXKSE - - - More lives - P2 - KEXLSKSE - - - Start with 1 life - AAVZLPZA - - - Start with 5 lives - IAVZLPZA - - - Start with 9 lives - AAVZLPZE - - - Automatically finish level - 051B:00 - - - - Metal Force (K) - - Invincibility - ENXTTYEI+EYNTZYEI+EYOTNAEI - - - Invincible against spikes - EYSTOAEI - - - Infinite energy - AONPTYAA+GONOLYZE - - - Infinite lives - SXVTZVSE - - - Keep whatever weapon you started the level with - SXUITXSE - - - Start with max weapon power - ZEOAPLAA - - - Start on Mission 7 - YEOATLPA - - - - Metal Gear (USA) - - Infinite health - SXVTXZVG+SZUYPZVG - - - Invincible against Gas - SXELYGVG - - - Invincible against Electric Floors - SZSUVZVG - - - Infinite Rations - SXXXETVG - - - Infinite Handgun ammo - SZSVVYVG - - - Infinite Mines - KXEVUTKA - - - Infinite Explosives - VXXVETVA - - - Infinite Missiles - VXVVKTVA - - - Infinite Machine Gun ammo - SZKVXYVG - - - Infinite Grenades - KZEVXYKA - - - Infinite Rockets - VXKVNTVA - - - Have all weapons - OZSXKGXX+NYSXSGAE+SASXVGSZ - - - Enemies never attack or chase you - SLNIUGSP - - - Hit anywhere - Punch - AAETIUUT+AAOTPUNI+AAOVPLNI+ASVVYZEP - - - Hit anywhere - Weapons except Grenade Launcher - AISNYZEY - - - Start with a health boost - XZVSAYVZ+PAVSPNTT+AEKSZYIE - - - Start with a super health boost - XZVSAYVZ+PAVSPNTT+GEKSZYIE - - - Start at mystery location 1 - ZASILYPA - - - Start at mystery location 2 - GASILYPA - - - Infinite health (alt) - 006D:10 - - - Have all equipment - 0075:FF+0076:FF+0077:FF+0078:0C - - - Have all weapons (alt) - 0070:FF - - - Infinite Handgun ammo (alt) - 0079:FF - - - Infinite Mines (alt) - 007A:0E - - - Infinite Explosives (alt) - 007B:0E - - - Infinite Missiles (alt) - 007C:0E - - - Infinite Machine Gun ammo (alt) - 007D:FF - - - Infinite Grenades (alt) - 007E:3C - - - Infinite Rockets (alt) - 007F:1E - - - Have Rank - 0 Stars - 006E:00 - - - Have Rank - 1 Star - 006E:01 - - - Have Rank - 2 Stars - 006E:02 - - - Have Rank - 3 Stars - 006E:03 - - - Have Rank - 4 Stars - 006E:04 - - - - Metal Mech - Man & Machine (USA) - - Invincibility - SZUAXYAX - - - Infinite health - SXNPYNSE+SZVOEESE - - - Infinite lives - Tony - SZEYAVVK - - - Infinite Smart Bombs - SZVYISVK - - - Super-jumping Tony - VNNXTENN - - - Super-speeding Tony - ZEEXGAIA - - - Mega-speeding Tony - PEEXGAIA - - - Start with 1 life and 1 Smart Bomb - PEKSILLA - - - Start with 6 lives and 6 Smart Bombs - TEKSILLA - - - Start with 9 lives and 9 Smart Bombs - PEKSILLE - - - Start on level 2 - AESSAUNY - - - Start on level 3 - PESSAUNY - - - Start on level 4 - ZESSAUNY - - - Start on level 5 - LESSAUNY - - - Start on level 6 - GESSAUNY - - - Infinite health (alt) - 05DD:1F - - - - Metal Storm (USA) - - Invincibility - SZNTGTSA+SZOUIYSA - - - Infinite time - SXKNAIVG - - - Infinite lives - AASOYYPA - - - Slower timer - AVKYPSGL - - - Faster timer - AXKYPSGL - - - Permanent Fireball - AESTKXGA - - - Permanent Shield - AESXXNGY - - - Start with extra weapons - NNNLOLAE - - - Start with 6 lives - TEXUNLZA - - - Start with 9 lives - PEXUNLZE - - - - Metroid (USA) - - Invincibility - PZNVGZZN+APKYKKKP+ATEPUVSZ+AVKYXTAZ+AVOYIXSL+AVUYTZAZ+AVVNYZAZ+EPKYUGAZ+EPNVLZKA+OXEPNOOK - - - Minimum energy of 30 - SXSGNVSE - - - Always have Screw Attack effect - AOOKKSAU+AVXGESEA - - - Infinite Missiles on pick-up - SZUILUVK - - - Hit anywhere - AAKYLLLA+GXKNZZEL+NYUNYIAX+SXSYZZAX - - - Enemies die automatically - AAKYPSPZ - - - Beam has longer range - IIAIII - - - Get items from anywhere - AEXSNLTG+GXENAGEY - - - Gain 10 Missiles on pick-up - ZENSXLIE - - - Gain 15 Missiles on pick-up - YENSXLIE - - - Gain 255 Missiles on pick-up - NNNSXLIE - - - High-jump without High Jump Boots - ZONGKNAP - - - Mega-jump without High Jump Boots - GENGKNAO - - - Mega-jump with High Jump Boots - GENKSYZO - - - Multi-jump - GZUIAAEY+GZOGEIEY - - - No enemies - EATTOU - - - Roll through walls, but loses energy (glitchy) - SSAEAI - - - Start with 70 energy - YAXGVPLA - - - Have all items - 6878:FF - - - Infinite energy, Missiles and all items - 69B2:01 - - - - Michael Andretti's World GP (USA) - - Infinite time - 0565:01 - - - - Mickey Mania 7 (Unl) - - Infinite health - SXEPTOVK - - - Infinite lives - SZEPYSVK - - - Infinite Apples - SZKPPVVK - - - - Mickey Mouse 3 - Yume Fuusen (Japan) - - Invincibility - EYNXOYEI - - - Infinite health (life) - SZKEOESE - - - Infinite lives - SZNAKESE - - - - Mickey Mousecapade (USA) - - Invincibility - ESEPKZEY+ESVPNZEY - - - Infinite health - OVOPPTSV - - - Infinite lives - SZSOPZVG - - - Mickey and Minnie can shoot on any level - GPSIEVGE+LAVSVTZA - - - Start with 2 lives - PESOIPGA - - - Start with 6 lives - IESOIPGA - - - Start with 9 lives - AESOIPGE - - - - Micro Machines (USA) (Unl) - - Infinite lives - GXSZZVVK - - - Qualify every race - GEKYSZZA - - - Play with 9 lives - PEKNAYLE - - - Ruff Trux after every race - PEUYXZLA - - - Kid out of game after every race - PASYNALA - - - Win Championship race - GESYOZPA - - - Faster Boat acceleration - AAOEIAIA - - - Faster Sports Car acceleration - AAOEGAIA - - - Faster Formula 1 acceleration - AAOETAIA - - - Faster Turbo Wheels(tm) acceleration - AAOEYAIA - - - Faster 4x4 acceleration - AAXAAAIA - - - Faster Tank acceleration - AAXAZAZA - - - Faster Chopper acceleration - AAXALAIA - - - Quicker Boat deceleration - AAXATEPA - - - Quicker Sports Car deceleration - AAXAIEPA - - - Quicker Formula 1 deceleration - AAXAYEPA - - - Quicker Turbo Wheels deceleration - AAXEAEPA - - - Quicker 4x4 deceleration - AAXEPEPA - - - Quicker Tank deceleration - AAXELAZA - - - Quicker Chopper deceleration - AAXEGEYA - - - Higher bounce for Boats - YAEAZAPA - - - Higher bounce for Sports cars - IAEAPAPA - - - Higher bounce for Formula 1's - YAEALAPA - - - Higher bounce for Turbo Wheels - YAEAGAPA - - - Higher bounce for 4x4's - YAEAIAPA - - - Higher bounce for Tanks - YAEAYAPA - - - Drive through vehicles - POLESS - - - Start on race 5 - GEKNIYAA - - - Start on race 10 - PEKNIYAE - - - Start on race 15 - TEKNIYAE - - - Start on race 20 - LOKNIYAA - - - Start on race 25 (Final Race) - AOKNIYAE - - - - Micro Machines (USA) (Aladdin Compact Cartridge) (Unl) - - Infinite lives - GZNXGVVK - - - Qualify every race - GAXYSZZA - - - Play with 9 lives - PAXNAYLE - - - Ruff Trux after every race - PAOYXZLA - - - Kid out of game after every race - PEUYYYLA - - - Win Championship race - GAUYOZPA - - - Faster Boat acceleration - AAOEIAIA - - - Faster Sports Car acceleration - AAOEGAIA - - - Faster Formula 1 acceleration - AAOETAIA - - - Faster Turbo Wheels(tm) acceleration - AAOEYAIA - - - Faster 4x4 acceleration - AAXAAAIA - - - Faster Tank acceleration - AAXAZAZA - - - Faster Chopper acceleration - AAXALAIA - - - Quicker Boat deceleration - AAXATEPA - - - Quicker Sports Car deceleration - AAXAIEPA - - - Quicker Formula 1 deceleration - AAXAYEPA - - - Quicker Turbo Wheels deceleration - AAXEAEPA - - - Quicker 4x4 deceleration - AAXEPEPA - - - Quicker Tank deceleration - AAXELAZA - - - Quicker Chopper deceleration - AAXEGEYA - - - Higher bounce for Boats - YAEAZAPA - - - Higher bounce for Sports cars - IAEAPAPA - - - Higher bounce for Formula 1's - YAEALAPA - - - Higher bounce for Turbo Wheels - YAEAGAPA - - - Higher bounce for 4x4's - YAEAIAPA - - - Higher bounce for Tanks - YAEAYAPA - - - Drive through vehicles - POLESS - - - Start on race 5 - GAXNIYAA - - - Start on race 10 - PAXNIYAE - - - Start on race 15 - TAXNIYAE - - - Start on race 20 - LPXNIYAA - - - Start on race 25 (Final Race) - APXNIYAE - - - - Mighty Bomb Jack (USA) - - Invincibility - OXOOYNPX - - - Invincibility (alt) - SXUPPNSE+SZEOXUSE - - - Infinite lives - VZUEZNVK - - - Infinite time - SXXALNVK - - - Less time in game - AKOEGYAT - - - More time in game - EEOEGYAT - - - Enemies don't return from coin transformation - SXOESEVK - - - Power coins are not used up - SZEEXUVK - - - Disable torture room - OESPNTLA - - - Jump through walls - ZEUOUAPA - - - Start with 1 life - PAOEZZLA - - - Start with 6 lives - TAOEZZLA - - - Start with 9 lives - PAOEZZLE - - - Infinite lives (alt) - 0295:09 - - - Infinite time (one's digit) - 0229:09 - - - Infinite time (ten's digit) - 022D:09 - - - Infinite M's - 0235:09 - - - - Mighty Bomb Jack (Japan) - - Invincibility - PANPSEPX - - - Invincibility (alt) - SXEPNESE+SXVPSUSE - - - - Mighty Final Fight (USA) - - Invincibility - EAXKNYAA - - - Infinite lives - SZKSNIVG - - - Infinite credits - SZOOLGVG - - - Protection from most hazards - SZXNUPSA - - - Cody is weaker - SZUEAVOU - - - Cody is stronger - EXSEYIKZ+IEVAASLT - - - Cody is stronger and has a super-powerful normal punch - EXSEYIKZ+IEVAASLT+AKEASELA - - - Cody is much stronger - OZUEAVOU+AGUEPTVI+XTUEZTNE - - - Guy is weaker - SZSATVOU - - - Guy is stronger - EZEAYTKZ+IAEEAVLT - - - Guy is stronger and has a super-powerful normal punch - EZEAYTKZ+IAEEAVLT+AGUAKPZA - - - Guy is much stronger - OZSATVOU+AGSAYVEZ+XTSEAVEE - - - Haggar is weaker - SZNAGVOU - - - Haggar is stronger - EZXAYTKZ+LAXEAVLT - - - Haggar is stronger and has a super-powerful normal punch - EZXAYTKZ+LAXEAVLT+AKKEUOIA - - - Haggar is much stronger - OZNAGVOU+AGNAITYI+XTNATVOE - - - Gain EXP faster (10 pts at a time) (may be displayed incorrectly) - OXKAXZSX+AOKAUZIA - - - Gain EXP much faster (20 pts at a time) (may be displayed incorrectly) - OXKAXZSX+AXKAUZIA - - - Cody starts with 3/4 health (1st life only) - ALKGOAAG - - - Cody starts with 1/2 health (1st life only) - AZKGOAAG - - - Cody starts with 1/4 health (1st life only) - APKGOAAG - - - Cody starts with 3/4 health (after 1st life) - ALKSKTAG - - - Cody starts with 1/2 health (after 1st life) - AZKSKTAG - - - Cody starts with 1/4 health (after 1st life) - APKSKTAG - - - Guy starts with 3/4 health (1st life only) - GZKGXAAL - - - Guy starts with 1/2 health (1st life only) - APKGXAAU - - - Guy starts with 1/4 health (1st life only) - GAKGXAAU - - - Guy starts with 3/4 health (after 1st life) - GZSIXTAL - - - Guy starts with 1/2 health (after 1st life) - APSIXTAU - - - Guy starts with 1/4 health (after 1st life) - GASIXTAU - - - Haggar starts with 3/4 health (1st life only) - GLKGUAAS - - - Haggar starts with 1/2 health (1st life only) - AZKGUAAS - - - Haggar starts with 1/4 health (1st life only) - GPKGUAAI - - - Haggar starts with 3/4 health (after 1st life) - GLSSETAS - - - Haggar starts with 1/2 health (after 1st life) - AZSSETAS - - - Haggar starts with 1/4 health (after 1st life) - GPSSETAI - - - Start with 2 lives (doesn't work on continues) - PEVKTYIA - - - Start with 4 lives (doesn't work on continues) - LEVKTYIA - - - Start with 8 lives (doesn't work on continues) - YEVKTYIA - - - Start with 10 lives (doesn't work on continues) - PEVKTYIE - - - Start with 1 credit - PENGZYLA - - - Start with 5 credits - IENGZYLA - - - Start with 7 credits - YENGZYLA - - - Start with 9 credits - PENGZYLE - - - Invincibility (alt) - 003B:25 - - - Infinite health - 003A:30 - - - Infinite lives (alt) - 003E:09 - - - Max level - 006B:05 - - - - MiG 29 - Soviet Fighter (USA) (Unl) - - Keep weapon after death - SZSSOLVG - - - Start with best weapon - LANKPPAA - - - More time to refuel - NNEOZAAE - - - Less time to refuel - LEEOZAAA - - - Start with 1 life - AANGGPLA - - - Start with 6 lives - IANGGPLA - - - Start with 9 lives - AANGGPLE - - - Start with 255 lives - VYNGGPLE - - - Start on mission 2 - OZOOYPSX+PAXPAPIP+XIXPZPPS - - - Start on mission 3 - OZOOYPSX+ZAXPAPIP+XIXPZPPS - - - Start on mission 4 - OZOOYPSX+LAXPAPIP+XIXPZPPS - - - Start on mission 5 - OZOOYPSX+GAXPAPIP+XIXPZPPS - - - Start on mission 6 - OZOOYPSX+IAXPAPIP+XIXPZPPS - - - - Mike Tyson's Punch-Out!! (Japan, USA) (Rev A) - - Infinite health - ATEALIXZ - - - Infinite hearts - PAXEUPAE - - - Infinite hearts (alt) - GZKETGST - - - Infinite stars - AAVEAOTP - - - Infinite stars once obtained - ALNEVPEY - - - Infinite time - XXXELNVA+SUSETNSO - - - Infinite time (alt) - SUSETNSO - - - Opponent cannot block punches - INUAIZSY - - - No health for opponent - ATOEXESA+SXKAYKSE - - - No health replenishment for opponent - SZSELPAX - - - Take less damage - SZVAAOIV - - - Take even less damage - SZVALPAX - - - Normal punches do more damage - AAVETLGA - - - Instant win - YZLOSS - - - Instant loss - UZLOSS - - - First knockdown will be a TKO - AXIONS - - - Start with and have infinite stars - ALVAYPEY - - - Start each round with 3 stars - LASAEPAA - - - Infinite health (alt) - 0391:60 - - - Infinite hearts (alt 2) - 0324:0A - - - Infinite time - 0305:00+0306:00+0307:00 - - - No health for opponent (alt) - 0398:00 - - - First knockdown will be a TKO - 03CA:02+03D1:02 - - - Start with and infinite stars - 0342:03 - - - Start on match 02 - Von Keiser - 0001:01 - - - Start on match 03 - Piston Honda - 0001:02 - - - Start on match 04 - Don Flamenco - 0001:03 - - - Start on match 05 - King Hippo - 0001:04 - - - Start on match 06 - Great Tiger - 0001:05 - - - Start on match 07 - Bald Bull - 0001:06 - - - Start on match 08 - Piston Honda (2nd match) - 0001:07 - - - Start on match 09 - Soda Popinski - 0001:08 - - - Start on match 10 - Bald Bull (2nd match) - 0001:09 - - - Start on match 11 - Don Flamenco (2nd match) - 0001:0A - - - Start on match 12 - Mr. Sandman - 0001:0B - - - Start on match 13 - Super Macho Man - 0001:0C - - - Start on match 14 - Mike Tyson - 0001:0D - - - - Mike Tyson's Punch-Out!! (Japan, USA) - - Infinite health - ATEALIXZ - - - Infinite hearts - PAXEUPAE - - - Infinite hearts (alt) - GZKETGST - - - Infinite stars - AAVEAOTP - - - Infinite stars once obtained - ALNEVPEY - - - Infinite time - XXXELNVA+SUSETNSO - - - Infinite time (alt) - SUSETNSO - - - Opponent cannot block punches - INUAIZSY - - - No health for opponent - ATOEXESA+SXKAYKSE - - - No health replenishment for opponent - SZSELPAX - - - Take less damage - SZVAAOIV - - - Take even less damage - SZVALPAX - - - Normal punches do more damage - AAVETLGA - - - Start with and have infinite stars - ALVAYPEY - - - Start each round with 3 stars - LASAEPAA - - - Infinite health (alt) - 0391:60 - - - Infinite hearts (alt 2) - 0324:0A - - - Infinite time - 0305:00+0306:00+0307:00 - - - No health for opponent (alt) - 0398:00 - - - First knockdown will be a TKO - 03CA:02+03D1:02 - - - Start with and infinite stars - 0342:03 - - - Start on match 02 - Von Keiser - 0001:01 - - - Start on match 03 - Piston Honda - 0001:02 - - - Start on match 04 - Don Flamenco - 0001:03 - - - Start on match 05 - King Hippo - 0001:04 - - - Start on match 06 - Great Tiger - 0001:05 - - - Start on match 07 - Bald Bull - 0001:06 - - - Start on match 08 - Piston Honda (2nd match) - 0001:07 - - - Start on match 09 - Soda Popinski - 0001:08 - - - Start on match 10 - Bald Bull (2nd match) - 0001:09 - - - Start on match 11 - Don Flamenco (2nd match) - 0001:0A - - - Start on match 12 - Mr. Sandman - 0001:0B - - - Start on match 13 - Super Macho Man - 0001:0C - - - Start on match 14 - Mike Tyson - 0001:0D - - - - Millipede (USA) - - Infinite lives - both players - SUKGETVI - - - Increase territory to half screen - ASESIIEZ - - - Increase territory to full screen - AXESIIEZ - - - Shrink territory - NKESIIEZ - - - Player's bullets move faster - ZEUSXYTE - - - Player's bullets move slower - LEUSXYTA - - - Start with 1 life - P1 - PAVKSPGA - - - Start with 10 lives - P1 - ZAVKSPGE - - - - Milon's Secret Castle (USA) - - Infinite health - SZNSLZSA - - - More health on pick-up - AOKGNXAE - - - No health on pick-up - AEKGNXAA - - - Max power bubbles - ASEZZYEI - - - Hit anywhere - ESUIGOOG+GXUIIOAA - - - Floating Milon - ASNPVZLA - - - Start with more health - AGSEEZAZ - - - Start with a bigger health bar - AISAOXAL - - - Infinite health (alt) - 00B2:3F - - - Doors always unlocked - 07BF:FF - - - Set money to $900 - 00A1:09 - - - Have all Crystals - 07B7:FA - - - Have Blimp Ship - 07A6:FA - - - Have Feather - 07A4:FA - - - Have Hammer - 07A0:FA - - - Have Ice Bottle - 07A8:FA - - - Have Jump Shoes - 079A:FA - - - Have Lantern - 079F:FA - - - Have Medicine - 079D:FA - - - Have Roller Shoes - 079B:FA - - - Have Saw - 079C:FA - - - Have Sword - 07A7:FA - - - Have Tube - 07A5:FA - - - Have Vest - 07A3:FA - - - - Mission Cobra (USA) (Unl) - - Infinite health - AANNZPGT+AAESVIGT+AAXIOLGT - - - Infinite health (alt) - 009A:63 - - - - Mission Impossible (USA) - - Infinite Type B weapons for all - AAUPIZPA - - - Take less damage - SXUETVOU - - - Take more damage - ZENETTPA - - - 2 Type B weapons for Nicholas - ZEULXGIA - - - 9 Type B weapons for Nicholas - PEULXGIE - - - 5 Type B weapons for Max and Grant - IEXUXKZA - - - 15 Type B weapons for Max and Grant - YEXUXKZE - - - Longer disguise time - VKOAVOSX+GAEOPLPA - - - Start with less health - TEOUNKGA - - - Start with more health - AOOUNKGA - - - Infinite health - 03EC:0D+03ED:0D+03EE:0D - - - Infinite weapons - 03F5:0A+03F6:0A+03F7:09 - - - - Mitsume ga Tooru (Japan) - - Hit anywhere - AEULXZLA - - - One hit kills - NNSLUZPE+OXSLXXOV - - - Collect money from anywhere - AIXALGEL+ALVEOIEL - - - Increase projectile limit to 13 - IEESTTLE - - - Start a new game for hidden debug TEST MODE menu - LAKAPLGA - - - Start a new game to view the ending - YAKAPLGA - - - - Monopoly (USA) - - Collect $300 as you pass Go - YLSSOLPU - - - Collect $100 as you pass Go - IPSSOLPU - - - Pay $0 to get out of jail - AAVZKAYP - - - Pay $100 to get out of jail - IPVZKAYO - - - Pay $30 for luxury tax - LOOAVKZP - - - Pay $100 for luxury tax - IOOAVKZO - - - Pay $200 for luxury tax - PUOAVKZP - - - Pay $0 for income tax - AESAVGPL - - - Pay $30 for income tax - LOSAVGPL - - - Pay $100 for income tax - IOSAVGPU - - - Pay $300 for income tax - YUSAVGPU - - - $300 to buy Boardwalk - YLOSLKLK - - - $600 to buy Boardwalk - LIOSLKLG - - - $200 to buy Park Place - PLOIZGIG - - - $400 to buy Park Place - LGOIZGIK - - - $600 to buy Park Place - LIOIZGIG - - - Houses on Park Place cost $100 - IPOSZGPU - - - Houses on Park Place cost $300 - YLOSZGPU - - - Houses on Boardwalk cost $100 - IPXILGPU - - - Houses on Boardwalk cost $300 - YLXILGPU - - - Go Back 7 spaces instead of 3 on Chance - YAOAILLA - - - - Monster in My Pocket (USA) - - Invincibility after first hit - SUKEPSVS+OOVAPTEP - - - Infinite energy - SUSEIVVS - - - Infinite lives - SLSAASVS - - - - Monster Party (USA) - - Invincibility - AVOEZYSZ - - - Infinite life against normal enemies - SXXAYYVG - - - Infinite life against Guardians - VVXAIYVG - - - One hit kills normal enemies - EYEEIIEL - - - One hit kills Guardians - AAUEUIZA - - - Walk twice as fast - VNKETXNN+ZEUEAZPA - - - Jump twice as far - VNNAZKNN+ZESEYGPA - - - Start with double life - APUPZSGE+AOKPTKGE - - - Start with full life - GZUPZSGE+GXKPTKGE - - - Start on level 2 - PAKOZIAA - - - Start on level 3 - ZAKOZIAA - - - Start on level 4 - LAKOZIAA - - - Start on level 5 - GAKOZIAA - - - Start on level 6 - IAKOZIAA - - - Start on level 7 - TAKOZIAA - - - Start on level 8 - YAKOZIAA - - - - Moon Ranger (USA) (Unl) - - Infinite lives - SXUSGVVK - - - - Mother (Japan) - - Start a new game with $1024 - GAOLOTAA - - - Start a new game with $16,384 - AGOLOTAA - - - - MotorCity Patrol (USA) - - Don't take damage - AEEXGTPA - - - Slow down timer - ANOEIOGL - - - Speed up timer - YOOEIOGU - - - Free equipment - GXUESKVK+APUAUGEI - - - Start with 5 merits - IAOXILAA - - - - Mr. Gimmick (Europe) - - Invincibility - EIOAAGEY+VTOAZKVK - - - Infinite health - SKOEEKVK - - - Infinite lives - SKVTTSVK - - - Start with 3 Bombs - LEVTIAAA - - - Start with 3 Fireballs - ZEVTIAAA - - - Start with 3 Potions - PEVTIAAA - - - Invincibility (alt) - 038C:02 - - - Infinite health (alt) - 0346:04 - - - Infinite lives (alt) - 0104:09 - - - - Ms. Pac-Man (USA) - - Infinite lives - P1 - 003F:06 - - - Infinite lives - P2 - 004F:06 - - - Power pill effect always active - 00CF:0F - - - Start on stage 02 - 003E:02 - - - Start on stage 03 - 003E:03 - - - Start on stage 04 - 003E:04 - - - Start on stage 05 - 003E:05 - - - Start on stage 06 - 003E:06 - - - Start on stage 07 - 003E:07 - - - Start on stage 08 - 003E:08 - - - Start on stage 09 - 003E:09 - - - Start on stage 10 - 003E:0A - - - - Ms. Pac-Man (USA) (Unl) - - Infinite lives for both players in alternating type games - SXNETZVG - - - Infinite lives for P2 only, in other type games - SZEALUVK - - - Super fast turbo speed - XVONINZK - - - Pinky out of game - AAUEZTZA - - - Sue out of game - AASEZTZA - - - Start with 1 life - both players - AEUAYTZA - - - Start with 6 lives - both players - IEUAYTZA - - - Start with 9 lives - both players - AEUAYTZE - - - Start with 1 life for P2 in 2P cooperative and competitive games - KEUEZVSE - - - Only pink ghost escapes from center - 002A:1B+023D:0E+002C:0B - - - Max score - P1 - 00D0:09+00D1:99+00D2:99 - - - Infinite lives - 00D4:09 - - - Start on level 2 - 0127:01 - - - Start on level 3 - 0127:02 - - - Start on level 4 - 0127:03 - - - Start on level 5 - 0127:04 - - - Start on level 6 - 0127:05 - - - - Muppet Adventure - Chaos at the Carnival (USA) - - Infinite power - SZKANZVG - - - - Mutant Virus, The - Crisis in a Computer World (USA) - - Invincibility - SXEKXGVG - - - Infinite health - SZKGNUSE - - - Infinite time - VXEITKVE - - - Infinite lives - XVEITKVE - - - Don't flash after getting hit - AEESZKNY - - - Flash 1/2 as long after getting hit - LVESZKNY - - - Start with 1 life - AEOGTAIA - - - Start with 3 lives - ZEOGTAIA - - - Start with 7 lives - SEOGTAIA - - - Start with 10 lives - PEOGTAIE - - - Infinite health (alt) - 0119:0C - - - Infinite lives (alt) - 0110:06 - - - - Mystery Quest (USA) - - Invincibility - GXNPYAVG - - - Infinite vitality - SXNPYAVG - - - Immune to monster attacks - AEXOGEEY - - - Immune to shallow water - AEUOAENY - - - Never lose Key - GXVOOYSA - - - Never lose Raft - PENOPTAA - - - Start with more vitality - ATSEUYAG - - - Start with less vitality - AZSEUYAG - - - Start with Raft and Key - PEUOKPAA - - - - NARC (USA) - - Invincibility (blinking) - both players - AENXPOTA - - - Infinite health - both players - XVXVGLVN - - - Infinite Bullets - AAOSUPPA - - - Infinite Missiles - AEEILGPA - - - Infinite lives - SUKVTLVI - - - Enemies die automatically - ASUSNYEY+PSKIEYUY - - - Hit anywhere - P1 - AASTAPLA+ASKIOYKZ+YKKIXYTS - - - More missiles - PUVAGAIU - - - 1 Missile on pick-up - PEUZPZIA - - - 9 Missiles on pick-up - PEUZPZIE - - - 45 Bullets on pick-up - GASPTLZA - - - Start with 1 life - AAUAZPZA - - - Start with 6 lives - IAUAZPZA - - - Start with 9 lives - AAUAZPZE - - - - NES Open Tournament Golf (USA) - - Always on first shot - PEUAGVSP - - - No wind - SZKINZSA - - - - NES Play Action Football (USA) - - 30-minute quarters - TOKYLKYE - - - 10-minute quarters - ZEKYLKYE - - - No timeouts - P2 - KEKLUNSE - - - 6 timeouts per half (ignore display) - TEUUNYLA - - - 1 timeout per half - PEUUNYLA - - - - Nigel Mansell's World Championship Challenge (USA) - - Almost no tire wear - SZSTLEVK+SZNNXEVK - - - Only need 1 lap on all tracks - ZANKXZYA+SXNKSESU - - - Accelerate faster - IVSNIOIN - - - Accelerate a lot faster - IVSNIOIN+AAKNALGE - - - No extra time in the pits - GZSULOVV - - - Less tire wear - SZSTLEVK - - - Only need 3 laps in South Africa instead of 6 - GANKXZYA - - - Only need 3 laps in Mexico instead of 6 - GANKUZYA - - - Only need 3 laps in Brazil instead of 5 - GANKKZTA - - - Only need 3 laps in Spain instead of 4 - GANKSZIA - - - Only need 3 laps in San Marino instead of 6 - GANKVZYA - - - Only need 3 laps in Monaco instead of 5 - GANKNZTA - - - Only need 3 laps in Canada instead of 6 - GEEGEZYA - - - Only need 3 laps in France instead of 4 - GEEGOZIA - - - Only need 3 laps in Great Britian instead of 5 - GEEGXZTA - - - Only need 3 laps in Germany instead of 5 - GEEGUZTA - - - Only need 3 laps in Hungary instead of 5 - GEEGKZTA - - - Only need 3 laps in Belgium instead of 5 - GEEGSZTA - - - Only need 3 laps in Italy instead of 6 - GEEGVZYA - - - Only need 3 laps in Portugal instead of 4 - GEEGNZIA - - - Only need 3 laps in Japan instead of 5 - GEEKEZTA - - - Only need 3 laps in Australia instead of 5 - GEEKOZTA - - - Full season ends after South Africa - PEOXOZAP - - - Full season ends after Mexico - ZEOXOZAP - - - Full season ends after Brazil - LEOXOZAP - - - Full season ends after Spain - GEOXOZAP - - - Full season ends after San Marino - IEOXOZAP - - - Full season ends after Monaco - TEOXOZAP - - - Full season ends after Canada - YEOXOZAP - - - Full season ends after France - AEOXOZAO - - - Full season ends after Great Britian - PEOXOZAO - - - Full season ends after Germany - ZEOXOZAO - - - Full season ends after Hungary - LEOXOZAO - - - Full season ends after Belgium - GEOXOZAO - - - Full season ends after Italy - IEOXOZAO - - - Full season ends after Portugal - TEOXOZAO - - - Full season ends after Japan - YEOXOZAO - - - Start with 1/2 normal tire tread - AEEKXAAO - - - - Nightmare on Elm Street, A (USA) - - Invincibility - EIOLILEY - - - Infinite health - SUUUKNVN - - - Infinite lives - SUELSUVS - - - Infinite 'zzz' - SZUPPEVS - - - Have all characters - ESVLNPEY+ENSUOPEI - - - Hit anywhere - AAOKENIA+APXGEYEY+ASNKKTEY - - - One hit kills - EIVKKYEY - - - No enemies - AEOXAPIA+OXOZYOSX+XVOXPPPE - - - Always able to switch characters - AUKUVPEY - - - Freddy will not show up in Nightmare World - SXNTPEVK - - - Mega-jumping teenagers - IEULIGLA - - - Don't lose 'zzz' when hit - AESSLAEA - - - Don't lose 'zzz' when standing still - AAXOLAPA - - - Lose 'zzz' quicker - ZAXOLAPA - - - Start with 1 continue - PAUVEZLA - - - Start with 6 continues - TAUVEZLA - - - Start with 9 continues - PAUVEZLE - - - - Nightshade (USA) - - Invincible in fights - TKISGT - - - Invincible out of fights - TKISAI - - - - Ninja Crusaders (USA) - - Invincibility - EYSKYAEI - - - Infinite lives - SLKKAOVS - - - Hit anywhere - GGNKNTEN+OSEGEVLP+VKEGOVOU - - - Collect items from anywhere - GZOXLTEL+GZXXTTEL - - - Multi-jump - GZSXETEY - - - Mega-jump - IZNXNTZP - - - Super speed - SYXESUVN+ZAXEULPA - - - Start with 1 life - PEOZEALA - - - Start with 6 lives - TEOZEALA - - - Start with 9 lives - PEOZEALE - - - Start on stage 1-2 - PAEPTGAA - - - Start on stage 2-1 - ZAEPTGAA - - - Start on stage 2-2 - LAEPTGAA - - - Start on stage 3-1 - GAEPTGAA - - - Start on stage 3-2 - IAEPTGAA - - - Start on stage 4-1 - TAEPTGAA - - - Start on stage 4-2 - YAEPTGAA - - - Start on stage 5-1 - AAEPTGAE - - - - Ninja Gaiden (USA) - - Invincibility - OZTTZO - - - Invincibility (alt) - ATNTYOOZ - - - Infinite health - SXXVYPSA - - - Infinite lives - SZETPGVG - - - Hit anywhere - AEIIST+AETIUT+AETSUT+AOYIUT+ESYINT - - - Enemies die instantly - AENIXILA+AESISTGZ+AEVIUTIP+AEVSUVPA+AONIUTEP+ESNINTEP - - - Multi-jump - AEEVSLEA+AEOTXSIP+GXVVSGEI+GZUTSTEI+SXNTVTSA - - - Use windmill throwing-star without losing spiritual strength - AEXVVYIA - - - Use fire-wheel without losing spiritual strength - AAETUYIA - - - Use shuriken without losing spiritual strength - AAVTNYLA - - - Maximum strength regained from restorer - APEIKGTA - - - Sound Test - hold down and press Start at Tecmo Presents screen - GASETAVT - - - Start with 9 lives - AAUVLIZE - - - Start with 6 lives - IAUVLIZA - - - Start with 1 life - AAUVLIZA - - - Invincibility after first hit - 0092:02+0093:80 - - - One hit kills bosses - 0497:00 - - - Start on stage 1-2 - 006D:01 - - - Start on stage 2-1 - 006D:02 - - - Start on stage 2-2 - 006D:03 - - - Start on stage 2-3 - 006D:04 - - - Start on stage 3-1 - 006D:05 - - - Start on stage 3-2 - 006D:06 - - - Start on stage 3-3 - 006D:07 - - - Start on stage 4-1 - 006D:08 - - - Start on stage 4-2 - 006D:09 - - - Start on stage 4-3 - 006D:0A - - - Start on stage 4-4 - 006D:0B - - - Start on stage 5-1 - 006D:0C - - - Start on stage 5-2 - 006D:0D - - - Start on stage 5-3 - 006D:0E - - - Start on stage 5-4 - 006D:0F - - - Start on stage 6-1 - 006D:10 - - - Start on stage 6-2 - 006D:11 - - - Start on stage 6-3 - 006D:12 - - - Start on stage 6-4 (1st boss) - 006D:13 - - - Start on stage 6-4 (2nd boss) - 006D:14 - - - Start on stage 6-5 (final boss) - 006D:15 - - - - Ninja Gaiden II - The Dark Sword of Chaos (USA) - - Invincibility - SZUGKGAI - - - Invincibility (alt) - OPOKUXUG - - - Infinite health - EANGKGSA - - - Infinite health (alt) - SZNGKGSA - - - Infinite Ninja power - XXEOSZVZ+LOEOVXIY+PUOOSXLK - - - Infinite time - SXVKLTVG - - - Infinite lives - SXXGXAVG - - - Hit anywhere - AAVKXZUI+AEEGOXKL+AEOGXXIA+ENOKKZEL - - - Multi-jump - EASGAPAP+GZSGYPEI+LPKKTOYP+LPSGZPTE+SZESEOSE+SZKKIPEY+SZNSXOSE+VXSSIYVA - - - Half-energy from medicine - LEUOSATA - - - Double energy from medicine - GEUOSATE - - - Never lose Ninja power item - GXKKUIVA - - - Fast running Ryu - ZEXGYAPA+SNEKYEVN - - - Mega-fast running Ryu - LEXGYAPA+KNEKYEVN - - - Half-energy from Blue Ninja power - IAUONEZA+IAKOOEZA - - - Double energy from Blue Ninja power - GPUONEZA+GPKOOEZA - - - Double maximum Ninja power from scroll - GOEPOEZA+ZEOOEAPA - - - All powers use up only 5 points - SVOPXXSN+SVOOKXSN+SVXOXXSN - - - Less enemies - AAZVYL - - - Start every life with two shadow ninjas - YAOIYOPE - - - Start with 1 life - AEKGVTZA - - - Start with 6 lives - IEKGVTZA+SEKKKTSP - - - Start with 9 lives - AEKGVTZE+SEKKKTSP - - - Invincibility (alt) - 0068:09 - - - Infinite health (alt) - 0080:16 - - - Infinite lives (alt) - 00A5:03 - - - Infinite time (alt) - 00AB:04+00B1:F4 - - - - Ninja Gaiden III - The Ancient Ship of Doom (USA) - - Invincibility - AEVPNYLA - - - Infinite lives - SXEKVLVG - - - Infinite health - SZEXILSA - - - Infinite time (timer will still countdown) - SZVZIIVG - - - Multi-jump and infinite time - ZASXPIIE+AENXOAGP+AZSXGIZL+EPSXZSUA+GXUPZLEL+LASXLIEI+LPSXASNL+OZSXTSNK+SZNXIIVG+XISXIIVK - - - Less time - VPKGXKXY - - - One hit kills - AEKXTEYA - - - Sword hits several areas of the screen at once (sword upgrade negates the effect) - YYXKEGAO+YYXKKGYE - - - No power required for Windmill Throwing Star - AESPKYPA+AEKOXNZA - - - No power required for Fire Wheel Art - AEKOUNAA+AESPENAA - - - No power required for Invincible Fire Wheel - AEKOVYGP+AESOEYZA - - - No power required for Fire Dragon Balls - AEKOKNAA+AESPONAA - - - No power required for Vacuum Wave Art - AEKOSNZA+AESPNYPA - - - Start with upgraded sword - PAXGKGAA+APXKEGAO+APXKKGYA - - - Invincibility (alt) - 00AD:14 - - - Infinite health (alt) - 00A7:0A - - - - Ninja Jajamaru - Ginga Daisakusen (Japan) - - Invincibility - SZNPGTAX - - - Infinite lives - SIVOGKVS - - - - Ninja Kid (USA) - - Infinite Feathers - SZOZUPVG - - - Infinite Stars - SZXXITVG - - - Infinite Boomerangs - SXNOGGVG - - - Infinite Fireflames - SXUZZYVG - - - More Invincibility time - AZEILNYE - - - Less Invincibility time - YAEILNYA - - - 1 Feather on pick-up - PAXSXALA - - - 6 Feathers on pick-up - TAXSXALA - - - 10 Stars on pick-up - ZAXSUAGO - - - 40 Stars on pick-up - AZXSUAGO - - - 1 Boomerang on pick-up - ZAXSKAGA - - - 10 Fireflames on pick-up - ZAXSSAGO - - - 40 Fireflames on pick-up - AZXSSAGO - - - Start with 1 life - AAVEZAZA - - - Start with 6 lives - IAVEZAZA - - - Start with 9 lives - AAVEZAZE - - - - Nintendo World Cup (USA) - - 1 minute in tournament mode - AAUVKZLA - - - 6 minutes in tournament mode - IAUVKZLA - - - 9 minutes in tournament mode - AAUVKZLE - - - 6 minutes in match mode - IAKTXXPA - - - 3 minutes in match mode - ZAKTXXPA - - - 1 minutes in match mode - AAKTXXPA - - - Faster players - PEXLUIAA - - - More powerful 'normal' shots - AYXXNXAL - - - - Noah's Ark (Europe) - - Invincibility - SZUUNAAX - - - Invincible against spikes - SXEKUYAX - - - Infinite lives - SKNEGUVK+SKSAVEVK - - - Infinite health - SZKUUGSA - - - Infinite time - SGEVZOVK - - - - North and South (USA) - - Cannon has 5 shots - IEUATOPA - - - Cannon has 15 shots - YEUATOPE - - - Cannon has infinite shots - SZXPYUVS - - - No cannons allowed - GXXATOSO - - - Only 2 daggers in the fortress - ZAUAGPGA - - - Infinite daggers in the fortress - GXXPLKVS - - - 2 men in the fortress - ZAUETOZA - - - 5 men in the fortress - IAUETOZA - - - 2 men on the train - ZASAGOZA - - - 5 men on the train - IASAGOZA - - - - Operation Secret Storm (USA) (Unl) - - Infinite lives - OLUVZUOO - - - Infinite Gun ammo - SLKVYSOO - - - Infinite health - 0520:17 - - - - Operation Wolf (USA) (Rev 0A) - - Infinite continues - IEVUNSPA - - - Never die - AESSLZTL - - - Infinite magazines - AAVSIIPA - - - Infinite grenades - AAEIATPA - - - Double bullets in each magazine - GANIYIZA - - - Heal completely between levels - NNESZALE - - - Grenades inflict double damage - GANULZZA - - - Super power drinks - ZAELGPIE - - - Increase magazines - PEVKVYYE+PAVSIIIE - - - Increase grenades - PENGXYIE+PAVSIILE - - - Start on mission 2 - PESZIGAA - - - Start on mission 3 - ZESZIGAA - - - Start on mission 4 - LESZIGAA - - - Start on mission 5 - GESZIGAA - - - Start on mission 6 - IESZIGAA - - - - Orb 3D (USA) - - Infinite fuel - 03FD:50 - - - Start on level 10 - 03E2:09 - - - Start on level 15 - 03E2:13 - - - Start on level 30 - 03E2:1D - - - - Otaku no Seiza - An Adventure in the Otaku Galaxy (Japan) - - No random battles - AVEIXKOZ - - - - Over Horizon (Europe) - - Invincibility (blinking) - SXNIETVG - - - Infinite lives - SXULESVK - - - Enable alternate graphics - PEEIITAA - - - - Overlord (USA) - - Food not decreased - GPEAPOIE - - - Hover tanks never decrease in battle - SXXUKVVK - - - Ballistic Missiles never decrease in battle - SZKOPOVK - - - Homing Missiles never decrease in battle - SZSPGOVK - - - Enemy starts with 0 Missiles - NZVUKNNP - - - Constantly get 9999999 cash on all planets with 1% or higher tax - ESKALPEL - - - View a planet's stats for high food - YYXLIYAE+OPXUPNOU - - - View a planet's stats for high people - YYOLEAAE+OPOLKEOU - - - View a planet's stats for high energy - YNKUYYAE+OOSLLNOU - - - View a planet's stats for high fuel - YNEUTYAE+OOOLZNOU - - - - P.O.W. - Prisoners of War (USA) - - Invincibility - ATVUUZSA - - - Infinite lives - AENSLPPA - - - Infinite bullets - AAVGOTPA - - - One hit kills - OLEUSOSU - - - Take less damage when hit from behind - STOLOUON - - - Keep weapons after dying - GZUUNUSE+GZSLOSSE - - - Start with half health - APKGPLAZ+APESYZAZ - - - Start with 1 life - AEUEIZZA - - - Start with 6 lives - IEUEIZZA - - - Start with 9 lives - AEUEIZZE - - - Start with 99 lives - LVUEIZZA - - - Have infinite Grenades, Brass Knuckles, Armor Vest - 0438:F9 - - - Have infinite Knives, Brass Knuckles, Armor Vest - 0438:E5 - - - Have infinite Gun, Brass Knuckles, Armor Vest - 0438:DB - - - Start on stage 2 (disable after stage begins) - 0047:01 - - - Start on stage 3 (disable after stage begins) - 0047:02 - - - Start on stage 4 (disable after stage begins) - 0047:03 - - - Start on stage 5 (disable after stage begins) - 0047:04 - - - Start on stage 6 (disable after stage begins) - 0047:05 - - - - Pac-Man (USA) (Namco) - - Invincibility - GZEIYLEY - - - Get 8000+ points for eating ghosts - EZOSLLKZ+TAOSGUOI+SZXIYLVT - - - Power Pill effect always active - 0088:0F - - - Infinite lives - 0067:03 - - - - Pac-Man (USA) (Tengen) - - Invincibility - GXKITZEY - - - Walk through walls - AAVSYUAP+AIUSZGEI+AINILGEY+AYVSZGEY - - - Get 8000+ points for eating ghosts - EXSSZZKZ+TESSLXOI+SXVITZVT - - - Power pills last longer - AYVITOGL - - - Power pills last extra long - NYVITOGU - - - Power pills don't last as long - AZVITOGL - - - Power pills don't work - ATXTZASZ - - - Only 3 ghosts are edible - IAXVYEYE - - - Only 2 ghosts are edible - PAXVYEYE - - - Pac-Man moves manually - NZSSLLIU - - - Power Pill effect always active - 0088:15 - - - Infinite lives - 0067:03 - - - - Pac-Man (USA) (Tengen) (Unl) - - Invincibility - GXKITZEY - - - Get 8000+ points for eating ghosts - EXSSZZKZ+TESSLXOI+SXVITZVT - - - Power pills last longer - AYVITOGL - - - Power pills last extra long - NYVITOGU - - - Power pills don't last as long - AZVITOGL - - - Power pills don't work - ATXTZASZ - - - Only 3 ghosts are edible - IAXVYEYE - - - Only 2 ghosts are edible - PAXVYEYE - - - Power Pill effect always active - 0088:15 - - - Infinite lives - 0067:03 - - - - Pac-Mania (USA) (Unl) - - Infinite lives - SZKIOPVG - - - Trapped ghosts - ANTGUN - - - Go through ghosts - SOLIVA - - - Ghosts worth 3200 points - PEASNA - - - - Panic Restaurant (USA) - - Invincibility - ENUPPAEI - - - Infinite health - except when you fall on spikes - OXVPPAVK - - - Infinite health (alt) - SXVPPAVG - - - Infinite time - OZVKGZVK - - - Infinite time (alt) - SGVKGZVG - - - Infinite lives - SAOSAGVG - - - Infinite lives (alt) - SZOSAGVG - - - Start with 4 hearts - GASYZGZA - - - Start with 2 lives - PAOZNIZA - - - Start with 5 lives - IAOZNIZA - - - Start with 6 hearts (heart meter will be distorted) - TASYZGZA - - - Start with 10 hearts (heart meter will be distorted) - ZASYZGZE - - - Start with 10 lives (meter will display 9) - ZAOZNIZE - - - Start with 15 lives (meter will display 9) - YAOZNIZE - - - Start with 80 on timer (1st level only) - AIVYGGLT+AIVKXYLT - - - Start with 70 on timer (1st level only) - TGVYGGLT+TGVKXYLT - - - Start with 60 on timer (1st level only) - GLVYGGLV+GLVKXYLV - - - - Panda Prince, The (Shin-Shin) (Unl) - - Infinite lives - SXOOLYSA - - - - Paperboy (USA) - - Invincibility against moving objects - APNEOZEO+ATNEXZGA - - - Invincibility against non-moving objects - AAKPSGTA - - - Infinite lives - SXSEVZVG - - - Infinite papers - OZNOKAVK - - - Infinite time in training course - SZXOUESE - - - Gain 20 papers on pick-up - GPUONUZA - - - Start with 1 life - PAUOEIGA - - - Start with 6 lives - TAUOEIGA - - - Start with 20 papers - GOXAUOZA - - - - Paperboy 2 (USA) - - Infinite lives - AAKEZLPA - - - Infinite papers - AEVPNLPA - - - 5 papers on pick-up - IEOAEOZA - - - 15 papers on pick-up - YEOAEOZE - - - 20 papers on pick-up - GOOAEOZA - - - Start with 1 life - Paperboy only - PEOUYGIA - - - Start with 3 lives - Paperboy only - LEOUYGIA - - - Start with 10 lives - Paperboy only - ZEOUYGIE - - - Start with 15 papers - YAELGVZE - - - Start with 20 papers - GPELGVZA - - - - Parasol Stars - Rainbow Islands II (Europe) - - Invincibility - 005C:03 - - - Automatically finish levels - 0320:00+0321:00+0322:00+0323:00+0324:00+0325:00+0326:00+0327:00 - - - Make the Miracle Icon appear (enable then disable) - 04FB:01 - - - - Parodius (Europe) - - Enemies die automatically - 008B:02 - - - Infinite Shield on pick-up - 64D0:0F - - - - Pesterminator (USA) (Unl) - - Infinite health - VVOSPNVG - - - Infinite lives - VXNIIEVK - - - - Phantom Fighter (USA) - - Infinite health - SXSZLUSE - - - Take less damage when attacked - OVSZPLSV+PESZZLAA - - - Start with Sacred Sword - VTVKEGSA+KAVKOGNA - - - Start with Bell - VTVKEGSA+SAVKOGNA - - - Start with Tonten - VTVKEGSA+UAVKOGNA - - - Start with Talisman - VTVKEGSA+XAVKOGNA - - - Start with 3 Scrolls - LASKNGAA+VAVKOGNA - - - Start with 6 Scrolls - TASKNGAA+VAVKOGNA - - - Infinite HP - 0408:C8 - - - Max HP - 040A:C8 - - - One hit kills - 0448:01 - - - Have 99 Scrolls - 0086:63 - - - Have 3 Crystal Balls - 0087:03 - - - Have strongest punch - 0076:03 - - - Have strongest kick - 0077:03 - - - Have highest jump - 0078:03 - - - Have best Tiger move - 0079:03 - - - Have best Mirage move - 007A:03 - - - Have Talisman - 0082:01 - - - Have Tonten - 0083:01 - - - Have Sacred Sword - 0084:01 - - - Have Bell - 0085:01 - - - - Pictionary - The Game of Video Quick Draw (USA) - - Infinite time - 0084:20 - - - - Pin Bot (USA) - - Infinite balls - OZVVYZVV - - - Start with only 1 ball - PANTGZLA - - - Start with 6 balls - TANTGZLA - - - Start with 9 balls - PANTGZLE - - - - Pinball (World) - - Infinite balls - SUXKLEVS - - - Start with lots of balls - YZSGPALE - - - Start with 1 ball - PASGPALA - - - Start with 6 balls - TASGPALA - - - Start with 9 balls - PASGPALE - - - - Pipe 5 (Asia) (Unl) - - Infinite time (disable to finish round) - 0080:09 - - - 1 distance needed - 008E:01 - - - Automatically finish round - 008E:00 - - - - Pipe Dream (USA) - - Infinite wrenches - SZKTPUVK - - - One-way pipes from level 1 - AAOGZZIA - - - One-way pipes from level 5 - IAOGAZLA - - - One-way pipes from level 10 - ZAOKPZLE - - - Tunnels galore - KEUAUVSE - - - Pumps instead of reservoirs - GPKIEGZP - - - Pumps before reservoirs - GPKIEGZP+ZPKINGGP - - - Start with 1 wrench - PAOALPLA - - - Start with 6 wrenches - TAOALPLA - - - Start with 9 wrenches - PAOALPLE - - - - Platoon (USA) (Rev A) - - Stage 1 - Infinite grenades - SXKOZPVG - - - Stage 1 - Start with double capacity magazine - SZSPYAVG - - - Stage 1 - Double hits - AEKESYGE - - - Stage 1 - Don't take damage - SXKAUYVT - - - Stage 2 - Don't take damage - SZVAXTVT - - - Stage 4 - Infinite time - SXKEUZVG - - - Stage 4 - Play with more time - IEVEOPLA - - - Stage 4 - Double hits - PAKOIPIE - - - Stage 4 - Halve hits - ZAKOIPIA - - - Stage 4 - Start with double ammo - GEXEUPTE - - - Start on stage 2 - GAKEAPIA - - - Start on stage 3 - LAEGGATA - - - - Platoon (USA) - - Stage 1 - Infinite grenades - SXKOZPVG - - - Stage 1 - Start with double capacity magazine - SZSPYAVG - - - Stage 1 - Double hits - AEKESYGE - - - Stage 1 - Don't take damage - SXKAUYVT - - - Stage 2 - Don't take damage - SZVAXTVT - - - Stage 4 - Infinite time - SXKEUZVG - - - Stage 4 - Play with more time - IEVEOPLA - - - Stage 4 - Double hits - PAKOIPIE - - - Stage 4 - Halve hits - ZAKOIPIA - - - Stage 4 - Start with double ammo - GEXEUPTE - - - Start on stage 2 - GAKEAPIA - - - Start on stage 3 - LAEGGATA - - - - Popeye (World) (Rev A) - - Invincibility against enemy - ATGIYP - - - Invincibility against shots - ATISTL - - - Start with 1 life - PAPKNA - - - Start with 6 lives - TAPKNA - - - Start with 9 lives - PAPKNE - - - - Popo Team (Asia) (Unl) - - Invincibility - 004F:01 - - - Infinite lives - 003F:03 - - - Slower enemies - 004D:01 - - - - Power Blade (USA) - - Infinite health - OTKESZSV - - - Infinite lives - SZSIAAVG - - - Hit anywhere - AEOANGZZ+ENEEUGEP - - - Take minimum damage - SZKAKXOU - - - Mega-jump - AZXSAVAU - - - Don't lose boomerang strength when you die - GZUITAVG+GZVITASA - - - Don't lose multi-boomerangs when you die - GZUSGAVG+GZVSZASA - - - Press Start to finish the level (don't use on Protect level) - AEEIPPPE+AOEILOIK+AVEIGOOZ - - - Start a new game to view the ending - YANNLTZA - - - Start with 1 life - AAXYZYZA - - - Start with 6 lives - IAXYZYZA - - - Start with 9 lives - AAXYZYZE - - - Infinite health (alt) - 04AB:12 - - - Infinite lives (alt) - 0027:09 - - - Infinite time - 0095:09+0096:99 - - - - Power Blade 2 (USA) - - Infinite health - except for spikes - OVSLZLSV - - - Infinite lives - GZSILAVG - - - Infinite time - ATKKXZSZ - - - Infinite life tanks - GXEVXTVG - - - Infinite energy tanks - GZEIPLVG - - - Speed up timer - YPKGNXYU - - - Slow down timer - YYKGNXYU - - - Throw meter doesn't decrease when boomerang is thrown - SAKSZZSZ - - - Take minimal damage - OVSLZLSV+PESLLLAA - - - Maximum throwing ability on pick-up - OZVULSOK+SANLZIVT - - - Start a new game to view the ending - YAXTNTLA - - - Start with 1 life - AEKEPTZA - - - Start with 6 lives - IEKEPTZA - - - Start with 9 lives - AEKEPTZE - - - Infinite health - 049A:12 - - - Infinite lives (alt) - 009F:99 - - - Have max POW - 0054:0F - - - Have max energy - 00A0:12 - - - Have Dual Power-Blades - 0099:01 - - - Have Red Power-Blades - 00A2:01 - - - View ending - 0018:07 - - - - Power Punch II (USA) - - Infinite health - SZEYXGSA - - - Infinite health (alt) - 00CE:FF - - - Instant win - 00CD:00 - - - Max Punch - 00C3:FF - - - max Stamina - 00C4:FF - - - - Predator (USA) - - Invincibility (normal mode) - VASAOASA+OGKKNGVK - - - Infinite health (big mode) - VVVAXUVK - - - Infinite health in jungle mode - AVUGVGSA - - - Infinite lives in jungle mode - SZNGGXVK - - - Infinite lives in big mode - SXXGZOVK - - - Start with double lives - AAVKGPGE - - - Mega-jumps in jungle mode - AEOETOPE - - - Don't die if you fall down holes - NTEENEGE+ATOAEEOZ - - - Start each life with Laser Rifle - LASEOELA+XLSEUEVX - - - Invincibility - 0010:02 - - - Infinite lives - 0504:09 - - - - Prince of Persia (USA) - - Infinite health - SLXAINSO - - - Infinite time - SZKLIXSE - - - Infinite health (except for deep sword hit or a long fall) (alt) - 06CF:03 - - - Infinite time (alt) - 04EF:80 - - - - Princess Tomato in the Salad Kingdom (USA) - - Infinite gold coins - 03CB:09 - - - - Pro Sport Hockey (USA) - - P1 goals worth 2 - ZESUZYPA - - - P1 goals worth 3 - LESUZYPA - - - P1 goals worth 4 - GESUZYPA - - - P1 goals worth 5 - IESUZYPA - - - P1 goals worth 6 - TESUZYPA - - - P1 goals worth 7 - YESUZYPA - - - P1 goals worth 8 - AESUZYPE - - - P2 goals worth 2 - ZENLZYPA - - - P2 goals worth 3 - LENLZYPA - - - P2 goals worth 4 - GENLZYPA - - - P2 goals worth 5 - IENLZYPA - - - P2 goals worth 6 - TENLZYPA - - - P2 goals worth 7 - YENLZYPA - - - P2 goals worth 8 - AENLZYPE - - - P1 starts with 1 point - VVNPTOSE - - - P2 starts with 1 point - VVNOPOSE - - - P1 starts with 2 points - ZENPIPAA+VVNOZPNT - - - P1 starts with 4 points - GENPIPAA+VVNOZPNT - - - P1 starts with 6 points - TENPIPAA+VVNOZPNT - - - P1 starts with 8 points - AENPIPAE+VVNOZPNT - - - P1 starts with 10 points - ZENPIPAE+VVNOZPNT - - - P2 starts with 2 points - ZENPIPAA+NVNPYPVT - - - P2 starts with 4 points - GENPIPAA+NVNPYPVT - - - P2 starts with 6 points - TENPIPAA+NVNPYPVT - - - P2 starts with 8 points - AENPIPAE+NVNPYPVT - - - P2 starts with 10 points - ZENPIPAE+NVNPYPVT - - - - Pro Wrestling (USA) (Rev A) - - Infinite health and time - NTSTIVLE+OZSTGTVS+SASTTTEY+YTSTYVZA - - - Only have 5 seconds to get back into ring - IEETTZGP - - - Only have 10 seconds to get back into ring - ZEETTZGO - - - Have 30 seconds to get back into ring - TOETTZGO - - - Rounds are only 1 minute - PEXIKYIA - - - Rounds are only 3 minutes - LEXIKYIA - - - Rounds are 8 minutes - AEXIKYIE - - - Rounds are 10 minutes - ZEXIKYIE - - - 2-second pin count - ZAVVTGLA - - - 5-second pin count - IAVVTGLA - - - 7-second pin count - YAVVTGLA - - - Infinite time (minutes) - 0087:09 - - - Infinite time (seconds) - 0086:3B - - - Pin once to win match - 0077:00 - - - - Pro Wrestling (USA) - - Infinite health and time - NTSTIVLE+OZSTGTVS+SASTTTEY+YTSTYVZA - - - Only have 5 seconds to get back into ring - IEETTZGP - - - Only have 10 seconds to get back into ring - ZEETTZGO - - - Have 30 seconds to get back into ring - TOETTZGO - - - Rounds are only 1 minute - PEXIKYIA - - - Rounds are only 3 minutes - LEXIKYIA - - - Rounds are 8 minutes - AEXIKYIE - - - Rounds are 10 minutes - ZEXIKYIE - - - 2-second pin count - ZAVVTGLA - - - 5-second pin count - IAVVTGLA - - - 7-second pin count - YAVVTGLA - - - Infinite time (minutes) - 0087:09 - - - Infinite time (seconds) - 0086:3B - - - Pin once to win match - 0077:00 - - - - Punch-Out!! (USA) - - Infinite health - 0391:60 - - - Infinite hearts - 0326:42 - - - Infinite Stars - 0342:04 - - - One-hit knockdowns - 0398:01 - - - - Punisher, The (USA) - - Invincibility (blinking) - ESKTGGEY+EVKTTKXK - - - Infinite health - SZNZKOSE+SZUZPVSE+VZKZNOVE - - - Infinite Grenades - XTSVSNXK - - - Infinite bullets and Rockets - AESYAPPA - - - Never lose a life against normal enemy - XVOVGXXK - - - Never lose a life against end of level enemy - XVOEXOXK - - - Hit anywhere - AANZGXAZ+AAOXYXIA+AAXXAKPA+AAXXZPZL - - - Faster Punisher - GEUUYIZA - - - Stage scrolls 2x as fast - PANVGGAA - - - Stage scrolls 3x as fast - ZANVGGAA - - - Stage scrolls 4x as fast - LANVGGAA - - - 150 Machine Gun bullets on pick-up - PEUYNLAA - - - 150 Assault Rifle bullets on pick-up - PEUNXLAA - - - Less energy on pick-up - AAEUUPAO - - - More energy on pick-up - APEUUPAO - - - Start with 1 life - PEOTYTIA - - - Start with 10 lives - ZEOTYTIE - - - - Puss n Boots - Pero's Great Adventure (USA) - - Infinite health - SZNGOISA - - - Infinite lives - SZOKZZVG - - - Auto-fire and auto-jump - AAOVNENY - - - Mega-jump - AAXGNUPA - - - Start with less health - GOSTNUAU - - - Start with 1 life - PEOGZALA - - - Start with 6 lives - TEOGZALA - - - Start with 9 lives - PEOGZALE - - - Start on stage 1 - GAEGAIAA - - - Start on stage 2 - PAEGAIAE - - - Start on stage 3 - TAEGAIAE - - - Infinite health (alt) - 0092:38 - - - Infinite lives (alt) - 000A:09 - - - - Puzznic (USA) - - Slower timer - ITKIPXGL - - - Faster timer - TPKIPXGU - - - Start on level 2-1 - ZEUAIPAE - - - Start on level 3-1 - GOUAIPAA - - - Start on level 4-1 - TOUAIPAE - - - Start on level 5-1 - AXUAIPAE - - - Start on level 6-1 - ZUUAIPAA - - - Start on level 7-1 - GUUAIPAE - - - Start on level 8-1 - TKUAIPAA - - - Start on level 9-1 - ASUAIPAA - - - - Q-bert (USA) - - Infinite lives - SXSZGPVG - - - Start with 1 life - PEUOOGIA+PAXZLLIA - - - Start with 10 lives - ZAXZLLIE+ZEUOOGIE - - - Start on level 3 - AESPVGAE - - - Start on level 6 - GOSPVGAA - - - Start on level 9 - AXSPVGAA - - - Infinite lives - P1 - 004C:63 - - - Start on level 1 round 2 - 0049:01 - - - Start on level 1 round 3 - 0049:02 - - - Start on level 1 round 4 - 0049:03 - - - Start on level 2 round 1 - 0049:04 - - - Start on level 2 round 2 - 0049:05 - - - Start on level 2 round 3 - 0049:06 - - - Start on level 2 round 4 - 0049:07 - - - Start on level 3 round 1 - 0049:08 - - - Start on level 3 round 2 - 0049:09 - - - Start on level 3 round 3 - 0049:0A - - - Start on level 3 round 4 - 0049:0B - - - Start on level 4 round 1 - 0049:0C - - - Start on level 4 round 2 - 0049:0D - - - Start on level 4 round 3 - 0049:0E - - - Start on level 4 round 4 - 0049:0F - - - Start on level 5 round 1 - 0049:10 - - - Start on level 5 round 2 - 0049:11 - - - Start on level 5 round 3 - 0049:12 - - - Start on level 5 round 4 - 0049:13 - - - Start on level 6 round 1 - 0049:14 - - - Start on level 6 round 2 - 0049:15 - - - Start on level 6 round 3 - 0049:16 - - - Start on level 6 round 4 - 0049:17 - - - Start on level 7 round 1 - 0049:18 - - - Start on level 7 round 2 - 0049:19 - - - Start on level 7 round 3 - 0049:1A - - - Start on level 7 round 4 - 0049:1B - - - Start on level 8 round 1 - 0049:1C - - - Start on level 8 round 2 - 0049:1D - - - Start on level 8 round 3 - 0049:1E - - - Start on level 8 round 4 - 0049:1F - - - Start on level 9 round 1 - 0049:20 - - - Start on level 9 round 2 - 0049:21 - - - Start on level 9 round 3 - 0049:22 - - - Start on level 9 round 4 - 0049:23 - - - - Q Boy (Asia) (Unl) - - Infinite lives - SZSAKNVK - - - Infinite life - SXNZXOVK - - - Invincibility after first hit - AVXPYIVG - - - Infinite Breath Power - SXEXVXVK+SXOZOXVK - - - Infinite Lift Power - SZXZXUVK+SZXZSUVK - - - - Qix (USA) - - 1 life - P1 - PEEAPZGA - - - 1 life - P2 - PEEEAZGA - - - Start on Level 5 - 1P game - IANAZZPA - - - Start on Level 10 - 1P game - ZANAZZPE - - - Start on Level 20 - 1P game - GPNAZZPA - - - Start on Level 5 - 2P game - IEEEGZPA - - - Start on Level 10 - 2P game - ZEEEGZPE - - - Start on Level 20 - 2P game - GOEEGZPA - - - - Quattro Adventure (USA) (Unl) - - Boomerang Kid - Infinite lives - SZOGXVVK - - - Boomerang Kid - Start with 6 lives - TAOGPTLA - - - Linus Spacehead - Increase oxygen - AZKKPNAP - - - Linus Spacehead - Never lose oxygen - AEULZIPA - - - Linus Spacehead - Never lose life in the water - SXEGLYVG - - - Linus Spacehead - Never lose life in the land - SZXIILVG - - - Linus Spacehead - Start with 9 lives - PEKGGLLE - - - Super Robin Hood - Invincibility - AVONISPG - - - Super Robin Hood - Infinite lives - SXNKZIVG - - - Super Robin Hood - 9 energy hearts, you may lose some hearts when you pick up new ones - PAEGLTLE - - - Super Robin Hood - Start with 1 life - PAVGILLA - - - Super Robin Hood - Start with 6 lives - TAVGILLA - - - Super Robin Hood - Start with 9 lives - PAVGILLE - - - Treasure Island Dizzy - Invincible Dizzy Starts you in the Island In The Sky, walk left to arrive at the original starting point - - PEXSZYAA - - - Treasure Island Dizzy - Walk backwards - OZNTKASX - - - Treasure Island Dizzy - Start with snorkel - PEUSYYAA - - - Treasure Island Dizzy - Start with axe - PEUSYYAA+PEKNIZZP - - - Treasure Island Dizzy - Start with dynamite - PEUSYYAA+ZEKNIZZP - - - Treasure Island Dizzy - Start with heavy weight - PEUSYYAA+IEKNIZZP - - - - Quattro Arcade (USA) (Unl) - - Go! Dizzy Go! - Always kill monsters - XVTISU+XVTIVU - - - Go! Dizzy Go! - Walk through walls - XVTILU - - - Go! Dizzy Go! - Start with 1 life - PAVGZILA - - - Go! Dizzy Go! - Start with 6 lives - TAVGZILA - - - Go! Dizzy Go! - Start with 9 lives - PAVGZILE - - - Go! Dizzy Go! - Start on world 1, stage 3 - ZEEKGIPA - - - Go! Dizzy Go! - Start on world 1, stage 5 - GEEKGIPA - - - Go! Dizzy Go! - Start on world 2, stage 2 - TEEKGIPA - - - Go! Dizzy Go! - Start on world 2, stage 4 - AEEKGIPE - - - Go! Dizzy Go! - Start on world 4, stage 2 - AOEKGIPA - - - Go! Dizzy Go! - Start on world 4, stage 4 - ZOEKGIPA - - - Go! Dizzy Go! - Start on world 5, stage 1 - GOEKGIPA - - - Go! Dizzy Go! - Start on world 5, stage 3 - TOEKGIPA - - - Go! Dizzy Go! - Start on world 5, stage 5 - AOEKGIPE - - - Sunt Buggies - Infinite lives - SXOXZEVK - - - Sunt Buggies - Start with 1 life - PAKVXGLA - - - Sunt Buggies - Start with 6 lives - TAKVXGLA - - - Sunt Buggies - Start with 9 lives - PAKVXGLE - - - F-16 Renegade - Start with 2 lives - 1P game - PEUGEALA - - - F-16 Renegade - Start with 7 lives - 1P game - TEUGEALA - - - F-16 Renegade - Start with 10 lives - 1P game - PEUGEALE - - - F-16 Renegade - Start on level 3 - LEUGSAPA+PEKGXAAA - - - F-16 Renegade - Start on level 5 - IEUGSAPA+ZEKGXAAA - - - F-16 Renegade - Start on level 7 - YEUGSAPA+LEKGXAAA - - - F-16 Renegade - Start on level 9 - PEUGSAPE+GEKGXAAA - - - C.J.'s Elephant Antics - Infinite lives - SUKTZUVS - - - C.J.'s Elephant Antics - Start in Switzerland - PAEYOAAA - - - C.J.'s Elephant Antics - Start in Egypt - ZAEYOAAA - - - C.J.'s Elephant Antics - Start in Africa - LAEYOAAA - - - C.J.'s Elephant Antics - Always run fast after losing all lives - PAONILAA - - - C.J.'s Elephant Antics - Super C.J. after losing all lives - YAONILAE - - - C.J.'s Elephant Antics - Start with 1 life - PASTSVPA - - - C.J.'s Elephant Antics - Start with 5 lives - IASTSVPA - - - C.J.'s Elephant Antics - Start with 15 lives - YASTSVPE - - - C.J.'s Elephant Antics - Start with 20 lives - GPSTSVPA - - - - Quest of Ki, The (Japan) - - Exit always open - 0053:01 - - - - R.B.I. Baseball (USA) - - Perfectly straight pitches - both players - EESLUZTL+OXSLXZPN - - - Super slow pitches - both players - AEXUKZTL+OXXUUZOU - - - Slow pitches - both players - LEXUKZTL+OXXUUZOU - - - Fast pitches - both players - OXXUUZOU+YEXUKZTL - - - Super fast pitches - both players - OXXUUZOU+YEXUKZTU - - - All missed pitches are strikes - both players - AOVLSLEI - - - - R.C. Pro-Am (USA) (Rev A) - - Infinite continues - AAEIPPPA - - - Max turbo on first pick-up - GEUGAPPA - - - Max tires on first pick-up - GEKKGPPA - - - Max speed on first pick-up - GAVGIPPA - - - Double turbo on first pick-up - ZEUGAPPA - - - Double tires on first pick-up - ZEKKGPPA - - - Double speed on first pick-up - ZAVGIPPA - - - Computer cars go crazy - SXVLGZAK - - - Always win as 1st place - 005C:00 - - - Auto race at 128 MPH (disable if you get stuck) - 05DC:80 - - - Max Super Sticky Tires - 0453:04 - - - Max Turbo Acceleration - 0454:04 - - - Max higher top speed - 0455:04 - - - Infinite ammo for weapons - 0459:63 - - - Have Bombs - 045A:01 - - - Have Missiles - 045A:02 - - - Have pick-up truck as vehicle - 03F9:00 - - - Have off-road vehicle as vehicle - 03F9:01 - - - Have race car as vehicle - 03F9:02 - - - NINTENDO already spelled out (enable then disable) - 03F7:08 - - - Computer cars go crazy (alt) - B2E4:AD - - - - R.C. Pro-Am (USA) - - Infinite continues - AASIUAPA - - - Max turbo on first pick-up - GAOGOAPA - - - Max tires on first pick-up - GAXKSAPA - - - Max speed on first pick-up - GEKGTYPA - - - Double turbo on first pick-up - ZAOGOAPA - - - Double tires on first pick-up - ZAXKSAPA - - - Double speed on first pick-up - ZEKGTYPA - - - Computer cars go crazy - SZKLOPAK - - - Always win as 1st place - 005C:00 - - - Auto race at 128 MPH (disable if you get stuck) - 05DC:80 - - - Max Super Sticky Tires - 0453:04 - - - Max Turbo Acceleration - 0454:04 - - - Max higher top speed - 0455:04 - - - Infinite ammo for weapons - 0459:63 - - - Have Bombs - 045A:01 - - - Have Missiles - 045A:02 - - - Have pick-up truck as vehicle - 03F9:00 - - - Have off-road vehicle as vehicle - 03F9:01 - - - Have race car as vehicle - 03F9:02 - - - NINTENDO already spelled out (enable then disable) - 03F7:08 - - - Computer cars go crazy (alt) - B2E4:AD - - - - R.C. Pro-Am II (USA) - - Infinite credits - SUEEGXVS - - - Infinite Lazers on purchase - SXKVLVVS - - - Infinite Bombs on purchase - SXSTZKVS - - - Infinite Freezes on purchase - SXOVGVVS - - - Infinite Buckshot on purchase - SZXVGSVS - - - Infinite Missiles on purchase - SZSTTSVS - - - Items in the Model Shop are free if you have enough money - ATUXYGSZ - - - Buckshot costs 10 instead of 2,000 - PEETEOEG - - - Mega Pulse costs 2,080 instead of 20,000 - AEEVUPYA - - - Scoopers costs 2,200 instead of 15,000 - AANTSPIA - - - Dynafit tires costs 2,320 instead of 10,000 - AANTUPLA - - - Mega Motor costs 1,360 instead of 50,000 - AAVVUPLP - - - Hyper Motor costs 1,840 instead of 30,000 - AAVVOOLA - - - Freeze costs 2,200 instead of 15,000 - AEEVOPIA - - - Lazer costs 1,200 instead of 14,000 - AEETNPIA - - - Bombs costs 1,760 instead of 12,000 - AEETSPGA - - - Nobbies costs 1,880 instead of 7,000 - AANTOPZA - - - Missile costs 2,320 instead of 10,000 - AEETUPLA - - - Nitro costs 10 instead of 1000 - PANVKPGT - - - Oil slicks costs 10 instead of 500 - PANVXPZL - - - Skinny tires costs 10 instead of 2,000 - PAVVVOEG - - - Gold Motor costs 10 instead of 16,000 - AAVTNPTA+PAVTVPAG - - - Start with 1 credit instead of 3 - AESOLAZA - - - Start with 5 credits - GESOLAZA - - - Start with 7 credits - TESOLAZA - - - Start with 9 credits - AESOLAZE - - - Start on Track 02 - PEOGNTAA - - - Start on Track 03 - ZEOGNTAA - - - Start on Track 04 - LEOGNTAA - - - Start on Track 05 - GEOGNTAA - - - Start on Track 06 - IEOGNTAA - - - Start on Track 07 - TEOGNTAA - - - Start on Track 08 - YEOGNTAA - - - Start on Track 09 - PEOGNTAE - - - Start on Track 10 - ZEOGNTAE - - - Start on Track 11 - LEOGNTAE - - - Start on Track 12 - GEOGNTAE - - - Start on Track 13 - IEOGNTAE - - - Start on Track 14 - TEOGNTAE - - - Start on Track 15 - YEOGNTAE - - - Start on Track 16 - AOOGNTAA - - - Start on Track 17 - ZOOGNTAA - - - Start on Track 18 - LOOGNTAA - - - Start on Track 19 - GOOGNTAA - - - Start on Track 20 - IOOGNTAA - - - Start on Track 21 - TOOGNTAA - - - Start on Track 22 - YOOGNTAA - - - Start on Track 23 - AOOGNTAE - - - Start on Track 24 - POOGNTAE - - - Start on Track 25 - LOOGNTAE - - - Start on Track 26 - GOOGNTAE - - - Start on Track 27 - IOOGNTAE - - - Start on Track 28 - TOOGNTAE - - - Start on Track 29 - YOOGNTAE - - - Start on first Tug-O-Truck Challenge - AEOGNTAE - - - Start on Drag Race - POOGNTAA - - - Start on second Tug-O-Truck Challenge - ZOOGNTAE - - - Infinite continues - 0771:09 - - - Infinite time at continue screen - 0431:63 - - - - Race America (USA) - - Can't down shift - SGSUGLVI - - - Cars only have 4 gears - IAVUILYA+IAKXAIYA - - - Go super fast in 6th gear - OZNOAAEN+NYNOPAIE+SAXPGZVT - - - - Rad Racer (USA) - - Infinite time - NYZINV - - - Never crash from things outside of the road - AAKSYIPA - - - Less time to finish each stage - GZXIUVIZ - - - More time to finish each stage - GLXIUVIX - - - Turbo acceleration - ALXGAIAA - - - Super Turbo acceleration - YYUKGIAU - - - Ultra Turbo acceleration - PEEGPIAA - - - Start on stage 2 - PAXKPAAA+GXKGKTSA - - - Start on stage 3 - ZAXKPAAA+GXKGKTSA - - - Start on stage 4 - LAXKPAAA+GXKGKTSA - - - Start on stage 5 - GAXKPAAA+GXKGKTSA - - - Start on stage 6 - IAXKPAAA+GXKGKTSA - - - Start on stage 7 - TAXKPAAA+GXKGKTSA - - - Start on stage 8 - YAXKPAAA+GXKGKTSA - - - Start on stage 2 (alt) - 00E5:01 - - - Start on stage 3 (alt) - 00E5:02 - - - Start on stage 4 (alt) - 00E5:03 - - - Start on stage 5 (alt) - 00E5:04 - - - Start on stage 6 (alt) - 00E5:05 - - - Start on stage 7 (alt) - 00E5:06 - - - Start on stage 8 (alt) - 00E5:07 - - - - Rad Racer II (USA) - - Instant Boost - 005F:FF - - - Don't wipeout when you hit something - 005B:00 - - - - Radia Senki - Reimei Hen (Japan) - - No random battles - SXUYSZSA - - - - Raf World (Japan) - - Invincibility - PAEVXXPX+PAOVEXPX - - - Infinite energy - SZUVUZSA - - - Infinite weapons - SZUAUTSA - - - Infinite lives - SKNGYLVG - - - Double-jump - AVKEIOOZ - - - - Raid 2020 (USA) (Unl) - - Infinite health - SXSSESVK+SZKSVSVK - - - Infinite lives - SXVSIVVK - - - - Raid on Bungeling Bay (USA) - - Take no damage from anything - SXVVPIAX - - - Infinite Bombs - SXSIASVK - - - Can only carry 5 Bombs - AZOIIEGX - - - Start with 9 lives - PENGZYIE - - - Start with 1 life - PENGZYIA - - - Start on round 3 - LEVKTYPA - - - Start on round 6 - TEVKTYPA - - - Start on round 9 - PEVKTYPE - - - - Rally Bike (USA) - - Infinite gas - SIUKLUVV - - - Infinite lives - 1P game - SZEITKVV - - - Infinite lives - 2P game, both players - SZOSIKVN - - - Start with 1 life - 1P game - PAUIKTIA - - - Start with 10 lives - 1P game - ZAUIKTIE - - - Start with 1 life - 2P game, both players - PAUIKITA+ZAXSTGTA - - - Start with 10 lives - 2P game, both players - ZAUIKTIE+LAXSTGIE - - - - Rambo (USA) (Rev A) - - Invincibility - ATOSXISL - - - Infinite weapons - SXOVXKVS - - - Gain double amount on pick-up - GOXTZXZA - - - Gain maximum amount on pick-up - GNXTZXZA - - - Hit anywhere - AEVSNOZL - - - Start with 2 Medicine Bottles - ZEEEITIA - - - Start with 9 Medicine Bottles - ZVEEITIA - - - Start with Hand Grenades - IPNEITPP+IOEALTPP - - - Infinite health - 010C:64 - - - Max EXP - 010F:23 - - - Infinite Throwing Knives - 011D:99 - - - Infinite Missiles type 1 - 011E:99 - - - Infinite Missiles type 2 - 011F:99 - - - Infinite Machine Gun - 0120:99 - - - Infinite Grenades - 0121:99 - - - Infinite Red Potions - 0122:99 - - - - Rambo (USA) - - Invincibility - ATOSXISL - - - Infinite weapons - SXOVXKVS - - - Gain double amount on pick-up - GOXTZXZA - - - Gain maximum amount on pick-up - GNXTZXZA - - - Hit anywhere - AEVSNOZL - - - Start with 2 Medicine Bottles - ZEEEITIA - - - Start with 9 Medicine Bottles - ZVEEITIA - - - Start with hand grenades - IPNEITPP+IOEALTPP - - - Infinite health - 010C:64 - - - Max EXP - 010F:23 - - - Infinite Throwing Knives - 011D:99 - - - Infinite Missiles type 1 - 011E:99 - - - Infinite Missiles type 2 - 011F:99 - - - Infinite Machine Gun - 0120:99 - - - Infinite Grenades - 0121:99 - - - Infinite Red Potions - 0122:99 - - - - Rampage (USA) - - No harm from attacks or bad food - GXXLALOP - - - No harm from falling - AEXLPGAP - - - No harm from water - AAOUOPPA+AASLSPPA - - - Buildings collapse automatically - ASUTPIEL - - - Buildings collapse faster - ASSZGTEY+IOOZUXIA - - - One hit to destroy buildings - EEKXYPIA - - - More health - P1 - NYSGLUYN - - - More health - P2 - NYVKTUYN - - - Less health - P1 - YLSGLUYN - - - Less health - P2 - YLVKTUYN - - - More health after continue - both players - NNNGKNYN - - - Less health after continue - both players - YUNGKNYN - - - More damage done from falling - AXXLPGAP - - - Double health from food - GEULLLIA - - - Half health from food - AEULLLIA+ZKULTUZE - - - - Ren & Stimpy Show, The - Buckeroo$! (USA) - - Infinite health - NYOYXLYE - - - Infinite lives - NYUVOZTE - - - Infinite collectibles - OUEAXXOO - - - Shorter invincibility after getting hit - YPEYOUGU - - - Longer invincibility after getting hit - ITEYOUGL - - - 2 custard pies on pick-up - ZAXNPZIA - - - 9 custard pies on pick-up - PAXNPZIE - - - Start with $11 instead of 0 - VNXELSSO - - - Start with 2 lives - PEUAPZLA - - - Start with 6 lives - IEUAPZLA - - - Start with 8 lives - YEUAPZLA - - - Start with 10 lives - PEUAPZLE - - - Start on Rescue the Maiden level - OZEEPYES+PAEEZYZZ - - - Start on Out West level - OZEEPYES+PAEEZYZZ+SAEELNVV - - - Start on Robin Hoek level - OZEEPYES+ZAEEZYZZ+SAEELNVV - - - - Renegade (USA) - - Infinite lives - SXUIOTVG - - - Timer runs faster - TOSVOXTU - - - Timer runs slower - EXSVOXTL - - - Start with a super energy boost - AIUOZUAZ - - - Start with 1 life - both players - AEOSLYZA - - - Start with 6 lives - both players - IEOSLYZA - - - Start with 9 lives - both players - AEOSLYZE - - - Start on mission 2 - PEXSYYAA - - - Start on mission 3 - ZEXSYYAA - - - Start on mission 4 - LEXSYYAA - - - Infinite time - 0472:59 - - - Enemies have no health - 007E:00+007F:00+0080:00 - - - - Ring King (USA) - - Infinite power points - 1P game - GZEIPVVK - - - Don't lose stamina from fighting - GXKZXYOP - - - Rounds are 30 seconds - LEOSLYTA - - - Rounds are 90 seconds - PEOSLYTE - - - Players can't hurt each other - GXOZOIOP - - - No health - P2 / CPU - 0319:00 - - - Infinite power (ten's digit) - P1 - 038D:09 - - - Infinite power (one's digit) - P1 - 038E:09 - - - Infinite time (ten's digit) - 06E4:09 - - - Infinite time (one's digit) - 06E5:09 - - - Max punch (ten's digit) - P1 - 038F:09 - - - Max punch (one's digit) - P1 - 0390:09 - - - Max speed (ten's digit) - P1 - 0391:09 - - - Max speed (one's digit) - P1 - 0392:09 - - - Max stamina (ten's digit) - P1 - 0393:09 - - - Max stamina (one's digit) - P1 - 0394:09 - - - No hits (hundred's digit) - P1 - 06EC:00 - - - No hits (ten's digit) - P1 - 06ED:00 - - - No hits (one's digit) - P1 - 06EE:00 - - - - River City Ransom (USA) - - Infinite lives - SUNEUKSO - - - Start with max stats - LVSNAVYA - - - Infinite money - SUKOOXSO+SUSPEXSO+SUSPNXSO - - - Coins worth max amount of money - LZXTXGLP - - - Infinite Stamina - OOELVUOU+OXVUVUOV - - - Infinite Will Power - SLOXNNSO - - - Max Punch - YYVOIUYU - - - Max Kick - YYVOTUYU - - - Max Weapon - YYVOYUYU - - - Max Throw - YYNPAUYU - - - Max Agility - YYNPPUYU - - - Max Defense - YYNPZUYU - - - Max Strength - YYNPLUYU - - - Max Will Power - YYNPGUYU - - - Max Stamina - NYNPTUYN - - - View the credits - ENVYZZEI - - - Start with double every attribute - TOSNAVYE - - - Start with 127 of all stats - YNSNAVYE - - - Start with 99 Stamina - LVNYIVYL - - - Start with double money - P1 - AGENAYAZ - - - Start with double money - P2 - AGOYYYAZ - - - Start with $100 extra - P1 - PAENIYAA - - - Start with $100 extra - P2 - PAONGYAA - - - - RoadBlasters (USA) - - Infinite credits - SZEIGEVK - - - Double credits - GAVLUTZA - - - Extend lifetime of UZ Cannon - PEEAEIIE - - - Extend lifetime of Nitro Injector - NNSEOIEE - - - Reduce lifetime of Nitro Injector - AKSEOIEA - - - Infinite Cruise missiles - SXVEKSVK+ETOENSTP - - - Infinite UZ Cannon - ATNEEISZ+LZOENSTO - - - Infinite Nitro Injectors - AVSEKSVG+SAOENSTO+GXKEOIEY - - - Infinite Electro Shield - SZSEKVVK+PIOENSTP+VAXAESSE - - - Infinite Fuel - 0085:CF - - - Infinite Reserve Fuel - 0086:6D - - - Max speed - 009A:FF - - - - Road Runner (USA) (Unl) - - Infinite lives - SZOVUUVK - - - Never lose seed - XVUGAOEK+XVXTSUEK - - - Start with 1 life - AAEVTGIA - - - Start with 12 lives - LAEVTGIE - - - Start with 18 lives - PPEVTGIA - - - Start on level 5 - IAOTLGPA - - - Start on level 10 - ZAOTLGPE - - - Start on level 15 - YAOTLGPE - - - Start on level 20 - GPOTLGPA - - - Start on level 25 - PPOTLGPE - - - Start on level 30 - TPOTLGPE - - - - Robin Hood - Prince of Thieves (USA) (Rev A) - - Infinite HP for Robin in main combat - VAXEOLSA - - - Infinite HP for Robin in dueling combat - EYXAOPAL - - - Infinite Arrows - AASPIZPA - - - Bandages give more HP back - GOXLLNAA - - - Food gives more HP back - Except the Leg of meat - AOULIUAE - - - Infinite Arrows (alt) - 0179:FF - - - Max Exp points - 0604:FF - - - Max Level - 0176:FF - - - Max Attack - 0170:FF+0171:FF - - - Max Agility - 016E:FF+016F:FF - - - Max Defense - 0172:FF - - - Max Gold - 0177:FF - - - Load zero - 016C:00 - - - - Robin Hood - Prince of Thieves (USA) - - Infinite HP for Robin in main combat - VAXEOLSA - - - Infinite HP for Robin in dueling combat - EYXAOPAL - - - Infinite Arrows - AASPIZPA - - - Bandages give more HP back - GOXLLNAA - - - Food gives more HP back - Except the Leg of meat - AOULIUAE - - - Infinite Arrows (alt) - 0179:FF - - - Max Exp points - 0604:FF - - - Max Level - 0176:FF - - - Max Attack - 0170:FF+0171:FF - - - Max Agility - 016E:FF+016F:FF - - - Max Defense - 0172:FF - - - Max Gold - 0177:FF - - - Load zero - 016C:00 - - - - Robo Warrior (USA) - - No damage from bomb blast - GZUNYXTK - - - No damage from monsters and no power drain - GZNNIXTK - - - Infinite Barrier after pick-up - XTXGKPVV - - - Infinite Mega Bombs after pick-up - SUXSNIVI - - - Infinite Super Bombs - SZKTYPVG - - - Walk through walls - EONGELAP - - - 5 Super Bombs on pick-up - IAVTPSZA - - - 20 Super Bombs on pick-up - GPVTPSZA - - - Set firing range to 5 - IANGAPPA - - - Set firing range to 10 - ZANGAPPE - - - Start with 5 of everything - IEVKLPAA - - - Start with 10 of everything - ZEVKLPAE - - - Start with defense level at 5 - IEVGIPPA - - - Start with defense level at 8 - AEVGIPPE - - - - Robocco Wars (Japan) - - Start on level 5 - GLUZOAAE - - - - RoboCop (USA) - - Invincibility - LLNTTZIU+SLXUYTAX - - - Infinite time - SXKXYIVT - - - Infinite ammunition - SGOTKLIA - - - No damage from touching enemies - SZKVOTSA - - - No damage from enemy bullets - SZVVVYSA - - - Bosses die automatically - AEOXIXLL - - - Can't harm civilian at the end of level 1 - SOKZLNSU - - - Triple normal power on power food pick-up - PAOYNILE - - - Triple normal time on battery pick-up - PAXNEILE - - - Max time on battery pick-up - TPXNEILA - - - Full power on power food pick-up - TPOYNILA - - - Use with COP Code 2 to start with machine gun and Cobra gun - YAXSAPPE - - - Press Start to finish the level (may cause graphical glitches in later levels) - YAXIGXTE - - - Start on level 2 - PAESZPAA+SAESLPSP+TTESGPSA - - - Start on level 3 - ZAESZPAA+SAESLPSP+TTESGPSA - - - Start on level 4 - LAESZPAA+SAESLPSP+TTESGPSA - - - Start on level 5 - GAESZPAA+SAESLPSP+TTESGPSA - - - Start on level 6 - IAESZPAA+SAESLPSP+TTESGPSA - - - Infinite health - 006E:00 - - - Infinite time (alt) - 0082:00 - - - - RoboCop 2 (USA) (Rev A) - - Invincibility - ENVEUYEI - - - Infinite health - AVKTPNOP - - - Infinite lives - SINKIPVI - - - Infinite time - SGETGYVG+SKNVGTVG - - - No enemies - EINAXLEY - - - Each N (Nuke) is worth 10 - AAEVKALA - - - Infinite health (alt) - 0054:09+0055:09 - - - Infinite lives (alt) - 0058:04 - - - Infinite time (alt) - 0091:FF - - - Infinite N - 0052:09+0053:09 - - - - RoboCop 2 (USA) - - Invincibility - ENVEUYEI - - - Infinite lives - SINKIPVI - - - No enemies - EINAXLEY - - - Infinite health - 0054:09+0055:09 - - - Infinite lives (alt) - 0058:04 - - - Infinite time - 0091:FF - - - Infinite N - 0052:09+0053:09 - - - - RoboCop 3 (USA) - - Infinite efficiency - OXONLPSV+POONGPXV - - - Infinite efficiency (alt) - OUXYPOSO - - - One hit kills - GNUNAEKN - - - Hit anywhere - AEENAEUT - - - Lots of repair icons - VVKGLATE - - - Start with 2x health - ZLVGIXPP - - - Start with 1/2 health - GAVGIXPO - - - Infinite P - 06A4:09 - - - Have main weapon - regular - 001C:00 - - - Have main weapon - Rapid - 001C:01 - - - have main weapon - 3-Way - 001C:02 - - - have secondary weapon - Missiles - 001D:00 - - - Have secondary weapon - Homing Missiles - 001D:01 - - - Have secondary weapon - Bang - 001D:02 - - - - RoboCop versus The Terminator (USA) (Proto) - - Infinite lives - SZKIZKSE - - - Infinite health - SZEVGOSE - - - Infinite health (alt) - 04EE:0A - - - - Robodemons (USA) (Unl) - - Infinite health - 051B:14 - - - - Rocketeer, The (USA) - - Infinite health - GZSSINSV - - - Have all weapons with infinite ammo - AAVLKIIA - - - 1/2 normal bullets on pick-up - IAOZZXZA - - - 2x normal bullets on pick-up - GPOZZXZA - - - 3x normal bullets on pick-up - TPOZZXZE - - - 1/2 silver bullets on pick-up - ZAEZGZGO - - - 2x silver bullets on pick-up - AZEZGZGO - - - 3x silver bullets on pick-up - GLEZGZGO - - - Start with 1/2 health - GESLNKAA - - - Start with 2x health - AOSLNKAA - - - Start with 3x health - AOSLNKAE - - - Infinite health (alt) - 05C5:0A - - - Infinite Rocket power - 05B0:27 - - - Have all weapons with infinite ammo (alt) - 05BF:63 - - - - Rocket Ranger (USA) - - Double amount of Lunarium in storage - ZEOGSYPA - - - Triple amount of Lunarium in storage - LEOGSYPA - - - Lunarium level in backpack at 99 - LVOKXNGL - - - Never lose Lunarium in backpack - SZSGPUSE - - - Half amount of Lunarium in storage - AEOGSYPA+ZUOKNYAA - - - - Rockin' Kats (USA) - - Invincibility - EIXVATEY - - - Infinite health - SXKVZVSE - - - Infinite lives - SKOKOSVK - - - Can select any item (you will not be able to see it) - AEOEYZOI - - - Can always select channel 5 - AEXEELAP - - - Can always buy items - OXEEOYSX - - - Infinite health (alt) - 0423:0A - - - Infinite lives (alt) - 041F:09 - - - Have all items - 0105:0F - - - Infinite high cash - 0104:0E - - - Channels 1-4 completed - 0102:FF - - - - Rock 'n' Ball (USA) - - Infinite balls - SLNXYEVS - - - - Rod Land (Europe) - - Infinite lives - SLOPOOTS - - - Infinite time in extra game - SXOTAGVG - - - Start with invincibility - ESVSELEY - - - Start on scene 31 - TOSKYIAE - - - - Roger Clemens' MVP Baseball (USA) - - Infinite balls (balls are not called) - OONIALAA - - - Infinite balls and strikes - SLNALPVY - - - Strikes are not called when batter doesn't swing - OOVSLLPA - - - Strikes are not called when batter swings - GANAAPZA - - - 2 strikes and you're out - ZANEAPLA+ZEOUYPLA+ZEVKGPLA - - - 1 strike and you're out - PANEAPLA+PEOUYPLA+PEVKGPLA - - - 1 ball for a walk - PENKLPGA - - - 2 balls for a walk - ZENKLPGA - - - 3 balls for walk - LENKLPGA - - - - Rollerblade Racer (USA) - - Infinite lives - OXVSAYVK - - - 1 fall and you're dead - PEVIPYGA - - - 6 falls and you're dead - TEVIPYGA - - - 8 falls and you're dead - AEVIPYGE - - - Start on the City Street - ZAUKNZAA - - - Start with 1 life - PAUKUZLA - - - Start with 6 lives - TAUKUZLA - - - Start with 9 lives - PAUKUZLE - - - Start on Hit the Beach - GAUKNZAA - - - Start on Panic Park - TAUKNZAA - - - - Rollergames (USA) - - Infinite lives - SXENAYVG - - - Infinite special moves - GXVPAZVG - - - 9 special moves - PASAZALE - - - 6 special moves - TASAZALA - - - Mega-jump - PAKAAGAE - - - Infinite time - GZOENISA - - - Faster timer - YPOAUSYU - - - Slower timer - YYOAUSYU - - - Start with less energy - TASATEGA - - - Start with more energy - APSATEGE - - - Infinite health - 04CE:0C - - - Infinite lives (alt) - 0082:10 - - - Infinite time (alt) - 0032:03 - - - - Rolling Thunder (USA) (Unl) - - Infinite health - SZSZGVSE - - - Infinite lives - SZNTULVG+SZSTULVG - - - Infinite time - SZEVYZVG - - - Hit anywhere - AKSZANEL+ATUILYEI+OXSZPNEX - - - 200 Machine Gun bullets on pick-up - EKSTEAGV - - - 300 Machine Gun bullets and 300 bullets on pick-up - SUOZPXVS - - - Gain fewer bullets on pick-up - GOKVNAZL - - - Self-replenishing bullets - ZLVITYPA - - - Start with 200 bullets - EKXVZAZU - - - Start with 200 bullets on each new life - EGKVKLZU - - - Start with loads of ammunition - LEXTZAAA+LAKTKLAA - - - Start with 1 life - PEOVLALA - - - Start with 6 lives - TEOVLALA - - - Start with 9 lives - PEOVLALE - - - Start with 1 life after continue - PASPYZLA - - - Start with 6 lives after continue - TASPYZLA - - - Start with 9 lives after continue - PASPYZLE - - - Start with increased life meter - AEEVSAZE - - - Start on story 1 area 02 - PAVEUYAA+ALVESYOL - - - Start on story 1 area 03 - ZAVEUYAA+ALVESYOL - - - Start on story 1 area 04 - LAVEUYAA+ALVESYOL - - - Start on story 1 area 05 - GAVEUYAA+ALVESYOL - - - Start on story 2 area 06 - IAVEUYAA+ALVESYOL - - - Start on story 2 area 07 - TAVEUYAA+ALVESYOL - - - Start on story 2 area 08 - YAVEUYAA+ALVESYOL - - - Start on story 2 area 09 - AAVEUYAE+ALVESYOL - - - Start on story 2 area 10 - PAVEUYAE+ALVESYOL - - - Start on story 3 area 01 - PEKEXIAA - - - Infinite health (not versus bullets) - 0089:02 - - - Infinite bullets - 00A0:32 - - - Infinite time (alt) - 059B:09+059C:09+059D:09 - - - Infinite lives (alt) - 05BC:09 - - - - Roundball - 2-on-2 Challenge (USA) - - Start with 1 ball - all players - PANGIPLA - - - Infinite balls - all players - SZKGPXVS - - - - Rush'n Attack (USA) - - Invincibility (star effect) - KAXAGYIA+KAXEYYIA - - - Invincibility (except vs bullets) - AIUAPPEI - - - Infinite POW - AENASIPA - - - Always have 255 POW - SAVSNNSX - - - Hit anywhere - ASKELZEL+GGXAAIEU+LUKEGXLV+SAXAZSOL+YLXAPSGI - - - Infinite lives - P1 - GZOEAYVG - - - Infinite lives - P2 - GZOEIYVG - - - Multi-jump - NXSAGNUE+OAUXENNN+OYUXXNNY+PZUZXNNN+SZUZENNY+UAUXUNNN+AAUZUNNN+ATUXKNNY+AUSALYOY+AZUXONNY+AZUZVNNY+EYUZKNNY+EYUZNNNN+GAUZONNY+LAUZSNNY - - - Start with 1 life - P1 - PAVSTPIA - - - Start with 1 life - P2 - PANITPIA - - - Start with 10 lives - P1 - ZAVSTPIE - - - Start with 10 lives - P2 - ZANITPIE - - - Start on stage 2 (disable when stage begins) - 0020:01 - - - Start on stage 3 (disable when stage begins) - 0020:02 - - - Start on stage 4 (disable when stage begins) - 0020:03 - - - Start on stage 5 (disable when stage begins) - 0020:04 - - - Start on stage 6 (disable when stage begins) - 0020:05 - - - - Rygar (USA) (Rev A) - - Invincibility - ATEZOTKA - - - Infinite health - SXUZXTSA - - - Infinite Mind points - AAZEZZ - - - Have first three items after pressing B once - IEKZPLIZ - - - Hit anywhere - ALOXKIEL+ALUZUIEL+ALXZXIEL+EYUXOIEL - - - One hit kills - POXXVYSA - - - Pits aren't fatal (side view) - AAOZLEAA - - - Walk on water (side view) - ASSOSGEI - - - Enemies always drop a health potion - EPSLYIEL+LANUYIYA+OZNUTSPX - - - Enemies always drop a Mind unit - EPSLYIEL+GANUYIYA+OZNUTSPX - - - Don't be pushed after being hit - AVOXVTIA - - - Jump higher - LAVOLTGA - - - Multi-jump - ZZKXKIAX+APKXSIEY+ATOZTEOZ+AZKXXIGE+GASZOIIA+IZKXUSPZ+SAKXNSSX+SZKXOIXP+XGSZEIZL+XTKXESSX - - - Grappling Hook continues until it finds something - SZUPOOVK+SZXXGZSA - - - Start with 12 units of health - AOUGPATE+AOUGZATE - - - Infinite Attack & Assail - 00CD:FF - - - Have all equipment - 00C0:FF+00C1:FF - - - Always have Power Up - 00C0:10 - - - Lots of Tone - 00C7:FF - - - Lots of Last - 00C8:FF - - - - Rygar (USA) - - Invincibility - ATEZOTKA - - - Infinite health - SXUZXTSA - - - Infinite Mind points - AAZEZZ - - - Have first three items after pressing B once - IEKZPLIZ - - - Hit anywhere - ALOXKIEL+ALUZUIEL+ALXZXIEL+EYUXOIEL - - - One hit kills - POXXVYSA - - - Pits aren't fatal (side view) - AAOZLEAA - - - Walk on water (side view) - ASSOSGEI - - - Enemies always drop a health potion - EPSLYIEL+LANUYIYA+OZNUTSPX - - - Enemies always drop a Mind unit - EPSLYIEL+GANUYIYA+OZNUTSPX - - - Don't be pushed after being hit - AVOXVTIA - - - Jump higher - LAVOLTGA - - - Multi-jump - ZZKXKIAX+APKXSIEY+ATOZTEOZ+AZKXXIGE+GASZOIIA+IZKXUSPZ+SAKXNSSX+SZKXOIXP+XGSZEIZL+XTKXESSX - - - Grappling Hook continues until it finds something - SZUPOOVK+SZXXGZSA - - - Start with 12 units of health - AOUGPATE+AOUGZATE - - - Infinite Attack & Assail - 00CD:FF - - - Have all equipment - 00C0:FF+00C1:FF - - - Always have Power Up - 00C0:10 - - - Lots of Tone - 00C7:FF - - - Lots of Last - 00C8:FF - - - - S.C.A.T. - Special Cybernetic Attack Team (USA) - - Infinite health - AANSUGPA - - - More energy on pick-up - ZANVNGLE - - - Don't lose speed-ups when hit - AEESVKAA - - - Longer immunity - NNEIKGAK - - - Shorter immunity - APKSEGAG - - - Faster maximum speed-up - PAEIKTTE+NYEISVXY - - - Faster normal speed-up - TENIKIGA+XNNISSKN - - - Start with more health - ZUXGKTTA - - - Infinite health - P1 - 001C:09 - - - - Saint Seiya - Ougon Densetsu (Japan) - - Fly - 008B:C8 - - - Infinite health (damage) - 0689:40+068A:40 - - - Infinite Cosmos - 0685:40+0686:40 - - - - Saint Seiya - Ougon Densetsu Kanketsu Hen (Japan) - - Start with infinite health (life) - 0063:40+0040:40 - - - Start with infinite Cosmos - 0059:40+005A:40 - - - Infinite Seven Sense - 05AA:40+05AB:40 - - - - Salamander (Japan) - - Invincibility - 0074:20 - - - Infinite lives - 0034:09 - - - Option always on Speed - 0068:01 - - - Option always on Missile - 0068:02 - - - Option always on Ripple - 0068:03 - - - Option always on Laser - 0068:04 - - - Option always on Option - 0068:05 - - - Option always on Force - 0068:06 - - - Start with and keep Missiles - 0076:02 - - - - Secret Scout in the Temple of Demise (USA) (Unl) - - Infinite lives - OUXTYKOO - - - View the ending - ASVIYIAE - - - - Secret Ties (USA) (Proto) - - Invincibility - SKNKUEKK - - - Infinite health - SZVGEPSA - - - Infinite lives - SKVNKZVG - - - Infinite Gun - SZVGLYVG - - - Infinite Shield - SZOKSPVG - - - Super-jump - YONGAIIE+AXVGYGTA - - - Allways able to use Gun - AIXTXYEI - - - Allways able to use Shield - AIOVKYEI - - - Start with 99 lives - GVVTAPLA - - - Start with double health - ZENVPPIE - - - Invincibility (alt) - 03CC:00 - - - Infinite health (alt) - 0009:07 - - - Infinite Gun (alt) - 000A:63 - - - Infinite Shield (alt) - 000B:63 - - - - Section-Z (USA) - - Infinite lives - SXOPUIVG - - - Energy tube gives full energy boost - ZAUNUZAE - - - Autofiring capability - NNNOUTSY - - - Autofire without having to hold the button down - NNNOUTSN - - - Press Start to complete current mission (do not use past sector 40) - AEOIILYA+OXOIPUPK+PUOIGUSN+ZEOIZLPA - - - Start a new game to view the ending - LAEAZYPA - - - Start with 1 life - PEXSIZLA - - - Start with 6 lives - TEXSIZLA - - - Start with 9 lives - PEXSIZLE - - - Infinite energy - 005B:09+005A:09 - - - - Seicross (USA) - - Infinite lives - SUTEEX - - - Slow motion - PEGEUG - - - Start with 1 life - PELAGA - - - Start with 6 lives - TELAGA - - - Start with 9 lives - PELAGE - - - Infinite health - P1 - 0078:BD - - - Infinite lives - P1 - 0615:99 - - - - Shadow of the Ninja (USA) - - Infinite continues - SZSNIIVG - - - 9 continues - PEEVZAIE - - - 1 continue - PEEVZAIA - - - Don't lose energy from enemy attacks - GZVXSKSO - - - Don't lose energy from falling - AAVPGIGA - - - Maximum energy gained from potion - APOEOGGA - - - Less energy gained from potion - PAOEOGGA - - - 40 Throwing Stars on pick-up - AZUAOGGO - - - 20 Bombs on pick-up - GPKAVGIA - - - - Shadowgate (USA) - - Infinite torches - XVESZNVK - - - - Shatterhand (USA) - - Hit anywhere - AIOEPIEL+GXNALGEL+GXNEYGEP+GXSELGEP - - - Power-ups don't use up gold - AAKKSPPA - - - Big coins worth double - AXXAZZGO - - - Big coins worth half - ZEXAZZGO - - - Small coins worth triple - YEEAYZIE - - - Start with less health - GENNZSAA - - - Start with 1 life - AEVNAIZA - - - Start with 6 lives - IEVNAIZA - - - Start with 9 lives - AEVNAIZE - - - Invincibility - Robot Suit - 05C2:7E - - - Powered up - Red Vest - 05C8:03 - - - - Shinobi (USA) (Unl) - - Infinite life - SZNIPNVK - - - Infinite lives - SZEOLXVK - - - Turbo running - IEKONILA - - - Start with double life - GAXOTATE+GENPGPTE - - - Start with 1 life - AANOLAZA - - - Start with 6 lives - IANOLAZA - - - Start with 9 lives - AANOLAZE - - - - Shinsenden (Japan) - - No random battles - ATXUPAAL - - - - Shooting Range (USA) - - Double bonus time for hourglasses - GTEPOAZL - - - Half bonus time for hourglasses - PPEPOAZU - - - More time for level 1 - GEKAILLA+GAEETTLA - - - Less time for level 1 - ZEKAILLA+ZAEETTLA - - - More time for level 2 - GAOAATZA+AAOAPTZL - - - Less time for level 2 - PAOAATZA+ZLOAPTZL - - - More time for level 3 - GAOAZTZA+ZLOALTAA - - - Less time for level 3 - PAOAZTZA+AAOALTAA - - - Double usual shots per round - ASUAIVAZ+ASXOVXAZ+SXVONOOU - - - Triple usual shots per round - ASUAIVAZ+ANXOVXAX+SXVONOOU - - - Quadruple usual shots per round - ASUAIVAZ+EXXOVXAZ+SXVONOOU - - - - Silent Service (USA) - - Infinite deck gun shells - SZXVOPVG - - - Infinite bow torpedoes - SZSVUPVG - - - Infinite aft torpedoes - SXETUPVG - - - Start with 50 deck gun shells - ZLEPOIAI - - - Start with 99 deck gun shells - LTEPOIAI - - - - Silk Worm (USA) - - Infinite lives using helicopter - SXSVIZVG - - - Infinite lives using jeep - SZVVGTVG - - - Keep firepower and speed-ups for helicopter - SZETZLSA - - - Keep firepower and speed-ups for jeep - SXOTPTSA - - - Restrict movement area for helicopter - EEOVYUEI - - - Restrict movement area for jeep - EEOVGYEV - - - 1 life using helicopter after continue - PEEGSPLA - - - 6 lives using helicopter after continue - TEEGSPLA - - - 9 lives using helicopter after continue - PEEGSPLE - - - 1 life using jeep after continue - PEOKNPLA - - - 6 lives using jeep after continue - TEOKNPLA - - - 9 lives using jeep after continue - PEOKNPLE - - - Start with 1 life - PAXGXALA - - - Start with 6 lives - TAXGXALA - - - Start with 9 lives - PAXGXALE - - - Start at stage 2 - PAXKEAAA - - - Start at stage 3 - ZAXKEAAA - - - Start at stage 4 - LAXKEAAA - - - Start at stage 5 - GAXKEAAA - - - Start at stage 6 - IAXKEAAA - - - Start at stage 7 - TAXKEAAA - - - - Silver Surfer (USA) - - Infinite lives - both players - SXEKSNVK - - - Infinite Smart Bombs - both players - NYVTLVGO - - - Keep cosmic weapons after losing a life - GXEITSSE - - - Keep Orbs after losing a life - GXEILSSE+GXKIOUSE - - - Have 5 Smart Bombs on a new life - IEESIIPA - - - Start with 1 life - P1 - PAOILIIA - - - Start with 1 life - P2 - PAKSGIIA - - - Start with 5 Smart Bombs - P1 - IAXSGIPA - - - Start with 5 Smart Bombs - P2 - IAVIIIPA - - - Infinite lives - 05E6:09 - - - - Simpsons, The - Bartman Meets Radioactive Man (USA) - - Invincibility - SXXNPLAX - - - Infinite health - AAUY-PYGA - - - Infinite health (alt) - SZUYZNSE - - - Infinite Eyes on pick-up - SKNNVEVK - - - Infinite Eyes on pick-up (alt) - SXNNVEVK - - - Infinite Cold on pick-up - AAKYKPPA - - - Infinite lives - OLVYAZOP - - - Infinite credits - SZENNEVK - - - Eyes worth more on pick-up - ASVTOZAZ - - - Cold worth more on pick-up - AXUVSZIA - - - Start with 2 lives and 2 credits - PAVAYYLA - - - Start with 6 lives and 6 credits - IAVAYYLA - - - Start with 8 lives and 8 credits - YAVAYYLA - - - Start with 10 lives and 10 credits - PAVAYYLE - - - Start in chapter 1 level 2 - ZAUZAYAA - - - Start in chapter 1 level 3 - IAUZAYAA - - - Infinite health (alt 2) - 0787:20 - - - Infinite Eyes on pick-up (alt 2) - 0788:99 - - - Infinite Cold on pick-up (alt) - 789:99 - - - - Simpsons, The - Bart vs. the Space Mutants (USA) (Rev A) - - Infinite time - XVOYLXXK - - - Slow down time - AYNNIXGU - - - Speed up time - AZNNIXGL - - - Gain 2 coins for every 1 collected - PAENGYAA - - - Only 10 coins needed to get an extra life - PAOYZNTE - - - Buy items for free - GXOXIXVK+GXXLIEVK - - - Super-jump - IPUYVUGA - - - Invincibility (blinking) - 04BD:FF - - - Infinite health - 04B2:01 - - - Infinite time (alt) - 066C:09 - - - - Simpsons, The - Bart vs. the Space Mutants (USA) - - Invincibility - ESOINPEY - - - Infinite health - SZOTESVK - - - Infinite time - XVONYXXK - - - Slow down time - ANENPXGU - - - Speed up time - AXENPXGL - - - Gain 2 coins for every 1 collected - PAONAYAA - - - Only 10 coins needed to get an extra life - PAONTNTE - - - Buy items for free - GXXZZOVK+GXXULEVK - - - Get all items by selecting them (be sure to get the Paint Can in level 1 and Gun in the Museum) - SPKTLESU - - - Super-jump - IPKYXUGA - - - Invincibility (blinking) - 04BD:FF - - - Infinite health (alt) - 04B2:01 - - - Infinite time (alt) - 066C:09 - - - - Simpsons, The - Bart vs. the World (USA) - - Invincibility - ZOXVGLIE - - - Infinite health - SZVVEKVK - - - Infinite lives - SZONIPST - - - Infinite Firecracker Balls - OLUNPPOP - - - Infinite tries for the card match game - SZNZPEVK - - - Bart flies - KLYUKA - - - Lose lives more easily - EISVNGEY - - - Start with 99 Firecracker Balls - PAEZPAAE - - - Start with 9 lives - PAXXVGLE - - - Infinite health (alt) - 06BC:05 - - - Infinite lives (alt) - 06C1:09 - - - Infinite Firecracker Balls (alt) - 06BF:09 - - - - Skate or Die (USA) - - Snowball Blast - More snowballs picked up - ZENXTTPA - - - Snowball Blast - Start with more time - OOEPVAAV - - - Snowball Blast - Start with less time - AKEPVAAT - - - Snowball Blast - More time gained - IOKXITAP - - - Snowball Blast - Less time gained - IEKXITAP - - - Snowball Blast - Start with more ammo - GAUPVAZA - - - Snowball Blast - Start with less ammo - PAUPVAZA - - - Acro Aerials - More jumps allowed - IAVVNILA+IESTEYLA - - - - Skate or Die 2 - The Search for Double Trouble (USA) - - Adventure Game - Infinite health - SXUXZPVG - - - Adventure Game - Infinite Paint Clips - SXVPTVVK - - - Adventure Game - Infinite Eggs - AANPZPPA+AAXOZLPA - - - Adventure Game - Infinite M-80's - AAVPTLPA+AEEOAPPA - - - Adventure Game - Skate at any speed - AEESAAPG+AAKATAPG - - - Stunt Ramp - Only 1 skateboard - PAUYLLLA - - - Stunt Ramp - 6 skateboards - TAUYLLLA - - - Stunt Ramp - 9 skateboards - PAUYLLLE - - - Stunt Ramp - More time - TAONILLA - - - Stunt Ramp - Less time - ZAONILLA - - - Stunt Ramp - Infinite time - SZUAKZVG - - - Stunt Ramp - Super speed - TEKOKZIA - - - Stunt Ramp - Infinite skateboards - SXKPVYVG+SXUZGAVG - - - - Ski or Die (USA) - - Snowball Blast - More snowballs picked up - ZENXTTPA - - - Snowball Blast - Start with more time - OOEPVAAV - - - Snowball Blast - Start with less time - AKEPVAAT - - - Snowball Blast - More time gained - IOKXITAP - - - Snowball Blast - Less time gained - IEKXITAP - - - Snowball Blast - Start with more ammo - GAUPVAZA - - - Snowball Blast - Start with less ammo - PAUPVAZA - - - Acro Aerials - More jumps allowed - IESTEYLA+IAVVNILA - - - - Skull & Crossbones (USA) (Unl) - - Infinite continues - SZNOTNVK - - - Infinite weapons - SUOEIVVS - - - Infinite time - SZONGXVK - - - Faster timer - AZONAXGL - - - Slower timer - AYONAXGL - - - Half energy for Red Dog and One Eye - POVPLYZU+POEPZYZU - - - Double energy for Red Dog and One Eye - LVVPLYZL+POEPZYZU - - - Better super-jump - EUVEYNEK+EUVAGNEK - - - 1 continue - PEXPTYIA - - - 9 continues - PEXPTYIE - - - - Sky Kid (USA) - - Infinite lives - SXEKGZVI - - - P1 has more lives than P2 - VANNVZSA - - - Shoot more bullets - AAOKIZPA - - - Start with 1 life - both players - PANYNZLA - - - Start with 6 lives - both players - TANYNZLA - - - Start with 9 lives - both players - PANYNZLE - - - Start on level 5 - IAVNNZPA+GAVNUZAA - - - Start on level 10 - ZAVNNZPE+PAVNUZAE - - - Start on level 15 - APVNNZPA+YAVNUZAE - - - Start on level 20 - GPVNNZPA+LPVNUZAA - - - Invincibility - P1 - 00BB:00 - - - Invincibility - P2 - 00CB:00 - - - - Sky Shark (USA) (Rev 0A) - - Infinite lives - OZNEAAVS - - - Infinite Bombs - GXUEALVI - - - Infinite credits - GZNEIOVS - - - Autofire - AAEELOGI - - - Double Bombs - TAVPSTLA - - - Double credits - TAUAYALA - - - 1 life after continue - both players - AANEZPGA - - - 9 lives after continue - both players - AANEZPGE - - - Start with maximum firepower - EZXAPPKZ+TAXAZOIL - - - Start with 1 life - P1 - GZXATEOZ - - - Start with 1 life - P2 - AAUALAGA - - - Start with 9 lives - P1 - TAXEZAXZ+PZXELENY - - - Start with 9 lives - P2 - AAUALAGE - - - - Slalom (USA) - - Ski super fast - PAOULZAA - - - No track obstacles - AAEPLIPA - - - Timer at 5 minutes for all tracks - XZXPATVZ+PAXPPVPN - - - - Smash T.V. (USA) - - Infinite lives - UIVYGXVS - - - Touch and kill most enemies - EAOZPZEY - - - Infinite Grenades - OXXUUYVS - - - Get a lot more Grenades - OPNXVTTE - - - - Smurfs, The (Europe) (En,Fr,De,Es) - - Invincibility - EIEAELEY+ESNXPLEY - - - Infinite health - SXKPLVVK - - - Infinite lives - SXOLXUSE - - - Infinite time - SUKPSOSO - - - - Snake's Revenge (USA) - - Invincibility - SZEVEPSA - - - Infinite health - SXKVKASA - - - Infinite ammo for all weapons - XTNTZVEE - - - Infinite Beretta ammo - SZEEOUSE - - - Infinite Shotgun ammo - SXOASKSE - - - Infinite Grenades - SZKAKKSE - - - Infinite Missiles - SXVEOKSE - - - Reduce your injuries by up to 50% - AEUVOAYA - - - Play with less health - XVUYTUZE+XTKZXKZE - - - Infinite time for Metal Gear battle - SXSZTEVK - - - One hit defeats Metal Gear - ESXALLEY - - - Start a new game to view the ending - PPUGASTA - - - Start with half bullets for Beretta M92 - AXXVGYAG - - - Start with double bullets for Beretta M92 - EEXVGYAG - - - Start with Machine Gun instead of Beretta - ZEOVAYPA+XKXVTYEG - - - Start with Shotgun instead of Beretta - GEOVAYPA+KKXVTYEG - - - Start with Grenades instead of Beretta - AXOVAYPA+VKXVTYEG - - - Start with Missiles instead of Beretta - EEOVAYPA+EKXVTYEK - - - - Snake Rattle n Roll (USA) - - Infinite lives - both players - SLOUSVVS - - - Infinite time - SXEYOZVG - - - Faster timer - AGNNVXTT - - - Slower timer - EPNNVXTT - - - Super-jump - ZAXOSGPA - - - Mega-jump - LAXOSGPA - - - 1 life - both players - AEXAYZZA - - - 6 lives - both players - IEXAYZZA - - - 9 lives - both players - AEXAYZZE - - - 1 life - both players, after continue - AEUAETZA - - - 6 lives - both players, after continue - IEUAETZA - - - 9 lives - both players, after continue - AEUAETZE - - - Start on level 2 - PEUEGXNY - - - Start on level 3 - ZEUEGXNY - - - Start on level 4 - LEUEGXNY - - - Start on level 5 - GEUEGXNY - - - Start on level 6 - IEUEGXNY - - - Start on level 7 - TEUEGXNY - - - Invincibility (blinking) - 040D:11 - - - Infinite health - 059F:1C - - - Infinite lives - 03DF:03 - - - Infinite time (alt) - 00CF:09 - - - Easy win - 0062:09 - - - Max tongue height - 0499:07 - - - - Snow Brothers (USA) - - Invincibility - SUUAVVVS - - - Infinite number of chances - SXNEUYVI - - - Always get 10 chances after a continue (count restarts at 9) - PAOAYLZE - - - Always get 1 chance after a continue (count restarts at 0) - AAOAYLZA - - - Don't lose super ability after you lose a chance - OUOOGEOO - - - Start with 10 chances instead of 3 (count starts at 9 instead of 2) - PAXXPLZE - - - Start with 1 chance (count starts at 0) - AAXXPLZA - - - Start with Speed Skates, Power Shots and super snow-throwing - YAEEYAAE - - - Start with Speed Skates (don't use with other "start with" codes) - PAEEYAAA - - - Start with Power Shots (don't use with other "start with" codes) - ZAEEYAAA - - - Start with super snow-throwing ability (don't use with other "start with" codes) - GAEEYAAA - - - Start on 5th floor - GEVZTZAA - - - Start on 10th floor - PEVZTZAE - - - Start on 20th floor - LOVZTZAA - - - Start on 30th floor - IOVZTZAE - - - Start on 40th floor - YXVZTZAA - - - Start on 50th floor - PUVZTZAA - - - - Soccer (World) - - Each half lasts only 10 minutes - APOOKZIP - - - Each half lasts for 50 minutes - AIOOKZIP - - - Start 1 goal up - PASLVTAA+KASUOTSA+KASUUVSE - - - Start 3 goals up - LASLVTAA+KASUOTSA+KASUUVSE - - - - Solar Jetman - Hunt for the Golden Warpship (USA) - - No damage taken from walls - AEXZGVSY+AEXXAVNY - - - Minimum damage taken from walls - AEXXAVNY - - - Infinite lives - SZXONIVG - - - Weapons use up no energy - SVEKOVON - - - Items for free - AEUIOXYA+GXKSOZSA - - - Reversed gravity for planet 1 - UNSPLSLE - - - Reversed gravity for planet 2 - VTSOZVTO - - - Reversed gravity for planet 3 - KVOPATGP - - - Reversed gravity for planet 4 - XNVOTSZE - - - Reversed gravity for planet 5 - ETXPGTAZ - - - Reversed gravity for planet 6 - OTUOYVPX - - - Reversed gravity for planet 7 - UTEOPTLZ - - - Normal gravity for planet 8 - AOXOLVEV - - - Start with 1 ship and 1 life - PAKSZLGA - - - Start with 8 ships and 8 lives - AAKSZLGE - - - Start with more money - AASSZLPE - - - Start on level 3 - ZASSTLAA - - - Start on level 6 - IASSTLAA - - - Start on level 9 - AASSTLAE - - - Start on level 11 - ZASSTLAE - - - - Solomon's Key (USA) - - Invincibility - SZVAIAAX - - - Infinite life - OUXZYPOP - - - Infinite lives - XTKKKEXK - - - Indestructible fireball - GZOXLAAX - - - Continuous fairies - AAXZIALZ - - - Start with 40,000 life points - KAXOOEVE - - - Start on last level reached - GZUPTOSE - - - Start on next level - VTUPTOSE - - - Start on level 10 - SZUOPOSE+UPUOLPGA+PAUPIPAE - - - Start on level 20 - SZUOPOSE+UPUOLPGA+LPUPIPAA - - - Start on level 30 - SZUOPOSE+UPUOLPGA+IPUPIPAE - - - Start on level 40 - SZUOPOSE+UPUOLPGA+YZUPIPAA - - - Invincibility (alt) - 0028:80 - - - Infinite life (alt) - 0438:09 - - - Infinite fireballs - 042F:80 - - - - Solstice - The Quest for the Staff of Demnos (USA) - - Infinite lives - SZSESXVK - - - Infinite Potions - SUSPIXVS - - - Multi-jump - SXUXYGAX - - - 1 life after continue - PAXELPLA - - - 8 lives after continue - AAXELPLE - - - Start with full flasks of Potions - GAOEUIZA - - - Start with no Potions - AAOEUIZA - - - Start with 1 life - PAKAVIGA - - - Start with 8 lives - AAKAVIGE - - - Infinite lives (alt) - 0789:09 - - - Infinite Green Potion - 0784:04 - - - Infinite Yellow Potion - 0785:04 - - - Infinite Light Purple Potion - 0786:04 - - - Infinite Dark Purple Potion - 0787:04 - - - - Space Hunter (Japan) - - Infinite energy - SZOLGNVK+SXOLYVSO - - - - Spartan X 2 (Japan) - - Infinite health - SXEIXKVK+SZUSVKSE - - - - Spelunker (USA) - - Invincibility - ATKPAIAZ+TUEEYKNN+GXOAPKIX - - - Infinite lives - IXOOPSVK - - - Invisibility - AEXAYTAP - - - Jump higher - SNEAKEVN+EANEEAAA - - - Start with 1 life - AANATPZA - - - Start with 6 lives - IANATPZA - - - Start with 9 lives - AANATPZE - - - Infinite lives (alt) - 0234:63 - - - Have a high score - 022F:FF - - - Infinite Bombs - 0237:09 - - - Infinite Flares - 0238:09 - - - - Spider-Man - Return of the Sinister Six (USA) - - Invincibility - SXNUIZAX - - - Infinite health - SXOKVVSE - - - - Spiritual Warfare (USA) (v6.1) (Unl) - - Infinite energy - SXVGLGSA - - - Infinite Vial Of God's Wrath - SXKGXIVG - - - Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds - NYEUYIAE - - - Start with max energy - APKLZITE - - - - Spiritual Warfare (USA) (v6.0) (Unl) - - Infinite energy - SXUKLGSA - - - Infinite Vial Of God's Wrath - NNSUYGAE - - - Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds - NNSUYGAE - - - Start with max energy - APOLZITE - - - - Spiritual Warfare (USA) (v5.1) (Unl) - - Infinite energy - SXNKPGSA - - - Infinite Vial Of God's Wrath - SXSKEIVG - - - Start with all armors, 7 of each fruit, all items, 99 Keys, 255 God's Wrath, 99 Birds - NYXLIIAE - - - Start with max energy - APSUAITE - - - - Splatter House - Wanpaku Graffiti (Japan) - - Hit anywhere - AAKXGPLA+AAUXPOLP+GZUZGPEL - - - Moon-jump - AXXKLGAX+EEXGILIA+PXXGGUOK+YVXGLUNA - - - Start a new game to view ending - IEVXVTZA - - - - Spy Hunter (USA) - - Infinite health - SXVPEZSA - - - Infinite lives - SXKAYOVK - - - Infinite lives (alt) - SZEUSGVG - - - Infinite missiles - SZKUANVK - - - Infinite smoke - VXELTVSE - - - Hit anywhere - AENOKIIP+AENOESTA+AESXEUYA+AEVOSIGZ+SXNONISA - - - Enemies die automatically - AAUEASTA+AESXEUYA+XVSZXLAV - - - No enemies - SXSOOZSA+SZUOVLSA - - - Double missiles on pick-up - TEEXLILA - - - Slow down timer - YAEZNIYE - - - Keep special weapons - GXSAKUSE+GXSANUSE - - - Start with 2 extra lives - ZEEXKIAA - - - Start with 6 extra lives - TEEXKIAA - - - - Spy vs Spy (USA) - - Stop black spy's clock - SZVAYUVK - - - Stop white spy's clock - SXUELUVK - - - Black spy has 100 seconds in a minute - PUEAPLIU - - - White spy has 100 seconds in a minute - PUSAILIU - - - Black spy has deadly punches - ONVZYNUT - - - White spy has deadly punches - IEVZLYIE - - - - Sqoon (USA) - - Infinite lives - AEEAAIPA - - - Never lose your special weapon - SZEEOSVK - - - Never lose humans on dying - GXEAKKSE+GXSUZXSE - - - Gain main weapon on rescuing 9 humans - ZEOOEYPA - - - Start with 1 life - AEUESLZA - - - Start with 6 lives - IEUESLZA - - - Start with 9 lives - AEUESLZE - - - Start at phase 3 - LASEXLPA - - - Start at phase 5 - IASEXLPA - - - Start at phase 8 - AASEXLPE - - - - Squashed (USA) (Proto) - - Invincibility - SXOOZTAX - - - Infinite lives - SINPTKVS - - - Infinite time - SGVTIVVK - - - - Stanley - The Search for Dr. Livingston (USA) - - Infinite health - SZEGYUSE - - - Infinite time on continue screen - XTSXXYVK - - - Start a new game with complete map - NNXGVZAE - - - Infinite health (alt) - 057E:26 - - - Have all weapons - 049E:5F+049D:5F+049C:5F+049B:5F+049A:5F+0499:5F+0498:01+0497:5F+0496:5F - - - - Star Force (USA) - - Infinite lives - SZKEVTVG - - - Turbo speed - VYVEGONN - - - Start with 1 life - AEUAUIZA - - - Start with 6 lives - IEUAUIZA - - - Start with 9 lives - AEUAUIZE - - - - Starship Hector (USA) - - Take minimum damage - OVUYEGSV+PEUYOGTA - - - Infinite lives - SZKIOGVG - - - Extra health from capsules - GEVVGIPA - - - Start with 1 life - AANSOGZA - - - Start with 6 lives - IANSOGZA - - - Start with 9 lives - AANSOGZE - - - Start at stage 2 - PENYGIAA - - - Start at stage 3 - ZENYGIAA - - - Start at stage 4 - LENYGIAA - - - Start at stage 5 - GENYGIAA - - - Infinite health - 00B0:10 - - - Play as Bomberking - 005F:01 - - - - Star Soldier (USA) - - Infinite lives - SZOEAPVG - - - Infinite shield power - GXVPXTVG - - - Double shield power - ZAOOOYIE+ZENOGLIE - - - Start with laser - PEOAPPAA - - - - Star Trek - 25th Anniversary (USA) - - Kirk has more energy - LEOOVGYE - - - Kirk has less energy - GEOOVGYA - - - McCoy has more energy - LAUXYAYE - - - McCoy has less energy - GAUXYAYA - - - Spock has more energy - LAUZTAYE - - - Spock has less energy - GAUZTAYA - - - Security has more energy - LAVZLAYE - - - Geologist has more energy - LAKXAAYE - - - Geologist has less energy - GAKXAAYA - - - Biologist has more energy - LASXZAYE - - - Biologist has less energy - GASXZAYA - - - Historian has more energy - LASZPAYE - - - Historian has less energy - GASZPAYA - - - McCoy gives full energy to injured party - YEKUYPGA - - - - Star Trek - The Next Generation (USA) - - All systems are immune to damage - shields down - OUXTPYOP - - - Shields are immune to damage - shields up - SXUVTNSE - - - Quicker damage repair - AGKVTTEP - - - Very quick damage repair - APKVTTEP - - - Slower damage repair - EGKVTTEP - - - Enemy does less damage - ZKNVLEZE - - - Stop game time ticking over - ATETISVT - - - Photon Torpedoes always work - AAUZPAGY - - - Phasers always work - AAEXTPNY - - - Phasers fire for longer - AAOXPOKT - - - Damage is repaired immediately - AAVTZVIL - - - Transporter power does not decrease most of the time - SXVUSTVG - - - Less transporter power required most of the time - IANUXTAZ - - - Stardate does not advance - GVNZOZIT - - - - Star Trek V - The Final Frontier (Unknown) (Proto) - - Invincibility (blinking) - EINONZEY - - - Infinite health - SZEPYSSE+SZNAXOSE - - - Infinite Phasers - SXOPVSSE - - - Infinite Bombs - SXNXLXVK - - - - StarTropics (USA) - - Infinite health - VZVZLOSV - - - Infinite lives - SXETAKVK - - - Infinite weapons - SUXXPSVS - - - Hit anywhere - ASNUGXPZ+ASNUIZYE+GKXLAUOK+NVXLPLZE+UUXLZLEP - - - Enemies can't move - NOPSTU - - - 1 star needed to restore health - PEXXYTIA+PEUZLTIA - - - 9 stars needed to restore health - PEXXYTIE+PEUZLTIE - - - 1 life with a new character - PASTYZLA - - - 6 lives with a new character - TASTYZLA - - - 1 life after continue - PAUTGILA - - - 6 lives after continue - TAUTGILA - - - Gain 50 fire weapons on pick-up - ZUVLZEPP - - - Gain 50 bat weapons on pick-up - ZUSUYETP - - - Only 3 hearts needed to use shooting-star - IEUZZNGA - - - Only 8 hearts needed to use super-nova - AEOZPYTO - - - Invincibility after one hit - 077B:2E - - - Infinite health (alt) - 0112:17 - - - Infinite Blue Stars - 011C:09 - - - Permanent Anklet (can jump 2 spaces) - 005B:02+0180:01 - - - - Star Voyager (USA) - - Infinite life support pods - GZSZSTVG - - - Start with double life support pods - GPKIASZA - - - Start with triple life support pods - TPKIASZE - - - Barrier won't take damage - AASLSLLA - - - Radar won't take damage - AOKLVLEI - - - Cannon won't take damage - ENXLXLEI - - - Engine won't take damage - AAXUXLLA - - - - Star Wars (USA) - - Infinite lives - SZEAYXVK - - - Immune to spikes, you can get stuck on them - GZSYLSSO - - - Immune to most bullets - SLVUYNSO - - - Immune to most collisions - GXNUZIST+SLKLYVSO - - - Full energy on big energy pick-ups - AAKLNGZA - - - Less energy on big energy pick-ups - AAKLUGAX - - - More energy on big energy pick-ups - AGKLUGAZ - - - Always running - ZEOKOIPA+ZEKKXIPA - - - Start with 1 life - AAXAGAZA - - - Start with 6 lives - IAXAGAZA - - - Start with 9 lives - AAXAGAZE - - - - Star Wars - The Empire Strikes Back (USA) - - Don't take damage from most enemies - GZVZTNOO - - - 9 harpoons - scene 2 - PESZYPIE - - - 1 harpoons - scene 2 - PESZYPIA - - - Infinite harpoons - scene 2 - GZVZVKVK - - - Infinite energy for ship - scene 2 - GXSLIISA - - - Always have Lightsaber - AEXOETYL - - - Start with 14 continues - TENLGIYE - - - Start on scene 2 - PAEGXLAA - - - Start on scene 3 - ZAEGXLAA - - - Start on scene 4 - LAEGXLAA - - - Start on scene 5 - GAEGXLAA - - - Start on scene 6 - IAEGXLAA - - - Start on scene 7 - TAEGXLAA - - - - Stealth ATF (USA) - - Infinite missiles - SZVZSSVK - - - Start with double missiles - AOUXXEAA - - - No damage taken from enemy's bullets - SZVPXNVV - - - Start with less fuel - AVUXNAVP - - - More enemy planes on the screen - AEKZZLZE - - - - Stinger (USA) - - Keep weapons after death - GZNGNLSP - - - Infinite lives - OZVKKLVS - - - Skip intro - IESKLLAA - - - Start with 1 life - PAXKPGLA - - - Start with 6 lives - TAXKPGLA - - - Start with 9 lives - PAXKPGLE - - - Start with Dual Cannons - YGNGAKTL+PAVKTGAP - - - Start with Laser - YGNGAKTL+ZAVKTGAP - - - Start with Shoot Right - YGNGAKTL+GAVKTGAP - - - Start with Shoot Left - YGNGAKTL+AAVKTGAO - - - Start with Five Direction Firing - YGNGAKTL+APVKTGAP - - - Start with Three Direction Firing - YGNGAKTL+AZVKTGAP - - - Start with Force field - YGNGAKTL+AGVKTGAP - - - Start at stage 2 (wait for demo game then press start) - GZOGIGSA+PAEGPLPA - - - Start at stage 3 - GZOGIGSA+ZAEGPLPA - - - Start at stage 4 - GZOGIGSA+LAEGPLPA - - - Start at stage 5 - GZOGIGSA+GAEGPLPA - - - Start at stage 6 - GZOGIGSA+IAEGPLPA - - - Invincibility - 0056:50 - - - Infinite lives (alt) - 0038:09 - - - - Street Cop (USA) - - Infinite health - GXESTZST - - - Take minimum damage - OVESTZSV+PEESYZAP - - - Infinite time - SZSNTAVG - - - Have less time - TAOVTXPA - - - Have more time - ZPOVTXPA - - - Start with less health - AONGNAAU - - - Start with more health - AVNGNAAL - - - Start at level 2 - PAXTPPAA - - - Start at level 3 - ZAXTPPAA - - - Start at level 4 - LAXTPPAA - - - - Street Fighter 2010 - The Final Fight (USA) - - Invincibility - EYSSLGEI - - - Infinite health - AEUIPGZA - - - Infinite lives - SZUATPVG - - - Infinite time - SLUKAZSP - - - Take less damage - PEUIPGZA - - - Take more damage - LEUIPGZA - - - Keep power-ups after losing a life - GZOAZPSA - - - Keep power-ups when hit - AEKIYGZA - - - Faster Ken - ZESESPPA - - - Portal always stays open - SXVTVUVK - - - Start with 1 life - AAEETAGA - - - Start with 9 lives - PAEETAGE - - - - Street Heroes (Asia) (Unl) - - Infinite health - 00D6:59 - - - One hit kills - 00D7:00 - - - Only one win needed to advance - 0059:02 - - - - Strider (USA) - - Infinite health - OXNAUKPX+PVNAVGIU - - - Hit anywhere - AANVSZTZ+AEEVXXPP - - - More energy from small capsules (10) - ZAUXEYPE - - - More energy from big capsules (20) - GPUXXNZA - - - Health from small capsules (10) - ZAUXKYPE - - - Health from big capsules (20) - GPUXVNZA - - - Double health and energy from all capsules - ZAEXVNAO - - - Have all Keys and start on Red Dragon level - 048C:FF - - - Have all Data Files - 048E:FF - - - Max stats, all tricks, Slide In, Plasma Arrow - 048B:09+048D:01 - - - Infinite power - 056B:63 - - - High-jump - 0538:0A - - - Plasma Sword is instantly charged - 055D:89 - - - - Strike Wolf (MGC-014) - - Infinite energy - SZKUNISA - - - Infinite ammo - SZSONEVK - - - Infinite Bombs - SXXPLNVK - - - - Stunt Kids (USA) (Unl) - - Infinite time - P1 - SLNOYXVS - - - Infinite time - P2 - SLXOYUVS - - - Infinite lives - SZSZSKVK - - - Always have 9 coins after a race - VANILVKE - - - Coins worth nothing on pick-up - SZKOEOVV - - - Start with 1 life instead of 3 - AESGNZZA - - - Start with 6 lives - IESGNZZA - - - Start with 9 lives - PESGNZZE - - - Start with 0 turbos instead of 3 - AEESPALA - - - Start with 6 turbos - TEESPALA - - - Start with 9 turbos - PEESPALE - - - - Sunday Funday - The Ride (USA) (Unl) - - Enable level skip (press B then Select) - ESNNUZEY - - - - Super C (USA) - - Invincibility - both players - LLLXZO - - - Infinite continues - SZOVXZVG - - - Activates 10 lives code - AEXVAIZA - - - 10 lives code give you 30 - IOXVZSPE - - - Extra life for each enemy killed - AENTTTZA - - - Hit anywhere - POXXIOIA - - - One hit kills - AAAZPZ - - - Multi-jump - both players - GXVAATEI+ZUVEPVIV - - - Run faster to the right - EYYAEA - - - Stage select after title screen - ENXVYGEI - - - Press Start to complete current level - AUOVNXPU+GEOVSZPA - - - Start a new game to view the ending - AEKTLGAE - - - Start with Spray Gun - EUUTGIYS+YSXTPSEL+ZEUTZIAA - - - Start with Fireball Gun - EUUTGIYS+YSXTPSEL+GEUTZIAA - - - Start with 1 life - both players - AEXTLIZA - - - Start with 6 lives - both players - IEXTLIZA - - - Start with 9 lives - both players - AEXTLIZE - - - Start with 255 lives - both players - NNXTLIZE - - - Start with 9 continues - TEEVIIZA - - - Start at area 2 - PEETLIAA - - - Start at area 3 - ZEETLIAA - - - Start at area 4 - LEETLIAA - - - Start at area 5 - GEETLIAA - - - Start at area 6 - IEETLIAA - - - Start at area 7 - TEETLIAA - - - Invincibility (blinking) - 00D4:55 - - - Infinite lives - 0053:03 - - - Have the Machine Gun - 00B8:81 - - - Have the Spread Gun - 00B8:82 - - - Have the Laser Gun - 00B8:83 - - - Have the Fireball Gun - 00B8:84 - - - Have the Single Shot MG - 00B8:85 - - - Have the Super Fireball Gun - 00B8:86 - - - - Super Mario Bros. (World) - - Invincibility - SEVVOVSX+ESVVKTEY - - - Invincibility (Starman effect) - SSASSA - - - Infinite time - VZTLTN - - - Infinite time (alt) - SZTLTN - - - Infinite lives - both players - SXIOPO - - - Infinite lives - SKSOPOVK - - - Always Big Mario - OZTLLX+AATLGZ+SZLIVO - - - Always Fiery Mario - ZZZLTT - - - Always get 3 fireworks at end of stage - GPAIIU - - - Always get 6 fireworks at end of stage - VENITZYA - - - After falling down a hole, you drop from above - OXNLUYSO - - - Fireballs hit anywhere - GZXIPYEP - - - Gain a 1-up when an enemy is killed or power-up is gained - AEVAIGYA - - - Goombas don't walk off ledges - LETTTE - - - Mega-jump from a standing start only - APZLGG - - - Mega-jump from running only - APZLTG - - - Mega-jump from turbo running only - GAZUAG - - - Moon Gravity from a standing start - YAZULG - - - Moon Gravity from a running start - YAZUIG - - - Moon Gravity from turbo running only - YAZUYG - - - Multi-jump - AOAUIG - - - Super-jump from a standing start only - APZLGK - - - Super-jump from running only - TPZLTG - - - Super-jump from turbo running only - GPZUAG - - - Turn all enemies into Toad - NULTKA - - - Can control Mario in demo and title screen - PEUEGZAA+ANUETXKY+YEUEYZTA - - - Can control Mario in entrances that lead to underground - SNAULA - - - Can move left or right while crouched - APXLLPEY - - - Can walk through pipes and blocks - GIIIVY - - - Small Mario can break bricks - AAOUEIPA+AENLNGZA+EZOLNIEI - - - Fireballs can kill Bowser's Fire - AEOIGNTZ - - - Fireballs can kill Bullet Bill - AEESGYTL - - - Fireballs can kill Buzzy Beetle - AASIYNLT - - - Fireballs can kill Podoboo - AAXVZAGA+AEOIAYZL - - - Enable level select - AAYAAZ - - - Press Start to finish current world - ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA - - - Start with 1 life - both players - AATOZA - - - Start with 6 lives - both players - IATOZA - - - Start with 9 lives - both players - AATOZE - - - Start P1 with 8 lives and P2 with 3 lives - VATOLE - - - Start on World 2 - YSAOPE+YEAOZA+PEAPYA - - - Start on World 3 - YSAOPE+YEAOZA+ZEAPYA - - - Start on World 4 - YSAOPE+YEAOZA+LEAPYA - - - Start on World 5 - YSAOPE+YEAOZA+GEAPYA - - - Start on World 6 - YSAOPE+YEAOZA+IEAPYA - - - Start on World 7 - YSAOPE+YEAOZA+TEAPYA - - - Start on World 8 - YSAOPE+YEAOZA+YEAPYA - - - Invincibility (blinking) - 079E:06 - - - Invincibility (Starman effect) (alt) - 079F:18 - - - Infinite lives (alt) - 075A:09 - - - Infinite time (alt 2) - 0787:0C - - - Always Big Mario (alt) - 0754:00+0756:01 - - - Always Fiery Mario (alt) - 0754:00+0756:02 - - - - Super Mario Bros. + Duck Hunt (USA) - - DH - Infinite ammo - SZNIPPVG - - - DH - Infinite ammo (alt) - 00BA:03 - - - DH - Hit anywhere - AAXSGZSY - - - DH - Always get the perfect bonus - AASIAUZA+ALSIPLEI - - - DH - Ducks never fly away - Game A - IAVKKZVG - - - DH - Enable game "D" (press Select three times) - GEOKTPLA - - - SMB - Invincibility - SEVVOVSX+ESVVKTEY - - - SMB - Invincibility (Starman effect) - SSASSA - - - SMB - Infinite time - VZTLTN - - - SMB - Infinite time (alt) - SZTLTN - - - SMB - Infinite lives - both players - SXIOPO - - - SMB - Infinite lives - SKSOPOVK - - - SMB - Always Big Mario - OZTLLX+AATLGZ+SZLIVO - - - SMB - Always Fiery Mario - ZZZLTT - - - SMB - Always get 3 fireworks at end of stage - GPAIIU - - - SMB - Always get 6 fireworks at end of stage - VENITZYA - - - SMB - After falling down a hole, you drop from above - OXNLUYSO - - - SMB - Fireballs hit anywhere - GZXIPYEP - - - SMB - Gain a 1-up when an enemy is killed or power-up is gained - AEVAIGYA - - - SMB - Goombas don't walk off ledges - LETTTE - - - SMB - Mega-jump from a standing start only - APZLGG - - - SMB - Mega-jump from running only - APZLTG - - - SMB - Mega-jump from turbo running only - GAZUAG - - - SMB - Moon Gravity from a standing start - YAZULG - - - SMB - Moon Gravity from a running start - YAZUIG - - - SMB - Moon Gravity from turbo running only - YAZUYG - - - SMB - Multi-jump - AOAUIG - - - SMB - Super-jump from a standing start only - APZLGK - - - SMB - Super-jump from running only - TPZLTG - - - SMB - Super-jump from turbo running only - GPZUAG - - - SMB - Turn all enemies into Toad - NULTKA - - - SMB - Can control Mario in demo and title screen - PEUEGZAA+ANUETXKY+YEUEYZTA - - - SMB - Can control Mario in entrances that lead to underground - SNAULA - - - SMB - Can move left or right while crouched - APXLLPEY - - - SMB - Can walk through pipes and blocks - GIIIVY - - - SMB - Small Mario can break bricks - AAOUEIPA+AENLNGZA+EZOLNIEI - - - SMB - Fireballs can kill Bowser's Fire - AEOIGNTZ - - - SMB - Fireballs can kill Bullet Bill - AEESGYTL - - - SMB - Fireballs can kill Buzzy Beetle - AASIYNLT - - - SMB - Fireballs can kill Podoboo - AAXVZAGA+AEOIAYZL - - - SMB - Enable level select - AAYAAZ - - - SMB - Press Start to finish current world - ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA - - - SMB - Start with 1 life - both players - AATOZA - - - SMB - Start with 6 lives - both players - IATOZA - - - SMB - Start with 9 lives - both players - AATOZE - - - SMB - Start P1 with 8 lives and P2 with 3 lives - VATOLE - - - SMB - Start on World 2 - YSAOPE+YEAOZA+PEAPYA - - - SMB - Start on World 3 - YSAOPE+YEAOZA+ZEAPYA - - - SMB - Start on World 4 - YSAOPE+YEAOZA+LEAPYA - - - SMB - Start on World 5 - YSAOPE+YEAOZA+GEAPYA - - - SMB - Start on World 6 - YSAOPE+YEAOZA+IEAPYA - - - SMB - Start on World 7 - YSAOPE+YEAOZA+TEAPYA - - - SMB - Start on World 8 - YSAOPE+YEAOZA+YEAPYA - - - SMB - Invincibility (blinking) - 079E:06 - - - SMB - Invincibility (Starman effect) (alt) - 079F:18 - - - SMB - Infinite lives (alt) - 075A:09 - - - SMB - Infinite time (alt 2) - 0787:0C - - - SMB - Always Big Mario (alt) - 0754:00+0756:01 - - - SMB - Always Fiery Mario (alt) - 0754:00+0756:02 - - - - Super Mario Bros. + Duck Hunt + World Class Track Meet (USA) (Rev A) - - DH - Infinite ammo - SZNIPPVG - - - DH - Infinite ammo (alt) - 00BA:03 - - - DH - Hit anywhere - AAXSGZSY - - - DH - Always get the perfect bonus - AASIAUZA+ALSIPLEI - - - DH - Ducks never fly away - Game A - IAVKKZVG - - - DH - Enable game "D" (press Select three times) - GEOKTPLA - - - SMB - Invincibility - SEVVOVSX+ESVVKTEY - - - SMB - Invincibility (Starman effect) - SSASSA - - - SMB - Infinite time - VZTLTN - - - SMB - Infinite time (alt) - SZTLTN - - - SMB - Infinite lives - both players - SXIOPO - - - SMB - Infinite lives - SKSOPOVK - - - SMB - Always Big Mario - OZTLLX+AATLGZ+SZLIVO - - - SMB - Always Fiery Mario - ZZZLTT - - - SMB - Always get 3 fireworks at end of stage - GPAIIU - - - SMB - Always get 6 fireworks at end of stage - VENITZYA - - - SMB - After falling down a hole, you drop from above - OXNLUYSO - - - SMB - Fireballs hit anywhere - GZXIPYEP - - - SMB - Gain a 1-up when an enemy is killed or power-up is gained - AEVAIGYA - - - SMB - Goombas don't walk off ledges - LETTTE - - - SMB - Mega-jump from a standing start only - APZLGG - - - SMB - Mega-jump from running only - APZLTG - - - SMB - Mega-jump from turbo running only - GAZUAG - - - SMB - Moon Gravity from a standing start - YAZULG - - - SMB - Moon Gravity from a running start - YAZUIG - - - SMB - Moon Gravity from turbo running only - YAZUYG - - - SMB - Multi-jump - AOAUIG - - - SMB - Super-jump from a standing start only - APZLGK - - - SMB - Super-jump from running only - TPZLTG - - - SMB - Super-jump from turbo running only - GPZUAG - - - SMB - Turn all enemies into Toad - NULTKA - - - SMB - Can control Mario in demo and title screen - PEUEGZAA+ANUETXKY+YEUEYZTA - - - SMB - Can control Mario in entrances that lead to underground - SNAULA - - - SMB - Can move left or right while crouched - APXLLPEY - - - SMB - Can walk through pipes and blocks - GIIIVY - - - SMB - Small Mario can break bricks - AAOUEIPA+AENLNGZA+EZOLNIEI - - - SMB - Fireballs can kill Bowser's Fire - AEOIGNTZ - - - SMB - Fireballs can kill Bullet Bill - AEESGYTL - - - SMB - Fireballs can kill Buzzy Beetle - AASIYNLT - - - SMB - Fireballs can kill Podoboo - AAXVZAGA+AEOIAYZL - - - SMB - Enable level select - AAYAAZ - - - SMB - Press Start to finish current world - ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA - - - SMB - Start with 1 life - both players - AATOZA - - - SMB - Start with 6 lives - both players - IATOZA - - - SMB - Start with 9 lives - both players - AATOZE - - - SMB - Start P1 with 8 lives and P2 with 3 lives - VATOLE - - - SMB - Start on World 2 - YSAOPE+YEAOZA+PEAPYA - - - SMB - Start on World 3 - YSAOPE+YEAOZA+ZEAPYA - - - SMB - Start on World 4 - YSAOPE+YEAOZA+LEAPYA - - - SMB - Start on World 5 - YSAOPE+YEAOZA+GEAPYA - - - SMB - Start on World 6 - YSAOPE+YEAOZA+IEAPYA - - - SMB - Start on World 7 - YSAOPE+YEAOZA+TEAPYA - - - SMB - Start on World 8 - YSAOPE+YEAOZA+YEAPYA - - - SMB - Invincibility (blinking) - 079E:06 - - - SMB - Invincibility (Starman effect) (alt) - 079F:18 - - - SMB - Infinite lives (alt) - 075A:09 - - - SMB - Infinite time (alt 2) - 0787:0C - - - SMB - Always Big Mario (alt) - 0754:00+0756:01 - - - SMB - Always Fiery Mario (alt) - 0754:00+0756:02 - - - - Super Mario Bros. + Duck Hunt + World Class Track Meet (USA) - - DH - Infinite ammo - SZNIPPVG - - - DH - Infinite ammo (alt) - 00BA:03 - - - DH - Hit anywhere - AAXSGZSY - - - DH - Always get the perfect bonus - AASIAUZA+ALSIPLEI - - - DH - Ducks never fly away - Game A - IAVKKZVG - - - DH - Enable game "D" (press Select three times) - GEOKTPLA - - - SMB - Invincibility - SEVVOVSX+ESVVKTEY - - - SMB - Invincibility (Starman effect) - SSASSA - - - SMB - Infinite time - VZTLTN - - - SMB - Infinite time (alt) - SZTLTN - - - SMB - Infinite lives - both players - SXIOPO - - - SMB - Infinite lives - SKSOPOVK - - - SMB - Always Big Mario - OZTLLX+AATLGZ+SZLIVO - - - SMB - Always Fiery Mario - ZZZLTT - - - SMB - Always get 3 fireworks at end of stage - GPAIIU - - - SMB - Always get 6 fireworks at end of stage - VENITZYA - - - SMB - After falling down a hole, you drop from above - OXNLUYSO - - - SMB - Fireballs hit anywhere - GZXIPYEP - - - SMB - Gain a 1-up when an enemy is killed or power-up is gained - AEVAIGYA - - - SMB - Goombas don't walk off ledges - LETTTE - - - SMB - Mega-jump from a standing start only - APZLGG - - - SMB - Mega-jump from running only - APZLTG - - - SMB - Mega-jump from turbo running only - GAZUAG - - - SMB - Moon Gravity from a standing start - YAZULG - - - SMB - Moon Gravity from a running start - YAZUIG - - - SMB - Moon Gravity from turbo running only - YAZUYG - - - SMB - Multi-jump - AOAUIG - - - SMB - Super-jump from a standing start only - APZLGK - - - SMB - Super-jump from running only - TPZLTG - - - SMB - Super-jump from turbo running only - GPZUAG - - - SMB - Turn all enemies into Toad - NULTKA - - - SMB - Can control Mario in demo and title screen - PEUEGZAA+ANUETXKY+YEUEYZTA - - - SMB - Can control Mario in entrances that lead to underground - SNAULA - - - SMB - Can move left or right while crouched - APXLLPEY - - - SMB - Can walk through pipes and blocks - GIIIVY - - - SMB - Small Mario can break bricks - AAOUEIPA+AENLNGZA+EZOLNIEI - - - SMB - Fireballs can kill Bowser's Fire - AEOIGNTZ - - - SMB - Fireballs can kill Bullet Bill - AEESGYTL - - - SMB - Fireballs can kill Buzzy Beetle - AASIYNLT - - - SMB - Fireballs can kill Podoboo - AAXVZAGA+AEOIAYZL - - - SMB - Enable level select - AAYAAZ - - - SMB - Press Start to finish current world - ANUEZPEA+GXUAIPKA+OXUAYOPK+SEUEPOPE+XVUEGPIE+YEUELPEI+ZEUEAPPA - - - SMB - Start with 1 life - both players - AATOZA - - - SMB - Start with 6 lives - both players - IATOZA - - - SMB - Start with 9 lives - both players - AATOZE - - - SMB - Start P1 with 8 lives and P2 with 3 lives - VATOLE - - - SMB - Start on World 2 - YSAOPE+YEAOZA+PEAPYA - - - SMB - Start on World 3 - YSAOPE+YEAOZA+ZEAPYA - - - SMB - Start on World 4 - YSAOPE+YEAOZA+LEAPYA - - - SMB - Start on World 5 - YSAOPE+YEAOZA+GEAPYA - - - SMB - Start on World 6 - YSAOPE+YEAOZA+IEAPYA - - - SMB - Start on World 7 - YSAOPE+YEAOZA+TEAPYA - - - SMB - Start on World 8 - YSAOPE+YEAOZA+YEAPYA - - - SMB - Invincibility (blinking) - 079E:06 - - - SMB - Invincibility (Starman effect) (alt) - 079F:18 - - - SMB - Infinite lives (alt) - 075A:09 - - - SMB - Infinite time (alt 2) - 0787:0C - - - SMB - Always Big Mario (alt) - 0754:00+0756:01 - - - SMB - Always Fiery Mario (alt) - 0754:00+0756:02 - - - - Super Mario Bros. 2 (USA) (Rev A) - - Invincibility - OZXYGLES+SAXYTLSZ - - - Infinite health (except if you hit a spike) - GZELVXSE - - - Infinite health (alt) - SZELVXSE - - - Infinite lives - SZNESXVK - - - Hit anywhere - AEXLATGA+EVOUYVPZ+GKXLZVIG - - - All characters can float - ANNEEGEY - - - More sub-space time - YPZOTN - - - Quick pick-up - SXUASXOU - - - Twice as much time in sub-space - NNXPZIAV - - - Infinite magic carpet time - SLNZZLVI - - - Jump as high as a squat jump - AEUEKKGL - - - Princess has mega-float - PPXAOIAA - - - Princess has mega-float and lunar descent - PAXAOIAA - - - Super moon-jumps - Mario - PESEGLGA - - - Mega moon-jumps - Luigi - AAEEZGPA - - - Super moon-jumps - Toad - PENALLGA - - - Super moon-jumps - Princess - PAXAPGGA - - - Speed up enemies - AEXALGZA - - - Super speed enemies - AXNAZSAA+EVNALSEY - - - Walk backwards - GOEANKAO+USEEEKKA - - - Super turbo running - XVVANSZK+XVNEXSZV - - - Permanent turbo running - AEVAVIIA+AENEEITA - - - Fast run - Toad - AXNAIUAO+ESNEAUEV - - - Super fast run - Mario - AXSETUAO+ESVAPUEV - - - Super fast run - Luigi - AZEEGKAO+EIEEYKEV - - - Super fast run - Princess - AZXALKAO+EIXATKEV - - - Weak Birdo - AAVENYZA - - - Strong Birdo - IAVENYZE - - - Strong Wart - YESUAPTE - - - Birdo spits eggs instead of fireballs (in late levels of the game) - TPEPLAAX - - - Start on World 2 - PEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 3 - ZEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 4 - LEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 5 - GEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 6 - IEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 7 - TEEPUZAG+IUEPSZAA+TEEPVZPA - - - Invincibility (alt) - 0085:FA - - - Infinite coins - 062B:09 - - - Infinite sub-space time - 04B7:FA - - - Infinite magic carpet time (alt) - 00B9:FA - - - All characters can float (alt) - 04C9:FA - - - Multi-jump - 0099:00 - - - One hit kills on bosses - 0468:00 - - - Only 1 Cherry needed for Starman - 062A:04 - - - Only 1 big Radish needed for Stopwatch - 062C:04 - - - Receive small heart for every enemy defeated - 04AD:09 - - - Stopwatch always active - 04FF:FA - - - Start on World 2 (alt) - 0635:01 - - - Start on World 3 (alt) - 0635:02 - - - Start on World 4 (alt) - 0635:03 - - - Start on World 5 (alt) - 0635:04 - - - Start on World 6 (alt) - 0635:05 - - - Start on World 7 (alt) - 0635:06 - - - - Super Mario Bros. 2 (USA) - - Invincibility - OZXYGLES+SAXYTLSZ - - - Infinite health (except if you hit a spike) - GZELVXSE - - - Infinite health (alt) - SZELVXSE - - - Infinite lives - SZNESXVK - - - Hit anywhere - AEXLATGA+EVOUYVPZ+GKXLZVIG - - - Quick pick-up - SXUASXOU - - - Twice as much time in sub-space - NNXPZIAV - - - Jump as high as a squat jump - AEUEKKGL - - - Princess has mega-float - PPXAOIAA - - - Princess has mega-float and lunar descent - PAXAOIAA - - - Super moon-jumps - Mario - PESEGLGA - - - Mega moon-jumps - Luigi - AAEEZGPA - - - Super moon-jumps - Toad - PENALLGA - - - Super moon-jumps - Princess - PAXAPGGA - - - Speed up enemies - AEXALGZA - - - Super speed enemies - AXNAZSAA+EVNALSEY - - - Walk backwards - GOEANKAO+USEEEKKA - - - Super turbo running - XVVANSZK+XVNEXSZV - - - Permanent turbo running - AEVAVIIA+AENEEITA - - - Fast run - Toad - AXNAIUAO+ESNEAUEV - - - Super fast run - Mario - AXSETUAO+ESVAPUEV - - - Super fast run - Luigi - AZEEGKAO+EIEEYKEV - - - Super fast run - Princess - AZXALKAO+EIXATKEV - - - Hawkeye at end of level always open - GXUESIEY - - - Start on World 2 - PEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 3 - ZEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 4 - LEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 5 - GEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 6 - IEEPUZAG+IUEPSZAA+TEEPVZPA - - - Start on World 7 - TEEPUZAG+IUEPSZAA+TEEPVZPA - - - Invincibility (alt) - 0085:FA - - - Infinite coins - 062B:09 - - - Infinite sub-space time - 04B7:FA - - - Infinite magic carpet time (alt) - 00B9:FA - - - All characters can float (alt) - 04C9:FA - - - Multi-jump - 0099:00 - - - One hit kills on bosses - 0468:00 - - - Only 1 Cherry needed for Starman - 062A:04 - - - Only 1 big Radish needed for Stopwatch - 062C:04 - - - Receive small heart for every enemy defeated - 04AD:09 - - - Stopwatch always active - 04FF:FA - - - Start on World 2 (alt) - 0635:01 - - - Start on World 3 (alt) - 0635:02 - - - Start on World 4 (alt) - 0635:03 - - - Start on World 5 (alt) - 0635:04 - - - Start on World 6 (alt) - 0635:05 - - - Start on World 7 (alt) - 0635:06 - - - - Super Mario Brothers 2 (Japan) (FDS) - - Start with 50 lives - PUTGGI - - - Start with 9 lives - AETGGS - - - Invincibility (Starman effect) - 079F:09 - - - Infinite lives - 701B:AD - - - - Super Mario Bros. 3 (USA) (Rev A) - - Invincibility (Starman effect) - AEVGEVZZ - - - Invincibility after changing up from Super Mario (Raccoon, Frog, ect.) - SZKIKXSE - - - Invincibility as miniture stone Mario - EXKXGLIA - - - Never die from being hit while little (changes music) (PRG0 only) - GOZSXX - - - Invincibility as Super Mario - XUKXGLIE - - - Invincibility as Fire Mario - UXKXGLIA - - - Invincibility as Raccoon Mario - NXKXGLIE - - - Invincibility as Frog Mario - OUKXGLIE - - - Invincibility as Sledgehammer Mario - XNKXGLIE - - - Infinite lives - both players - SLXPLOVS - - - Infinite time - SXUZENVK - - - Infinite items - Mario - YPXXLVGE - - - Infinite tries at card match game - GZVSSEVK - - - Always win at line up the pictures game (prize is based on the top picture) - AESSYPAZ - - - Fireballs hit anywhere - AEXZAVUG+AEXXYVIG - - - Fireballs turn most solid objects into coins - AAKXTIYP+AAVZAIIA - - - Tail hits anywhere - GZSSOLEP - - - 1-up for each coin - PEEULAGT+PEOLAAGT - - - 1-up for each 10 coins - ZEEULAGV+ZEOLAAGV - - - Change to Super Mario if you fall off screen and die - AEOSSZPA+PAOZTGAA - - - Change to Fire Mario if you fall off screen and die - AEOSSZPA+ZAOZTGAA - - - Change to Raccoon Mario if you fall off screen and die - AEOSSZPA+LAOZTGAA - - - Change to Frog Mario if you fall off screen and die - AEOSSZPA+GAOZTGAA - - - Change to Tanooki Mario if you fall off screen and die - AEOSSZPA+IAOZTGAA - - - Change to Sledgehammer Mario if you fall off screen and die - AEOSSZPA+TAOZTGAA - - - Move anywhere on the map - OXKIPZOS+APKSALAZ - - - Multi-jump - SXEZSKOZ - - - Multi-jump (alt) - SXEZSKOX - - - Multi-jump (alt 2) - GZUXNGEI - - - Power-jumps - ELKZYVEK - - - Super power-jumps - EZKZYVEK - - - Mega power-jumps - EAKZYVEK - - - Super speed running - OXKZELSX - - - Turbo-charged running - XVUXNUEE - - - Raise P meter while standing still (hold B) - AANZKLLA - - - Restore powers after playing an action scene - SZUEXNSO - - - Card match game always appears after a level - GXOZXGEY - - - Small white ship level always appears after a level - GEKXSKYK+GXOZXGEY+OXKXKKSU+XVKXVKKX - - - White money ship always appears after a level - GXOZXGEY+LEKXSKYK+OXKXKKSU+XVKXVKKX - - - White toad house always appears after a level - GXOZXGEY+OXKXKKSU+XVKXVKKX+ZEKXSKYK - - - Press Start to complete current level (do not use on final ship/castle levels for each map) - AANAOTLA+GPNAETTY - - - 1 life after continue - both players - AEKPTZGA - - - 9 lives after continue - both players - AEKPTZGE - - - Start a new game as Fire Mario - ZEUXKGAA - - - Start a new game as Raccoon Mario - LEUXKGAA - - - Start a new game as Frog Mario - GEUXKGAA - - - Start a new game as Tanooki Mario - IEUXKGAA - - - Start a new game as Sledgehammer Mario - TEUXKGAA - - - Start a new game to see the ending - NKGZSO - - - Start on World 2 - PEUZUGAA - - - Start on World 3 - ZEUZUGAA - - - Start on World 4 - LEUZUGAA - - - Start on World 5 - GEUZUGAA - - - Start on World 6 - IEUZUGAA - - - Start on World 7 - TEUZUGAA - - - Start on World 8 - YEUZUGAA - - - Unused level - Plains 1 - GGNUGGXE+NZNUIKUL - - - Unused level - Plains 2 - KZNUGGXE+OZNUIKUL - - - Unused level - Dungeon - ZZXUAGPZ+GINUGGXA+NLNUIKUL - - - Unused level - Underground 2 - LZXUAGPZ+ZGNUGGXA+KLNUIKUL - - - Unused level - Sky 1 - GZXUAGPZ+SGNUGGXE+SZNUIKUU - - - Unused level - Sky 3 (level cannot be completed) - GZXUAGPZ+KGNUGGXA+ELNUIKUL - - - Unused level - Cloudy 1 - IZXUAGPX+OZNUGGXE+KZNUIKUU - - - Unused level - Pipe level - AZXUAGPX+APNUGGXE+NZNUIKUU - - - Unused level - Hilly level - LZXUAGPZ+SINUGGXE+ELNUIKUL - - - Unused level - Ice/Water - GZXUAGPX+XLNUGGXE+NLNUIKUL - - - Unused level - Cloudy (level cannot be completed) - IZXUAGPX+UZNUGGXE+SZNUIKUU - - - P meter always full - 03DD:7F - - - Invincibility as Super Mario (alt) - 00ED:01 - - - Invincibility as Fire Mario (alt) - 00ED:02 - - - Invincibility as Raccoon Mario (alt) - 00ED:03 - - - Invincibility as Frog Mario (alt) - 00ED:04 - - - Invincibility as Tanooki - 00ED:05 - - - Invincibility as Sledgehammer Mario (alt) - 00ED:06 - - - - Super Mario Bros. 3 (USA) - - Invincibility (Starman effect) - AEVGEVZZ - - - Invincibility after changing up from Super Mario (Raccoon, Frog, ect.) - SZKIKXSE - - - Invincibility as miniture stone Mario - EXKXGLIA - - - Never die from being hit while little (changes music) (PRG0 only) - GOZSXX - - - Invincibility as Super Mario - XUKXGLIE - - - Invincibility as Fire Mario - UXKXGLIA - - - Invincibility as Raccoon Mario - NXKXGLIE - - - Invincibility as Frog Mario - OUKXGLIE - - - Invincibility as Sledgehammer Mario - XNKXGLIE - - - Infinite lives - both players - SLXPLOVS - - - Infinite time - SXUZENVK - - - Infinite items - Mario - YPXXLVGE - - - Infinite tries at card match game - GZVSSEVK - - - Always win at line up the pictures game (prize is based on the top picture) - AESSYPAZ - - - Fireballs hit anywhere - AEXZAVUG+AEXXYVIG - - - Fireballs turn most solid objects into coins - AAKXTIYP+AAVZAIIA - - - Tail hits anywhere - GZSSOLEP - - - 1-up for each coin - PEEULAGT+PEOLAAGT - - - 1-up for each 10 coins - ZEEULAGV+ZEOLAAGV - - - Change to Super Mario if you fall off screen and die - AEOSSZPA+PAOZTGAA - - - Change to Fire Mario if you fall off screen and die - AEOSSZPA+ZAOZTGAA - - - Change to Raccoon Mario if you fall off screen and die - AEOSSZPA+LAOZTGAA - - - Change to Frog Mario if you fall off screen and die - AEOSSZPA+GAOZTGAA - - - Change to Tanooki Mario if you fall off screen and die - AEOSSZPA+IAOZTGAA - - - Change to Sledgehammer Mario if you fall off screen and die - AEOSSZPA+TAOZTGAA - - - Move anywhere on the map - OXKIPZOS+APKSALAZ - - - Multi-jump - SXEZSKOZ - - - Multi-jump (alt) - SXEZSKOX - - - Multi-jump (alt 2) - GZUXNGEI - - - Power-jumps - ELKZYVEK - - - Super power-jumps - EZKZYVEK - - - Mega power-jumps - EAKZYVEK - - - Super speed running - OXKZELSX - - - Turbo-charged running - XVUXNUEE - - - Raise P meter while standing still (hold B) - AANZKLLA - - - Restore powers after playing an action scene - SZUEXNSO - - - Card match game always appears after a level - GXOZXGEY - - - Small white ship level always appears after a level - GEKXSKYK+GXOZXGEY+OXKXKKSU+XVKXVKKX - - - White money ship always appears after a level - GXOZXGEY+LEKXSKYK+OXKXKKSU+XVKXVKKX - - - White toad house always appears after a level - GXOZXGEY+OXKXKKSU+XVKXVKKX+ZEKXSKYK - - - Press Start to complete current level (do not use on final ship/castle levels for each map) - AANAOTLA+GPNAETTY - - - 1 life after continue - both players - AEKPTZGA - - - 9 lives after continue - both players - AEKPTZGE - - - Start a new game as Fire Mario - ZEUXKGAA - - - Start a new game as Raccoon Mario - LEUXKGAA - - - Start a new game as Frog Mario - GEUXKGAA - - - Start a new game as Tanooki Mario - IEUXKGAA - - - Start a new game as Sledgehammer Mario - TEUXKGAA - - - Start a new game to see the ending - NKGZSO - - - Start on World 2 - PEUZUGAA - - - Start on World 3 - ZEUZUGAA - - - Start on World 4 - LEUZUGAA - - - Start on World 5 - GEUZUGAA - - - Start on World 6 - IEUZUGAA - - - Start on World 7 - TEUZUGAA - - - Start on World 8 - YEUZUGAA - - - Unused level - Plains 1 - GGNUGGXE+NZNUIKUL - - - Unused level - Plains 2 - KZNUGGXE+OZNUIKUL - - - Unused level - Dungeon - ZZXUAGPZ+GINUGGXA+NLNUIKUL - - - Unused level - Underground 2 - LZXUAGPZ+ZGNUGGXA+KLNUIKUL - - - Unused level - Sky 1 - GZXUAGPZ+SGNUGGXE+SZNUIKUU - - - Unused level - Sky 3 (level cannot be completed) - GZXUAGPZ+KGNUGGXA+ELNUIKUL - - - Unused level - Cloudy 1 - IZXUAGPX+OZNUGGXE+KZNUIKUU - - - Unused level - Pipe level - AZXUAGPX+APNUGGXE+NZNUIKUU - - - Unused level - Hilly level - LZXUAGPZ+SINUGGXE+ELNUIKUL - - - Unused level - Ice/Water - GZXUAGPX+XLNUGGXE+NLNUIKUL - - - Unused level - Cloudy (level cannot be completed) - IZXUAGPX+UZNUGGXE+SZNUIKUU - - - P meter always full - 03DD:7F - - - Invincibility as Super Mario (alt) - 00ED:01 - - - Invincibility as Fire Mario (alt) - 00ED:02 - - - Invincibility as Raccoon Mario (alt) - 00ED:03 - - - Invincibility as Frog Mario (alt) - 00ED:04 - - - Invincibility as Tanooki - 00ED:05 - - - Invincibility as Sledgehammer Mario (alt) - 00ED:06 - - - - Super Pitfall (USA) - - Infinite bullets - AEOYILPA - - - Infinite lives - 1P game - SZKSASVK - - - Infinite lives - P1 - SXESTSVK - - - Infinite lives - P2 - SXXSZSVK - - - 30 bullets gained on pick-up - LENLELZA - - - 10 bullets gained on pick-up - PENLELZA - - - Start with 1 life - both players - PAVIPALA - - - Start with 6 lives - both players - TAVIPALA - - - Start with 9 lives - both players - PAVIPALE - - - Start with 30 bullets - LEXKNYZA - - - Start with 10 bullets - PEXKNYZA - - - Invincibility (blinking) - both players - 00DC:FF - - - - Super Shinobi, The (unl) - - Infinite health - 04F5:09 - - - Infinite magic - 010D:09 - - - Infinite Shurikens - 0109:09+010B:09 - - - Always have powered-up Shurikens - 00AF:01 - - - - Super Sprint (USA) (Unl) - - Infinite continues - SZETVUVK - - - 6 continues - YASSPALA - - - No continues - PASSPALA - - - More obstacles on tracks - IEKKNTAA+GXSGUVSE - - - Even more obstacles on tracks - ZEKKNTAE+GXSGUVSE - - - Lots and lots of obstacles on tracks - YEKKNTAE+GXSGUVSE - - - - Super Spy Hunter (USA) - - Infinite health - SXVPEZSA - - - Start with max health gauge - GEXUOIGE - - - Infinite lives - 0074:05 - - - Infinite health (alt) - 007B:40 - - - - Superman (USA) - - Never die when out of super power - AAXSEIEA - - - Never lose super power - SXNSSKSE - - - Start with lots of super power - XVUVYZIA - - - Double max power of all items at start - AVEOUIAL - - - Double usual item power on item power crystal pick-up - AXUPYLAP - - - Full item power on item power crystal pick-up - EXUPYLAP - - - Start at mission 2 - EZVPKSOZ+PAVPSIAA+KANPXSSE - - - Start at mission 3 - EZVPKSOZ+ZAVPSIAA+KANPXSSE - - - Start at mission 4 - EZVPKSOZ+LAVPSIAA+KANPXSSE - - - Start at mission 5 - EZVPKSOZ+GAVPSIAA+KANPXSSE - - - - Swamp Thing (USA) - - Invincibility - PEVOTKPX+ESVOZGEY - - - Infinite health - SZNVZVVK - - - Infinite lives - SZNTIKVK - - - - Sword Master (USA) - - Invincibility - ALKZVZAP - - - Infinite health - SXSKNXSE+SZSGNXSE - - - Infinite continues - SZNTVUSE - - - Gain a level for every EXP point gained - AAEGKGPZ - - - Invincibility (alt) - 042E:8F - - - Infinite health (alt) - 042EF:0F - - - - Swords and Serpents (USA) - - All characters have Scale Armor - VANGKTVE - - - Warriors start with a Great Sword - UEEKSTOE - - - Warriors start with a Great Axe - KEEKSTOE - - - Magicians start with a Wizard's Wand - SEEGETSE - - - Magicians start with more spells - YPKGSTLE - - - Magicians have greater spells - LAKKXTAA - - - Spells use up no magic points - GZKYLGOY - - - Thieves start with a Long Sword - XEOGVTXE - - - Thieves start with an Axe - KEOGVTXA - - - Start with 30 health points each - TPXGNVZE+TPXKSVZE - - - Start with 50 health points each - ZLXGNVZA+ZLXKSVZA - - - - Town & Country Surf Designs - Wood & Water Rage (USA) - - Infinite lives for skating - GXUZZZVG - - - Infinite lives for surfing - GXNKALVG - - - When surfing lose only 1 symbol - PEOGILZA - - - When skating lose only 1 symbol if you fall into the ocean or a crack - PAEZYALA - - - Infinite time - GXKLXAVG - - - Increase time - LESPGZPA - - - Infinite lives - 0047:04 - - - Infinite time (alt) - 0037:09 - - - - Town & Country Surf Designs - Thrilla's Surfari (USA) - - Infinite lives - OZSIZYVK - - - Can't collect Coconuts - OXEVIIVV - - - Start with 5 Coconuts plus what you've collected in sub-game - IAUALPAA - - - Start with 10 Coconuts plus what you've collected in sub-game - ZAUALPAE - - - Start with 15 Coconuts plus what you've collected in sub-game - YAUALPAE - - - Start with less health - PAXEIPZA - - - Start with a little more health - LAXEIPZA - - - Start with 2x health - GAXEIPZA - - - Start with a lot more health - PAXEIPZE - - - Start with 1 life - PAXEPPLA - - - Start with 5 lives - IAXEPPLA - - - Start with 7 lives - YAXEPPLA - - - Start with 9 lives - PAXEPPLE - - - Start with mega lives - OPXEPPLE - - - Start on level 1-3 (can't advance to next level) - ZENUATIA+GENUZTKL - - - Start on level 1-4 (can't advance to next level) - LENUATIA+GENUZTKL - - - Watch the level 2 Cinema (can't advance to next level) - GENUATIA+GENUZTKL - - - Start on level 2-2 (can't advance to next level) - TENUATIA+GENUZTKL - - - Start on level 2-3 (can't advance to next level) - YENUATIA+GENUZTKL - - - Start on level 2-4 (can't advance to next level) - AENUATIE+GENUZTKL - - - Have all 8 health slots - 0006:08 - - - - Tag Team Wrestling (USA) - - Infinite health (glitchy) - OOUSLZSO - - - Never give up - SUNKXTVI - - - Infinite health - P1 - 0048:18 - - - Infinite health - P2 - 0058:18 - - - Infinite health - tag team partner - 005D:18 - - - - Takahashi Meijin no Bouken-jima IV (Japan) - - Invincibility - EIEXYZEY - - - Infinite health - SXKGYZSA - - - - TaleSpin (USA) - - Infinite health - AAXEGPTA - - - Infinite continues - SXNKXLVG - - - Infinite lives from getting trapped by obstacles - GZKGNKVK - - - Add $1,000,000 to end-of-level bonus - PYVGUAAY - - - 1 life after continue - ANNGVLLY - - - 7 lives after continue - TNNGVLLY - - - 10 lives after continue - PNNGVLLN - - - 1 continue - PYEGITLY - - - 6 continues - TYEGITLY - - - 9 continues - PYEGITLN - - - Start with 1 life - AYVKZYLY - - - Start with 7 lives - TYVKZYLY - - - Start with 10 lives - PYVKZYLN - - - Invincibility (blinking) - 007C:5B - - - Infinite health (alt) - 05B6:60 - - - Infinite lives (alt) - 05DB:79 - - - - Target Renegade (USA) - - Don't take most damage - SXVZVTSA - - - Take half damage from bosses - TASPSPGP - - - Infinite time - SZEAOZVG - - - Set timer to 5:00 for all levels - SXEATXSU - - - Hearts replenish health to maximum - AEKESZZA - - - Set timer to 3:00 for all levels - SXEATXSU+NKEEAZEE - - - Start on level 2 - PAOOYZAA - - - Start on level 3 - ZAOOYZAA - - - Start on level 4 - LAOOYZAA - - - Start on level 5 - GAOOYZAA - - - Start on level 6 - IAOOYZAA - - - Start on level 7 - TAOOYZAA - - - Infinite health - 00DA:40+00DB:40 - - - Infinite time (alt) - 00EB:09 - - - - Tecmo Bowl (USA) (Rev A) - - Instant touchdowns - P1 - AAVELPLA - - - Instant touchdowns - P2 - AAEEKILA - - - Always kick with max power - P1 - IVXOKLZA+OXXOUUPV - - - Only 2 downs allowed - ZAXAYIGA+ZAXOTPGA - - - 6 downs allowed - TAXAYIGA+TAXOTPGA - - - Infinite time (minutes) - 008B:09 - - - Infinite time (seconds) - 008A:99 - - - CPU/P2 has 0 points - 0048:00 - - - - Tecmo Bowl (USA) - - Instant touchdowns - P1 - AAVELPLA - - - Instant touchdowns - P2 - AAEEKILA - - - Always kick with max power - P1 - IVXOKLZA+OXXOUUPV - - - Only 2 downs allowed - ZAXAYIGA+ZAXOTPGA - - - 6 downs allowed - TAXAYIGA+TAXOTPGA - - - Infinite time (minutes) - 008B:09 - - - Infinite time (seconds) - 008A:99 - - - CPU/P2 has 0 points - 0048:00 - - - - Tecmo NBA Basketball (USA) - - Infinite timeouts - SLVUPUVS - - - 2-pt. shots worth 1, 3-pt. shots worth 2 - AEOLVPPA - - - 2-pt. shots worth 3, 3-pt. shots worth 4 - ZEOLVPPA - - - 2-pt. shots worth 4, 3-pt. shots worth 5 - LEOLVPPA - - - 2-pt. shots worth 5, 3-pt. shots worth 6 - GEOLVPPA - - - 2-pt. shots worth 6, 3-pt. shots worth 7 - IEOLVPPA - - - 3-pt. shots worth 2 pts. - AVNUVOVT - - - 5-second violations become 10-second violations - NYSENZYE - - - No 10-second violations - NYOPTNZE - - - Longer shot clock after getting ball on rebound - ASOLSEAO - - - Shorter shot clock after getting ball on rebound - AEOLSEAO - - - - Tecmo Super Bowl (USA) - - Infinite time (continuous play) - SXNXPZVG - - - Almost every player has their skill level at 100 - ZXTISS - - - 10 minutes per quarter instead of 5 - APUXLZIA - - - 20 minutes per quarter - AZUXLZIA - - - 2 minutes per quarter - ZAUXLZIA - - - Touchdown scores 0 instead of 6 - P1 - AAOATTTA - - - Touchdown scores 0 - P2 or computer - AEOEVITA - - - Touchdown scores 3 - P1 - LAOATTTA - - - Touchdown scores 3 - P2 or computer - LEOEVITA - - - Touchdown scores 9 - P1 - PAOATTTE - - - Touchdown scores 9 - P2 or computer - PEOEVITE - - - Touchdown scores 12 - P1 - GAOATTTE - - - Touchdown scores 12 - P2 or computer - GEOEVITE - - - Extra-point kick scores 0 instead of 1 - P1 - AAEALYPA - - - Extra-point kick scores 0 - P2 or computer - AEEEUTPA - - - Extra-point kick scores 2 - P1 - ZAEALYPA - - - Extra-point kick scores 2 - P2 or computer - ZEEEUTPA - - - Extra-point kick scores 3 - P1 - LAEALYPA - - - Extra-point kick scores 3 - P2 or computer - LEEEUTPA - - - Extra-point kick scores 6 - P1 - TAEALYPA - - - Extra-point kick scores 6 - P2 or computer - TEEEUTPA - - - Field goal scores 0 instead of 3 - P1 - AEKAGGLA - - - Field goal scores 0 - P2 or computer - AAKEKGLA - - - Field goal scores 1 - P1 - PEKAGGLA - - - Field goal scores 1 - P2 or computer - PAKEKGLA - - - Field goal scores 6 - P1 - TEKAGGLA - - - Field goal scores 6 - P2 or computer - TAKEKGLA - - - Field goal scores 9 - P1 - PEKAGGLE - - - Field goal scores 9 - P2 or computer - PAKEKGLE - - - Safety scores 0 instead of 2 - P1 - AASASIZA - - - Safety scores 0 - P2 or computer - AEKEIIZA - - - Safety scores 1 - P1 - PASASIZA - - - Safety scores 1 - P2 or computer - PEKEIIZA - - - Safety scores 4 - P1 - GASASIZA - - - Safety scores 4 - P2 or computer - GEKEIIZA - - - Safety scores 6 - P1 - TASASIZA - - - Safety scores 6 - P2 or computer - TEKEIIZA - - - - Tecmo World Cup Soccer (Europe) - - Never lose guts - OXUEPTOO - - - Everyone has more guts - ASNIEIAZ+TENIOILA - - - - Tecmo World Wrestling (USA) - - Infinite health - P1 - SXKIIYSA - - - Half training time allowed - IEUSTOZA - - - Double training time allowed - GOUSTOZA - - - Lose all energy after being on the receiving end of a move - OOPSYY - - - - Teenage Mutant Ninja Turtles (USA) - - Invincibility - SXOPPIAX - - - Infinite health - AOSOUAST - - - Infinite health (alt) - OUVPUEOO - - - Infinite health (alt 2) - GXSOUAST - - - 10 weapons on pick-up - ZENOATGO - - - 50 weapons on pick-up - ZUNOATGP - - - 99 weapons on pick-up - LVNOATGP - - - 20 missiles on pick-up - GPUOLNZA - - - 99 missiles on pick-up - YTUOLNZA - - - Don't take damage from non-killing seaweed - SXVZGSOO - - - Full health boost from pizza slices - AEOOGTZA - - - Double rope on pick-up - TAKOPYLA - - - Never lose rope - SXVXTLVG - - - Reduce recovery time - SXOZTVSE - - - No sound - IIIPAP - - - Start a new game to view the ending - IAXGPTZA - - - Invincibility (alt) - 0500:15 - - - Infinite health - Leonardo - 0077:80 - - - Infinite health - Raphael - 0078:80 - - - Infinite health - Michaelangelo - 0079:80 - - - Infinite health - Donatello - 007A:80 - - - Infinite Ropes - 00A7:09 - - - Infinite Missiles - 00BF:63 - - - Infinite time on water level - 00BB:32 - - - Have Scrolls - Leonardo - 0073:04 - - - Have Scrolls - Raphael - 0074:04 - - - Have Scrolls - Michaelangelo - 0075:04 - - - Have Scrolls - Donatello - 0076:04 - - - 99 weapons - Leonardo - 00A8:63 - - - 99 weapons - Raphael - 00A9:63 - - - 99 weapons - Michaelangelo - 00AA:63 - - - 99 weapons - Donatello - 00AB:63 - - - Permanent rolling power-up (disable on water level) - 0540:91 - - - - Teenage Mutant Ninja Turtles II - The Arcade Game (USA) - - Invincibility (except grabs from behind) - both players - ESUEPZEY - - - Infinite health - both players - SUVASVSO+SLETOKSO - - - Infinite lives - both players - AAEAULPA - - - One hit kills - both players - AOXVXZEI - - - Stronger turtle weapon - PEXTKZZE - - - Stronger jump + attack - PEOVKZGE - - - Stronger jump + attack - ZEOVKZGA - - - Stronger kick - PEXTEZLE - - - Weaker kick - PEXTEZLA - - - In two-turtle mode, when one player is revived the other player's spare life won't get used - SXEAPZVG+SZUAYZVG - - - Enable stage select and 10 lives code - OEVKNZAA - - - Press Start to finish the level - GESSGLPA+GUSSTUIU - - - Start with 1 life - PEOIAPZA - - - Start with 6 lives - TEOIAPZA - - - Start with 9 lives - PEOIAPZE - - - Invincibility - P1 - 0093:2B - - - Invincibility - P2 - 0094:2B - - - Infinite health - P1 - 0568:37 - - - Infinite health - P2 - 056A:37 - - - Infinite lives - P1 - 004D:09 - - - Infinite lives - P2 - 004E:09 - - - Infinite continues - 03D3:03 - - - One hit kills - both players (alt) - EAAA:10 - - - Enable stage select after choosing your turtle - 0025:81 - - - - Teenage Mutant Ninja Turtles III - The Manhattan Project (USA) - - Invincibility (except grabs from behind) - ENSKKIEI - - - Infinite health - SLXUTXVS+SLKXPKSO - - - Infinite lives - AENKLZPA - - - Infinite continues - SXNSKKVK - - - No health loss from using turbo attack - AAESYXAA - - - Hit anywhere - both players - AAEZVETP+AANXNZNI+AAOZEAGP+APXZXEUX+XTXZEEOS+XTXZOEAN - - - High-jump - ALUGVYAG - - - Super-jump - AZUGVYAK - - - Mega-jump - AZUGVYAG - - - 1 continue - PAUZOGLA - - - 9 continues - PAUZOGLE - - - Start with 1 life instead of 4 - AEOAALLA - - - Start with 6 lives - IEOAALLA - - - Start with 9 lives - AEOAALLE - - - Infinite health - P1 - 04F1:7F - - - Infinite health - P2 - 04F2:7F - - - Infinite lives - P1 - 006A:05 - - - Infinite lives - P2 - 006B:05 - - - Infinite continues - 07B0:05 - - - Enemies automatically die - 0626:00+0627:00+0628:00 - - - Start on scene 02 - Ocean - 0058:01 - - - Start on scene 03 - Battleship - 0058:02 - - - Start on scene 04 - Bridge - 0058:03 - - - Start on scene 05 - N.Y. - 0058:04 - - - Start on scene 06 - Platform - 0058:05 - - - Start on scene 07 - Sewer - 0058:06 - - - Start on scene 08 - Sewer 2 - 0058:07 - - - Start on scene 09 - Technodrome - 0058:08 - - - Start on scene 10 - Technodrome 2 - 0058:09 - - - Start on scene 11 - Building - 0058:0A - - - Start on scene 12 - Roof - 0058:0B - - - Start on scene 13 - Spaceship - 0058:0C - - - Start on scene 14 - Spaceship 2 - 0058:0D - - - Start on scene 15 - Spaceship 3 - 0058:0E - - - - Teenage Mutant Ninja Turtles - Tournament Fighters (USA) - - Infinite health - OZVVVTEO+ELVVNVLP+SANTOVSU - - - Infinite time - GXKVKXVK - - - Select ultra strength (ignore strength meter and keep pushing to the right) - both players - NYUEESPYE - - - Select any character in story mode - YAVAZLGA - - - Infinite continues - OKKEZTVG - - - First hit wins round - PEXAGAEL - - - One round wins match - OZNEOXPV+ZANEXZPA - - - Start with 1/3 health - both players - AUXAGAEL - - - Start a new game to view the ending - LEXYLGZE - - - Infinite health - P1 - 0590:B0 - - - No health - P2 / CPU - 0591:00 - - - Infinite time (one's digit) - 0673:09 - - - Infinite time (ten's digit) - 0672:09 - - - Turn off CPU's jumping, blocking and fighting routine - 06C3:00+06C7:00+06C9:00+06CB:00 - - - - Terminator, The (USA, Europe) - - Infinite health - SXNLNESE - - - Infinite Grenades - SXVYIEVK - - - - Terminator 2 - Judgment Day (USA) - - Infinite health - GXVTXZAX - - - Take minimal damage - OXNVKXPK+VNNVSXNN - - - Infinite lives - SXOATOVK - - - Super-jump - XNVOSOKN - - - Slower running - PAOOVZZA+PAUOXZZA - - - Faster running - LAOOVZZA+LAUOXZZA - - - Faster and longer jumping - LESPKGZA+LEVPEGZA - - - Start with 1 life - PANXPLGA - - - Start with 9 lives - PANXPLGE - - - - Terra Cresta (USA) - - Invincibility - KTKSLGAZ - - - Infinite lives - SZKVPTVG - - - Infinite "ship formation" splits - SXSTULVG - - - 9 "ship formation" splits - PEOTEALE+PEKGETLE - - - A secret mega-weapon - AEVKNYLA - - - Start with 1 life - AAKSPGZA - - - Start with 6 lives - IAKSPGZA - - - Start with 9 lives - AAKSPGZE - - - - Tetris (USA) - - Disable Game Over (press start) - GAOPEILA+GGOPSZEN+XPOPNZSX+YGOPVZAL - - - 999999 score with one piece dropped - AEEOUKAA - - - Puzzle area doesn't disappear on pause - TOUZYLTO - - - 2P interactive game - ENEALYNN - - - Need only complete 10 lines in game B - APSEGYIZ - - - Faster forced fall rate - PASAUPPE - - - Must complete 50 lines in game B - AISEGYIZ - - - Must complete 80 lines in game B - EASEGYIZ - - - - Tetris (USA) (Unl) - - Always get straight pieces - OZKPEPEN+PAKPOOOY - - - Speed stays the same - OZXPKLGX+PZXPSUYZ - - - Press down to stop blocks from falling - GAAEPP - - - Press down to rotate block very fast - PPAEPO - - - - Tetris 2 (USA) - - (1P game) Speed doesn't increase - AAUEUSSO - - - (1P game) Speed increases much faster - VNUEUSSO - - - (1P game) Start and stay at speed of 25 - TEXAKYPA - - - (1P game) Max speed is 2 - ZEKESSPP+PESAOSAP - - - (1P game) Max speed is 10 - ZEKESSPO+PESAOSAO - - - (1P game) Max speed is 15 - YEKESSPO+TESAOSAO - - - (1P game) Max speed is 20 - GOKESSPP+LOSAOSAP - - - (1P vs 2P or 1P vs Com) Every round starts with 4 fixed blocks - OZNETPOU+PANEYPAA - - - (1P vs 2P or 1P vs Com) Every round starts with 10 fixed blocks - OZNETPOU+YANEYPAA - - - (1P vs 2P or 1P vs Com) Every round starts with 15 fixed blocks - OZNETPOU+GANEYPAE - - - (1P vs 2P or 1P vs Com) Every round starts with 20 fixed blocks - OZNETPOU+PPNEYPAA - - - (All game types) Cannot pause game - AAVZVYEA - - - (All game types) Don't hide remaining pieces during pause - AVEXOYXZ - - - - Thexder (Japan) - - Infinite health - SXEPSISA - - - Infinite shield - SZEOKAVG - - - Start on last level - 0074:63 - - - - Thunder & Lightning (USA) - - Infinite lives - P1 - SINPPLVI - - - - Thunderbirds (USA) - - Don't lose life points when colliding with enemy - SXNTOVVK - - - Don't lose life points when hit - SZUVUNVK - - - Don't lose energy points when colliding with enemy - SXNVVVVK - - - Don't lose energy points when hit - SZKVENVK - - - 81 Days to defeat Hood - PSEKIVGL - - - 30 Days to defeat Hood - TOEKIVGU - - - Limited forward movement - ATXEANAA+ATXEGNAA - - - Faster craft - GEXETTZA+GEXEZTZA - - - Full firepower on first pick-up - EZUAETEG+XTUAKVEK - - - - Thundercade (USA) - - Infinite lives - GXVYPZVI - - - Infinite Missiles - AAUNLIPP - - - Infinite Bombs - GZXYZTVI - - - Autofire - ZANYGSZA - - - Start with double Bombs - TENNPZLA - - - Start with triple Bombs - PENNPZLE - - - Start with 1 life - PAOYIILA - - - Start with 6 lives - TAOYIILA - - - Start with 9 lives - PAOYIILE - - - - Thunder Warrior (Asia) (Unl) - - Invincibility - ESUUTLEY+ESKLLLEY - - - Infinite health - SXXPGUVK - - - Infinite magic - SXKAEOVK - - - Infinite lives - SZNEIEVK - - - Keep weapon after losing a life - AVSPOUSA - - - Start with 9 lives - PAUXAGLE - - - - Tiger-Heli (USA) - - Invincibility - SZSYAEGK - - - Infinite lives - 1P game - SLXLGNVS - - - Infinite lives - both players - SUKLINVS+SUVULNVS - - - Autofire capability - TEKNAXIA - - - Burstfire capability - ZEKNAXIA - - - Turbo boost - GXVNZLZP - - - Extra life every 5 bonus blocks - LASNVVZA - - - Start with 2 lives - 1P game - AEUUYTZA - - - Start with 9 lives - 1P game - AEUUYTZE - - - Start with 6 lives - P1 in a 2P game - IASUYYZA - - - Start with 9 lives - P1 in a 2P game - AASUYYZE - - - Start with 6 lives - P2 - IANLZYZA - - - Start with 9 lives - P2 - AANLZYZE - - - Start with 2 little-helis after dying - XTVLUEZK - - - - Time Lord (USA) - - Infinite health - SZVSLOSE - - - Infinite lives - SZUKSKVK - - - Hit anywhere - AEESPNAP+EPEYSLEL - - - Moonwalking (don't combine with super speed) - AAXKXTPA+PAUGVTAA - - - Super speed (don't combine with moonwalking) - PESKOTAA+PEOGSTAA - - - Start with 1 life - PEEKYPLA - - - Start with 6 lives - TEEKYPLA - - - Start with 9 lives - PEEKYPLE - - - - Tiny Toon Adventures (USA) - - Invincibility - EYKEGPEI - - - Infinite health after collecting one heart - SZOOSVVK - - - Infinite health and one Carrot - SEOEYXKX - - - Infinite time - SIKINXVS - - - Infinite lives - SZNOUNVK - - - Slow down timer - YYXIXXLU - - - Speed up timer - YPXIXXLU - - - Multi-jump - AASPPVPZ - - - Pick-up more hearts - AEEPPYPA - - - Power decreases slower when using Dizzy Devil's spin attack - PEVOIPZA - - - Press Start to finish the level (don't use on 6-3) - GENIVPPE+GKNSEOIK - - - Start a new game to view the ending - AOOKSYAA - - - 1 life after continue - AEXZNZZA - - - 6 lives after continue - IEXZNZZA - - - 9 lives after continue - AEXZNZZE - - - Start with 1 life - AAXKUYZA - - - Start with 6 lives - IAXKUYZA - - - Start with 9 lives - AAXKUYZE - - - Start on level 2 - VASGOYSA+XZXKNNOZ+IAUGEYPA - - - Start on level 3 - VASGOYSA+XZXKNNOZ+ZAUGEYPE - - - Start on level 4 - VASGOYSA+XZXKNNOZ+YAUGEYPE - - - Start on level 5 - VASGOYSA+XZXKNNOZ+GPUGEYPA - - - - Tiny Toon Adventures 2 - Trouble in Wackyland (USA) - - Invincibility - SAOAZASZ+EIOAGAEY - - - Infinite time - SZUYAZAX - - - Protection against hits on log ride - SXUXVXVK - - - Protection against hits on train - SZSEASVK - - - Protection against hits on bumper cars - SZOOUXVK - - - Protection against hits on roller coaster - SXKAYUVK - - - Protection against hits in fun house - SZSALOVK - - - Log ride costs nothing instead of 3 tickets - AANPYPLA - - - Log ride costs 5 tickets - IANPYPLA - - - Train costs nothing instead of 2 tickets - AANPIPZA - - - Train costs 5 tickets - IANPIPZA - - - Roller coaster costs nothing instead of 4 tickets - AANPPPGA - - - Roller coaster costs 6 tickets - TANPPPGA - - - Bumper cars cost nothing instead of 1 ticket - AANPLPPA - - - Bumper cars cost 4 tickets - GANPLPPA - - - Fun house costs nothing instead of 50 normal tickets - AANOZPIA - - - Fun house costs 10 normal tickets - PANOZPIA - - - Fun house costs 90 normal tickets - PANOZPIE - - - Start a new game to view the ending - PAKYINAE - - - Start with 20 tickets instead of 10 - ZAEYPYPA - - - Start with 50 tickets instead of 10 - IAEYPYPA - - - Start with 90 tickets instead of 10 - PAEYPYPE - - - Start with 110 tickets instead of 10 - VVVNAVSE - - - - Titan Warriors (USA) (Proto) - - Invincibility against enemies - SZSNSGSA - - - Infinite lives - SZSPLKVK - - - - To the Earth (USA) - - Shots use up no energy - AAEUXTGA - - - Shots use up less energy - ZAEUXTGA - - - Shots use up more energy - AAEUXTGE - - - Enemy bombs do no damage - AEUVEYGP - - - Enemy bombs do half damage - AEUVEYGO - - - Enemy bombs do more damage - AXUVEYGO - - - Bonus energy for shooting enemy - GOEUEVZA - - - Less energy for shooting enemy - GEEUEVZA - - - No energy for shooting enemy - AEEUEVZA - - - - Toki (USA) - - Infinite health - EESEYEVG - - - Infinite weapons - SZNOGUVV+SXEOLUVV+SXOOZUSE - - - Infinite time - AAKEVYPA - - - Infinite lives - SXNYZSVK - - - Hit anywhere - normal enemies - SXSETVSO+XVEAPTAV - - - When weapon runs out of ammo it's replaced with the double weapon - PEOPTLAA - - - When weapon runs out of ammo it's replaced with the wave weapon - ZEOPTLAA - - - When weapon runs out of ammo it's replaced with the 3-way weapon - LEOPTLAA - - - When weapon runs out of ammo it's replaced with the flame weapon - GEOPTLAA - - - When weapon runs out of ammo it's replaced with the fireball weapon - IEOPTLAA - - - Start with less time - PAEIKALA+PAKAGALA - - - Start with more time - IAEIKALA+IAKAGALA - - - Start with even more time - PAEIKALE+PAKAGALE - - - Start with one heart - first life only - PAENPIZA - - - Start with one heart - after first life - AENYTIZA - - - Start with 1 life - AEKYXYZA - - - Start with 2 lives - PEKYXYZA - - - Start with 5 lives - GEKYXYZA - - - Start with 9 lives - AEKYXYZE - - - Infinite health - P1 - 011C:02 - - - Infinite time (hundred's digit) - 0576:09 - - - Infinite time (ten's digit) - 0577:09 - - - Infinite time (one's digit) - 0578:09 - - - Infinite lives - P1 - 0114:09 - - - Infinite Coins (ten's digit) - 0118:09 - - - Infinite Coins (one's digit) - 0119:09 - - - Start on stage 2 - Lake Neptune - 0116:01 - - - Start on stage 3 - Cavern Of Fire - 0116:02 - - - Start on stage 4 - Ice Palace - 0116:03 - - - Start on stage 5 - Dark Jungle - 0116:04 - - - Start on stage 6 - Golden Palace - 0116:05 - - - - Tom & Jerry - The Ultimate Game of Cat and Mouse! (USA) - - Infinite health - AEXYPAPA - - - Infinite lives - SXSNYEVK - - - Minimum health (one touch kills) - LEXYPAPA - - - Start with 1 life - PASNVZLA - - - Start with 6 lives - TASNVZLA - - - Start with 9 lives - PASNVZLE - - - Start on world 2 - AEVYKPAE - - - Start on world 3 - AOVYKPAA - - - Start on world 4 - AOVYKPAE - - - Start on world 5 - AXVYKPAA - - - - Toobin' (USA) (Unl) - - Infinite lives - SXUTGIVG - - - Infinite cans - SZEZZIVG - - - Turbo left and right movement - ALKXTAAZ+ALVXLAAZ - - - Start with 2 lives - PAOTZTLA - - - Start with 6 lives - TAOTZTLA - - - Start with 9 lives - PAOTZTLE - - - Start with 18 cans - ZPOTTTTA - - - Start with 12 cans - GAOTTTTE - - - Start with 1 can - PAOTTTTA - - - Start on level 2 - PAOZEAAA - - - Start on level 4 - LAOZEAAA - - - Start on level 6 - IAOZEAAA - - - Start on level 8 - YAOZEAAA - - - Invincibility (glitchy) - 02D3:00 - - - Infinite patches - 006E:09 - - - Infinite cans (alt) - 004C:FF - - - Have all letters - 006D:7F - - - Faster shots - 003F:02 - - - Don't go into dying animation (use with invincibility) - 004A:00+004B:00 - - - - Top Gun (USA) (Rev A) - - Immune to Bullets (not Missiles) - AEKSNLLA - - - Infinite fuel - GXUSNGVG - - - Infinite Missiles - GXKIKIVG - - - Take off with double Hound Missiles - ASEKTOAZ - - - Take off with double Wolf Missiles - AXEKYPGO - - - Take off with double Tiger Missiles - GOOGAOZA - - - Start with half fuel - IANKLOZA - - - Start on mission 2 - ZAEGLPPA - - - Start on mission 3 - LAEGLPPA - - - Start on mission 4 - GAEGLPPA - - - Infinite health - 004E:0C - - - Infinite fuel (alt) - 0036:0A - - - Infinite lives - 0031:02 - - - Infinite Missiles - 003C:3F - - - - Top Gun (USA) - - Immune to Bullets (not Missiles) - AEKSNLLA - - - Infinite fuel - GXUSNGVG - - - Infinite Missiles - GXKIKIVG - - - Always land safely on Aircraft Carrier - AAXLIYGA+SZXLLTSA - - - Take off with double Hound Missiles - ASEKTOAZ - - - Take off with double Wolf Missiles - AXEKYPGO - - - Take off with double Tiger Missiles - GOOGAOZA - - - Start with half fuel - IANKLOZA - - - Start on mission 2 - ZAEGLPPA - - - Start on mission 3 - LAEGLPPA - - - Start on mission 4 - GAEGLPPA - - - Infinite health - 004E:0C - - - Infinite fuel (alt) - 0036:0A - - - Infinite lives - 0031:02 - - - Infinite Missiles - 003C:3F - - - - Top Gun - The Second Mission (USA) - - Invincibility - ASEAVLEY - - - Infinite lives - SZVYLIVG - - - Infinite missiles - 1P game - AAKEUYPA - - - Infinite missiles - 2P game - AENAZIPA - - - 60 Phoenix missiles - 1P game - KUVZTIKO - - - 20 Phoenix missiles - 2P game - KOVXTISA - - - Start with 1 life - PASYALLA - - - Start with 6 lives - TASYALLA - - - Start with 9 lives - PASYALLE - - - - Total Recall (USA) - - Infinite health - AVNVOAKZ - - - Most enemies easier to kill - GXUIIXSO - - - Take less damage - PENVKEGE - - - Gain maximum health from canisters - XYUVNUXT - - - Start with less health - OZNKEPSX+ALNKOOLZ - - - Start with more health - OZNKEPSX+NYNKOOLX - - - Invincibility - 007F:03 - - - Infinite health (alt) - 02C0:FA - - - - Totally Rad (USA) - - Infinite health - SVVNTKON - - - Infinite magic - GXXAPKSN - - - Immune to fire and water - SZVAYIVG - - - Infinite lives - SZSEYXVK - - - Super-jump - AOOAYGAO - - - Mega-jump - YOOAYGAO - - - Half a life or half magic give full health or magic - TEEONALA - - - Start with 1 life - AEUXSTZA - - - Start with 6 lives - IEUXSTZA - - - Start with 9 lives - AEUXSTZE - - - Infinite health (alt) - 006E:0C - - - Infinite lives (alt) - 05D4:63 - - - - Tower of Druaga, The (Japan) - - Invincibility - OXNUATSX+OZELLGSX - - - Infinite lives - 00CB:03 - - - Infinite time - 00B7:69 - - - Doors are always open - 0099:40 - - - Treasure instantly appears - 00E5:01 - - - - Toxic Crusaders (USA) - - Infinite lives - KXKLTIKA - - - Infinite health - SXXVYGSA - - - Never lose Mop - SXXTXNSE+PASLEAAA - - - Invincibility - 020F:00 - - - Infinite health (alt) - 00DE:08 - - - Infinite lives (alt) - 00DD:09 - - - Never lose weapon - 020B:01 - - - - Track & Field (USA) - - Almost always qualify in Skeet Shooting and Archery - NTXKTNKT - - - You don't have to score any points to qualify for Skeet Shooting, Triple Jump and Archery - UKUKIGKG - - - - Transformers - Convoy no Nazo (Japan) - - Invincibility - AIUKAZEY+AVXGPGSZ - - - Hit anywhere (enemies and platforms) - AEKGYZGZ+ASVKZZEP+SLEKLUSO - - - Moon jump - AAEOTOTZ+AAEPZOZL+AENOAAYZ - - - Solve level 9 maze using any path - AYNEAZEY - - - - Treasure Master (USA) - - Invincibility - KVNPUXEL+LENPKZIA - - - Infinite health - SGKTSGVG - - - Infinite lives - SXEETAVG - - - Infinite oxygen - SKVXYOVK - - - Infinite health (alt) - 00F6:07 - - - Infinite lives (alt) - 00F5:07 - - - Infinite Oxygen (alt) - 0435:FF - - - Infinite Fuse - 04A2:80 - - - - Trog! (USA) - - Infinite lives - XTXATOVS - - - - Trojan (USA) - - Infinite health - both players - SZVSZXVK - - - Infinite health - both players (alt) - NNUZGKYU+NYVNEKYU - - - Infinite time - GXEPGKVS - - - One hit kills - VTESLOSX - - - Hit anywhere - GZOXYYEL+AAKENATI+AANNIKLP+AAOZLYIZ+AAVAXALG+AEENPKYA+AENIEUAP+AEUNIUUI+AEUYPLNT+AEVIULIZ - - - Keep High-jump Boots on pick-up - SXKVKXVK - - - Always have High-jump Boots - AENIAUYP - - - Multi-jump - both players - AAUSAUGP+AESIZUEI+GXKIILEY - - - Start with a health boost - YASGUUAE - - - Start with a super health boost - TPSGUUAE - - - Start with half usual health - GASGUUAA - - - Start with 1 life - P1 - PENKXPLA - - - Start with 1 life - P2 - PAOKNZLA - - - Start with 6 lives - P1 - TENKXPLA - - - Start with 6 lives - P2 - TAOKNZLA - - - Start with 9 lives - P1 - PENKXPLE - - - Start with 9 lives - P2 - PAOKNZLE - - - Start with 187 lives - P1 - ENNKXPLA - - - Start with 196 lives - P2 - EYOKNZLA - - - Start with 100 seconds - PASKELZA - - - Start with 900 seconds - PASKELZE - - - Infinite health (alt) - 0335:08 - - - - Trolls on Treasure Island (USA) (Unl) - - Infinite time - SIOGUTVE - - - Only one jewel needed to clear stage - EYNINYEI - - - - Twin Cobra (USA) - - Infinite lives - SZVSGXVK - - - Infinite Bombs - SZNYXOVK - - - Infinite continues - AAKKYTPA - - - Autofire - AAOYVOLP - - - Keep weapon type after death - GZNITZSA - - - Keep super chargers after death - GZNSAZSA - - - 9 Bombs after dying - ZANIAZLE - - - 20 Bombs after dying - GPNIAZLA - - - Start with 1 life - AEUGZIZA - - - Start with 6 lives - IEUGZIZA - - - Start with 9 lives - AEUGZIZE - - - Start with 1 life after a continue - AANKLTZA - - - Start with 6 lives after a continue - IANKLTZA - - - Start with 9 lives after a continue - AANKLTZE - - - Start with 9 continues - PEOKIIIE - - - Start with 9 Bombs - ZAEGKILE - - - Start with 20 Bombs - GPEGKILA - - - - Twin Eagle (USA) - - Infinite lives - P1 - SXOSVPVG - - - Infinite Bombs on pick-up - P1 - SXNSXSVK - - - Infinite Bombs on pick-up - P2 - SZSIXNVK - - - Never lose weapons - P1 - EYKVVUSA+YAKVNLKZ - - - Never lose weapons - P2 - ENXVKUSA+YEXVSLSZ - - - 1 life after a continue - P1 - PAEKXTLA - - - 4 lives after a continue - P1 - GAEKXTLA - - - 7 lives after a continue - P1 - YAEKXTLA - - - Start with 7 lives - both players - YEETIPLA - - - Start with 4 lives - both players - GEETIPLA - - - Start with 1 life - both players - PEETIPLA - - - - TwinBee (Japan) - - Invincibility - 0093:10 - - - - Ufouria - The Saga (Europe) - - Invincibility - EIVETAEY+EIKELYEY - - - Start with all characters - PESVYNYP+YEVTPYAA - - - - Ultima - Exodus (USA) - - Take no damage from most monsters - GZUKOGST - - - No limit on stat points - AEOAKVAA - - - Never lose tools - AAXIAPPA - - - Never lose magic - KPVSUZOP - - - Rapid magic recovery - AAUEPYPA+OLUAGYOI - - - Start with 5 of each item - IEOPTPPA - - - Start with 10 of each item - ZEOPTPPE - - - Start with 40 of each item - ENOPTPPA - - - Start with 35,328 gold - XEEOAPGV+PUEPTPAL - - - Start with 512 gold - ZEEOAPGT+PUEPTPAL - - - Start with 200 gold - EKEOAPGV - - - Start with 75 stat points - YKEAUVTZ+LKUAVYZU+LGSOPAZU - - - Start with 5F stat points - LSEAUVTX+YSUAVYZU+YISOPAZU - - - - Ultima - Quest of the Avatar (USA) - - Infinite MP - OLUZZEOO - - - Infinite Herbs - SUOVNKVS - - - Infinite Oil - SZNLKKVK - - - Infinite Torches - SUEUIXVS - - - Infinite Gems - SXVUGSVK - - - No random battles - SZSTXPSA - - - Heal costs nothing instead of 70 - AEKITITG - - - Cure poison costs nothing - AAVILSZA - - - Axe costs 1 instead of 225 - PAEENYOT - - - Staff costs 1 instead of 20 - PAEEUYGP - - - Sword costs 144 instead of 400 - AAOAXYPA - - - Bow costs 168 instead of 680 - AAEAKYZA - - - Leather costs 1 instead of 200 - PAXAONEG - - - Chain costs 88 instead of 600 - AAXAKYZA - - - Plate costs 196 instead of 2500 - AAXEXNPA - - - Start with perfect virtues (worthy of Avatarhood) - LTVPZIZL - - - Start with 8336 Gold Pieces - AZKPTIPA - - - Start with 4240 Gold Pieces - APKPTIPA - - - Start with 144 Gold Pieces (for experts) - AAKPTIPA - - - Start with 100 Ash instead of 8 - GTXPIVAA - - - Start with 100 Ginseng instead of 8 - GTXPTVAA - - - Start with 100 Garlic instead of 9 - GTXPYVPA - - - Start with 100 Silkweb instead of 7 - GTXOATYA - - - Start with 100 Moss instead of 8 - GTXOPVAA - - - Start with 100 Pearl instead of 4 - GTXOZTGA - - - Start with 100 Fungus instead of none - GTXOLTAA - - - Start with 100 Manroot instead of none - GTXOGTAA - - - Mage starts with 712 HP - ZEVPTIAA - - - Mage starts with 381 EXP - PAOPTTAA - - - Mage starts with Strength of 32 - AXNOIIAP - - - Fighter starts with Strength of 48 - AUNOYSLP - - - Fighter starts with 255 EXP - NYOOPVSK - - - Fighter starts with 812 HP - LEVOZIPA - - - Fighter starts with 75 MP - LKNPYIAE - - - - Ultima - Warriors of Destiny (USA) - - Infinite consumable items such as food and torches - May not be able to discard some items - SUSTXSVS - - - A night at the Wayfarer Inn is free - AAEZIPZL - - - At Healer's Herbs - Sulfurous ash is free instead of 1 GP - AEUZPAPA - - - At Healer's Herbs - Ginseng is free instead of 2 GP - AEUZGAZA - - - At Healer's Herbs - Garlic is free instead of 2 GP - AEUZYAZA - - - At Healer's Herbs - An Tym Scroll is free instead of 100 GP - AEUXIAGT - - - At Healer's Herbs - Spellbook is free instead of 150 GP - AEKZAAVP - - - At Healer's Herbs - Spidersilk is free instead of 4 GP - AEUXZAGA - - - From Pendra - Spidersilk is free instead of 4 GP - AEEXZAGA - - - From Pendra - Black Pearl is free instead of 3 GP - AEEZYALA - - - From Pendra - Garlic is free instead of 2 GP - AEEZGAZA - - - From Pendra - Ginseng is free instead of 2 GP - AEEZPAZA - - - From Pendra - Sant Talisman is free instead of 75 GP - AEEXIELG - - - At Iolo's Bows - Bow is free instead of 75 GP - AAEXIELG - - - At Iolo's Bows - Wooden shield is free instead of 25 GP - AAEXZEPP - - - At Iolo's Bows - Dagger is free instead of 3 GP - AAEZGALA - - - At Iolo's Bows - Short sword is free instead of 40 GP - AAEZYEAZ - - - At Iolo's Bows - Crossbow is free instead of 150 GP - AAOZAAVP - - - At Iolo's Bows - Arrow is free instead of 1 GP - AAOZTAPA - - - At Iolo's Bows - Bolt is free instead of 2 GP - AAOXPAZA - - - At Iolo's Bows - Sell Dagger for 2,305 instead of 1 GP - PAOZAPAE - - - At Iolo's Bows - Sell Short sword for 2,848 instead of 20 GP - LAOZLPAG - - - At Iolo's Bows - Sell Wooden shield for 3,850 instead of 10 GP - YAOZTPAE - - - At Iolo's Bows - Magic bow is free instead of 800 GP - AAOZLAAZ+AAOZGALA - - - Start new game with 201 instead of 1,225 GP - AESXEZGA - - - Start new game with 4,297 instead of 1,225 GP - AOSXEZGA - - - Start new game with 32,713 instead of 1,225 GP - YNSXEZGE - - - Infinite Health - Avatar - 6A06:0F - - - Infinite Health - Shamino - 6A07:0F - - - Infinite Health - Iolo - 6A08:0F - - - - Ultimate Stuntman, The (USA) (Unl) - - Infinite time - SXNSYXVK - - - Infinite 'Crez' weapon until end of stage - SXXSNUVK - - - Minimum damage taken - OVUZKPSV+PEUZSONY - - - Don't lose a life on Ground Pursuit, Boat and Hang Glider stages - GXUAOKVK - - - 9 seconds on clock pick-up - PEXXSATE - - - Full energy on pick-up - AEOZXPZA - - - Shield lasts longer on Human Fly stages - NYXXVVAN - - - Shield lasts a shorter time on Human Fly stages - AGXXVVAY - - - Don't lose a life against end-of-stage bosses and on street combat stages - SXNXKNVK - - - Don't lose a life on Human Fly stages - SXXUXSVK - - - Start with 1 life (first credit only) - AENVNGZA - - - Start with 6 lives (first credit only) - IENVNGZA - - - Start with 9 lives (first credit only) - AENVNGZE - - - - Uncanny X-Men, The (USA) - - Infinite life - SXEEXIST - - - Half life - Wolverine - GVUZPOEG - - - Half life - Cyclops - GVUZYOEG - - - Half life - Nightcrawler - PKUXIPXA - - - Half life - Iceman - YSKZLOVU - - - Half life - Colossus - YNKXPONN - - - Half life - Storm - ASKXYPEZ - - - - Untouchables, The (USA) (Rev B) - - Infinite energy - 0092:40 - - - Infinite ammo - 00C6:02+00C8:02 - - - Infinite time - 009A:09 - - - - Untouchables, The (USA) (Rev A) - - Infinite energy on scenes 1 and 4 - SLOEAGVI - - - Infinite energy on scene 2 - SXKAATVG - - - Infinite time on scenes 1 and 4 - SXUAZGVG - - - More time on scene 1 - GEXELPZA - - - Less time on scene 1 - PEXELPZA - - - More time on scene 2 - TAXELAGA - - - Less time on scene 2 - ZAXELAGA - - - More time on scene 3 - TAXEYAGA - - - Less time on scene 3 - ZAXEYAGA - - - More time on scene 5 - TAXAPAIA - - - Less time on scene 5 - LAXAPAIA - - - More time on scene 7 - ZAOEAAPA - - - More ammo picked up on scene 2 - AZNETGAP - - - Less ammo picked up on scene 2 - IANETGAP - - - More ammo picked up on scene 7 - PAOEGATE - - - Start on scene 2 - AAXKTEGA - - - Start on scene 3 - ZAXKTEGA - - - Start on scene 4 - GAXKTEGA - - - Start on scene 5 - TAXKTEGA - - - Start on scene 7 - ZAXKTEGE - - - Infinite energy - 0092:40 - - - Infinite ammo - 00C6:02+00C8:02 - - - Infinite time - 009A:09 - - - - Untouchables, The (USA) - - Infinite energy on scenes 1 and 4 - SLOEAGVI - - - Infinite energy on scene 2 - SXKAATVG - - - Infinite time on scenes 1 and 4 - SXUAZGVG - - - More time on scene 1 - GEXELPZA - - - Less time on scene 1 - PEXELPZA - - - More time on scene 2 - TAXELAGA - - - Less time on scene 2 - ZAXELAGA - - - More time on scene 3 - TAXEYAGA - - - Less time on scene 3 - ZAXEYAGA - - - More time on scene 5 - TAXAPAIA - - - Less time on scene 5 - LAXAPAIA - - - More time on scene 7 - ZAOEAAPA - - - More ammo picked up on scene 2 - AZNETGAP - - - Less ammo picked up on scene 2 - IANETGAP - - - More ammo picked up on scene 7 - PAOEGATE - - - Start on scene 2 - AAXKTEGA - - - Start on scene 3 - ZAXKTEGA - - - Start on scene 4 - GAXKTEGA - - - Start on scene 5 - TAXKTEGA - - - Start on scene 7 - ZAXKTEGE - - - Infinite energy - 0092:40 - - - Infinite ammo - 00C6:02+00C8:02 - - - Infinite time - 009A:09 - - - - Urban Champion (World) - - Infinite time - GZOTZLVG - - - Powerful quick punches - AEEIZGGE - - - Super powerful quick punch - TOEIZGGA - - - Speed up the timer - LENVTZTA - - - Become a stronger fighter - AAXSLLPA - - - Become a weaker fighter - LAXSLLPA - - - Infinite stamina - 00CA:99 - - - - Vice - Project Doom (USA) - - Invincibility - AANSEIYP - - - Infinite lives - SZSKIOVK - - - Infinite time - SZNNNSVK - - - Infinite grenades - SZVYXKVK - - - Infinite bullets - SZKNXKVK - - - Infinite power - SXVYVKSE - - - Hit anywhere - AEEYXEET - - - Multi-jump - XVVKISZK - - - 10 coins for an extra life - ZEOYNGGV - - - 25 coins for an extra life - POOYNGGV - - - 20 extra Grenades on pick-up - GOENELIA - - - 25 extra Bullets on pick-up - POXYXUZE - - - Start timer for round 1 at 150 - VPOEPKXY - - - Start timer for round 2 at 150 - VPUAZKXY - - - Start with 99 grenades - LTNNXLIA - - - - Vindicators (USA) (Unl) - - Infinite lives - KLUAGTVI - - - Automatic fuel replenishment - VYUKEIVI - - - Never lose Stars - GZOEVXON - - - Quicker shot re-load - ZAUKYTZP - - - Turbo speed - LPKKLVGE - - - Start with increased shot range - AZKGYVAA - - - Start with 10 Stars - VVVAAPSA - - - Start with 80 Shots - AAUKYTZO+VIKGPTEI - - - Start with 80 Bombs - AAUKYTZO+KIKGPTEI - - - Start with 1 life - AAKKYTZA - - - Start with 6 lives - IAKKYTZA - - - Start with 9 lives - AAKKYTZE - - - - Volleyball (USA, Europe) - - Computer doesn't get points for scoring - YEYIAV - - - 3 points - team 1 - 0063:03 - - - - VS. Castlevania (VS) - - Invincibility (blinking) - ESOTOPEY - - - Infinite health - SXNVZYSA - - - Infinite lives - SXVKGZVG - - - - VS. Super Mario Bros. (VS) - - Invincibility - VONUPOOE+EISTOTEY - - - Infinite lives - SXAOUE - - - Go to minus world - LZPOAY+YIPOZN+YAPOLY - - - - Wacky Races (USA) - - Invincibility - EINSUPEY+ESUISPEY+ESEKSIEY - - - Infinite health - SKSGSVVK+SKUKUSVK - - - Infinite health (alt) - GXSGSVVK+GZNKVVVK+GXUKUSVK - - - Don't take most damage - GXSGSVVK - - - Infinite lives - SASSZEVK+SEKIYEVK - - - Infinite lives (alt) - APSIGESZ+AASIIEIS - - - Infinite Bones after obtaining one - SXOILNSE - - - Go straight to level boss - XNUVKIKG - - - Start at race 1, end of stage 1 - EKUVKIKK - - - Start at race 1, end of stage 2 - NKUVKIKK - - - Start at race 1, end of stage 3 - KSUVKIKG - - - Start at race 2, end of stage 1 - ESUVVIVS - - - Start at race 2, end of stage 2 - KSUVVIVS - - - Start at race 2, end of stage 3 - EVUVVIVI - - - Start at race 3, end of stage 1 - KVKTEIXT - - - Start at race 3, end of stage 2 - EVKTEIXV - - - Start at race 3, end of stage 3 - KVKTEIXV - - - Start at race 3, end of stage 4 - ENKTEIXT - - - Start with 1 life - AAKVEIZA - - - Start with 5 lives - GAKVEIZA - - - Start with 7 lives - TAKVEIZA - - - Start with 9 lives - AAKVEIZE - - - Start with 6 hearts - TASTOILA - - - Start with 8 hearts - AASTOILE - - - Invincibility (alt) - 0453:01 - - - Invincibility (blinking) - 0452:11 - - - Infinite health (alt 2) - 0459:03 - - - Infinite time - 00A4:59 - - - Infinite lives (alt 2) - 045D:63 - - - Infinite Gems - 042F:63 - - - - Wall Street Kid (USA) - - Infinite money - OUSNVLOP - - - Sart a new game with $16,777,215 - NYEELPYE+NYEEZPOX+NYEEPPAX - - - Infinite money (alt) - 03E1:FF - - - - Wally Bear and the No! Gang (USA) (Unl).nes - - Invincibility - AOUXYYEI - - - Multi-jump - GZNXZISA - - - Collect items from anywhere - AANLINGI+AANULYTI - - - - Wario's Woods (USA) - - Infinite time - XTNXLOVK - - - Clear round A data to complete round A and B - LTKPOLAA+PGKPVLZG - - - Each coin gives you a credit - PAVOEXTP - - - Always get blue monsters - OZSUNAOU+EYVLEAUL - - - Always get 1 line of monsters - VTSLEESE - - - Wario doesn't cause ceiling to fall, no enemies fall - OXNATNSE - - - One bomb in Birdo time only - XTKXGXVK - - - Invisible Toad - SXOIOASA - - - Invisible coins - ENXPSPEI - - - Coins worth 5 - XVXPSESE - - - Infinite coins fall - XVXOEEVK - - - Only 1 coin falls - VXSOTNVK - - - No Coins fall - EESOTNVG - - - Diamonds don't form in lesson mode - NYSZUSOO - - - - Wayne's World (USA) - - Infinite lives - VXKESXVK - - - Infinite time - SXSALOVK - - - Infinite Worthiness - SZSEXUSE - - - More time in level 1 - NNSLYYKU - - - More time in Donut shop in level 1 - NNNLIYZU - - - Power-up restores all Worthiness - AANAKLZA - - - Power-up worth nothing - SZNANUSE - - - Getting all donuts is worth no extra lives - SZOOSUVV - - - Faster timer - YOKEZOLU - - - Slower timer - AVKEZOLL - - - 5 special moves on pick-up - IAEZXAGP - - - 40 special moves on pick-up - AZEZXAGO - - - Start with less Worthiness - EANEZAEL - - - Start with much less Worthiness - AGNEZAEL - - - Start with 2 lives - PANEYAGA - - - Start with 8 lives - YANEYAGA - - - Start with 10 lives - PANEYAGE - - - - WCW World Championship Wrestling (USA) - - Always win - P1 - EGOZINIP+PAOZTNPA+XTOZYYIE - - - - Werewolf - The Last Warrior (USA) - - Infinite time - SZXTTLVG - - - Only 1 anger point needed to become Super-Werewolf - PAENGTIA - - - Blue "W" won't change you back to a man - SZXNPVVK - - - Gain maximum energy from small hearts - ESKNTIKI - - - Hit anywhere - AAVGVYGT+AAVKKNTI+AEXGXNAZ+AEXKEYZZ - - - Don't lose energy from blue "W" - AAUNGVZA+AAUNPVAA - - - Infinite health - P1 - 00BC:14 - - - Infinite time (alt) - 00BF:F4 - - - Always Werewolf - 044E:01+042E:01 - - - Always Super Werewolf - 044E:02 - - - Have Gun in Werewolf form - 044F:01+044D:01 - - - - Where's Waldo (USA) - - Infinite time - AEETLZPA - - - Guesses cost nothing - VTSVYYTE - - - - Who Framed Roger Rabbit (USA) - - Invincibility - ATKTIPEI+ATVIKLEI+ATXGOPEI+AVOVAIEI - - - Infinite continues - SXKELNVK - - - Never lose a life except in Punch lines - SXVOYIVG - - - Never lose a life in Punch lines - SZSZXYVG - - - Harder to build strength - PAUKXTGA - - - Strength to full instantly - EPUKXTGA - - - Start with 1 life - PESSSYLA - - - Start with 6 lives - TESSSYLA - - - Start with 9 lives - PESSSYLE - - - - Whomp 'Em (USA) - - Invincibility - ATSELPEY - - - Infinite health - SZNATPSA - - - Don't lose a life from energy loss - SXEEZPVG - - - Creatures can't steal extra lives - SXXOUPVG - - - Keep buffalo headdress for present level - SZKEGPVG - - - Always have buffalo headdress - ZAKELOAA - - - Start with 1 life - AEKKGALA - - - Start with 5 lives - LAVKYAAA - - - Start with 10 lives - AAVKYAAE - - - - Widget (USA) - - Invincibility - ENNVEZEI - - - Infinite health (except against spikes) - SXSLEKSE - - - Infinite health (only against spikes) - SXUVOEVK - - - Infinite time - SXUAVXVK+SXXANXVK - - - Infinite MP - SXXPPVSE - - - Infinite lives - SZUGSXVK - - - Invincibility (blinking) - 00B9:01 - - - Infinite health - 0581:06 - - - Infinite lives (alt) - 04F5:02 - - - Infinite special - 058B:06 - - - - Wild Gunman (World) (Rev A) - - Infinite lives in Gang Mode - GZOGVYVG - - - Infinite ammo in Gang Mode - GZNIPAVG - - - Shoot 5 enemies to finish level - IENSUOZA+IEUSSUZA - - - Start with double normal ammo - AXVIEOYA - - - Start with triple normal ammo - AUVIEOYA - - - Start with half normal ammo - AEVIEOYE - - - Start with 1 life - YEUISPLE+PENGVALA - - - Start with 10 lives - ZEUISPLE+ZENGVALE - - - Start with 15 lives - YEUISPLE+YENGVALE - - - - Wild Gunman (Japan, USA) - - Infinite lives in Gang Mode - EIAGNY - - - Infinite ammo in Gang Mode - EYTIZA - - - Shoot 5 enemies to finish level - IENSUOZA+IEUSSUZA - - - Start with double normal ammo - AXVIEOYA - - - Start with triple normal ammo - AUVIEOYA - - - Start with half normal ammo - AEVIEOYE - - - Start with 1 life - YEUISPLE+PENGVALA - - - Start with 10 lives - ZEUISPLE+ZENGVALE - - - Start with 15 lives - YEUISPLE+YENGVALE - - - - Willow (USA) - - Infinite magic - ZASEGOUI - - - Don't take any hits - TGNILGSA - - - Start with all items - XZKYILKP+AVUOXSOZ - - - Start at EXP Level 5 - GEKISVZA+PNKINTSL - - - Start at EXP Level 10 - PEKISVZE+PNKINTSL - - - Start at EXP Level 15 - TEKISVZE+PNKINTSL - - - - Wing of Madoola, The (Japan) (Sample) - - Invincibility - SXKGXTSA - - - Infinite hits and magic - SLUUVYSP - - - Hit anywhere - AAOGEVPA+AAOGSVZI+PZOGKTSN - - - One hit kills - APXKETSV+APXKOVEE - - - Start with 9999 hits - OOKZKPAE+OOKXEPAO - - - Start with 9999 max hits - OOKXKPAE+OOSZEPAO - - - Start with 9999 magic - OOSXEPAO+OOSZKPAE - - - - Wizardry - Proving Grounds of the Mad Overlord (USA) - - Annointed Mace costs nothing instead of 30 - AEVEIPAL - - - Long Sword costs nothing instead of 25 - AAVEIPIZ - - - Short Sword costs nothing instead of 15 - AEXEIPIP - - - Small Shield costs nothing instead of 20 - AEVEIZAZ - - - Staff costs nothing instead of 10 - AAVEIZAP - - - Dagger costs nothing instead of 15 - AEXEIZIA - - - Robes costs nothing instead of 15 - AAVEILIP - - - S of Pain costs nothing instead of 500 - AEVEGYIA - - - S of Fire costs nothing instead of 500 - AAXEKAIA - - - Body Armor costs nothing instead of 1500 - AEXEGYIP - - - Large Shield costs nothing instead of 40 - AAXEILAG - - - Leather Armor costs nothing instead of 50 - AEXEILAI - - - Chain Mail costs nothing instead of 90 - AEVEILEP - - - Breast Plate costs nothing instead of 200 - AAXEGGZA - - - Helm costs nothing instead of 100 - AEXEGGPA - - - S of Curing costs nothing instead of 500 - AEVEGGIA - - - Rod of Iron costs nothing instead of 3000 - AAXEGTAL - - - Padded Leather costs nothing instead of 1500 - AEXEGTIP - - - Shiny Chain costs nothing instead of 1500 - AEVEGTIP - - - Sturdy Plate costs nothing instead of 1500 - AAXEGYIP - - - Iron Shield costs nothing instead of 1500 - AAVEGYIP - - - Gloves of Copper costs nothing instead of 6000 - AEVEKGAT - - - S of Glass costs nothing instead of 1500 - AAVEKLIP - - - Studly Staff costs nothing instead of 2500 - AAXEKPIZ - - - S of Neutralizing costs nothing instead of 300 - AAXEGILA - - - Plate Mail costs nothing instead of 750 - AAVEIGAI+AAVEGGYA - - - Blade of Biting costs nothing instead of 15000 - AEXEGIAI+AEXELIPA - - - - Wizards & Warriors (USA) (Rev A) - - Invincibility - EINVTIEY - - - Invincibility (flashes) - AUATPI - - - Infinite lives - GXVUZGVG - - - Infinite lives (alt) - SXVUZGVG - - - Infinite health - GZNVILST - - - Infinite health (alt) - OXOVATES+GEOVPVGU+SEOVZTSZ - - - Potions last longer - NTEINNYK - - - Meat gives half health - PEEVAGZA - - - Meat gives double health - GEEVAGZA - - - Enter doors without needing a key - ALGYPL - - - Jump higher - KYISTO - - - Jump to the top of the scren - KGTITO - - - Start with 6 lives - IAUUKAZA+IAXGGAZA - - - Start with 9 lives - AAUUKAZE+AAXGGAZE - - - Invincibility (alt) - 00FC:02 - - - Infinite health (alt 2) - 0076:0C - - - Super-jump (disable if you get stuck) - 0148:40 - - - - Wizards & Warriors (USA) - - Invincibility - EINVTIEY - - - Invincibility (flashes) - AUATPI - - - Infinite lives - GXVUZGVG - - - Infinite lives (alt) - SXVUZGVG - - - Infinite health - GZNVILST - - - Infinite health (alt) - OXOVATES+GEOVPVGU+SEOVZTSZ - - - Potions last longer - NTEINNYK - - - Meat gives half health - PEEVAGZA - - - Meat gives double health - GEEVAGZA - - - Enter doors without needing a key - ALGYPL - - - Jump higher - KYISTO - - - Jump to the top of the scren - KGTITO - - - Start with 6 lives - IAUUKAZA+IAXGGAZA - - - Start with 9 lives - AAUUKAZE+AAXGGAZE - - - Invincibility (alt) - 00FC:02 - - - Infinite health (alt 2) - 0076:0C - - - Super-jump (disable if you get stuck) - 0148:40 - - - - Wizards & Warriors III - Kuros...Visions of Power (USA) - - Infinite keys - SXXNITVG - - - Infinite gold - EYYYYY - - - Shopkeeper sometimes forgets to charge - SZNYZNSE - - - Infinite lives - SXVTGLVG - - - Infinite lives (except boss stages) - SXNTPLVG - - - Coins worth 25 - POSAGGZU - - - Coins worth 100 - GVSAGGZL - - - Coins worth 255 - NNSAGGZU - - - Bags worth 5 - IESAZKZA - - - Bags worth 50 - ZUSAZKZA - - - Bags worth 255 - NNSAZKZE - - - Less health after death (except boss stages) - AGELLZEA - - - More health after death (except boss stages) - ELELLZEA - - - Start with Less health - AGKZGYEA - - - Start with More health - ELKZGYEA - - - Start with very little life force - PAKZGYEA - - - Start with about half life force - AGKZGYEA - - - Start with 2 lives - PAXXPYLA - - - Start with 7 lives - TAXXPYLA - - - Start with 10 lives - PAXXPYLE - - - Invincibility - 008B:2B - - - Infinite health - 00EB:80 - - - Infinite Keys - 0087:02 - - - Infinite money - 0669:09 - - - One hit kills on most enemies/bosses - 049D:01+049E:01+049F:01+04A0:01+04A1:01 - - - Have the Orb in slot 1 (enable then disable) - 0657:01 - - - Have the Orb in slot 2 (enable then disable) - 0658:01 - - - Have the Orb in slot 3 (enable then disable) - 0659:01 - - - Have the Orb in slot 4 (enable then disable) - 065A:01 - - - Have the Scepter in slot 1 (enable then disable) - 0657:02 - - - Have the Scepter in slot 2 (enable then disable) - 0658:02 - - - Have the Scepter in slot 3 (enable then disable) - 0659:02 - - - Have the Scepter in slot 4 (enable then disable) - 065A:02 - - - Have the Coin in slot 1 (enable then disable) - 0657:03 - - - Have the Coin in slot 2 (enable then disable) - 0658:03 - - - Have the Coin in slot 3 (enable then disable) - 0659:03 - - - Have the Coin in slot 4 (enable then disable) - 065A:03 - - - Have the Chalice in slot 1 (enable then disable) - 0657:04 - - - Have the Chalice in slot 2 (enable then disable) - 0658:04 - - - Have the Chalice in slot 3 (enable then disable) - 0659:04 - - - Have the Chalice in slot 4 (enable then disable) - 065A:04 - - - Have the Amulet in slot 1 (enable then disable) - 0657:05 - - - Have the Amulet in slot 2 (enable then disable) - 0658:05 - - - Have the Amulet in slot 3 (enable then disable) - 0659:05 - - - Have the Amulet in slot 4 (enable then disable) - 065A:05 - - - Have the Crown in slot 1 (enable then disable) - 0657:06 - - - Have the Crown in slot 2 (enable then disable) - 0658:06 - - - Have the Crown in slot 3 (enable then disable) - 0659:06 - - - Have the Crown in slot 4 (enable then disable) - 065A:06 - - - Have the Crown Jewel 1 in slot 1 (enable then disable) - 0657:07 - - - Have the Crown Jewel 1 in slot 2 (enable then disable) - 0658:07 - - - Have the Crown Jewel 1 in slot 3 (enable then disable) - 0659:07 - - - Have the Crown Jewel 1 in slot 4 (enable then disable) - 065A:07 - - - Have the Crown Jewel 2 in slot 1 (enable then disable) - 0657:08 - - - Have the Crown Jewel 2 in slot 2 (enable then disable) - 0658:08 - - - Have the Crown Jewel 2 in slot 3 (enable then disable) - 0659:08 - - - Have the Crown Jewel 2 in slot 4 (enable then disable) - 065A:08 - - - Have the Crown Jewel 3 in slot 1 (enable then disable) - 0657:09 - - - Have the Crown Jewel 3 in slot 2 (enable then disable) - 0658:09 - - - Have the Crown Jewel 3 in slot 3 (enable then disable) - 0659:09 - - - Have the Crown Jewel 3 in slot 4 (enable then disable) - 065A:09 - - - Have the Crown Jewel 4 in slot 1 (enable then disable) - 0657:0A - - - Have the Crown Jewel 4 in slot 2 (enable then disable) - 0658:0A - - - Have the Crown Jewel 4 in slot 3 (enable then disable) - 0659:0A - - - Have the Crown Jewel 4 in slot 4 (enable then disable) - 065A:0A - - - Have the Bronze Knight Statue in slot 1 (enable then disable) - 0657:0B - - - Have the Bronze Knight Statue in slot 2 (enable then disable) - 0658:0B - - - Have the Bronze Knight Statue in slot 3 (enable then disable) - 0659:0B - - - Have the Bronze Knight Statue in slot 4 (enable then disable) - 065A:0B - - - Have the Silver Knight Statue in slot 1 (enable then disable) - 0657:0C - - - Have the Silver Knight Statue in slot 2 (enable then disable) - 0658:0C - - - Have the Silver Knight Statue in slot 3 (enable then disable) - 0659:0C - - - Have the Silver Knight Statue in slot 4 (enable then disable) - 065A:0C - - - Have the Gold Knight Statue in slot 1 (enable then disable) - 0657:0D - - - Have the Gold Knight Statue in slot 2 (enable then disable) - 0658:0D - - - Have the Gold Knight Statue in slot 3 (enable then disable) - 0659:0D - - - Have the Gold Knight Statue in slot 4 (enable then disable) - 065A:0D - - - Have the Bronze Thief Statue in slot 1 (enable then disable) - 0657:0E - - - Have the Bronze Thief Statue in slot 2 (enable then disable) - 0658:0E - - - Have the Bronze Thief Statue in slot 3 (enable then disable) - 0659:0E - - - Have the Bronze Thief Statue in slot 4 (enable then disable) - 065A:0E - - - Have the Silver Thief Statue in slot 1 (enable then disable) - 0657:0F - - - Have the Silver Thief Statue in slot 2 (enable then disable) - 0658:0F - - - Have the Silver Thief Statue in slot 3 (enable then disable) - 0659:0F - - - Have the Silver Thief Statue in slot 4 (enable then disable) - 065A:0F - - - Have the Gold Thief Statue in slot 1 (enable then disable) - 0657:10 - - - Have the Gold Thief Statue in slot 2 (enable then disable) - 0658:10 - - - Have the Gold Thief Statue in slot 3 (enable then disable) - 0659:10 - - - Have the Gold Thief Statue in slot 4 (enable then disable) - 065A:10 - - - Have the Bronze Wizard Statue in slot 1 (enable then disable) - 0657:11 - - - Have the Bronze Wizard Statue in slot 2 (enable then disable) - 0658:11 - - - Have the Bronze Wizard Statue in slot 3 (enable then disable) - 0659:11 - - - Have the Bronze Wizard Statue in slot 4 (enable then disable) - 065A:11 - - - Have the Silver Wizard Statue in slot 1 (enable then disable) - 0657:12 - - - Have the Silver Wizard Statue in slot 2 (enable then disable) - 0658:12 - - - Have the Silver Wizard Statue in slot 3 (enable then disable) - 0659:12 - - - Have the Silver Wizard Statue in slot 4 (enable then disable) - 065A:12 - - - Have the Gold Wizard Statue in slot 1 (enable then disable) - 0657:13 - - - Have the Gold Wizard Statue in slot 2 (enable then disable) - 0658:13 - - - Have the Gold Wizard Statue in slot 3 (enable then disable) - 0659:13 - - - Have the Gold Wizard Statue in slot 4 (enable then disable) - 065A:13 - - - - Wolverine (USA) - - No enemies - ISISYU - - - Infinite lives - both players - GZEXAOVK - - - Mega-jump - AXXLNUIE - - - Claws use up no health - AAXGYLPA - - - Super speed - KYXUVUVN+GAUUELZA - - - Take less damage from bullets - ZAXLISAA+ZAEKAKAA - - - Start each new life as a berserker - AGNIZAAA - - - Start with 1 life - P1 - PEUSZALA - - - Start with 6 lives - P1 - TEUSZALA - - - Start with 9 lives - P1 - PEUSZALE - - - Start with 1 life - P2 - PEVIYALA - - - Start with 6 lives - P2 - TEVIYALA - - - Start with 9 lives - P2 - PEVIYALE - - - Start on stage 2 - P1 - PEXIZAAA - - - Start on stage 4 - P1 - LEXIZAAA - - - Start on stage 6 - P1 - IEXIZAAA - - - Start on stage 8 - P1 - YEXIZAAA - - - Start on stage 2 - P2 - PEKSYAAA - - - Start on stage 4 - P2 - LEKSYAAA - - - Start on stage 6 - P2 - IEKSYAAA - - - Start on stage 8 - P2 - YEKSYAAA - - - Infinite health - 00CD:1E - - - Infinite lives - 04DA:03 - - - - World Hero (Unl) [!] - - Hit anywhere - AASSVEIG+AGUTUYPL+AZUTSNNV+ETUTXYSG - - - - Wrath of the Black Manta (USA) (Rev A) - - Invincibility (blinking) - 0589:FA - - - Start on stage 2 - 054A:01 - - - Start on stage 3 - 054A:03 - - - Start on stage 4 - 054A:04 - - - Start on stage 5 - 054A:05 - - - - Wrath of the Black Manta (USA) - - Take no damage from most enemies - SXSLXUVK - - - Never die from falling off screen - SZVOKEVK - - - Mega-jump when stationary - GZUZSUSO - - - Start with extra energy - AEOAZTLE - - - Start with 1 life - AEOAYTZA - - - Start with 6 lives - IEOAYTZA - - - Start with 9 lives - AEOAYTZE - - - Invincibility (blinking) - 0589:FA - - - Start on stage 2 - 054A:01 - - - Start on stage 3 - 054A:03 - - - Start on stage 4 - 054A:04 - - - Start on stage 5 - 054A:05 - - - - Wrecking Crew (World) - - Invincibility - ATNKYZAZ - - - Infinite lives - P1 - SXGXGL - - - Infinite lives - P2 - SXIXZL - - - Annoying guy doesn't bother you - SZXILXSO+SXKILOSO - - - Start with Golden Hammer - VVUXGPSA - - - Start with 1 life - both players - PELXYP - - - Start with 10 lives - both players - PELXYO - - - Start with 15 lives - both players - YELXYO - - - Start with 250 lives - ENLXYO - - - - Wurm - Journey to the Center of the Earth! (USA) - - Infinite fuel - SZSGYNSE - - - Infinite shields and life - SXNGZTSA - - - Start on Act 2 - Dyna Crystal - ZEXITGPA - - - Start on Act 3 - Magma Falls - LEXITGPA - - - Start on Act 4 - Ziggy - GEXITGPA - - - Start on Act 5 - Dual Duel - IEXITGPA - - - - WWF King of the Ring (USA) - - Infinite health - both players - VZUUIVOO - - - Infinite health - P1 - 0168:BF - - - No health - P2 - 0194:00 - - - - WWF Wrestlemania (USA) - - Infinite health - P1 - OZXGNYEU+XGXKEYZE+SAXKOYVT - - - One hit drains all health - ENOGVIEP - - - Opponent is idle after a body slam - SXZTSO - - - Countdown starts on 3 - LAKTLLPA - - - 1 minute tournament rounds - PAXGXPLA - - - 6 minute tournament rounds - TAXGXPLA - - - 9 minute tournament rounds - PAXGXPLE - - - - WWF Wrestlemania Challenge (USA) - - Pin count extended to 9 seconds - ZEELLGGE - - - 10-count reduced to 5 seconds - TESGYOLA - - - All counts slower - IVNKGOGL - - - All counts faster - YONKGOGU - - - - WWF Wrestlemania Steel Cage Challenge (USA) - - P1 cannot lose (constant 1 count) - VXSASUVK - - - Infinite energy refills (press select when energy is low) - SUXIXNSO - - - 1 minute tournament rounds - PAXGXPLA - - - 6 minute tournament rounds - TAXGXPLA - - - 9 minute tournament rounds - PAXGXPLE - - - - Xenophobe (USA) - - Infinite health - both players - AAKIYNUT - - - Increase starting health - both players - LASIZOPA - - - More health - P1 - LAVILONY+AIVIIOGI - - - No health pick-ups allowed - SXNITVOO - - - Start on level 2 - TAKSAPYA - - - Start on level 3 - IAKSAPYA - - - Start on level 4 - GAKSAPYA - - - Start on level 5 - LAKSAPYA - - - Infinite health - P1 (one's digit) - 0753:09 - - - Infinite health - P1 (ten's digit) - 0752:0A - - - Infinite health - P1 (hundred's digit) - 0751:09 - - - Infinite health - P1 (thousand's digit) - 0750:09 - - - Infinite health - P2 (one's digit) - 0757:0B - - - Infinite health - P2 (ten's digit) - 0756:0B - - - Infinite health - P2 (hundred's digit) - 0755:09 - - - Infinite health - P2 (thousand's digit) - 0754:09 - - - Character modifier - Dr. Kwack - 0795:00 - - - Character modifier - Mr. Frogg - 0795:01 - - - Character modifier - Dr. Zordirz - 0795:02 - - - - Xevious - The Avenger (USA) - - Invincibility - SEKYKISZ - - - Infinite lives - SZLNZY - - - Hit anywere - AAOIUILP+AAXIOIIA+AVEVVUSL - - - Start with 1 life - PAZYOG - - - Start with 6 lives - TAZYOG - - - Start with 9 lives - PAZYOK - - - - Xexyz (USA) - - Immune to enemy bullets - OTNGGYSV - - - Immune to monsters - OTNGGTSV - - - Infinite lives - SZEXTKVK - - - Become a whirlwind on new life - VTOXAKSE - - - 1 life after continue - PAUXLILA - - - Start with 1 life - PAUZTZLA - - - Start with 6 lives - TAUZTZLA - - - Start with 9 lives - PAUZTZLE - - - Start with and keep foot-wing - AAOLPNAA - - - - Xybots (USA) (Proto) (Unl) - - Infinite lives and second shots - SUEYIUVS - - - Infinite Keys - both players - SZEPGEVS - - - Infinite money - both players - SUEAVOSO - - - Infinite Slow Energy Drain and Zap power - SZVVUOSO - - - Infinite Warning Arrows and Level Mappers - SXUULVSO - - - Infinite Enemy Mappers and Guard Mapper - OLSTEOOO - - - Start with 6 lives and 6 second shots - TTSVGPZP - - - Start with 3 Slow Energy Drain and 4 Zap power - P1 - GZSTZPZA - - - Start with 3 Slow Energy Drain and 4 Zap power - P2 - GZSTYPZP - - - Start with 6 Warning Arrows and Level Mappers - TTVTGPPZ - - - Start with 6 Enemy Mappers and have Guard Mapper - TPVVGPPA - - - Start with 99 Keys, $99 and 2,544,300 points - LVXVGGAA - - - Start with 4 extra Speed, extra Armor, extra Shot Speed, extra Shot Power and Wide Shot - GGUTAPAA - - - Start at last level - TLNTTPPA - - - - Yie Ar Kung-Fu (Japan) (Rev 1.4) - - Infinite health - SUOIUIVT - - - Infinite health (alt) - 00DB:00 - - - - Yie Ar Kung-Fu (Japan) (Rev 1.2) - - Invincible against punches and kicks - SZUIXISA - - - Tao does not throw fireballs - SXNVLTSA - - - Chen does not hit you with his chain - SXNTSASA - - - Lang does not throw shurikens - OZVVATEK - - - Bonus doesn't end when you're hit with a sword or fan - AVOSOVOZ - - - Infinite health - 00DB:00 - - - - Yo! Noid (USA) - - Invincibility - AVZUSZ - - - Invincibility (alt) - SZULPTAX - - - Infinite time - SXXLIGVG - - - Infinite lives - SXKTTUVK+SXKVPUVK - - - More magic from small scrolls - IAKUVGPA - - - Multi-mega-jumps - AEUGSKTZ - - - 1 continue - PAXSNZLA - - - 6 continues - TAXSNZLA - - - Start with 1 life - AUUIVPZL+AKUSOPZG - - - Start with 6 lives - IUUIVPZL+IKUSOPZG - - - Start with 9 lives - PUUIVPZU+PKUSOPZK - - - Start on stage 2 - ZEVSKPPA - - - Start on stage 4 - GEVSKPPA - - - Start on stage 6 - TEVSKPPA - - - Start on stage 8 - AEVSKPPE - - - Start on stage 10 - ZEVSKPPE - - - Start on stage 12 - GEVSKPPE - - - - Yoshi (USA) - - Short wait for next characters - GOUYPEAZ - - - Really short wait for next characters - ZEUYPEAZ - - - Really long wait for next characters - NNUYPEAX - - - Freeze characters for a short time (press Down) - AVSULYZA - - - Need only 1 Victory Egg to win - PAVAAPLA+PESTAZLA+PEXTZLLA - - - Need only 2 Victory Eggs to win - ZAVAAPLA+ZESTAZLA+ZEXTZLLA - - - - Young Indiana Jones Chronicles, The (USA) - - Infinite health - XVSEGPSE - - - Infinite lives - SZEOUGVG - - - Start with 2 - PEKSVGLA - - - Start with 7 lives - TEKSVGLA - - - Start with 10 lives - PEKSVGLE - - - - Ys II - Ancient Ys Vanished - The Final Chapter (Japan) - - Infinite HP - SXOVXISA - - - Infinite gold - SZXELISA+SZUAZISA - - - Lots of EXP - AEOSNSPE+AEXISSZE - - - Start with all equipment - YYKSKIPE - - - - Ys III - Wanderers from Ys (Japan).nes - - Hit anywhere - XTKXSAAV+XTNXUAAV+XTVZKAAV+XVOZXAAV - - - One hit kills - AAEZYYGA - - - - Yume Koujou Doki Doki Panic (Japan) [b] (FDS) - - Multi-jump - GZUEITEI - - - Invincibility - 0085:FA - - - Infinite coins - 062B:09 - - - Infinite sub-space time - 04B7:FA - - - Infinite magic carpet time - 00B9:FA - - - All characters can float - 04C9:FA - - - Multi-jump (alt) - 0099:00 - - - One hit kills on bosses - 0468:00 - - - Only 1 Cherry needed for Starman - 062A:04 - - - Only 1 big Radish needed for Stopwatch - 062C:04 - - - Receive small heart for every enemy defeated - 04AD:09 - - - Stopwatch always active - 04FF:FA - - - Start on World 2 - 0635:01 - - - Start on World 3 - 0635:02 - - - Start on World 4 - 0635:03 - - - Start on World 5 - 0635:04 - - - Start on World 6 - 0635:05 - - - Start on World 7 - 0635:06 - - - - Zanac (USA) - - Invincibility + Hit anywhere - ALSEGZEU+ATSEIZPL+SZOELXOO - - - Infinite lives - OXEENYVK - - - Start with Straight Crusher - PEOPAGAA - - - Start with Field Shutter - ZEOPAGAA - - - Start with the Circular - LEOPAGAA - - - Start with the Vibrator - GEOPAGAA - - - Start with the Rewinder - IEOPAGAA - - - Start with the Plasma Flash - TEOPAGAA - - - Start with rapid fire - YEOPAGAA - - - Start with 1 life - PEEKOLLA - - - Start with 6 lives - TEEKOLLA - - - Start with 9 lives - PEEKOLLE - - - Invincibility - 0764:00 - - - - Zelda II - The Adventure of Link (USA) - - Infinite health - XTLTILSV+XTLTTUGE - - - Almost infinite health - XTLTAL - - - Infinite magic - GXNAESON - - - Infinite magic (alt) - SXNASSSE - - - Infinite magic and health in battle - AEYSAU - - - Infinite lives - SZKGKXVK - - - Infinite Keys after obtaining one - SXVIKOVK - - - Keys not necessary to open doors - XVTIUO+XVTIXP - - - Gain 256 EXP when you defeat an enemy most of the time - XTSSTKSE - - - Gain more than 256 EXP for every EXP - PAVIIGAA - - - Don't lose EXP points while leveling up - SZVOUNSE+SZNPKNSE - - - Hit anywhere (press up if you get stuck at a Palace entrance) - ASXTGTEL - - - Multi-jump - SYUPAINY+OZUPISSX+UYUPTSIN+SAUPYIIE+IYUOAIAO+IAUOPIZA - - - Mega-jump - AZUOLIAL - - - Link can fly (hold A) - AAUOLIAL - - - Swap Shield spell for Fire spell - OYKEEVSA+NPKEOVVA - - - Swap Shield spell for Spell spell - LYKEEVSA+VAKEOVVE - - - Swap Shield spell for Fairy spell - LZKEEVSA+OPKEOVVA - - - Swap Shield spell for Life spell - IIKEEVSE+VAKEOVVE - - - Swap Shield spell for Thunder spell - VTKEEVSA+OPKEOVVA - - - Start with all spells - VIEXIVSU - - - Start with 1 life - PASKPLLA - - - Start with 6 lives - TASKPLLA - - - Start with 9 lives - PASKPLLE - - - Invincibility (disable when fighting your shadow) - 0518:03 - - - Infinite health (alt) - 0774:FF - - - Infinite magic (alt 2) - 0773:FF - - - Infinite lives (alt) - 0700:04 - - - Infinite Keys - 0793:09 - - - No enemies in overworld - 0086:00+0087:00+0088:00+0089:00 - - - Jump spell always on - 076F:02 - - - Max sword level - 0777:FF - - - Max magic level - 0778:FF - - - Max life level - 0779:FF - - - Have up/down thrust - 0796:FF - - - Have Shield spell - 077B:01 - - - Have Jump spell - 077C:01 - - - Have Life spell - 077D:01 - - - Have Fairy spell - 077E:01 - - - Have Fire spell - 077F:01 - - - Have Reflect spell - 0780:01 - - - Have Spell spell - 0781:01 - - - Have Thunder spell - 0782:01 - - - Max magic jars - 0783:08 - - - Have Boots - 0788:01 - - - Have Candle - 0785:01 - - - Have Cross - 078A:01 - - - Have Flute - 0789:01 - - - Have Glove - 0786:01 - - - Have Hammer - 078B:01 - - - Have Key - 078C:01 - - - Have Raft - 0787:01 - - - Can enter final palace - 0794:00 - - - One hit kill on final boss - 00C2:01 - - - - Zen - Intergalactic Ninja (USA) - - Infinite health - GZNLYUSE - - - Infinite lives - SZSPGTVG+SZOZYTVG - - - 9 lives allowed in options menu - ZAELNGIE - - - Slower timer - NYNXVTOE - - - Faster timer - YTNXVTOE - - - Even faster timer - YINXVTOE - - - Zen does increased damage - isometric stages - AEUAOLGE - - - Zen does mega damage - isometric stages - GOUAOLGA - - - Jab attack does more damage - horizontal stages - AAKXUIGE - - - Mega jab attack damage - horizontal stages - GPKXUIGA - - - Fewer hits in shield - PAEUGGLA+PAXUNTLA - - - Double hits in shield - TAEUGGLA+TAXUNTLA - - - Triple hits in shield - PAEUGGLE+PAXUNTLE - - - - Zoda's Revenge - StarTropics II (USA) - - Invincibility - VZKZAOSV - - - Infinite lives - SXKVPKVK - - - Infinite weapons - SLUZTSVS - - - Hit anywhere - GGEUIKOU+KLEUYGAY+UAEUTGKU - - - Walk faster - battle mode - ZAUXKAPA - - - Jump faster and further - battle mode - PAUXKAAA - - - Throw Tink's axe further - AVKULAAG - - - 1 star gives energy - PASZPTIA+PASZITIA - - - Throw Tink's Axe faster (can't be combined with other Axe code) - OYUUAAPG - - - Tink's Axe splits into 3 little ones when thrown (can't be combined with other Axe code) - LGUUAAPG - - - Throw Tink's splitting-Axe faster (can't be combined with other Axe code) - UYUUAAOY - - - Start with 1 life (Only effective in battle mode on first life) - PAVTTZLA - - - Start with 6 lives (Only effective in battle mode on first life) - TAVTTZLA - - - Start with 9 lives (Only effective in battle mode on first life) - PAVTTZLE - - - - Zombie Nation (USA) - - Infinite health - AVXTEISZ - - - Infinite continues - 053B:05 - - - - Zunou Senkan Galg (Japan) - - Invincibility - ATEEIVAT+ATSKOYSZ - - - Infinite lives - OXNEAAVK - - - - 2020 Super Baseball (USA) - - Have lots of money - P1 - 7F80CA:63+7F80CC:63+7F80CB:63 - - - Have 9 points - P1 - 7FC13B:09 - - - Have no outs - 7FC138:00 - - - Have no strikes - 7FC136:00 - - - Have no balls - 7FC137:00 - - - - 3 Ninjas Kick Back (USA) - - Invincibility - EDEA-1F6B+2DBF-4F6F - - - Infinite lives - C235-C768 - - - Infinite health - 7E0A2A:06 - - - Infinite lives (alt) - 7E1E51:14 - - - Infinite time - 7E1E6B:14 - - - Infinite Bombs - 7E1E63:14+7E1E65:14 - - - Max coins - 7E1E5B:14+7E1E59:14 - - - Have throwing weapon - 7E1E5B:14+7E1E59:14 - - - Less enemies to pass trials (disable then enable) - 7E1FE0:02 - - - - 7th Saga, The (USA) - - Human fighter has 50 HP - 7417-87AD - - - Human fighter has 100 HP - 1017-87AD - - - Human fighter has 200 HP - A617-87AD - - - Tetujin has 50 HP - 7416-8FAD - - - Tetujin has 100 HP - 1016-8FAD - - - Tetujin has 200 HP - A616-8FAD - - - Dwarf has 50 HP - 7419-8D0D - - - Dwarf has 100 HP - 1019-8D0D - - - Dwarf has 200 HP - A619-8D0D - - - Human mage has 50 HP - 741B-840D - - - Human mage has 100 HP - 101B-840D - - - Human mage has 200 HP - A61B-840D - - - Elf has 50 HP - 7411-8DAD - - - Elf has 100 HP - 1011-8DAD - - - Elf has 200 HP - A611-8DAD - - - Demon has 50 HP - 741C-84AD - - - Demon has 100 HP - 101C-84AD - - - Demon has 200 HP - A61C-84AD - - - Alien has 50 HP - 7415-8F0D - - - Alien has 100 HP - 1015-8F0D - - - Alien has 200 HP - A615-8F0D - - - Human fighter has 20 power - F010-8DAD - - - Tetujin has 20 power - F016-84AD - - - Dwarf has 20 power - F019-8F0D - - - Human mage has 20 power - F01B-870D - - - Elf has 20 power - F011-8FAD - - - Demon has 20 power - F01C-87AD - - - Alien has 20 power - F015-840D - - - Human fighter has 30 MP - F310-8D0D - - - Tetujin has 30 MP - F316-840D - - - Dwarf has 30 MP - F319-8DAD - - - Human mage has 30 MP - F31B-84AD - - - Elf has 30 MP - F311-8F0D - - - Demon has 30 MP - F31C-870D - - - Alien has 30 MP - F315-8FAD - - - Human fighter has 20 speed - F010-8F6D - - - Tetujin has 20 speed - F016-876D - - - Dwarf has 20 speed - F019-84DD - - - Human mage has 20 speed - F01C-8DDD - - - Elf has 20 speed - F011-846D - - - Demon has 20 speed - F018-8D6D - - - Alien has 20 speed - F015-87DD - - - Enemies aren't generated - 18F6-EDDF - - - Touching an enemy doesn't cause a battle - 18F7-EF67 - - - Sell an item for maximum gold - 6D87-540D - - - Get 999 Max HP when you use a 'V Seed' - DDC1-7FBD - - - Get 999 Max MP when you use an 'M Seed' - DDC2-7F2D - - - Get 999 Power when you use a 'P Seed' - DDC0-54FD - - - Get 999 Guard when you use a 'Pr Seed' - DDC8-549D - - - Get 255 Magic when you use an 'I Seed' - DDC4-8FBD - - - Get 255 Speed when you use an 'A Seed' - DDCB-8DBD - - - Human fighter starts with Sword of Anger - 1B10-870D - - - Human fighter starts with Sword of Courage - 1A10-870D - - - Human fighter starts with Sword of Fire - 1E10-870D - - - Dwarf starts with Sword of Nature - 1C19-87AD - - - Dwarf starts with Sword of Courage - 1A19-87AD - - - Dwarf starts with Sword of Fire - 1E19-87AD - - - Human mage starts with petrified staff - 631C-8FAD - - - Human mage starts with Rod of Tide - 6E1C-8FAD - - - Elf starts with petrified staff - 6315-8D0D - - - Elf starts with Staff of Brilliance - BF15-8D0D - - - Demon starts with Sword of Anger - 1B18-840D - - - Demon starts with Sword of Despair - 1218-840D - - - Demon starts with Sword of Fire - 1E18-840D - - - Start with 297 gold - 4ABD-84AD+DFBD-87DD - - - Start with 62,708 gold - E0BD-84AD+DFBD-87DD - - - Start with 2000 gold - 2DBD-84AD+D5BD-87DD - - - - A.S.P. - Air Strike Patrol (USA) - - No damage from enemy fire - C22A-CD01+C534-CDD0 - - - Infinite fuel - C2B1-3765 - - - Infinite flares - C237-CFA1 - - - Infinite missles for F-15 Strike Eagle - C2B8-4DA9 - - - Infinite missles for A-10 Thunderbolt II - C2B7-C4D9 - - - - Aaahh!!! Real Monsters (USA) - - Invincibility - 62BE-0767 - - - Infinite health - C282-04A7 - - - Infinite Fish - C28E-DD67 - - - Infinite Books - 82AA-0F04 - - - Infinite Garbage - DD8E-4DD7 - - - Infinite Scares - DDAA-1464 - - - Infinite lives - DDC0-3FDF - - - Get nothing for each Trash Bag - DDC8-0FAF - - - Get 20 for each Trash Bag - 4DC8-0FAF - - - Get 100 for each Trash Bag - 88C8-0FAF - - - 1-ups worth nothing - DDCE-6F6D - - - 1-ups worth 3 - D7CE-6F6D - - - 1-ups worth 5 - D9CE-6F6D - - - Monster books are worth nothing - DDCA-AF0D - - - Monster books are worth 2 - D4CA-AF0D - - - Monster books are worth 10 - FDCA-AF0D - - - Most health power-ups worth nothing - DDCB-A7DD - - - Most health power-ups worth more - D4CB-A7DD - - - Start with 1 life - DFC7-17FC - - - Start with 10 lives - DBC7-17FC - - - Start with 50 lives - 0BC7-17FC - - - Start with 0 special scares - DD69-37BF - - - Start with 10 special scares - FD69-37BF - - - Start with 20 special scares - 4D69-37BF - - - Infinite health (alt) - 7E0B7A:0D - - - Infinite lives (alt) - 7E13C8:09 - - - - ABC Monday Night Football (USA) - - Always 1st down - 7E119C:01 - - - 1 yard to go for 1st down - 7E119D:01 - - - Infinite time - minutes - 7E11A6:09 - - - Infinite time - seconds - 7E11A6:09 - - - Have 0 points - Team 1 - 7E1182:00 - - - Have 0 points - Team 2 - 7E118C:00 - - - Have 7 points - Team 1 - 7E1182:07 - - - Have 7 points - Team 2 - 7E118C:07 - - - Have 14 points - Team 1 - 7E1182:14 - - - Have 14 points - Team 2 - 7E118C:14 - - - Have 21 points - Team 1 - 7E1182:21 - - - Have 21 points - Team 2 - 7E118C:21 - - - Have 99 points - Team 1 - 7E1182:99 - - - Have 99 points - Team 2 - 7E118C:99 - - - - ACME Animation Factory (USA) - - Infinite time - game mode - 7E1BA4:3C - - - - Acrobat Mission (Japan) - - Invincibility - 3CC2-A766 - - - Infinite lives - 82C2-64DB - - - Invincibility (alt) - 7E042A:30 - - - Infinite lives (alt) - 7E0412:04 - - - Infinite lives (alt 2) - 7E0412:0B - - - Most Powerful gun [00-10] (don't pick any weapon icons) - 7E0424:?? - - - Score Modifier [00-99] - 7E02B3:??+7E02B4:?? - - - - Action Pachio (Japan) - - Invincibility - ED60-1FC9 - - - Infinite health - C96B-30DD - - - Infinite time - C922-CFF3 - - - Infinite lives - C963-4D9A - - - Infinite health (alt) - 7E00CC:0A - - - Infinite lives (alt) - 7E00C8:09 - - - Infinite Coins - 7E00C2:99 - - - Infinite time (alt) - 7E00C0:63+7E00C1:63 - - - Infinite continue time - 7E1E12:09 - - - Max score - 7E00C4:99+7E00C5:99+7E00C6:99+7E00C7:99 - - - - ActRaiser (USA) - - Invincibility after one hit - 1DBB-D4D7 - - - Infinite health in action sequences - 2264-6FD4 - - - Infinite MP (Magic Points) - C9BD-6467 - - - Infinite SP (Spell Points) - CEA5-6DA3 - - - Infinite time - C98B-D468 - - - Infinite time (alt) - DD8B-D4D8 - - - Faster timer - FD86-D4A8 - - - Slower timer - 9D86-D4A8 - - - Hit anywhere continually - 4062-6F64+4063-6D04+4063-6F64+6D68-6464+6D6A-64D4 - - - Monster lairs are always empty - B38B-07D3 - - - Towns always able to grow - DD60-07A2 - - - Unlock professional mode - DD67-D7AD - - - Have Fire magic and 24 MP in professional mode - 69C4-AF6C+62C4-A7DC+CBC4-A46C+DFC4-A4AC - - - Have Stardust and 24 MP in professional mode - 69C4-AF6C+62C4-A7DC+CBC4-A46C+D4C4-A4AC - - - Have Aura magic and 24 MP in professional mode - 69C4-AF6C+62C4-A7DC+CBC4-A46C+D7C4-A4AC - - - Start with 1/2 health (first game only) - D081-6DD8 - - - Infinite health in action sequences (alt) - 7E001D:08 - - - Infinite health in sim mode - 7E0286:08 - - - Infinite magic in action sequences - 7E0021:05 - - - Infinite time (alt 2) - 02BC98:00 - - - Level 99 - 7E0291:63 - - - One hit kills on bosses - 7E0BCC:00 - - - Have Aura magic - 7E02AC:03 - - - Have Fire magic - 7E02AC:01 - - - Have Stardust magic - 7E02AC:02 - - - Have Sword Shot - 7E00E4:80 - - - Have Light magic - 7E02AC:04 - - - Slot 1 - Source of Life - 7E02A2:05 - - - Slot 1 - Source of Magic - 7E02A2:06 - - - Slot 1 - Loaf of Bread - 7E02A2:07 - - - Slot 1 - Wheat - 7E02A2:08 - - - Slot 1 - Herb - 7E02A2:09 - - - Slot 1 - Bridge - 7E02A2:0A - - - Slot 1 - Harmonious Music - 7E02A2:0B - - - Slot 1 - Ancient Tablet - 7E02A2:0C - - - Slot 1 - Magic Skull - 7E02A2:0E - - - Slot 1 - Sheep's Fleece - 7E02A2:0F - - - Slot 1 - Bomb - 7E02A2:10 - - - Slot 1 - Compass - 7E02A2:13 - - - Slot 1 - Strength of Angel - 7E02A2:14 - - - Slot 2 - Source of Life - 7E02A3:05 - - - Slot 2 - Source of Magic - 7E02A3:06 - - - Slot 2 - Loaf of Bread - 7E02A3:07 - - - Slot 2 - Wheat - 7E02A3:08 - - - Slot 2 - Herb - 7E02A3:09 - - - Slot 2 - Bridge - 7E02A3:0A - - - Slot 2 - Harmonious Music - 7E02A3:0B - - - Slot 2 - Ancient Tablet - 7E02A3:0C - - - Slot 2 - Magic Skull - 7E02A3:0E - - - Slot 2 - Sheep's Fleece - 7E02A3:0F - - - Slot 2 - Bomb - 7E02A3:10 - - - Slot 2 - Compass - 7E02A3:13 - - - Slot 2 - Strength of Angel - 7E02A3:14 - - - Slot 3 - Source of Life - 7E02A4:05 - - - Slot 3 - Source of Magic - 7E02A4:06 - - - Slot 3 - Loaf of Bread - 7E02A4:07 - - - Slot 3 - Wheat - 7E02A4:08 - - - Slot 3 - Herb - 7E02A4:09 - - - Slot 3 - Bridge - 7E02A4:0A - - - Slot 3 - Harmonious Music - 7E02A4:0B - - - Slot 3 - Ancient Tablet - 7E02A4:0C - - - Slot 3 - Magic Skull - 7E02A4:0E - - - Slot 3 - Sheep's Fleece - 7E02A4:0F - - - Slot 3 - Bomb - 7E02A4:10 - - - Slot 3 - Compass - 7E02A4:13 - - - Slot 3 - Strength of Angel - 7E02A4:14 - - - Slot 4 - Source of Life - 7E02A5:05 - - - Slot 4 - Source of Magic - 7E02A5:06 - - - Slot 4 - Loaf of Bread - 7E02A5:07 - - - Slot 4 - Wheat - 7E02A5:08 - - - Slot 4 - Herb - 7E02A5:09 - - - Slot 4 - Bridge - 7E02A5:0A - - - Slot 4 - Harmonious Music - 7E02A5:0B - - - Slot 4 - Ancient Tablet - 7E02A5:0C - - - Slot 4 - Magic Skull - 7E02A5:0E - - - Slot 4 - Sheep's Fleece - 7E02A5:0F - - - Slot 4 - Bomb - 7E02A5:10 - - - Slot 4 - Compass - 7E02A5:13 - - - Slot 4 - Strength of Angel - 7E02A5:14 - - - Slot 5 - Source of Life - 7E02A6:05 - - - Slot 5 - Source of Magic - 7E02A6:06 - - - Slot 5 - Loaf of Bread - 7E02A6:07 - - - Slot 5 - Wheat - 7E02A6:08 - - - Slot 5 - Herb - 7E02A6:09 - - - Slot 5 - Bridge - 7E02A6:0A - - - Slot 5 - Harmonious Music - 7E02A6:0B - - - Slot 5 - Ancient Tablet - 7E02A6:0C - - - Slot 5 - Magic Skull - 7E02A6:0E - - - Slot 5 - Sheep's Fleece - 7E02A6:0F - - - Slot 5 - Bomb - 7E02A6:10 - - - Slot 5 - Compass - 7E02A6:13 - - - Slot 5 - Strength of Angel - 7E02A6:14 - - - Slot 6 - Source of Life - 7E02A7:05 - - - Slot 6 - Source of Magic - 7E02A7:06 - - - Slot 6 - Loaf of Bread - 7E02A7:07 - - - Slot 6 - Wheat - 7E02A7:08 - - - Slot 6 - Herb - 7E02A7:09 - - - Slot 6 - Bridge - 7E02A7:0A - - - Slot 6 - Harmonious Music - 7E02A7:0B - - - Slot 6 - Ancient Tablet - 7E02A7:0C - - - Slot 6 - Magic Skull - 7E02A7:0E - - - Slot 6 - Sheep's Fleece - 7E02A7:0F - - - Slot 6 - Bomb - 7E02A7:10 - - - Slot 6 - Compass - 7E02A7:13 - - - Slot 6 - Strength of Angel - 7E02A7:14 - - - Slot 7 - Source of Life - 7E02A8:05 - - - Slot 7 - Source of Magic - 7E02A8:06 - - - Slot 7 - Loaf of Bread - 7E02A8:07 - - - Slot 7 - Wheat - 7E02A8:08 - - - Slot 7 - Herb - 7E02A8:09 - - - Slot 7 - Bridge - 7E02A8:0A - - - Slot 7 - Harmonious Music - 7E02A8:0B - - - Slot 7 - Ancient Tablet - 7E02A8:0C - - - Slot 7 - Magic Skull - 7E02A8:0E - - - Slot 7 - Sheep's Fleece - 7E02A8:0F - - - Slot 7 - Bomb - 7E02A8:10 - - - Slot 7 - Compass - 7E02A8:13 - - - Slot 7 - Strength of Angel - 7E02A8:14 - - - Slot 8 - Source of Life - 7E02A9:05 - - - Slot 8 - Source of Magic - 7E02A9:06 - - - Slot 8 - Loaf of Bread - 7E02A9:07 - - - Slot 8 - Wheat - 7E02A9:08 - - - Slot 8 - Herb - 7E02A9:09 - - - Slot 8 - Bridge - 7E02A9:0A - - - Slot 8 - Harmonious Music - 7E02A9:0B - - - Slot 8 - Ancient Tablet - 7E02A9:0C - - - Slot 8 - Magic Skull - 7E02A9:0E - - - Slot 8 - Sheep's Fleece - 7E02A9:0F - - - Slot 8 - Bomb - 7E02A9:10 - - - Slot 8 - Compass - 7E02A9:13 - - - Slot 8 - Strength of Angel - 7E02A9:14 - - - - ActRaiser 2 (USA) - - Infinite health from most enemies - C2B0-CF07 - - - Infinite health from some ground hazards - C2B2-C7D3 - - - Infinite time - DD33-476F - - - Infinite MP (must have one to cast) - 3C65-CFA8 - - - Infinite lives - DD67-4468 - - - Hit anywhere - 40B5-17A4+40B6-14A4+40BB-17D4+40BC-1DA4 - - - One hit kills - DDB3-C764 - - - Small magic power-up adds 3 instead of 1 - D7C0-37A7 - - - Small magic power-up adds 5 - D9C0-37A7 - - - Small magic power-up adds 9 - DBC0-37A7 - - - Large magic power-up adds 1 instead of 3 - DFC9-3407 - - - Large magic power-up adds 5 - D9C9-3407 - - - Large magic power-up adds 9 - DBC9-3407 - - - Small health power-ups add 1 instead of 2 - DFC7-3D67 - - - Small health power-ups add 4 - D0C7-3D67 - - - Small health power-ups add 15 - F9C7-3D67 - - - Small health power-ups heal completely - F0C7-3D67 - - - Medium health power-ups add 2 instead of 5 - D4C9-3FD7 - - - Medium health power-ups add 8 - D6C9-3FD7 - - - Medium health power-ups add 15 - F9C9-3FD7 - - - Medium health power-ups heal completely - F0C9-3FD7 - - - Large health power-ups add 2 instead of 10 - D4C7-3FA7 - - - Large health power-ups add 5 - D0C7-3FA7 - - - Large health power-ups add 15 - F9C7-3FA7 - - - Large health power-ups heal completely - F0C7-3FA7 - - - Start with 3 lives on Easy - D727-4DD1 - - - Start with 10 lives on Easy - FD27-4DD1 - - - Start with 50 lives on Easy - 9D27-4DD1 - - - Start with 1 life on Normal - DF27-4D61 - - - Start with 5 lives on Normal - D927-4D61 - - - Start with 10 lives on Normal - FD27-4D61 - - - Start with 50 lives on Normal - 9D27-4D61 - - - Start with 1 life on Hard - DF27-4FD1 - - - Start with 5 lives on Hard - D927-4FD1 - - - Start with 10 lives on Hard - FD27-4FD1 - - - Start with 50 lives on Hard - 9D27-4FD1 - - - Start with 2 MP on Easy - D484-1F66 - - - Start with 7 MP on Easy - D584-1F66 - - - Start with 9 MP on Easy - DB84-1F66 - - - Start with 1 MP on Normal or Hard - DF8F-1766 - - - Start with 5 MP on Normal or Hard - D98F-1766 - - - Start with 7 MP on Normal or Hard - D58F-1766 - - - Start with 9 MP on Normal or Hard - DB8F-1766 - - - Start with 1/2 health - DC8F-1F06 - - - Start with 3/4 health - DE8F-1F06 - - - Invincibility (blinking) - 7F205E:18 - - - Infinite health (alt) - 7E091D:16 - - - Infinite time (alt) (disable at end of level) - 7E094D:63 - - - - Addams Family, The (USA) - - Invincibility - 2DA7-670D - - - Infinite health - 3CA7-A467 - - - Infinite health (alt) - 1DA7-A4A7 - - - Infinite health (alt 2) - C9A7-A4A7 - - - Infinite lives - DDA1-A4A7 - - - Infinite lives (alt) - C9A1-A7D7 - - - Double-jump - DD87-0FA7 - - - Each $ worth 5 - D9CF-DDAF - - - Each $ worth 10 - FDCF-DDAF - - - Each $ worth 25 - 49CF-DDAF - - - Have Fezi-copter - 6DAC-6FDD - - - Start with and keep Fezi-copter (disable after defeating a boss, land before password screen) - 3CAD-A46D+60BA-6704 - - - Start with 1 heart - DF61-0F0D+DF61-0F6D - - - Start with 3 hearts - D761-0F0D+D761-0F6D - - - Start with 4 hearts - D061-0F0D+D061-0F6D - - - Start with 5 hearts - D961-0F0D+D961-0F6D - - - Start with 1 life - DFB8-6F04 - - - Start with 3 lives - D7B8-6F04 - - - Start with 9 lives - DBB8-6F04 - - - Start with 20 lives - 4DB8-6F04 - - - Start with 50 lives - 9DB8-6F04 - - - Start with 99 lives - BBB8-6F04 - - - Infinite health and max hearts - 7E00C3:05 - - - Always throw Balls - 7E00EF:01 - - - Have Fezi-copter (alt) - 7E0064:FF - - - Have Foil (Sword) - 7E00EE:01 - - - - Addams Family, The - Pugsley's Scavenger Hunt (USA) - - Infinite health - 3CCC-446D - - - Infinite hearts - 3CCC-446D - - - Infinite lives - DDB6-1FA7 - - - Each $ worth 5 - D9C9-476D - - - Each $ worth 25 - 49C9-476D - - - Higher jump - 3BA5-37D4+D9A5-3704 - - - Super-jump - 3BA5-37D4+D5A5-3704 - - - Mega-jump - 3BA5-37D4+DBA5-3704 - - - Longer invulnerability time after being hit - 5EC8-4DDD - - - Shorter invulnerability time after being hit - D6C8-4DDD - - - Get 0 lives for each $100 and 1-Up - DDB0-C767 - - - Get 2 lives for each $100 and 1-Up - D4B0-C767 - - - Start with 1 heart (don't edit hearts in options menu) - DDED-D76D - - - Start with 2 hearts (don't edit hearts in options menu) - DFED-D76D - - - Start with 5 hearts (don't edit hearts in options menu) - D0ED-D76D - - - Start with 4 lives (don't edit lives in options menu) - DDED-D40D - - - Start with 16 lives (don't edit lives in options menu) - DBED-D40D - - - Start with 64 lives (don't edit lives in options menu) - 7DED-D40D - - - Infinite health (alt) - 7E0095:03 - - - Infinite lives (alt) - 7E004D:09 - - - Infinite Cash - 7E004E:99 - - - - Addams Family Values (USA) (En,Fr,De) - - Infinite health against enemies - FFBD-C767 - - - Infinite health against everything - 3C8F-C40D - - - Infinite Small Rocks - DD24-3D0F - - - Infinite Blue Marbles - DD2C-C7AF - - - Infinite Magic Seeds - DD22-CF0F - - - Infinite Swamp Slime - DD2E-C4AF - - - Infinite cookies - 8E2A-1D6D - - - Start with full skull meter - FA62-3F0D - - - Start with all items - EE6C-320D - - - Have Amulet of True Sight - 7EE9FC:FF - - - Have Big Book of Bisquits - 7EE9F0:FF - - - Have Black Beetle Cookies - 7EE9E0:FF+7EE9E4:FF - - - Have Black Egg - 7EEA05:FF - - - Have Black Rose - 7EE9FA:FF - - - Have Bone Spoon - 7EE9F7:FF - - - Have Book of Flying - 7EE9F9:FF - - - Have Candle - 7EE9F6:FF - - - Have Clyde's Cookie Compendium - 7EE9EF:FF - - - Have Crumble Cookies - 7EE9E2:FF+7EE9E6:FF - - - Have Crusty Cookies - 7EE9E1:FF+7EE9E5:FF - - - Have Dragon Belch Cookies - 7EE9DF:FF+7EE9E3:FF - - - Have Firefly - 7EEA03:FF - - - Have Gold Coin - 7EEA06:FF - - - Have Green Key - 7EE9D8:FF - - - Have Greenhouse Key - 7EE9D7:FF - - - Have Headless Teddy - 7EE9F4:FF - - - Have Iron Key - 7EE9DE:FF - - - Have Jewelled Key - 7EE9DB:FF - - - Have Journal - 7EE9F2:FF - - - Have Large Vine - 7EEA02:FF - - - Have Lurch's Bowling Ball - 7EEA04:FF - - - Have Magnet - 7EE9FF:FF - - - Have Max's Munch Manual - 7EE9F1:FF - - - Have Money - 7E004E:63 - - - Have Musical Box - 7EE9FB:FF - - - Have Plant Food - 7EE9EA:FF - - - Have Portal Potion - 7EE9E8:FF - - - Have Pumpkin - 7EE9F3:FF - - - Have Red Potion - 7EE9E7:FF - - - Have Sack of Gold - 7EE9F5:FF - - - Have Slimming Potion - 7EE9E9:FF - - - Have Shockwave - 7EE9FD:FF - - - Have Skull Rattle - 7EE9F8:FF - - - Have Skull Key - 7EE9D9:FF - - - Have Spider Key - 7EE9DD:FF - - - Have Spider's Eye - 7EE9FE:FF - - - Have Stone Button - 7EEA01:FF - - - Have Stone Key - 7EE9DC:FF - - - Have Stone Twig Key - 7EE9DA:FF - - - Have Strange Black Cube - 7EEA00:FF - - - - Advanced Dungeons & Dragons - Eye of the Beholder (USA) - - Infinite HP - 8285-6D2C+82DE-049B - - - No waiting to hit again - 828D-A798 - - - One hit kills (works for enemies also) - CBAA-A726+3CA2-AD96 - - - Pick a lawful, human male fighter and he will be at Level 8 - D68B-A474 - - - Pick a lawful, human male fighter and he will be at level 6 - D18B-A474 - - - 999,999 EXP 1st class - 7E0533:3F+7E0534:42+7E0535:0F - - - - Adventures of Batman & Robin, The (USA) - - Invincibility (except after being grabbed) - 2DC7-1DAD - - - Infinite health - C982-4F0D - - - Infinite health (alt) - DD8A-4D6D - - - Get full health from hearts - 466B-4494 - - - Infinite Stars - C9A1-34AF - - - Infinite Spray Gun ammo - C9A5-34DF - - - Infinite Plastic Explosives - C9AB-3D6F - - - Infinite Smoke Bombs - C9A6-3F0F - - - Infinite Missiles - DDA1-34AF - - - Infinite Bombs - DDAB-3D6F - - - Infinite lives - C988-340D - - - Hit anywhere - C9B8-349A+C9BD-4FB2+DDBB-34BA+DDC6-44AF+DDB3-3F2A+DDE9-4D02 - - - Moon-jump - 4DAF-14DF - - - Super-jump - E6C7-34DF - - - Move slower - DD8D-C765+EE8F-CDD5 - - - Move faster - D08D-C765+E88F-CDD5 - - - Move even faster - D58D-C765+E68F-CDD5 - - - Moon-walk - E38D-C765+DF8F-CDD5 - - - Moon-walk faster - E88D-C765+D08F-CDD5 - - - Moon-walk even faster - E68D-C765+E58F-CDD5 - - - No credits - DD86-4D19 - - - Don't start with any Explosives and Smoke Bomb ammo - DDBE-3F0F - - - Don't start with any Stars and Spray Gun ammo - DDB3-376F - - - Start with 25 Stars and Spray Gun ammo - FBB3-376F - - - Start with 50 Stars and Spray Gun ammo - 77B3-376F - - - Start with 25 Explosives and Smoke Bomb ammo - FBBE-3F0F - - - Start with 50 Explosives and Smoke Bomb ammo - 77BE-3F0F - - - Start with 9 lives - not on easy mode - DB86-4FC9 - - - Start with 6 lives - not on easy mode - D186-4FC9 - - - Start with 1 life - not on easy mode - DD86-4FC9 - - - Start with 9 credits - DB86-4D19 - - - Start with 6 credits - D186-4D19 - - - Infinite health (alt 2) - 7E0098:28 - - - Infinite item #3 - 7E00A0:09 - - - Infinite item #4 - 7E00A2:09 - - - Infinite item #5 - 7E00A4:09 - - - Infinite item #6 - 7E00A6:09 - - - - Adventures of Dr. Franken, The (USA) - - Invincibility - 3CBB-CDD7 - - - Health power-ups give a full health bar - D3A0-1404+62A5-1464 - - - Infinite health (glitchy) - C2BB-4F0F+C2BB-44DF - - - Infinite time - C220-C7A4 - - - Infinite lives - C2B9-C4AD - - - Infinite Power Balls - 3CB5-14AF - - - Infinite Freeze - 3CBB-1F0F - - - Infinite Fire - 3CBB-1D0F - - - Infinite Lightning - 3CB5-1FAF - - - - Adventures of Kid Kleets, The (USA) (En,Fr,Es) - - Invincibility - 1DA6-14A0 - - - Infinite time - C26A-3709 - - - Infinite health - C2A6-1700 - - - Infinite lives - C282-34A1 - - - Hit anywhere - DDA0-476A+DDA9-4F6A - - - Moon jump - 5C88-1D09+7D88-1DA9+DD83-17A9 - - - - Adventures of Rocky and Bullwinkle and Friends, The (USA) - - Invincibility - 2DCA-19E4+EDCA-1554 - - - Infinite chances - C28C-1F44 - - - Infinite lives - C2CE-CF61 - - - Infinite ammo - C2CF-CF01 - - - Infinite health - C2CF-308D - - - Infinite continues - C2E3-47C6 - - - Don't lose ammo when you die - C2C9-35ED - - - Don't lose collected flags when you die - C2C7-C18D - - - 1-Up with every flag collected - DFCA-1761 - - - - Adventures of Yogi Bear (USA) - - Infinite health - C2CD-1404 - - - Infinite lives - C269-47DD - - - - Aero Fighters (USA) - - Invincibility - 82C2-4D64 - - - Infinite lives - both players - 8229-37A0 - - - Infinite Bombs for American F-18 - P1 - 8237-47A1 - - - Infinite Bombs for Japanese FSX - P1 - 8237-47A9 - - - Infinite Bombs for Swedish AJ-37 - P1 - 8237-1D09 - - - Infinite Bombs for British AV-8 - P1 - 8237-17A9 - - - Infinite Bombs for American F-15 - P2 - 823E-3D60 - - - Infinite Bombs for Japanese F-15 - P2 - 823A-4D09 - - - Infinite Bombs for Swedish JAS-39 - P2 - 8239-1FD9 - - - Infinite Bombs for British IDS - P2 - 823D-C769 - - - Don't lose power-ups when you die - both players - 8229-37D0 - - - Hit anywhere + one hit kills - 40CA-14DD+40CA-17AD+40C2-1FDD+40C2-14DD+40C2-17DD+6DC5-1F0D+6DCB-1DAD - - - One hit kills - 6DCB-1DAD - - - Infinite lives (alt) - 7FB78C:02 - - - Max Cannon power - 7FB794:03 - - - Infinite Bombs / Specials - 7FB790:02 - - - - Aero the Acro-Bat (USA) - - Infinite health from most enemies - 3CED-3DDC - - - Start with more health - 1A27-4D03 - - - Infinite time - DDEC-146A - - - Infinite lives - DD6B-37AF - - - Start with 19 lives - 5D68-4FDD - - - Infinite continues - C26E-3724 - - - Each star platform is worth 4 - D034-C7AD - - - - Aero the Acro-Bat 2 (USA) - - Invincibility - 2DB0-4D6D - - - Infinite health - A287-CFAE - - - Almost infinite health - C287-CFAE - - - Infinite lives - C26C-4D0F - - - Infinite Stars - C227-4DDE - - - Infinite Shots - DD24-476E - - - Stars worth 3 - D7C8-17D3 - - - Stars worth 5 - D9C8-17D3 - - - Stars worth 7 - D5C8-17D3 - - - Double Drill icon lasts 99 seconds - BBC2-C463 - - - Double Drill icon lets you drill 4 times instead of 2 - D0C2-CD03 - - - Double Drill icon lets you drill 9 times instead of 2 - DBC2-CD03 - - - Can drill 5 times in the air until you pick-up a drill icon - D936-4DF1 - - - Can drill 9 times in the air until you pick-up a drill icon - DB36-4DF1 - - - Drill as many times as you want without hitting the ground - C26E-4F03 - - - Move faster - D468-CDAA+E26A-CD0A - - - Move even faster - D768-CDAA+EA6A-CD0A - - - Jump higher - FD67-3DD2 - - - Super-jump when standing still - E66E-4F62+E661-C762 - - - Flying icon worth 99 seconds of flight time - BBC3-3D63 - - - Start each life with max health - D939-14F1 - - - - Aerobiz (USA) - - In scenario 1, Tokyo starts with $649,280,000 - DDA6-0DFD - - - In scenario 1, Tokyo starts with $7,202,880,000 - D9A6-0DFD - - - In scenario 1, Beijing starts with $420,160,000 - 94A6-0D2D - - - In scenario 1, Beijing starts with $7,393,600,000 - D9A6-0FFD - - - In scenario 1, Hong Kong starts with $449,440,000 - 95A6-0F2D - - - In scenario 1, Hong Kong starts with $7,453,600,000 - D9A6-04FD - - - In scenario 1, Singapore starts with $400,640,000 - 03A6-042D - - - In scenario 1, Singapore starts with $7,353,600,000 - D9A6-07FD - - - In scenario 1, Sydney starts with $297,920,000 - 7CA6-072D - - - In scenario 1, Sydney starts with $7,153,600,000 - D9AB-0DFD - - - In scenario 1, Delhi starts with $317,440,000 - 73AB-0D2D - - - In scenario 1, Delhi starts with $7,193,600,000 - D9AB-0FFD - - - In scenario 1, Tehran starts with $239,360,000 - 43AB-0F2D - - - In scenario 1, Tehran starts with $7,033,600,000 - D9AB-04FD - - - In scenario 1, Cairo starts with $249,120,000 - 7DAB-042D - - - In scenario 1, Cairo starts with $7,053,600,000 - D9AB-07FD - - - In scenario 1, Nairobi starts with $200,320,000 - 45AB-072D - - - In scenario 1, Nairobi starts with $6,953,600,000 - D9AC-0DFD - - - In scenario 1, Lagos starts with $229,600,000 - 4AAC-0D2D - - - In scenario 1, Lagos starts with $7,013,600,000 - D9AC-0FFD - - - In scenario 1, Moscow starts with $289,280,000 - DDAC-04FD - - - In scenario 1, Moscow starts with $6,842,880,000 - D9AC-04FD - - - In scenario 1, London starts with $949,280,000 - DDAC-07FD - - - In scenario 1, London starts with $7,502,880,000 - D9AC-07FD - - - In scenario 1, Paris starts with $289,280,000 - DDA8-0DFD - - - In scenario 1, Paris starts with $6,842,880,000 - D9A8-0DFD - - - In scenario 1, Rome starts with $371,360,000 - 06A8-0D2D - - - In scenario 1, Rome starts with $7,293,600,000 - D9A8-0FFD - - - In scenario 1, New York starts with $189,280,000 - DDA8-04FD - - - In scenario 1, New York starts with $6,742,880,000 - D9A8-04FD - - - In scenario 1, Vancouver starts with $258,880,000 - 74A8-042D - - - In scenario 1, Vancouver starts with $7,073,600,000 - D9A8-07FD - - - In scenario 1, Los Angeles starts with $649,280,000 - DDAA-0DFD - - - In scenario 1, Los Angeles starts with $7,202,880,000 - D9AA-0DFD - - - In scenario 1, Honolulu starts with $268,640,000 - 70AA-0D2D - - - In scenario 1, Honolulu starts with $7,093,600,000 - D9AA-0FFD - - - In scenario 1, Mexico City starts with $258,880,000 - 74AA-0F2D - - - In scenario 1, Mexico City starts with $7,073,600,000 - D9AA-04FD - - - In scenario 1, Lima starts with $180,800,000 - 47AA-042D - - - In scenario 1, Lima starts with $6,913,600,000 - D9AA-07FD - - - In scenario 1, Rio de Janeiro starts with $317,440,000 - 73AA-072D - - - In scenario 1, Rio de Janeiro starts with $7,193,600,000 - D9A2-0DFD - - - In scenario 1, Buenos Aires starts with $210,080,000 - 4BA2-0D2D - - - In scenario 1, Buenos Aires starts with $6,973,600,000 - D9A2-0FFD - - - In scenario 2, Tokyo starts with $1,149,280,000 - DDA2-04FD - - - In scenario 2, Tokyo starts with $7,702,880,000 - D9A2-04FD - - - In scenario 2, Beijing starts with $498,240,000 - 1FA2-042D - - - In scenario 2, Beijing starts with $7,553,600,000 - D9A2-07FD - - - In scenario 2, Hong Kong starts with $649,760,000 - 53A2-072D - - - In scenario 2, Hong Kong starts with $7,853,600,000 - D9A3-0DFD - - - In scenario 2, Singapore starts with $552,160,000 - 18A3-0D2D - - - In scenario 2, Singapore starts with $7,653,600,000 - D9A3-0FFD - - - In scenario 2, Sydney starts with $581,440,000 - 5FA3-0F2D - - - In scenario 2, Sydney starts with $7,713,600,000 - D9A3-04FD - - - In scenario 2, Delhi starts with $517,760,000 - 19A3-042D - - - In scenario 2, Delhi starts with $7,593,600,000 - D9A3-07FD - - - In scenario 2, Tehran starts with $297,920,000 - 7CA3-072D - - - In scenario 2, Tehran starts with $7,153,600,000 - D9AE-0DFD - - - In scenario 2, Cairo starts with $390,880,000 - 0AAE-0D2D - - - In scenario 2, Cairo starts with $7,333,600,000 - D9AE-0FFD - - - In scenario 2, Nairobi starts with $249,120,000 - 7DAE-0F2D - - - In scenario 2, Nairobi starts with $7,053,600,000 - D9AE-04FD - - - In scenario 2, Lagos starts with $299,040,000 - 7CAE-042D - - - In scenario 2, Lagos starts with $7,149,600,000 - D9AE-07FD - - - In scenario 2, Moscow starts with $689,280,000 - DDAD-6DFD - - - In scenario 2, Moscow starts with $7,242,880,000 - D9AD-6DFD - - - In scenario 2, London starts with $38,560,000 - DDAD-6FFD - - - In scenario 2, London starts with $6,592,160,000 - D9AD-6FFD - - - In scenario 2, Paris starts with $909,280,000 - DDAD-64FD - - - In scenario 2, Paris starts with $7,462,880,000 - D9AD-64FD - - - In scenario 2, Rome starts with $571,680,000 - 1EAD-642D - - - In scenario 2, Rome starts with $7,693,600,000 - D9AD-67FD - - - In scenario 2, New York starts with $829,280,000 - DDAF-6DFD - - - In scenario 2, New York starts with $7,382,880,000 - D9AF-6DFD - - - In scenario 2, Vancouver starts with $420,160,000 - 94AF-6D2D - - - In scenario 2, Vancouver starts with $7,393,600,000 - D9AF-6FFD - - - In scenario 2, Los Angeles starts with $1,109,280,000 - DDAF-64FD - - - In scenario 2, Los Angeles starts with $7,662,880,000 - D9AF-64FD - - - In scenario 2, Honolulu starts with $381,120,000 - 0CAF-642D - - - In scenario 2, Honolulu starts with $7,313,600,000 - D9AF-67FD - - - In scenario 2, Mexico City starts with $468,960,000 - 98AF-672D - - - In scenario 2, Mexico City starts with $7,493,600,000 - D9A4-6DFD - - - In scenario 2, Lima starts with $258,880,000 - 74A4-6D2D - - - In scenario 2, Lima starts with $7,073,600,000 - D9A4-6FFD - - - In scenario 2, Rio de Janeiro starts with $630,240,000 - 58A4-6F2D - - - In scenario 2, Rio de Janeiro starts with $7,813,600,000 - D9A4-64FD - - - In scenario 2, Buenos Aires starts with $361,600,000 - 01A4-642D - - - In scenario 2, Buenos Aires starts with $7,273,600,000 - D9A4-67FD - - - Key Code - BDE3-D463 - - - Set money to less than $655,350,000 (must have Key) - P1, saved game 1 - DDDF-FEDD - - - Set money to over $327,680,000 (must have Key) - P1, saved game 1 - D9DF-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P1, saved game 1 - D6DF-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P1, saved game 1 - FDDF-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P1, saved game 1 - 4DDF-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P1, saved game 1 - 0DDF-FEDD - - - Set money to less than $655,350,000 (must have Key) - P2, saved game 1 - DDD9-FEDD - - - Set money to over $327,680,000 (must have Key) - P2, saved game 1 - D9D9-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P2, saved game 1 - D6D9-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P2, saved game 1 - FDD9-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P2, saved game 1 - 4DD9-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P2, saved game 1 - 0DD9-FEDD - - - Set money to less than $655,350,000 (must have Key) - P3, saved game 1 - DDDB-FEDD - - - Set money to over $327,680,000 (must have Key) - P3, saved game 1 - D9DB-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P3, saved game 1 - D6DB-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P3, saved game 1 - FDDB-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P3, saved game 1 - 4DDB-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P3, saved game 1 - 0DDB-FEDD - - - Set money to less than $655,350,000 (must have Key) - P4, saved game 1 - DDD2-FEDD - - - Set money to over $327,680,000 (must have Key) - P4, saved game 1 - D9D2-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P4, saved game 1 - D6D2-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P4, saved game 1 - FDD2-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P4, saved game 1 - 4DD2-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P4, saved game 1 - 0DD2-FEDD - - - Set money to less than $655,350,000 (must have Key) - P1, saved game 2 - DDFF-FEDD - - - Set money to over $327,680,000 (must have Key) - P1, saved game 2 - D9FF-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P1, saved game 2 - D6FF-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P1, saved game 2 - FDFF-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P1, saved game 2 - 4DFF-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P1, saved game 2 - 0DFF-FEDD - - - Set money to less than $655,350,000 (must have Key) - P2, saved game 2 - DDF9-FEDD - - - Set money to over $327,680,000 (must have Key) - P2, saved game 2 - D9F9-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P2, saved game 2 - D6F9-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P2, saved game 2 - FDF9-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P2, saved game 2 - 4DF9-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P2, saved game 2 - 0DF9-FEDD - - - Set money to less than $655,350,000 (must have Key) - P3, saved game 2 - DDFB-FEDD - - - Set money to over $327,680,000 (must have Key) - P3, saved game 2 - D9FB-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P3, saved game 2 - D6FB-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P3, saved game 2 - FDFB-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P3, saved game 2 - 4DFB-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P3, saved game 2 - 0DFB-FEDD - - - Set money to less than $655,350,000 (must have Key) - P4, saved game 2 - DDF2-FEDD - - - Set money to over $327,680,000 (must have Key) - P4, saved game 2 - D9F2-FEDD - - - Set money to over $5,242,880,000 (must have Key) - P4, saved game 2 - D6F2-FEDD - - - Set money to over $10,485,760,000 (must have Key) - P4, saved game 2 - FDF2-FEDD - - - Set money to over $20,971,520,000 (must have Key) - P4, saved game 2 - 4DF2-FEDD - - - Set money to over $41,943,040,000 (must have Key) - P4, saved game 2 - 0DF2-FEDD - - - - Air Cavalry (USA) - - Infinite lives - 3DE8-AD64 - - - Infinite 7.62mm rounds - 82B7-D7A7 - - - Infinite 2.75 rockets - 89E1-D7D4+89E6-DDD4+82B5-DF07 - - - - Aladdin (USA) - - Invincibility - 2D3A-4D01 - - - Almost invincible - C267-4D0A - - - Infinite health - A267-4D0A - - - Infinite lives - A221-4FA5+C221-4FA5 - - - Infinite Apples - C2A9-C7D5+3CA9-C4A5 - - - Infinite continues - C283-37DD - - - Level select on main menu - DDB5-3467+DDBA-3FA7 - - - Emeralds worth 2 instead of 1 - FA80-44AE - - - Emeralds worth 3 - FB80-44AE - - - Rubies worth 1 instead of 3 - A381-4F0E - - - Rubies worth 2 - C281-4F0E - - - Bonus round played after every level - DDA7-4DD5 - - - Only 10 gems needed for health increase/free life - FD86-4F6E - - - Only 20 gems needed for health increase/free life - 4D86-4F6E - - - Only 30 gems needed for health increase/free life - 7D86-4F6E - - - Only 40 gems needed for health increase/free life - 0D86-4F6E - - - Only 50 gems needed for health increase/free life - 9D86-4F6E - - - Only 60 gems needed for health increase/free life - 1D86-4F6E - - - Only 90 gems needed for health increase/free life - BD86-4F6E - - - Apple power-ups worth 20 instead of 10 - 4D8B-4DD3 - - - Apple power-ups worth 50 - 9D8B-4DD3 - - - Apple power-ups worth 90 - BD8B-4DD3 - - - Start with 5 Apples - D967-1F60 - - - Start with 20 Apples - 4D67-1F60 - - - Start with 2 health - D464-14A0 - - - Start with 5 health - D964-14A0 - - - Start with 7 health - D564-14A0 - - - Start with 1 life - DF64-1DD0 - - - Start with 5 lives - D964-1DD0 - - - Start with 20 lives - F064-1DD0 - - - Start with 1 continue - DFB8-3F07 - - - Start with 5 continues - D9B8-3F07 - - - Start with 9 continues - DCB8-3F07 - - - Invincibility (alt) - 7E0347:04 - - - Infinite Apples (alt) - 7E0369:99 - - - Moon-jump - 7E08FB:16 - - - - Alien 3 (USA) - - Invincibility - DD69-1FD0 - - - Infinite energy - 6D64-1D60 - - - Take less damage - D464-1D60 - - - Most attacks do no damage - DD64-1D60 - - - Longer invulnerability after being hit - EE6B-CD00 - - - Slower fuel consumption for flame thrower - EE26-37D4 - - - Faster fuel consumption for flame thrower - 7D26-37D4 - - - Infinite oil for flame thrower - 3C25-3704 - - - Infinite flame thrower - C22A-17D1 - - - Infinite machine-gun - 8B28-4404 - - - Infinite missiles - 8B22-3DA4 - - - Infinite ammo for pulse rifle - 3C28-44D4 - - - Infinite ammo for grenade launcher - 3C22-3D64 - - - Less ammo in rifle clips (works with extra clips only, not the ones you start with) - 742A-44A4 - - - More ammo in rifle clips (works with extra clips only, not the ones you start with) - CD2A-44A4 - - - Less ammo in grenade clips (works with extra clips only, not the ones you start with) - D923-3D64 - - - More ammo in grenade clips (works with extra clips only, not the ones you start with) - F023-3D64 - - - Maximum energy from medi-kits - DD6D-1700 - - - Less energy from medi-kits - D76D-1DA0 - - - Start with more rifle clips - FD36-44D1 - - - Start with even more rifle clips - 4D36-44D1 - - - Start with fewer rifle clips - D036-44D1 - - - Start with more grenade clips - FD3B-4F01 - - - Start with even more grenade clips - 4D3B-4F01 - - - Start with fewer grenade clips - D03B-4F01 - - - Mission 1 completed - 7E0FDE:FF - - - Mission 2 completed - 7E0FF0:FF - - - Mission 3 completed - 7E0FF2:FF - - - Mission 4 completed - 7E0FF4:FF - - - Mission 5 completed - 7E0FF6:FF - - - Mission 6 completed - 7E0FF8:FF - - - Mission 7 completed - 7E0FFA:FF - - - Mission 8 completed - 7E0FFC:FF - - - - Alien vs Predator (USA) - - Invincibility - 1D3B-0FAD+6D22-D4D7 - - - Infinite health - C238-0FDD+C236-0DDD - - - No damage taken from punches - C236-0DDD - - - No damage taken from jumping attacks, tail attacks, rushes - C238-0FDD - - - Infinite lives - C286-A70D - - - Infinite lives (alt) - DD86-A70D - - - Infinite continues - 3CEA-67D8 - - - One hit kills - 6D2D-AFA7+6D37-64DD+6DB8-A765+6D39-DD6F - - - Hit anywhere - 402B-6FD7+D12B-0D07+D12D-0D67+D13A-A4DD - - - Disc power-ups give 1 disc instead of 6 (handicap) - DF83-64AF - - - Disc power-ups give 3 discs - D783-64AF - - - Disc power-ups give 10 discs - DC83-64AF - - - Disc power-ups give 25 discs - FB83-64AF - - - Spear power-ups give 1 spear instead of 6 - DF8E-6D6F - - - Spear power-ups give 3 spears - D78E-6D6F - - - Spear power-ups give 10 spears - DC8E-6D6F - - - Spear power-ups give 25 spears - FB8E-6D6F - - - Spear and disc power-ups last until end of level (can't pick up other power-ups) - EDCA-0DD4 - - - Rhynth meat doesn't add to your maximum health - C282-6FDF - - - Rhynth meat adds 1/2 as much to maximum health (handicap) - D08A-6F6F - - - Rhynth meat adds 2x as much to maximum health - FD8A-6F6F - - - Rhynth meat adds 4x as much to maximum health - 4D8A-6F6F - - - Rhynth meat adds nothing to your current health - DD82-67DF - - - Rhynth meat adds half as much to current health - D082-67DF - - - Rhynth meat adds 2x as much to current health - FD82-67DF - - - Rhynth meat adds 4x as much to current health - 4D82-67DF - - - Ptera meat doesn't heal - C28D-A40F - - - Blue bottles don't heal at all - 1D8D-A7AF - - - Blue bottles heal 1/2 of your health instead of 1/4 - 3C8F-A76F - - - Blue bottles heal completely - DD84-A4DF - - - Light laser can be fired instantly - DFB1-A4D7 - - - Medium laser is fired above 3rd line instead of 2nd - F6B1-A707 - - - Medium laser can be fired above 1st line - D9B5-ADD7 - - - Medium laser can be fired below 1st line - eliminates light laser - DCB1-A4A7 - - - No damage is taken from using heavy laser - F6B5-AF07 - - - Heavy laser can be fired above 2nd line - eliminates medium laser - DFB5-AD67 - - - Start with full health bar on Standard level - EEB5-6404+EEB5-64A4 - - - Start with full health bar on Novice level - EEB5-6704+EEB5-67A4 - - - Start with full health bar on Advanced level - EEB6-6D04+EEB6-6DA4 - - - Start with full health bar on Expert level - EEB6-6F04+EEB6-6FA4 - - - Start with up to 9 lives on Options screen (selecting downward from 1 goes to 6) - DB8F-AD9D - - - Start with up to 30 continues on Options screen (selecting downward from 0 goes to 3) - F38F-AD2D - - - Start on level 1-2 - D4EE-A766 - - - Start on level 2-1 - D7EE-A766 - - - Start on level 3-1 - D0EE-A766 - - - Start on level 4-1 - D9EE-A766 - - - Start on level 5-1 - D1EE-A766 - - - Start on level 5-2 - D5EE-A766 - - - Start on level 5-3 - D6EE-A766 - - - Start on level 6-1 - DBEE-A766 - - - Start on level 6-2 - DCEE-A766 - - - Infinite health (alt) - 7E1024:64 - - - - Amazing Spider-Man, The - Lethal Foes (Japan) - - Infinite health - 7E0E0C:40 - - - Infinite lives - 7E1C23:09 - - - Infinite time - 7E1C22:63 - - - - American Gladiators (USA) - - Infinite time - 7E00B2:59 - - - Always have 9 points - P1 - 7E0306:09 - - - Always have 9 points in ball game - P1 - 7E0304:09 - - - - American Tail, An - Fievel Goes West (USA) - - Invincibility - 2D6D-D4EF - - - Invincibility (alt) - CB6D-D47F - - - Infinite health - 2D60-DD8F - - - Infinite lives - C2C5-6FDF - - - Infinite time - 3CC4-A4DF - - - Walk left faster - E867-AF5D - - - Walk right faster - D06E-6DED - - - Multi-jumps - DD65-0D84 - - - - Animaniacs (USA) - - Every coin gives 999 saved slot rotations - DFC8-3D0C - - - Every second coin gives 99 continues - D4CE-37AC - - - Every slot machine roll gives 99 continues - D9CE-37AC - - - Super-jump and float - CBBF-47DA+D6BF-470A+DFBF-476A - - - Invincibility - 0CFCC0:90 - - - 99 Coins - 7F0016:63 - - - Every coin gives 999 saved slot rotations (alt) - 82ABB1:01 - - - Every second coin gives 99 continues (alt) - 82ABFF:02 - - - Every slot machine roll gives 99 continues (alt) - 82ABFF:05 - - - Hold up or down against some walls to climb them - 8390D1:FF - - - Higher jump - 839011:FF - - - Super jump and float (alt) - 83901C:A9+83901D:08+83901E:01 - - - Moon-jump (enable to rise slowly, disable to fall back down) - 7E0415:FF - - - - Arcade's Greatest Hits - The Atari Collection 1 (USA) - - Asteroids - Invincibility - 1D63-34AE - - - Asteroids - Infinite lives - both players - 896E-3D6E - - - Battlezone - Invincibility - ADB3-4FF9+DDB3-4F99+2DB3-4FB9+1DBF-4D95 - - - Battlezone - Infinite lives - C9BE-47B9 - - - Centipede - Infinite lives - both players - 8262-C7DB - - - Super Breakout - Infinite serves - both players - C2AB-CDD1 - - - Tempest - Infinite lives - both players - 82A6-C49B - - - - Arcana (USA) - - Infinite money for weapons - C225-0F02 - - - Infinite money for items - C22A-0402 - - - Infinite money for rooms - C229-640E - - - Infinite money for elixir - C22F-A7DE - - - Level and statistics for all characters in group are increased after each battle - B387-DFF2 - - - Magic points don't decrease - 828B-AF2E - - - Start with 60,000 gold pieces - 1D69-AFD0+3C69-AF00 - - - Start with 250 gold pieces - EC69-AFD0+DD69-AF00 - - - - Archer Maclean's Super Dropzone (Europe) - - Infinite lives - 7E0025:04 - - - Infinite bombs - 7E0026:04 - - - - Ardy Lightfoot (USA) - - Invincibility - 2D3F-446D+2D8F-3407 - - - Infinite lives - C268-CF0D - - - - Arkanoid - Doh It Again (USA) - - Infinite lives - 82B8-1704 - - - "S" capsule gives you the longest paddle - D762-14D5 - - - "S" capsule gives you the laser paddle - D062-14D5 - - - Force field lasts until end of level - C2BD-3F60 - - - Keep current paddle when you get force field - DD66-CFA5 - - - - Art of Fighting (USA) - - Invincibility (except projectiles) - 3D17-7464+DD17-74A4+DD17-77D4 - - - Infinite health - CB3C-57AF+3E38-5DDF+6238-5D0F - - - Infinite time - C235-5DA4 - - - Hit anywhere - both players - 6D14-7DD4 - - - - Ashita no Joe (Japan) - - Hit anywhere - P1 - DD81-64AF - - - Hit anywhere - P2 - DD8A-A46D - - - Invincibility - P1 - 6D8A-6DDD - - - Invincibility - P2 - 6D81-0FDF - - - - Asterix (Europe) (En,Fr,De,Es) - - Invincibility - 2D68-ADAD+A968-AF0D - - - Infinite health - 82E9-6F64 - - - Infinite lives - 82E0-6D04 - - - Infinite health (alt) - 7E05F0:03 - - - Infinite lives (alt) - 7E05FC:09+7E05FD:09 - - - Infinite time - 7E05F7:09+7E05F8:09+7E05F9:09 - - - Infinite coins - 7E05EE:09+7E05EF:09 - - - - Asterix & Obelix (Europe) (En,Fr,De,Es) - - Infinite health - 7E008C:28 - - - Infinite lives - 7E101D:09 - - - Infinite time - 7E1076:27 - - - Always Magic Chicken - 7E008E:04 - - - Moon jump (disable to drop back down) - 7E007D:C0 - - - - Axelay (USA) - - Invincibility - 2D87-AD04 - - - Infinite lives - A2AE-DF6D - - - Infinite lives (alt) - C2AE-DF6D+C28F-04D7 - - - Infinite credits - C2C5-DDDF - - - Don't lose weapon when hit - 8285-AF07+82AA-676D - - - Hit anywhere - C93C-DD0F+C9BD-D408+DD36-D70F+DD3B-DF0F - - - Start with 1 credit - D766-D7A7 - - - Start with 2 credits - D066-D7A7 - - - Start with 3 credits - D966-D7A7 - - - Start with 4 credits - D166-D7A7 - - - Start with 6 credits - D666-D7A7 - - - Start with 7 credits - DB66-D7A7 - - - Start with 8 credits - DC66-D7A7 - - - Start with 9 credits - D866-D7A7 - - - Start with 1 life - DF21-AD04 - - - Start with 2 lives - D421-AD04 - - - Start with 5 lives - D921-AD04 - - - Start with 7 lives - D521-AD04 - - - Start with 9 lives - DB21-AD04 - - - Start with 15 lives - DE21-AD04 - - - Start with 25 lives - FB21-AD04 - - - Start with 50 lives - 7421-AD04 - - - Start with 75 lives - 0821-AD04 - - - Start with 99 lives - 1721-AD04 - - - Start on Stage 2 - CBB7-AFA7+DFB7-A4D7+DDB7-A407 - - - Start on Stage 3 - CBB7-AFA7+D4B7-A4D7+DDB7-A407 - - - Start on Stage 4 - CBB7-AFA7+D7B7-A4D7+DDB7-A407 - - - Start on Stage 5 - CBB7-AFA7+D0B7-A4D7+DDB7-A407 - - - Start on Stage 6 - CBB7-AFA7+D9B7-A4D7+DDB7-A407 - - - Infinite lives (alt 2) - 7E005E:02 - - - Have 1st weapon - Straight Laser - 7E0330:02 - - - Have 1st weapon - Round Vulcan - 7E0330:03 - - - Have 1st weapon - Wind Laser - 7E0330:05 - - - Have 1st weapon - Explosion Bomb - 7E0330:06 - - - Have 1st weapon - Macro Missiles - 7E0330:07 - - - Have 1st weapon - Cluster Bomb - 7E0330:09 - - - Have 1st weapon - Morning Star - 7E0330:0A - - - Have 1st weapon - Needle Cracker - 7E0330:0B - - - Have 2nd weapon - Straight Laser - 7E0332:02 - - - Have 2nd weapon - Round Vulcan - 7E0332:03 - - - Have 2nd weapon - Wind Laser - 7E0332:05 - - - Have 2nd weapon - Explosion Bomb - 7E0332:06 - - - Have 2nd weapon - Macro Missiles - 7E0332:07 - - - Have 2nd weapon - Cluster Bomb - 7E0332:09 - - - Have 2nd weapon - Morning Star - 7E0332:0A - - - Have 2nd weapon - Needle Cracker - 7E0332:0B - - - Have 3rd weapon - Straight Laser - 7E0334:02 - - - Have 3rd weapon - Round Vulcan - 7E0334:03 - - - Have 3rd weapon - Wind Laser - 7E0334:05 - - - Have 3rd weapon - Explosion Bomb - 7E0334:06 - - - Have 3rd weapon - Macro Missiles - 7E0334:07 - - - Have 3rd weapon - Cluster Bomb - 7E0334:09 - - - Have 3rd weapon - Morning Star - 7E0334:0A - - - Have 3rd weapon - Needle Cracker - 7E0334:0B - - - - B.O.B. (USA) - - Infinite health (P) - C221-0D6D - - - Infinite lives - 826E-0F0D - - - Infinite lives (alt) - 4A6E-0F0D - - - Infinite time - C267-C0DD - - - Infinite weapons - 8B37-A704 - - - Infinite Remotes - 8BC7-3FE5 - - - Infinite Remotes (alt) - 3CC7-3F85 - - - Infinite weapons (except for Flame) - 3C37-A7D4 - - - Hit anywhere - DDE2-6D04+DDEF-AD04 - - - Max weapons on pick-up - DDC0-C770 - - - Slow down timer - CD61-0D64 - - - Speed up timer - 7961-0D64 - - - Start with 20 3-way - F0A6-1D59 - - - Start with 20 Flame - F0A6-1FE9 - - - Start with 20 Rocket - F0A6-1759 - - - Start with 20 Bolt - F0AB-1DE9 - - - Start with 20 Wave - F0AB-1459 - - - Start with 3 Flash Remotes - DDA8-1F89 - - - Start with 3 Shield Remotes - DFA8-1F89 - - - Start with 3 Umbrella Remotes - D4A8-1F89 - - - Start with 3 Helicopter Hat Remotes - D0A8-1F89 - - - Start with 3 Floating Bomb Remotes - D9A8-1F89 - - - Start with 6 of selected remote - D1A8-1479 - - - Start with 15 of selected remote - DEA8-1479 - - - Start with 1 life - DD66-0DDD - - - Start with 9 lives - D666-0DDD - - - Start with 6 lives - D966-0DDD - - - Infinite health (P) (alt) - 7E0221:30 - - - Infinite E - 7E0222:30 - - - Infinite weapons (except for Flame) (alt) - 00EB3C:EA - - - Infinite Remotes (alt 2) - 8DAF36:EA - - - Infinite time (alt) - 7E0F42:3B - - - Infinite Flash Remotes - 7E0209:63 - - - Infinite Shield Remotes - 7E020A:63 - - - Infinite Umbrella Remotes - 7E020B:63 - - - Infinite Spring Remotes - 7E020C:63 - - - Infinite Helicopter Hat Remotes - 7E020D:63 - - - Infinite Floating Bomb Remotes - 7E020E:63 - - - Max weapons on pick-up (alt) - 8DA24C:00 - - - - Ballz 3D - Fighting at Its Ballziest (USA) - - Infinite time - C295-ED64+C296-E7D4 - - - Always fight Kronk - CB82-EF0D+D082-EF6D+DD82-EFAD - - - Always fight Boomer - CB82-EF0D+D682-EF6D+DD82-EFAD - - - Always fight Bruiser - CB82-EF0D+DA82-EF6D+DD82-EFAD - - - Always fight Turbo - CB82-EF0D+FD82-EF6D+DD82-EFAD - - - Always fight Tsunami - CB82-EF0D+F082-EF6D+DD82-EFAD - - - Always fight Yoko - CB82-EF0D+F682-EF6D+DD82-EFAD - - - Always fight Divine - CB82-EF0D+FA82-EF6D+DD82-EFAD - - - Always fight Crusher - CB82-EF0D+4D82-EF6D+DD82-EFAD - - - Death match - CDE8-87AF - - - Start rounds with 10 seconds - DC78-E7AD - - - Start rounds with 20 seconds - F078-E7AD - - - Start rounds with 30 seconds - F378-E7AD - - - Start rounds with 40 seconds - 4678-E7AD - - - Start rounds with 50 seconds - 7478-E7AD - - - Start rounds with 60 seconds - 7A78-E7AD - - - Start rounds with 70 seconds - 0178-E7AD - - - Start with with 1/4 energy - 4EDC-7760 - - - Start with with 1/2 energy - 9EDC-7760 - - - Start with with 3/4 energy - BEDC-7760 - - - - Barbie Super Model (USA) - - Infinite chances - C229-DF07 - - - - Barkley Shut Up and Jam! (USA) - - Infinite time - 7E0780:47 - - - - Bassin's Black Bass (USA) - - Always catch a 60.32 pound fish - CBCA-A4D3 - - - Always catch a 75.68 pound fish - CBCA-A4D3+D3CA-A463 - - - Always catch a largemouth bass - CBC8-A403+DDC8-A463+3CC8-A4A3 - - - Always have all lures (open the lure menu, close it, open it again to have all lures) - CBEA-DF60+DFEA-DFA0+B2EA-D4D0+4BEA-D4A0 - - - - BASS Masters Classic - Pro Edition (USA) - - Start with $65,380 - EE40-BA86 - - - Infinite money - 7E2242:FF - - - - Batman Forever (USA) - - Straight low punches are super strong - EE22-C70B - - - Straight high punches are super strong - EE20-3D0B - - - Straight low kicks are super strong - EE29-4F0B - - - Straight high kicks are super strong - EE2C-44AB - - - Crouching low punches are super strong - EE26-14AC - - - Crouching high punches are super strong - EE30-3FA6 - - - Crouching low kicks are super strong - EE3F-3D06 - - - Crouching high kicks are super strong - EE3A-CF06 - - - Straight low punches do no damage - DD22-C70B - - - Straight high punches do no damage - DD20-3D0B - - - Straight low kicks do no damage - DD29-4F0B - - - Straight high kicks do no damage - DD2C-44AB - - - Crouching low punches do no damage - DD26-14AC - - - Crouching high punches do no damage - DD30-3FA6 - - - Crouching low kicks do no damage - DD3F-3D06 - - - Crouching high kicks do no damage - DD3A-CF06 - - - Start with half energy after your first life - 4D2C-4D07+4DCE-1465 - - - Play as an Inmate - F43C-3B10 - - - Play as a Clown - F03C-3B10 - - - Play as Two-Face - F63C-3B10 - - - Play as a Riddler Thug - FC3C-3B10 - - - Play as the Muscle Riddler - FA3C-3B10 - - - Start with 1 life - DDB3-47D4 - - - Start with 3 lives - D4B3-47D4 - - - Start with 10 lives - DBB3-47D4 - - - Infinite health - P1 - 7E132C:FF - - - Infinite health - P2 - 7E132E:FF - - - Infinite lives - 7E0017:09 - - - One hit kills enemy #1 - 7E1330:00 - - - - Batman Returns (USA) - - Invincibility - 2DAA-1FA4+40A7-4F0D - - - Infinite health - C9A7-C7A4 - - - Infinite lives (3/4 view levels) - C9A5-1764 - - - Infinite special moves - C92D-4FDD - - - Protection from some hazards - C9A7-C404 - - - Hit anywhere - DD3E-3FD7+DDAE-C7A6+DDE5-1F22+DDE6-1792 - - - Cape sweep uses up no health - DDAE-3707 - - - Spear gun uses up no health - DD2F-4FAD - - - Cape sweep uses up more health - FDAE-3707 - - - Spear gun uses up more health - FD2F-4FAD - - - Maximum health from hearts - DD2E-3D6B - - - Cape sweep does more damage - F9CF-4F05 - - - Normal punch does more damage - F9CD-4705 - - - Normal knee does more damage - F9CD-4765 - - - Jump kick does more damage - F9CF-4D05+F9CF-4DD5 - - - Cape sweep does mega-damage - 7DCF-4F05 - - - Normal punch does mega-damage - 7DCD-4705 - - - Normal knee does mega-damage - 7DCD-4765 - - - Jump kick does mega-damage - 7DCF-4D05+7DCF-4DD5 - - - Cape sweep does less damage - D4CF-4F05 - - - Normal punch does less damage - D4CD-4705 - - - Normal knee does less damage - D4CD-4765 - - - Jump kick does less damage - D4CF-4D05+D4CF-4DD5 - - - Enable stage select - F76C-1FDF+616C-1F0F+CEC8-376F+C2E8-1078 - - - Start with 9 - DB68-4F00 - - - Start with 6 test tubes - D16F-4464+D1C0-4DD7 - - - Start with 9 test tubes - DB6F-4464+DBC0-4DD7 - - - Enemy 1 has 0 health - 7E0567:00 - - - Enemy 2 has 0 health - 7E0576:00 - - - Enemy 3 has 0 health - 7E0666:00 - - - Enemy 4 has 0 health - 7E0756:00 - - - - Batman - Revenge of the Joker (USA) (Proto) - - Invincibility - 2DA7-4460 - - - Infinite health - C2EF-1FA8 - - - Infinite lives - 8263-44DD - - - Infinite health (alt) - 7E0353:07+7E0355:07 - - - Infinite lives (alt) - 7E0356:03+7E0358:03 - - - - Battle Blaze (USA) - - Infinite continues - C285-D4AB - - - Infinite health (disable at end of round) - P1 - 7E06DC:C0 - - - Infinite health (disable at end of round) - P2 - 7E0704:C0 - - - No health - P1 - 7E06DC:00 - - - No health - P2 - 7E0704:00 - - - Hit anywhere - both players - 04E8-D40F+6DE8-D4DF - - - - Battle Clash (USA) - - Infinite health - C234-3FD3 - - - Protection from most enemy attacks - C234-3FD3 - - - Infinite time - C268-CFA5 - - - Weapon charges faster - D9A9-1DA7 - - - Weapon charges much faster - FDA9-1DA7 - - - Once charged, weapon always stays charged - 1DAA-3FAF - - - Start in Cairo instead of New York - 33EE-3D1F - - - Fight Garam at New York - CBAB-CDA0+DDAB-CF00+DDAB-CFD0 - - - Fight Scarab at Cairo - CBAB-CDA0+DDAB-CF00+DFAB-CFD0 - - - Fight Lorca at London - CBAB-CDA0+DDAB-CF00+D4AB-CFD0 - - - Fight Artemis at Andes - CBAB-CDA0+DDAB-CF00+D7AB-CFD0 - - - Fight Schneider at Kyoto - CBAB-CDA0+DDAB-CF00+D0AB-CFD0 - - - Fight Ivan at Oceania - CBAB-CDA0+DDAB-CF00+D9AB-CFD0 - - - Fight Valius at Babel - CBAB-CDA0+DDAB-CF00+D1AB-CFD0 - - - Fight Baron at Moonbase Luna - CBAB-CDA0+DDAB-CF00+D5AB-CFD0 - - - Fight Thanatos at last stage - CBAB-CDA0+DDAB-CF00+D6AB-CFD0 - - - Infinite health - P1 - 7E15C0:80 - - - One hit kills - 7E15A0:00 - - - - Battle Zeque Den (Japan) - - Invincibility - D781-B386+FC3C-34A9 - - - Invincibility (alt) - 7EB26A:03 - - - Infinite lives - CE35-C7A9 - - - Infinite Special - 82C2-C7D0 - - - One hit kills - 3D6E-C4D5+436E-C405+846E-C465+2D6E-C4A5 - - - Infinite health - 7EB246:4E - - - Infinite lives (alt) - 7E0329:0A - - - Infinite Special (Red) - 7EB24C:02 - - - Infinite Special (Blue) - 7EB24C:04 - - - Infinite Special (Green) - 7EB24C:06 - - - - Battletoads-Double Dragon (USA) - - Infinite lives - 40B8-04AF - - - Enemies have less health - DE6E-1466 - - - Abobo has less health - 4EB7-1DD6 - - - Big Blag has less health - 4EB3-C4DB - - - Roper has less health - D7BA-3FA8 - - - Robo-Manus has less health - D7C5-3F66 - - - Start with 2 lives - DF60-D76D - - - Start with 10 lives - DB60-D76D - - - Start on level 2 with 11 lives - DD65-DD0D+CB66-D46D+DF66-D4AD - - - Start on level 3 with 11 lives - DD65-DD0D+CB66-D46D+D466-D4AD - - - Start on level 4 with 11 lives - DD65-DD0D+CB66-D46D+D766-D4AD - - - Start on level 5 with 11 lives - DD65-DD0D+CB66-D46D+D066-D4AD - - - Start on level 6 with 11 lives - DD65-DD0D+CB66-D46D+D966-D4AD - - - Invincibility (blinking) - P1 - 7E1112:7F - - - Infinite health - P1 - 7E003A:2F - - - Infinite lives - P1 - 7E0026:05 - - - - Battletoads in Battlemaniacs (USA) - - Invincibility - 2D20-34A8 - - - Invincibility in motorcycle levels - C2B4-3F68 - - - Infinite health - 228E-34A0+2280-4DD9 - - - Infinite lives - 8286-CF01 - - - Infinite lives - both players (except level 2, doesnメt work on falling) - 8986-CF01 - - - Infinite continues - P1 - C96A-346F - - - Infinite continues - P2 - C96B-34DF - - - Infinite lives when falling - 8026-CD08 - - - Longer invincibility after getting hit - 6D20-34A8 - - - One hit kills - 3D87-44A9+DD87-47D9+DD87-4709+CB80-4DD9+EE80-4D09+EE80-4D69+B280-4DA9 - - - Take less damage from hits - 8280-4DD9 - - - Protection against most strength level 1 hits - 82A7-3FAF - - - Protection against most strength level 2 hazards - 8982-CFD1 - - - Easy finish on motorcycle levels. The turtle will keep going on until the end of the level. - C220-CF0C - - - Start with 2 lives - DF6D-0D0D - - - Start with 6 lives - D96D-0D0D - - - Start with 10 lives - DB6D-0D0D - - - Start with 0 continues - DD6D-04AD - - - Start with 5 continues - D96D-04AD - - - Start with 9 continues - DB6D-04AD - - - Infinite health - P1 - 7E108E:0A - - - Infinite health - P2 - 7E1090:0A - - - - Bazooka Blitzkrieg (USA) - - Immune to most damage - 4AB5-3DAF - - - Fewer Missiles on pick-up - D9AC-1706 - - - More Missiles on pick-up - F0AC-1706 - - - Only 10 Missiles on pick-up (set Missiles to 10) - DCAB-14A6+DCAB-17A6 - - - 30 Missiles allowed - F3AB-14A6+F3AB-17A6 - - - Less energy on pick-up from 'L' pods - D4AF-1406 - - - More energy on pick-up from 'L' pods - DCAF-1406 - - - A lot more energy on pick-up from 'L' pods - 4EAF-1406 - - - Infinite health - 7E0305:FF - - - Infinite Missiles - 7E0304:14 - - - - Beauty and the Beast (USA) - - Invincibility (disable to pick up rocks, spikes still do damage) - 3CC0-376A+3CC0-37AA - - - Invincibility (but you can't pick up objects) - 2D6F-4DA0 - - - Invincibility after one hit - 3C6F-4F00 - - - Infinite health - C2C8-3D0A - - - Infinite time - C269-6407 - - - Infinite flower time - C265-6407 - - - Infinite continues - C2E0-DF0F - - - Hit anywhere - 4061-1706+4065-17A6+4065-1FD6+4066-1F66 - - - Don't take damage from some enemies - 3CC8-3D0A - - - No loss of light when the candle runs off the screen - 4AC8-47A8 - - - Death flash time is longer - EE66-4FAA - - - - Beavis and Butt-Head (USA) - - Start with half health (1st life) - D16C-0D0D - - - Start with half health (after 1st life) - D161-AF0D - - - Almost infinite health - C22C-AF08 - - - Gun power-ups worth 30 - 7DA8-C7DC - - - Gun power-ups worth 5 - D9A8-C7DC - - - Infinite lives - C267-A70D - - - Start with 2 life - DF6C-040D - - - Start with 4 lives - D76C-040D - - - Start with 10 lives - DB6C-040D - - - Invincibility after one hit - 82EA-A4D1 - - - Everyone is invincible, including enemies - DDEA-AFA1+DDA0-04A8 - - - - Bebe's Kids (USA) - - Infinite health - 7E047B:00 - - - Infinite time - 7E0470:63 - - - Infinite lives - 7E03C9:09 - - - - Beethoven - The Ultimate Canine Caper! (USA) - - Infinite health - 823F-3D01 - - - Infinite time - 8224-1705 - - - Infinite lives - 82C8-3464 - - - Infinite health (alt) - 7E1628:04 - - - Infinite time (alt) - 7E1654:63 - - - Infinite lives (alt) - 7E15C6:09 - - - - Best of the Best - Championship Karate (USA) - - Almost infinite health - D68F-AD65 - - - Infinite special moves - 828D-D409 - - - No special moves - P2 - BAC3-6F69 - - - Can play with any boxer (can't use special moves or get password) - P1 - D4C3-0DAD - - - Less strength - DCC3-0FDD - - - Less resistance - DCC3-0F0D - - - Less reflexes - DCC3-0F6D - - - More strength - 74C3-0FDD - - - More resistance - 74C3-0F0D - - - More reflexes - 74C3-0F6D - - - Start with 1 special move - DFC3-6D69 - - - Start with 8 special moves - D6C3-6D69 - - - Infinite time - 7E1A39:09 - - - No health - P2 - 7E0222:00 - - - Max Reflexes - 7E0459:63 - - - Max Resistance - 7E0455:63 - - - Max Strength - 7E0457:63 - - - - Big Sky Trooper (USA) - - Infinite HP - 7E1E0A:20 - - - Infinite hearts - 7E1E10:99 - - - Infinite Power Pack meter - 7E1E0C:20 - - - - Biker Mice from Mars (USA) - - Infinite ammo - 3CB8-4F63 - - - Infinite cash - 8E89-C7DB - - - Infinite Shield/Armor - 82B8-C76D - - - Infinite Skull effect - C263-CDDA - - - Infinite Star effect - 8289-4F03 - - - Infinite Stopwatch effect - C26C-47D2 - - - Infinite ammo (alt) - 7E17C6:03 - - - Max Engines - 7EFE38:05 - - - Max Tires - 7EFE3C:05 - - - Max Armor - 7EFE40:05 - - - Max Tornado Shots - 7E1F88:63 - - - Always finish 1st - 7E0928:00 - - - - Bill Laimbeer's Combat Basketball (USA) - - 2-point shots worth 3, 3-point shots worth 4 - 76BF-A4AF - - - All shots worth 1 point - 1BBF-A7DF+DFBF-A70F - - - All shots worth 3 points - 1BBF-A7DF+D7BF-A70F - - - All shots worth 4 points - 1BBF-A7DF+D0BF-A70F - - - All shots worth 5 points - 1BBF-A7DF+D9BF-A70F - - - All shots worth 6 points - 1BBF-A7DF+D1BF-A70F - - - Each half is 0:30 instead of 1:30 - DDB4-67DF - - - Each half is 2:30 - D4B4-67DF - - - Each half is 3:30 - D7B4-67DF - - - Each half is 4:30 - D0B4-67DF - - - Start with $65,296 instead of $10,000 - EEC5-6F16 - - - Start with $8,398,608 - 6DC5-64C6 - - - Start with $16,721,680 - EEC5-64C6 - - - No money is deducted from your total when you trade a player (but you must have enough money to make the trade) - C2BE-6D4B+C2BE-644B - - - Trade players for free - C2BE-6D4B+C2BE-644B+6DBE-AD4B - - - Timer continues to count when it is normally stopped (time-out by pressing start) - DDB7-67DF - - - - BioMetal (USA) - - Invincibility (blinking) - 406D-DDD2 - - - Infinite lives - C26E-6D02 - - - Infinite charge - C262-0D62 - - - Hit anywhere - 462E-0767+6D2E-0707+C927-6FD7 - - - Infinite lives (alt) - 7E029D:0A - - - - Bishin Densetsu Zoku (Japan) - - Infinite health - 7E122C:50 - - - No car damage - 7E0D9B:2F - - - Infinite time - 7E0C96:00 - - - Infinite time (alt) - 7E0C97:09 - - - - Bishoujo Senshi Sailor Moon (Japan) - - One hit kills - 40FD-8FD0+40F8-ED69+40F9-74A1 - - - Invincibility - 2D0D-E765 - - - Infinite health - 8BFF-5F00+C9F9-87D1 - - - Infinite lives - C991-7FA0 - - - Hit anywhere - 6DF6-54D0 - - - - Bishoujo Senshi Sailor Moon R (Japan) - - Invincibility - 2D0D-EFA5+2D0D-E4A5 - - - Infinite health - 8BDC-7D61 - - - Infinite lives - C992-5460 - - - Infinite Special - C90F-E400 - - - Hit anywhere - 6DDD-5461 - - - One hit kills - 40D3-5FA1+400D-7F05+40F5-5D00 - - - - Blackthorne (USA) - - Infinite items (enable after obtaining first item, disable before getting next item, repeat this process) - 89C6-1FD4 - - - Infinite health - 7E0FC5:18 - - - 3rd slot item mod - 7E187A:03 - - - - BlaZeon - The Bio-Cyborg Challenge (USA) - - Invincibility - 2D6D-A700 - - - Infinite lives - 82B4-D4DD - - - Infinite lives (alt) - C2B4-D4DD+C2BD-64AD - - - Infinite Atomic Shields - Mars - C2C7-D7A7 - - - Infinite Hyper Bombs - Neptune - C2C3-DF67 - - - Hit anywhere - 1D85-AD0F+1D8B-ADAF+C28A-D7A4+7685-ADDF+768B-AD6F - - - Start with 1 ship - DD6E-6707 - - - Start with 2 ships - DF6E-6707 - - - Start with 4 ships - D76E-6707 - - - Start with 5 ships - D06E-6707 - - - Start with 7 ships - D16E-6707 - - - Start with 10 ships - DB6E-6707 - - - Start with 26 ships - FB6E-6707 - - - Start on Stage 2 - DF6D-6D07 - - - Start on Stage 3 - D46D-6D07 - - - Start on Stage 4 - D76D-6D07 - - - Start on Stage 5 - D06D-6D07 - - - - Blues Brothers, The (USA) - - Invincibility - 1DB3-14DF - - - Infinite health (1P game) - 82A3-3F0D - - - Infinite health (2P game) - 82AE-14D7 - - - Infinite lives - 828F-34DF - - - Infinite time - C2B3-3764 - - - Infinite Discs - 8289-CFDF - - - Multi-jump - 6D21-CFAF+6D29-CD6F - - - - Bobby's World (USA) (Proto) - - Invincibility - 2DB7-1DD8 - - - Infinite health - 82BC-1468 - - - Infinite health (alt) - 7E139B03 - - - Infinite lives - 822D-17AF - - - Infinite lives (alt) - 7E139509 - - - Multi-jump - DDB3-17AC - - - - Bonkers (USA) - - Invincibility - 2DCD-C404 - - - Infinite health - 89C4-1DDF - - - Infinite bombs - C9AB-CFDD - - - Infinite lives - C963-CD0F - - - Infinite dash - C98C-CD0F - - - Hit anywhere - 6DE1-1F04+9DE1-1F64 - - - - Boogerman - A Pick and Flick Adventure (USA) - - Infinite health - CDF7-57AD - - - Infinite lives - DDF0-740D - - - Infinite Loogies - DD5C-74A9 - - - Infinite Boogers - DD53-E760 - - - Infinite Belches - DD55-5F09 - - - Infinite Super Belches - DD51-8FA9 - - - Infinite Farts - DD54-87D1 - - - Infinite Super Farts - DD54-ED61 - - - Infinite Chili Belches and Farts - DDB8-5DD5 - - - Infinite Super Chili Belches and Farts - DDBB-8765 - - - Infinite Rocket Farts - DDFE-7FD1 - - - Get chili when hit - DFF2-7D05 - - - Get Milk when hit - DFFA-74A5 - - - Infinite health (alt) - 7E0EF8:02 - - - Infinite Boogers (alt) - 7E0224:20 - - - Infinite Belches and Farts (both kinds) - 7E0226:20 - - - - Boxing Legends of the Ring (USA) - - Invincibility - P1 - 6D6A-C4A9 - - - Invincibility - P2 - 6D66-3D05 - - - Infinite super punches - P1 - C26D-3F05 - - - Infinite super punches - P2 or CPU - C260-C4A9 - - - Infinite strength beads - DD2B-17D9+C229-C4D9 - - - Infinite time per round - C2BA-A7A7 - - - Hit anywhere - P1 - 1DBD-4460+F6BD-4400 - - - Hit anywhere - P2 - 1D69-3FD9+F669-3DA9 - - - Blocking disabled - P1 - DD62-CD09 - - - Blocking disabled - P2 - DD66-3FA5 - - - Each round is 1 minute - DF8D-CDA7 - - - Each round is 2 minutes - D48D-CDA7 - - - Each round is 4 minutes - D08D-CDA7 - - - Each round is 5 minutes - D98D-CDA7 - - - Each round is 6 minutes - D18D-CDA7 - - - Both fighters start with no super punches - DD87-C4D4 - - - Both fighters start with 2 super punches - D487-C4D4 - - - Both fighters start with 3 super punches - D787-C4D4 - - - Create a stronger left jab - 6DEE-CF4E - - - Create a stronger left hook body - 6DEE-CFCE - - - Create a stronger left hook head - 6DEE-C44E - - - Create a stronger left uppercut - 6DEE-C4CE - - - Create a stronger right cross body - 6DEE-C74E - - - Create a stronger right cross head - 6DEE-C7CE - - - Create a stronger right uppercut - 6DED-3D4E - - - Start on round 5 - 338F-C7A4 - - - Start on round 12 - A38F-C7A4 - - - Infinite full stanima - 7E05AF:0F - - - - Brain Lord (USA) - - 9999 HP - 7E08C2:0F+7E08C3:27 - - - 9999 Max HP - 7E08C4:0F+7E08C5:27 - - - 255 Power - 7E08CA:FF - - - Have the best status - 7E08DD:00 - - - Move faster, same effect as wearing the Cloak - 7E08D4:07 - - - Infinite G - 7E0376:97 - - - Can access 13 spells - 7E08D1:0D - - - Have Magic Shot spell - 7E0910:02 - - - Have Magic Shield spell - 7E0911:03 - - - Have Flame Ring spell - 7E0912:04 - - - Have Fireball spell - 7E0913:05 - - - Have Impulse spell - 7E0914:06 - - - Have Lightning spell - 7E0915:07 - - - Have Magic Missile spell - 7E0916:08 - - - Have Bound spell - 7E0917:09 - - - Have Ice spell - 7E0918:0A - - - Have Phaser spell - 7E0919:0B - - - Have Slow spell - 7E091A:0E - - - Have Stop spell - 7E091B:0F - - - Have Ghost spell - 7E091C:10 - - - Quick spell charge - 7E08C7:01 - - - Have the Iron Sword - 7E0921:01+7E0920:02 - - - Have the Steel Buster - 7E0921:01+7E0920:03 - - - Have the Platinum Sword - 7E0921:01+7E0920:05 - - - Have the Battle Axe - 7E0921:01+7E0920:06 - - - Have the Tomahawk - 7E0921:01+7E0920:07 - - - Have the Rock Breaker - 7E0921:01+7E0920:08 - - - Have the Great Axe - 7E0921:01+7E0920:09 - - - Have the Boomerang - 7E0921:01+7E0920:0A - - - Have the Chuckler - 7E0921:01+7E0920:0B - - - Have the Mornin Star - 7E0921:01+7E0920:0C - - - Have the Heavy Mall - 7E0921:01+7E0920:0D - - - Have the Long Bow - 7E0921:01+7E0920:0E - - - Have the Silver Bow - 7E0921:01+7E0920:0F - - - Have the Lightning Bow - 7E0921:01+7E0920:10 - - - Have the Fire Sword - 7E0921:01+7E0920:12 - - - Have the Iron Helmet - 7E0923:02+7E0922:02 - - - Have the Cross Helmet - 7E0923:02+7E0922:03 - - - Have the Blackgold Helm - 7E0923:02+7E0922:04 - - - Have the Warrior's Helm - 7E0923:02+7E0922:05 - - - Have the Platinum Helm - 7E0923:02+7E0922:06 - - - Have the Nameless Helm - 7E0923:02+7E0922:07 - - - Have the Nameless Helm - 7E0923:02+7E0922:08 - - - Have the Nameless Helm - 7E0923:02+7E0922:09 - - - Have the Chain Mail - 7E0925:03+7E0924:02 - - - Have the Banded Mail - 7E0925:03+7E0924:03 - - - Have the Bone Mail - 7E0925:03+7E0924:04 - - - Have the Plate Armor - 7E0925:03+7E0924:05 - - - Have the Royal Armor - 7E0925:03+7E0924:06 - - - Have the Cape - 7E0925:03+7E0924:07 - - - Have the Nameless Armor - 7E0925:03+7E0924:08 - - - Have the Nameless Armor - 7E0925:03+7E0924:09 - - - Have the Round Shield - 7E0927:04+7E0926:02 - - - Have the Kite Shield - 7E0927:04+7E0926:03 - - - Have the Bone Shield - 7E0927:04+7E0926:04 - - - Have the Warrior Shield - 7E0927:04+7E0926:05 - - - Have the Battle Shield - 7E0927:04+7E0926:06 - - - Have the Shield - 7E0927:04+7E0926:07 - - - Have the Reviving Mirror - 7E0929:05+7E0928:01 - - - Have the Debug Mirror (a debug item) - 7E0929:05+7E0928:02 - - - Have the Wind Shoes - 7E0929:05+7E0928:03 - - - Have the Spike Boots - 7E0929:05+7E0928:04 - - - Have the Life Jade - 7E092B:06+7E092A:01 - - - Have the Crimson Jade - 7E092B:06+7E092A:02 - - - Have the Foundation Jade - 7E092B:06+7E092A:03 - - - Have the Power Jade - 7E092B:06+7E092A:04 - - - Have the Lightning Jade - 7E092B:06+7E092A:05 - - - Have the Anger Jade - 7E092B:06+7E092A:06 - - - Have the Water Jade - 7E092B:06+7E092A:07 - - - Have the Deceased Jade - 7E092B:06+7E092A:08 - - - Have the Light Jade - 7E092B:06+7E092A:09 - - - Have the Key to the Seal - 7E092D:07+7E092C:01 - - - Have the 3rd floor Key - 7E092D:07+7E092C:02 - - - Have the 4th floor Key - 7E092D:07+7E092C:03 - - - Have the Puzzle Key - 7E092D:07+7E092C:04 - - - Have the Crossroads Key - 7E092D:07+7E092C:05 - - - Have the Sky Room Key - 7E092D:07+7E092C:06 - - - Have the Cave Room Key - 7E092D:07+7E092C:07 - - - Have the Dark Room Key - 7E092D:07+7E092C:08 - - - Have the Basement Key - 7E092D:07+7E092C:09 - - - Have the Detour Key - 7E092D:07+7E092C:0A - - - Have the Bottomless Key - 7E092D:07+7E092C:0B - - - Have the Distance Key - 7E092D:07+7E092C:0C - - - Have the Office Key - 7E092D:07+7E092C:0D - - - Have the Flyer's Key - 7E092D:07+7E092C:0E - - - Have the Steel Sky Key - 7E092D:07+7E092C:0F - - - Have the Invisible Key - 7E092D:07+7E092C:10 - - - Have the Underground Key - 7E092D:07+7E092C:11 - - - Have the Control Key - 7E092D:07+7E092C:12 - - - Have the Preparation Key - 7E092D:07+7E092C:13 - - - Have the Laboratory Key - 7E092D:07+7E092C:14 - - - Have the Power Room Key - 7E092D:07+7E092C:15 - - - Have the Oblivion Key - 7E092D:07+7E092C:16 - - - Have the Western Sky Key - 7E092D:07+7E092C:1F - - - Have the Ocean Key - 7E092D:07+7E092C:20 - - - Have the Under Ice Key - 7E092D:07+7E092C:21 - - - Have the Waterfall Key - 7E092D:07+7E092C:22 - - - Have the Flood Gate Key - 7E092D:07+7E092C:23 - - - Have the Wave Key - 7E092D:07+7E092C:24 - - - Have the Ice Key - 7E092D:07+7E092C:25 - - - Have the Water-Air Key - 7E092D:07+7E092C:26 - - - Have the Red Wing Key - 7E092D:07+7E092C:27 - - - Have the 1st Gate Key - 7E092D:07+7E092C:28 - - - Have the 2nd Gate Key - 7E092D:07+7E092C:29 - - - Have the 3rd Gate Key - 7E092D:07+7E092C:2A - - - Have the Sky Dragon Key - 7E092D:07+7E092C:2B - - - Have the Land Dragon Key - 7E092D:07+7E092C:2C - - - Have the Sea Dragon Key - 7E092D:07+7E092C:2D - - - Have the Dead Dragon Key - 7E092D:07+7E092C:2E - - - Have the Silence Key - 7E092D:07+7E092C:33 - - - Have the Castle Key - 7E092D:07+7E092C:34 - - - Have the Endless Key - 7E092D:07+7E092C:35 - - - Have the Spirit Key - 7E092D:07+7E092C:36 - - - Have the Destruction Key - 7E092D:07+7E092C:37 - - - Have the Platinum Key - 7E092D:07+7E092C:38 - - - Have the Night Key - 7E092D:07+7E092C:39 - - - Have the Afterworld Key - 7E092D:07+7E092C:3A - - - Have the Entropy Key - 7E092D:07+7E092C:3B - - - Have the Fountain Key - 7E092D:07+7E092C:3C - - - Have the Duplicate Key - 7E092D:07+7E092C:3E - - - Have the Duplicate Key - 7E092D:07+7E092C:3F - - - - Brainies, The (Europe) - - Timer disable cheat to get score then re-enable - 7E091C:17 - - - - Brainies, The (USA) - - Infinite time - C262-0DD4 - - - Infinite continues - C262-67AF - - - Start with and always have 9 Jokers - DBCC-6F6D - - - Start on level 25 - FC63-AF6D - - - Start on level 50 - 7763-AF6D - - - Start on level 75 - 0A63-AF6D - - - Start on level 100 - 1963-AF6D - - - - Bram Stoker's Dracula (USA) - - Infinite energy - C263-0F2F - - - Infinite lives - C268-ADBF - - - Infinite pistol ammo - C92B-A4DA - - - Infinite shotgun ammo - C926-64AA - - - Turbo walking - 3CC2-6F6D - - - Infinite missile weapon - C927-D762 - - - One hit kills all enemies, except bosses - 6D68-DFFF - - - Freeze most ground enemies - 4AA8-64D4 - - - Freeze most aerial enemies - 4AAB-6F64 - - - Start at the final battle - FDEC-0F03 - - - - Brandish (USA) - - Have over 10,000,000 gold - FD53-A3D7 - - - Sell an item for max gold - D484-1405+6D84-14D5 - - - Luck stays maxed out - 6D3B-4FD2 - - - Map gets filled when entering a level - 6D02-770B+3C02-776B - - - - Brawl Brothers (USA) - - Invincibility and infinite special attack - 6D63-1791+DF63-17B1 - - - Infinite health - A961-3DB1 - - - One hit kills on most enemies - EE6B-CF21+EE6B-C4F1+406B-C4B1 - - - Bosses die immediately - EE6E-1D21+EE6E-1FF1+406E-1FB1 - - - Hit anywhere - both players - 40C2-44B9+40C2-4729+40CC-4D99+40CD-1DF9+40CE-4429 - - - Invincibility - P1 - 7E0908:01 - - - Invincibility - P2 - 7E09D8:01 - - - Infinite health - P1 - 7E0924:50 - - - Infinite health - P2 - 7E09F4:50 - - - Infinite lives - P1 - 7E0946:09 - - - Infinite lives - P2 - 7E0A16:09 - - - One hit kills on most enemies (alt) - 7E0B94:00+7E0919:00+7E0D34:00+7E0C64:00+7E0AC4:00 - - - Have Lots of Kills - P1 - 7E0C34:FF - - - Play as Dieter (glitchy) - P1 - 7E0920:0A - - - Play as Dieter (glitchy) - P2 - 7E09F0:0A - - - - BreakThru! (USA) - - Infinite time - 7E125B:FF - - - - Breath of Fire (USA) - - 9999 EXP after every battle - 336F-172D - - - Infinite usable items in menu - DEEE-C0B4 - - - Infinite Gold - 8EE1-C7F3+8EE5-CD23+8EEE-CF23 - - - Create a new character at level 5 - D9BF-CD69 - - - Create a new character with 153 max HP - BBBF-CFD9 - - - Create a new character with 153 HP - BBBF-CF69 - - - Create a new character with 20 max AP - F0BF-C4D9 - - - Create a new character with 20 AP - F0BF-C469 - - - Create a new character with INT at 22 - F1B4-CD09 - - - Create a new character with Agility at 22 - F1B4-CD69 - - - Create a new character with Fate at 40 - 46B4-CFD9 - - - Create a new character with strength at 50 - 74BF-C7A9 - - - Create a new character with Vigor at 50 - 74B4-CDD9 - - - Ryu starts with Tri-Rang - 9EB7-CDD9 - - - Ryu starts with EmporSD - D6B7-CDD9 - - - Ryu starts with DragonSH - 90B7-CD69 - - - Ryu starts with LifeAR - F2B7-CFD9 - - - Ryu starts with DragonHT - 6CB7-CF69 - - - Nina starts with PowerRP - F2BB-CDD9 - - - Nina starts with MaskSH - 97BB-CD69+4FBB-CDA9 - - - Nina starts with ClearCL - 43BB-CFD9 - - - Nina starts with LoveHT - 56BB-CF69+4FBB-CFA9 - - - Bo starts with HeroBW - 98B1-CDD9 - - - Bo starts with IcyAR - FFB1-CD69 - - - Bo starts with CursedHT - 18B1-CFD9 - - - Ox starts with Mallet - 41BA-CDD9 - - - Ox starts with StarSH - 60BA-CD69 - - - Ox starts with WorldAR - 49BA-CFD9 - - - Ox starts with CursedHT - 18BA-CF69 - - - Gobi starts with Sleeper - 76BE-CDD9 - - - Gobi starts with StarSH - 60BE-CD69+4FBE-CDA9 - - - Gobi starts with SpineCL - F0BE-CFD9 - - - Gobi starts with CursedHT - 18BE-CF69 - - - Karn starts with DarkDR - 0AB4-3DD9 - - - Karn starts with StarSH - 60B4-3D69+4FB4-3DA9 - - - Karn starts with QuartzAR - FEB4-3FD9 - - - Karn starts with CursedHT - 18B4-3F69 - - - Mogu starts with MystCW - 7EB9-3DD9 - - - Mogu starts with StarSH - 60B9-3D69+4FB9-3DA9 - - - Mogu starts with FlameAR - D3B9-3FD9 - - - Mogu starts with CursedHT - 18B9-3F69+4FB9-3FA9 - - - Bleu starts with GlowCN - 4EB6-3DD9 - - - Bleu starts with MaskSH - 97B6-3D69 - - - Bleu starts with ClearCL - 43B6-3FD9 - - - Bleu starts with CursedHT - 18B6-3F69 - - - Character 1 - Max LEVEL - 7E104A:FF - - - Character 1 - Infinite HP - 7E104E:E7+7E104F:03 - - - Character 1 - Max HP - 7E104C:E7+7E104D:03 - - - Character 1 - Infinite AP - 7E1052:E7+7E1053:03 - - - Character 1 - Max AP - 7E1050:E7+7E1051:03 - - - Character 1 - Max Str - 7E1057:FF - - - Character 1 - Max Vigor - 7E1058:FF - - - Character 1 - Max Wisdom - 7E1059:FF - - - Character 1 - Max Agil - 7E105A:FF - - - Character 1 - Max MAG - 7E105B:FF - - - Character 1 - Max Luck - 7E105C:FF - - - Character 1 - Max ATK - 7E105D:E7+7E105E:03 - - - Character 1 - Max DEF - 7E105F:E7+7E1060:03 - - - Character 1 - Max INT - 7E1061:FF - - - Character 1 - Max ACT - 7E1062:FF - - - Character 1 - Max FATE - 7E1063:FF - - - Character 2 - Max LEVEL - 7E10EA:FF - - - Character 2 - Infinite HP - 7E10EE:E7+7E10EF:03 - - - Character 2 - Max HP - 7E10EC:E7+7E10ED:03 - - - Character 2 - Infinite AP - 7E10F2:E7+7E10F3:03 - - - Character 2 - Max AP - 7E10F0:E7+7E10F1:03 - - - Character 2 - Max Str - 7E10F7:FF - - - Character 2 - Max Vigor - 7E10F8:FF - - - Character 2 - Max Wisdom - 7E10F9:FF - - - Character 2 - Max Agil - 7E10FA:FF - - - Character 2 - Max MAG - 7E10FB:FF - - - Character 2 - Max Luck - 7E10FC:FF - - - Character 2 - Max ATK - 7E10FD:E7+7E10FE:03 - - - Character 2 - Max DEF - 7E10FF:E7+7E1100:03 - - - Character 2 - Max INT - 7E1101:FF - - - Character 2 - Max ACT - 7E1102:FF - - - Character 2 - Max FATE - 7E1103:FF - - - Character 3 - Max LEVEL - 7E118A:FF - - - Character 3 - Infinite HP - 7E118E:E7+7E118F:03 - - - Character 3 - Max HP - 7E118C:E7+7E118D:03 - - - Character 3 - Infinite AP - 7E1192:E7+7E1193:03 - - - Character 3 - Max AP - 7E1190:E7+7E1191:03 - - - Character 3 - Max Str - 7E1197:FF - - - Character 3 - Max Vigor - 7E1198:FF - - - Character 3 - Max Wisdom - 7E1199:FF - - - Character 3 - Max Agil - 7E119A:FF - - - Character 3 - Max MAG - 7E119B:FF - - - Character 3 - Max Luck - 7E119C:FF - - - Character 3 - Max ATK - 7E119D:E7+7E119E:03 - - - Character 3 - Max DEF - 7E119F:E7+7E11A0:03 - - - Character 3 - Max INT - 7E11A1:FF - - - Character 3 - Max ACT - 7E11A2:FF - - - Character 3 - Max FATE - 7E11A3:FF - - - Character 4 - Max LEVEL - 7E122A:FF - - - Character 4 - Infinite HP - 7E122E:E7+7E122F:03 - - - Character 4 - Max HP - 7E122C:E7+7E122D:03 - - - Character 4 - Infinite AP - 7E1232:E7+7E1233:03 - - - Character 4 - Max AP - 7E1230:E7+7E1231:03 - - - Character 4 - Max Str - 7E1237:FF - - - Character 4 - Max Vigor - 7E1238:FF - - - Character 4 - Max Wisdom - 7E1239:FF - - - Character 4 - Max Agil - 7E123A:FF - - - Character 4 - Max MAG - 7E123B:FF - - - Character 4 - Max Luck - 7E123C:FF - - - Character 4 - Max ATK - 7E123D:E7+7E123E:03 - - - Character 4 - Max DEF - 7E123F:E7+7E1240:03 - - - Character 4 - Max INT - 7E1241:FF - - - Character 4 - Max ACT - 7E1242:FF - - - Character 4 - Max FATE - 7E1243:FF - - - Character 5 - Max LEVEL - 7E12CA:FF - - - Character 5 - Infinite HP - 7E12CE:E7+7E12CF:03 - - - Character 5 - Max HP - 7E12CC:E7+7E12CD:03 - - - Character 5 - Infinite AP - 7E12D2:E7+7E12D3:03 - - - Character 5 - Max AP - 7E12D0:E7+7E12D1:03 - - - Character 5 - Max Str - 7E12D7:FF - - - Character 5 - Max Vigor - 7E12D8:FF - - - Character 5 - Max Wisdom - 7E12D9:FF - - - Character 5 - Max Agil - 7E12DA:FF - - - Character 5 - Max MAG - 7E12DB:FF - - - Character 5 - Max Luck - 7E12DC:FF - - - Character 5 - Max ATK - 7E12DD:E7+7E12DE:03 - - - Character 5 - Max DEF - 7E12DF:E7+7E12E0:03 - - - Character 5 - Max INT - 7E12E1:FF - - - Character 5 - Max ACT - 7E12E2:FF - - - Character 5 - Max FATE - 7E12E3:FF - - - Character 6 - Max LEVEL - 7E136A:FF - - - Character 6 - Infinite HP - 7E136E:E7+7E136F:03 - - - Character 6 - Max HP - 7E136C:E7+7E136D:03 - - - Character 6 - Infinite AP - 7E1372:E7+7E1373:03 - - - Character 6 - Max AP - 7E1370:E7+7E1371:03 - - - Character 6 - Max Str - 7E1377:FF - - - Character 6 - Max Vigor - 7E1378:FF - - - Character 6 - Max Wisdom - 7E1379:FF - - - Character 6 - Max Agil - 7E137A:FF - - - Character 6 - Max MAG - 7E137B:FF - - - Character 6 - Max Luck - 7E137C:FF - - - Character 6 - Max ATK - 7E137D:E7+7E137E:03 - - - Character 6 - Max DEF - 7E137F:E7+7E1380:03 - - - Character 6 - Max INT - 7E1381:FF - - - Character 6 - Max ACT - 7E1382:FF - - - Character 6 - Max FATE - 7E1383:FF - - - Character 7 - Max LEVEL - 7E140A:FF - - - Character 7 - Infinite HP - 7E140E:E7+7E140F:03 - - - Character 7 - Max HP - 7E140C:E7+7E140D:03 - - - Character 7 - Infinite AP - 7E1412:E7+7E1413:03 - - - Character 7 - Max AP - 7E1410:E7+7E1411:03 - - - Character 7 - Max Str - 7E1417:FF - - - Character 7 - Max Vigor - 7E1418:FF - - - Character 7 - Max Wisdom - 7E1419:FF - - - Character 7 - Max Agil - 7E141A:FF - - - Character 7 - Max MAG - 7E141B:FF - - - Character 7 - Max Luck - 7E141C:FF - - - Character 7 - Max ATK - 7E141D:E7+7E141E:03 - - - Character 7 - Max DEF - 7E141F:E7+7E1420:03 - - - Character 7 - Max INT - 7E1421:FF - - - Character 7 - Max ACT - 7E1422:FF - - - Character 7 - Max FATE - 7E1423:FF - - - Character 8 - Max LEVEL - 7E14AA:FF - - - Character 8 - Infinite HP - 7E14AE:E7+7E14AF:03 - - - Character 8 - Max HP - 7E14AC:E7+7E14AD:03 - - - Character 8 - Infinite AP - 7E14B2:E7+7E14B3:03 - - - Character 8 - Max AP - 7E14B0:E7+7E14B1:03 - - - Character 8 - Max Str - 7E14B7:FF - - - Character 8 - Max Vigor - 7E14B8:FF - - - Character 8 - Max Wisdom - 7E14B9:FF - - - Character 8 - Max Agil - 7E14BA:FF - - - Character 8 - Max MAG - 7E14BB:FF - - - Character 8 - Max Luck - 7E14BC:FF - - - Character 8 - Max ATK - 7E14BD:E7+7E14BE:03 - - - Character 8 - Max DEF - 7E14BF:E7+7E14C0:03 - - - Character 8 - Max INT - 7E14C1:FF - - - Character 8 - Max ACT - 7E14C2:FF - - - Character 8 - Max FATE - 7E14C3:FF - - - - Breath of Fire II (USA) - - Infinite HP in battle - C9FA-EFA6 - - - Infinite AP In menu - 8E64-EDAA - - - Infinite AP In battle - 8BDA-8DDC - - - Main character is different - 46DA-87D4+45DA-87D4+FDDA-87D4+F4DA-87D4+F0DA-87D4 - - - Start with 50 HP - 74DA-8F64 - - - Start with 100 HP - 10DA-8F64 - - - Start with 150 HP - B1DA-8F64 - - - Start with 250 HP - ECDA-8F64 - - - Start with 500 HP - DFDA-8FA4+E0DA-8F64 - - - Start with 750 HP - D4DA-8FA4+33DA-8F64 - - - Start with a lot of HP - FEDA-8FA4 - - - Start with 50 AP - 74DA-8464 - - - Start with 100 AP - 10DA-8464 - - - Start with 150 AP - B1DA-8464 - - - Start with 250 AP - ECDA-8464 - - - Start with 500 AP - DFDA-84A4+E0DA-8464 - - - Start with 750 AP - D4DA-84A4+33DA-8464 - - - Start with a lot of AP - FEDA-84A4 - - - Start with 0 strength - DDDA-8704 - - - Start with Mega strength - EEDA-8704 - - - Start with 0 stamina - DDDA-8764 - - - Start with Mega stamina - EEDA-8764 - - - Start with 0 agility - DDDA-87A4 - - - Start with Mega agility - EEDA-87A4 - - - Start with 0 wisdom - DDD3-84D4 - - - Start with Mega wisdom - EED3-84D4 - - - Start with 0 luck - DDD3-8404 - - - Start with Mega luck - EED3-8404 - - - Start with Mega EXP - EED3-87D4 - - - No random battles - 7E12DC:00 - - - Infinite Fishing Rod power - 7E128C:60 - - - Have all warp points - 7E5670:FF+7E5671:FF+7E5672:FF+7E5673:FF - - - Have all Shamans - 7E5695:FF - - - Infinite Shaman use - 7E5696:00+7E5697:00+7E5698:00+7E5699:00+7E569A:00+7E569B:00 - - - Have all non-shop tenants - 7E55EB:DE+7E55EC:7B+7E55ED:77+7E55EE:0B - - - Character 1 - No Status Effects - 7E51E5:00 - - - Character 1 - Level 99 - 7E51E7:63 - - - Character 1 - Infinite HP - 7E51E8:0F+7E51E9:27 - - - Character 1 - Maximum HP - 7E51EA:0F+7E51EB:27 - - - Character 1 - Infinite AP - 7E51EC:0F+7E51ED:27 - - - Character 1 - Maximum AP - 7E51EE:0F+7E51EF:27 - - - Character 1 - 255 Str - 7E51F1:FF - - - Character 1 - 255 Stmna - 7E51F2:FF - - - Character 1 - 255 Agil - 7E51F3:FF - - - Character 1 - 9999 Off - 7E5202:0F+7E5203:27 - - - Character 1 - 9999 Def - 7E5204:0F+7E5205:27 - - - Character 1 - 9999 Vigor - 7E5206:0F+7E5207:27 - - - Character 1 - 255 Temporary Wisdom - 7E5208:FF - - - Character 1 - 255 Temporary Luck - 7E5209:FF - - - Character 1 - 255 Permanant Wisdom (next time you change equipment) - 7E520C:FF - - - Character 1 - 255 Permanant Luck (next time you change equipment) - 7E520D:FF - - - Character 1 - Maximum Guts - 7E520B:FF - - - Character 1 - 9999999 EXP - 7E520E:7F+7E520F:96+7E5210:98 - - - Character 1 - Maximum Jewel color - 7E520A:FF - - - Character 2 - No Status Effects - 7E5225:00 - - - Character 2 - Level 99 - 7E5227:63 - - - Character 2 - Infinite HP - 7E5228:0F+7E5229:27 - - - Character 2 - Maximum HP - 7E522A:0F+7E522B:27 - - - Character 2 - Infinite AP - 7E522C:0F+7E522D:27 - - - Character 2 - Maximum AP - 7E522E:0F+7E522F:27 - - - Character 2 - 255 Str - 7E5231:FF - - - Character 2 - 255 Stmna - 7E5232:FF - - - Character 2 - 255 Agil - 7E5233:FF - - - Character 2 - 9999 Off - 7E5242:0F+7E5243:27 - - - Character 2 - 9999 Def - 7E5244:0F+7E5245:27 - - - Character 2 - 9999 Vigor - 7E5246:0F+7E5247:27 - - - Character 2 - 255 Temporary Wisdom - 7E5248:FF - - - Character 2 - 255 Temporary Luck - 7E5249:FF - - - Character 2 - 255 Permanant Wisdom (next time you change equipment) - 7E524C:FF - - - Character 2 - 255 Permanant Luck (next time you change equipment) - 7E524D:FF - - - Character 2 - Maximum Guts - 7E524B:FF - - - Character 2 - 9999999 EXP - 7E524E:7F+7E524F:96+7E5250:98 - - - Character 2 - Maximum Jewel color - 7E524A:FF - - - Character 3 - No Status Effects - 7E5265:00 - - - Character 3 - Level 99 - 7E5267:63 - - - Character 3 - Infinite HP - 7E5268:0F+7E5269:27 - - - Character 3 - Maximum HP - 7E526A:0F+7E526B:27 - - - Character 3 - Infinite AP - 7E526C:0F+7E526D:27 - - - Character 3 - Maximum AP - 7E526E:0F+7E526F:27 - - - Character 3 - 255 Str - 7E5271:FF - - - Character 3 - 255 Stmna - 7E5272:FF - - - Character 3 - 255 Agil - 7E5273:FF - - - Character 3 - 9999 Off - 7E5282:0F+7E5283:27 - - - Character 3 - 9999 Def - 7E5284:0F+7E5285:27 - - - Character 3 - 9999 Vigor - 7E5286:0F+7E5287:27 - - - Character 3 - 255 Temporary Wisdom - 7E5288:FF - - - Character 3 - 255 Temporary Luck - 7E5289:FF - - - Character 3 - 255 Permanant Wisdom (next time you change equipment) - 7E528C:FF - - - Character 3 - 255 Permanant Luck (next time you change equipment) - 7E528D:FF - - - Character 3 - Maximum Guts - 7E528B:FF - - - Character 3 - 9999999 EXP - 7E528E:7F+7E528F:96+7E5290:98 - - - Character 3 - Maximum Jewel color - 7E528A:FF - - - Character 4 - No Status Effects - 7E52A5:00 - - - Character 4 - Level 99 - 7E52A7:63 - - - Character 4 - Infinite HP - 7E52A8:0F+7E52A9:27 - - - Character 4 - Maximum HP - 7E52AA:0F+7E52AB:27 - - - Character 4 - Infinite AP - 7E52AC:0F+7E52AD:27 - - - Character 4 - Maximum AP - 7E52AE:0F+7E52AF:27 - - - Character 4 - 255 Str - 7E52B1:FF - - - Character 4 - 255 Stmna - 7E52B2:FF - - - Character 4 - 255 Agil - 7E52B3:FF - - - Character 4 - 9999 Off - 7E52C2:0F+7E52C3:27 - - - Character 4 - 9999 Def - 7E52C4:0F+7E52C5:27 - - - Character 4 - 9999 Vigor - 7E52C6:0F+7E52C7:27 - - - Character 4 - 255 Temporary Wisdom - 7E52C8:FF - - - Character 4 - 255 Temporary Luck - 7E52C9:FF - - - Character 4 - 255 Permanant Wisdom (next time you change equipment) - 7E52CC:FF - - - Character 4 - 255 Permanant Luck (next time you change equipment) - 7E52CD:FF - - - Character 4 - Maximum Guts - 7E52CB:FF - - - Character 4 - 9999999 EXP - 7E52CE:7F+7E52CF:96+7E52D0:98 - - - Character 4 - Maximum Jewel color - 7E52CA:FF - - - - BS Zelda no Densetsu - Dai-3-wa (Japan) (BS) - - Disable the 57 minute time limit - 3CDD-7F5D+3CDD-7F8D+6DDD-7FED - - - - Bubsy in - Claws Encounters of the Furred Kind (USA) - - Infinite lives - DDB1-175C - - - Infinite time - DDB4-3404 - - - Numbered t-shirts worth one more - 766C-1766 - - - Bogus jump - 946B-1D8B - - - Super-jump - 716B-1D8B - - - Mega-jump - 436B-1D8B - - - Each yarn ball worth 0 - DD60-1FD6 - - - Each yarn ball worth 5 - D960-1FD6 - - - Each yarn ball worth 10 - FD60-1FD6 - - - Crate of yarn holds 0 instead of 25 - DD69-4F6C - - - Crate of yarn holds 50 - 9D69-4F6C - - - Crate of yarn holds 75 - 5969-4F6C - - - Crate of yarn holds 99 - BB69-4F6C - - - Start with 1 life - DD34-4D6D - - - Start with 5 lives - D034-4D6D - - - Start with 25 lives - 4034-4D6D - - - Start with 50 lives - 9D34-4D6D - - - Start with 75 lives - 5934-4D6D - - - Start on chapter 2 - DF6D-472A - - - Start on chapter 3 - D46D-472A - - - Start on chapter 4 - D76D-472A - - - Start on chapter 5 - D06D-472A - - - Start on chapter 6 - D96D-472A - - - Start on chapter 7 - D16D-472A - - - Start on chapter 8 - D66D-472A - - - Start on chapter 9 - DC6D-472A - - - Start on chapter 10 - DA6D-472A - - - Start on chapter 11 - D26D-472A - - - Start on chapter 12 - D36D-472A - - - Start on chapter 13 - DE6D-472A - - - Start on chapter 14 - FD6D-472A - - - Start on Chapter 15 - FF6D-472A - - - Start on Chapter 16 - F46D-472A - - - - Bubsy II (USA) - - Invincibility - 62E5-5F0F - - - Infinite health - 8FD5-EDD4 - - - Infinite lives - C2D8-7DAF - - - Infinite time in most main levels - C217-8DD7+C21F-87A7 - - - Infinite time in some bonus levels - C25C-740D - - - Infinite Warp Holes - C2DE-54D0 - - - Infinite Diving Suits - C212-57AD - - - Infinite Smart Bombs - C271-7DD0 - - - Infinite ammo for Nerf Gun - C247-5465 - - - Infinite health (alt) - 7E1188:04 - - - Infinite lives (alt) - 7E3422:09 - - - - Bugs Bunny - Rabbit Rampage (USA) - - Invincibility - 2D6A-17AF - - - Infinite energy - C28C-4FAF - - - Infinite lives - DDA3-3D07 - - - Infinite lives (alt) - C2A3-3DA7 - - - Take minimal damage - A38C-4FAF - - - Full energy from carrots - DD88-476F - - - Moon jumping Bugs - F0B4-1404 - - - Super-jumping Bugs - 0DB4-1404+E0B7-1DD4 - - - Start and continue with 10 lives - DC60-CD0D - - - Start and continue with 2 lives - D460-CD0D - - - - Bulls vs Blazers and the NBA Playoffs (USA) - - Never miss a shot - DD66-C4BD - - - - Bust-A-Move (USA) - - Infinite continues - C281-DFE2 - - - Infinite time to shoot each ball - 3C38-A764 - - - Always get max bonus in shooting rounds - 3C83-D467 - - - Shot guide is always on (new 1P game) - 338B-0DA4 - - - Shot guide is always on (password game) - 338D-07A4 - - - Shot guide is always on ("challenge record" mode) - 333E-D721 - - - - Captain America and the Avengers (USA) - - Invincibility - both players - 1D38-CFA1+6DAA-CD00+82A6-3D60 - - - Infinite lives - both players - C283-34A0 - - - Invincibility - P1 - 7E16A8:20 - - - Invincibility - P2 - 7E16A9:63 - - - Infinite health - P1 - 7E0226:63 - - - Infinite health - P2 - 7E0227:63 - - - Infinite lives - P1 - 7E0229:09 - - - Infinite lives - P2 - 7E022A:09 - - - Hit anywhere - C28E-1F60+DC8E-14D0+EC8E-1FA0+ED8E-1400 - - - - Captain Commando (USA) - - Invincibility - p1 - CB4E-7FD4+D04E-7F04+B24E-7F64 - - - Hit anywhere (throws are disabled) - 6DF1-846D+6DF9-74DF+6DFA-7D0F+95F9-740F - - - One hit kills - Both players - 76F4-57DF+3BF4-570F+6DF4-576F - - - Invincibility - P1 (alt) - 7E0404:03 - - - Infinite health - P1 - 7E0895:32 - - - Infinite health - P2 - 7E0893:32 - - - 9 lives - P1 - 7E0B15:09 - - - 9 lives - P2 - 7E0B13:09 - - - 9 continues - 7E1D5A:39 - - - - Captain Novolin (USA) (En,Fr,Es) - - Invincibility - 7E0C02:29 - - - Infinite health - 7E0BDA:04 - - - Infinite time - 7E16F2:00 - - - - Caravan Shooting Collection (Japan) - - Hector 87 - Infinite health - 7E00E5:10 - - - Hector 87 - Infinite lives - 7E00E4:02 - - - Star Force - Invincibility - 7E09CA:01 - - - Star Force - Always have powered-up weapon - 7E099E:01 - - - Star Force - Infinite lives - 7E094D:02 - - - Star Force - No enemies (disable before reaching the boss) - 7E0963:05 - - - Star Soldier - Invincibility - 7E0086:39 - - - Star Soldier - Infinite lives - 7E062F:02 - - - Star Soldier - Rapid fire - 7E0630:00 - - - Star Soldier - Ship is always blue - 7E0087:00 - - - Star Soldier - No enemies except bosses - 7E062E:00 - - - - Carrier Aces (USA) - - Invincibility (works for dogfights and ship fire) - DDED-670F+6DEE-64DD - - - Infinite fuel - C2B3-6F64 - - - Infinite rockets - 3CC9-D764 - - - - Casper (USA) - - Infinite lives - C225-1071 - - - Infinite health - C221-1981 - - - Have all items and 5 lives after you leave the first room - 2DAC-CD44 - - - - Castlevania - Dracula X (USA) - - Invincibility - 2D69-CD9D - - - Invincibility after one hit - C969-CD2D - - - Infinite health - C96D-17FF - - - Infinite lives - C9AF-47A7 - - - All hearts worth 99 - 2D25-1FD3+DD25-1F03 - - - Keep sub-weapon after dying - C9A4-47D7 - - - Keep sub-weapon after continue - C985-17DF - - - Item Crash doesn't use hearts - C9A6-3D94 - - - Hit anywhere - DD20-34D3+DD24-3403 - - - Small hearts worth 0 - DD29-1763 - - - Small hearts worth 10 - FD29-1763 - - - Small hearts worth 25 - 4929-1763 - - - No Invincibility after getting hit - DD6F-CFBF - - - More invincibility after getting hit - EE6F-CFBF - - - Super jump - EB87-C7BD - - - Super-Duper jump - E687-C7BD - - - Mega-jump - E587-C7BC - - - Have the Axe - DFDC-F276 - - - Have the Cross - D4DC-F276 - - - Have the Holy Water - D7DC-F276 - - - Have the Knife - D0DC-F276 - - - Have the Clock - D9DC-F276 - - - Have the Key - D1DC-F276 - - - Start with half energy - 4D21-1707 - - - Start with 1/4 energy - F421-1707 - - - Start with 3/4 energy - 7D21-1707 - - - Start with 99 hearts - 6D81-170F - - - Start with 50 hearts - 9D81-170F - - - Start with 25 hearts - 4981-170F - - - Start with 1 life - DD85-1D6F - - - Start with 10 lives - DB85-1D6F - - - Start with 25 lives - 4085-1D6F - - - Start with 50 lives - 0B85-1D6F - - - Start with 99 lives - BB85-1D6F - - - Start with 25 hearts after you die - 49A4-44D7 - - - Start with 50 hearts after you die - 9DA4-44D7 - - - Start with 99 hearts after you die - BBA4-44D7 - - - Start on level 2 - DFD5-F376 - - - Start on level 3 - D4D5-F376 - - - Start on level 4 - D7D5-F376 - - - Start on level 5 - D0D5-F376 - - - Start on level 6 - D9D5-F376 - - - Start on level 7 - D1D5-F376 - - - - Chavez (USA) - - Infinite time - 7E1F93:15 - - - - Chessmaster, The (USA) - - White player's timer is stopped - C9C7-D76F - - - Black player's timer is stopped - C9C9-DFDF - - - Timers count 2x as slow - 56C4-D46F - - - Timers count 3x times as slow - 80C4-D46F - - - Timers count 2x as fast - F3C4-D46F - - - Timers count 3x times as fast - F0C4-D46F - - - - Chester Cheetah - Too Cool to Fool (USA) - - Invincibility (blinking) (you may freeze if you get the guitar and fall in water) - 3C60-04D9 - - - Infinite life points - 3CBF-0D69 - - - Infinite credits - A26F-04D4 - - - Badges worth 5 - D965-D7DB - - - Badges worth 25 - 4965-D7DB - - - Badges worth 50 - 9D65-D7DB - - - Start with 2 life points - D469-DFD9 - - - Start with 0 life points - DD69-DFD9 - - - - Chester Cheetah - Wild Wild Quest (USA) - - Invincibility (once you eat a bag of Cheetos) - C3CC-6D07 - - - Infinite Cheetos bags (once you collect one) - C282-DFD4 - - - Infinite time - C2B2-A4AD - - - Infinte lives - C2BC-D7AF - - - - Choplifter III - Rescue-Survive (USA) - - Have all weapons and infinte ammo - DD67-CDA7+DD60-CF67 - - - Infinite secondary weapons - 3C60-34D7 - - - Infinite choppers - C26D-1767 - - - Chopper can carry 30 hostages - F3C7-3D53+F3C1-1F5E - - - Invincibility - 7E0CEB:5A - - - - Choujikuu Yousai Macross - Scrambled Valkyrie (Japan) - - Infinite health - C268-4F64+C269-47A4 - - - Infinite absorb charge - C2B2-C4D1 - - - Hit anywhere - DD6B-3FD7+DD65-3467+DD66-34D7 - - - Invincibility - 7E0A90:FF - - - Infinite continues - 7E02AA:09 - - - - Chrono Trigger (USA) - - Use "organize" to get 90 of all items - B6C6-E76C+DDCB-E7DC+9CCB-E76C - - - Maxed out abilities for all characters - 65EB-E4A9 - - - Every attack causes 9999 damage - B323-7405 - - - Can open sealed chests - 6D1C-770F - - - Start with a higher max HP - EEDD-7F5D - - - Start with a higher max MP - 63DD-745D - - - Start with max power - BDDD-74ED - - - Start with max stamina - BDDD-777D - - - Start with max speed - BDDD-775D - - - Start with max magic - BDDD-778D - - - Start with max hit ratio - BDDD-77ED - - - Start with max evade - BDDF-7D7D - - - Start with max magic defense - BDDF-7D5D - - - Position 1 - Infinite health - 7E5E30:E7+7E5E31:03 - - - Position 1 - Infinite Magic - 7E5E34:63 - - - Position 1 - Attack bar always full - 7EAFAB:00 - - - Position 2 - Infinite health - 7E5EB0:E7+7E5EB1:03 - - - Position 2 - Infinite Magic - 7E5EB4:63 - - - Position 2 - Attack bar always full - 7EAFAC:00 - - - Position 3 - Infinite health - 7E5F30:E7+7E5F31:03 - - - Position 3 - Infinite Magic - 7E5F34:63 - - - Position 3 - Attack bar always full - 7EAFAD:00 - - - Infinite Speed Boosts - 7E009A:03 - - - Instantly enable next Speed Boost - 7E00BA:00 - - - - Chuck Rock (USA) - - Infinite health - C9A1-A70D - - - Infinite lives - C9AB-AF0D - - - Hit anywhere - DDAC-040D+DDAE-076D - - - Jump higher - 70C9-A7DD - - - Super-jump - 49C9-A7DD - - - Mega-jump - F5C9-A7DD - - - Invincibility - 7E0BAA:25 - - - - Clay Fighter (USA) - - Infinite health - P1 - C20B-7916+C256-E536 - - - Enable Blob's Bomb move (away, away + down, down, towards + down, towards, punch) - 6280-DD6F - - - Always fight Bad Mr. Frosty after 1st match - DD4A-8548+DD9C-E53E - - - Always fight Taffy after 1st match - DD4A-8548+DF9C-E53E - - - Always fight Tiny after 1st match - DD4A-8548+D49C-E53E - - - Always fight The Blob after 1st match - DD4A-8548+D79C-E53E - - - Always fight Blue Suede Goo after 1st match - DD4A-8548+D09C-E53E - - - Always fight Ickybod Clay after 1st match - DD4A-8548+D99C-E53E - - - Always fight Helga after 1st match - DD4A-8548+D19C-E53E - - - Always fight Bonker after 1st match - DD4A-8548+D59C-E53E - - - Always fight N. Boss after 1st match - DD4A-8548+D69C-E53E - - - Start with 1/6 health - 1st round - FDF7-E5CE - - - Start with 1/3 health - 1st round - 4DF7-E5CE - - - Start with 1/2 health - 1st round - 7DF7-E5CE - - - Start with 2/3 health - 1st round - 0DF7-E5CE - - - Start with 5/6 health - 1st round - 9DF7-E5CE - - - Start with 1/6 health - 2nd and later rounds - FD4A-E01C - - - Start with 1/3 health - 2nd and later rounds - 4D4A-E01C - - - Start with 1/2 health - 2nd and later rounds - 7D4A-E01C - - - Start with 2/3 health - 2nd and later rounds - 0D4A-E01C - - - Start with 5/6 health - 2nd and later rounds - 9D4A-E01C - - - Bad Mr. Frosty's Brutal Punches do more damage - 7D46-E1C2+7D46-E132+7D46-E542+7D46-E512+7D46-E5C2 - - - Bad Mr. Frosty's Medium Punches do more damage - 7D46-E532+7D4B-E042+7D4B-E012+7D4B-E0C2+7D4B-E032 - - - Bad Mr. Frosty's Quick Punches do more damage - 7D4B-E942+7D4B-E912+7D4B-E9C2+7D4B-E932+7D4B-E142 - - - Bad Mr. Frosty's Brutal Kicks do more damage - 7D4B-E112+7D4B-E1C2+7D4B-E132+7D4B-E542+7D4B-E512 - - - Bad Mr. Frosty's Medium Kicks do more damage - 7D4B-E5C2+7D4B-E532+7D4C-E042+7D4C-E012+7D4C-E0C2 - - - Bad Mr. Frosty's Quick Kicks do more damage - 7D4C-E032+7D4C-E942+7D4C-E912+7D4C-E9C2+7D4C-E932 - - - Bad Mr. Frosty's Snow Ball (all punches) does more damage - 7D4C-E142 - - - Taffy's Brutal Punches do more damage - 7D48-E0C2+7D48-E032+7D48-E942+7D48-E912+7D48-E9C2 - - - Taffy's Medium Punches do more damage - 7D48-E932+7D48-E142+7D48-E112+7D48-E1C2+7D48-E132 - - - Taffy's Quick Punches do more damage - 7D48-E542+7D48-E512+7D48-E5C2+7D48-E532+7D4A-E042 - - - Taffy's Brutal Kicks do more damage - 7D4A-E012+7D4A-E0C2+7D4A-E032+7D4A-E942+7D4A-E912 - - - Taffy's Medium kick does more damage - 7D4A-E9C2+7D4A-E932+7D4A-E142+7D4A-E112+7D4A-E1C2 - - - Taffy's Quick Kicks do more damage (not in crouch) - 7D4A-E132+7D4A-E542+7D4A-7513+7D4A-E5C2+7D4A-E532 - - - Taffy's Whack (all punches) does more damage - 7D42-E912 - - - Taffy's Whack (all kicks) does more damage - 7D42-E9C2 - - - Tiny's Brutal Punches do more damage - 7D42-E1C2+7D42-E132+7D42-E542+7D42-E512+7D42-E5C2 - - - Tiny's Medium Punches do more damage - 7D42-E532+7D43-E042+7D43-E012+7D43-E0C2+7D43-E032 - - - Tiny's Quick Punches do more damage - 7D43-E942+7D43-E912+7D43-E9C2+7D43-E932+7D43-E142 - - - Tiny's Brutal Kicks do more damage - 7D43-E112+7D43-E1C2+7D43-E132+7D43-E542+7D43-E512 - - - Tiny's Medium Kicks do more damage - 7D43-E5C2+7D43-E532+7D4E-E042+7D4E-E012+7D4E-E0C2 - - - Tiny's Quick Kicks do more damage - 7D4E-E032+7D4E-E942+7D4E-E912+7D4E-E9C2+7D4E-E932 - - - Tiny's Medicine Ball Does more damage - 7D4E-E142 - - - Tiny's Sucker Punch does more damage - 7D4E-E512 - - - Blob's Brutal Punches do more damage - 7D4D-70C3+7D4D-7033+7D4D-7943+7D4D-7913+7D4D-79C3 - - - Blob's Medium Punches do more damage - 7D4D-7933+7D4D-7143+7D4D-7113+7D4D-71C3+7D4D-7133 - - - Blob's Quick Punches do more damage - 7D4D-7543+7D4D-7513+7D4D-75C3+7D4D-7533+7D4F-7043 - - - Blob's Brutal kick does more damage - 7D4F-7013+7D4F-70C3+7D4F-7033+7D4F-7943+7D4F-7913 - - - Blob's Medium Kicks do more damage - 7D4F-79C3+7D4F-7933+7D4F-7143+7D4F-7113+7D4F-71C3 - - - Blob's Quick Kicks do more damage - 7D4F-7133+7D4F-7543+7D4F-7513+7D4F-75C3+7D4F-7533 - - - Blue Suede Goo's Brutal Punches do more damage - 7D44-71C3+7D44-7133+7D44-7543+7D44-7513+7D44-75C3 - - - Blue Suede Goo's Medium Punches do more damage - 7D44-7533+7D47-7043+7D47-7013+7D47-70C3+7D47-7033 - - - Blue Suede Goo's Quick Punches do more damage - 7D47-7943+7D47-7913+7D47-79C3+7D47-7933+7D47-7143 - - - Blue Suede Goo's Brutal Kicks do more damage - 7D47-7113+7D47-71C3+7D47-7133+7D47-7543+7D47-7513 - - - Blue Suede Goo's Medium Kicks do more damage - 7D47-75C3+7D47-7533+7D40-7043+7D40-7013+7D40-70C3 - - - Blue Suede Goo's Quick Kicks do more damage - 7D40-7033+7D40-7943+7D40-7913+7D40-79C3+7D40-7933 - - - Ickybod Clay's Brutal Punches do more damage - 7D49-70C3+7D49-7033+7D49-7943+7D49-7913+7D49-79C3 - - - Ickybod Clay's Medium Punches do more damage - 7D49-7933+7D49-7143+7D49-7113+7D49-71C3+7D49-7133 - - - Ickybod Clay's Quick Punches do more damage - 7D49-7543+7D49-7513+7D49-75C3+7D49-7533+7D41-7043 - - - Ickybod Clay's Brutal Kicks do more damage - 7D41-7013+7D41-70C3+7D41-7033+7D41-7943+7D41-7913 - - - Ickybod Clay's Medium Kicks do more damage - 7D41-79C3+7D41-7933+7D41-7143+7D41-7113+7D41-71C3 - - - Ickybod Clay's Quick Kicks do more damage - 7D41-7133+7D41-7543+7D41-7513+7D41-75C3+7D41-7533 - - - Ickybod Clay's Ecto Punch does more damage - 7D45-7013 - - - Helga's Brutal Punches do more damage - 7D45-71C3+7D45-7133+7D45-7543+7D45-7513+7D45-75C3 - - - Helga's Medium Punches do more damage - 7D45-7533+7D46-7043+7D46-7013+7D46-70C3+7D46-7033 - - - Helga's Quick Punches do more damage - 7D46-7943+7D46-7913+7D46-79C3+7D46-7933+7D46-7143 - - - Helga's Brutal Kicks do more damage - 7D46-7113+7D46-71C3+7D46-7133+7D46-7543+7D46-7513 - - - Helga's Medium Kicks do more damage - 7D46-75C3+7D46-7533+7D4B-7043+7D4B-7013+7D4B-70C3 - - - Helga's Quick Kicks do more damage (not far away) - 7D46-5033+7D4B-7943+7D4B-7913+7D4B-79C3+7D4B-7933 - - - Helga's Viking Ram does more damage - 7D4B-71C3 - - - Bonker's Brutal Punches do more damage - 7D4C-70C3+7D4C-7033+7D4C-7943+7D4C-7913+7D4C-79C3 - - - Bonker's Medium Punches do more damage - 7D4C-7933+7D4C-7143+7D4C-7113+7D4C-71C3+7D4C-7133 - - - Bonker's Quick Punches do more damage - 7D4C-7543+7D4C-7513+7D4C-75C3+7D4C-7533+7D48-7043 - - - Bonker's Brutal Kicks do more damage - 7D48-7013+7D48-70C3+7D48-7033+7D48-7943+7D48-7913 - - - Bonker's Medium Kicks do more damage - 7D48-79C3+7D48-7933+7D48-7143+7D48-7113+7D48-71C3 - - - Bonker's Quick Kicks do more damage - 7D48-7133+7D48-7543+7D48-7513+7D48-75C3+7D48-7533 - - - Bonker's Cutting Cartwheel does more damage - 7D4A-7043 - - - - Clay Fighter 2 - Judgment Clay (USA) - - Select more speed in options - 4D08-E4A1 - - - Select more difficulty in options - DB0B-E4D1 - - - Both players jump off the screen - 8F59-EDA7 - - - Infinite health and time - CB51-7D64+6251-7F04+4651-7F64+F651-7FA4 - - - Blob - Blob spit kills - EE0C-77E9 - - - Blob - Buzz saw kills - EE0E-7479 - - - Blob - Rocket-anvil attack kills - EE09-5789 - - - Hoppy - Spinning carrot kills - EEB0-5D7C - - - Hoppy - Spin kick towards (special move) kills - EEBB-5F8C - - - Octo - Brutal cartwheel kills (when close) - EE1C-5785 - - - Octo - Ground spin kills - EE15-8DE5 - - - - Claymates (USA) (Sample) - - Invincibility - C2D4-8F50 - - - Infinite time - C216-E779 - - - Multi-jump (tap jump button) - 89DA-87E9 - - - Infinite lives - C218-8479 - - - - Cliffhanger (USA) - - Invincibility - ED60-1761 - - - Infinite health - C28E-44A9 - - - Infinite ammo - C2CD-34A5 - - - Infinite lives - 3C8B-1D69 - - - Hit anywhere - DD8F-CF60 - - - One hit kills on normal enemies - CBBC-3F6B+DFBC-3FAB - - - Stop snow avalanche (run into it) - 1882-4D69 - - - - Clue (USA) - - Always roll a 1 - CBBC-0D07+3CBC-0DA7+DDBC-0D67 - - - Always roll a 2 - CBBC-0D07+3CBC-0DA7+DFBC-0D67 - - - Always roll a 3 - CBBC-0D07+3CBC-0DA7+D4BC-0D67 - - - Always roll a 4 - CBBC-0D07+3CBC-0DA7+D7BC-0D67 - - - Always roll a 5 - CBBC-0D07+3CBC-0DA7+D0BC-0D67 - - - Always roll a 6 - CBBC-0D07+3CBC-0DA7+D9BC-0D67 - - - Allow no interrogations instead of 2 - BDBA-D464 - - - Allow only 1 interrogation - DFBA-D4D4 - - - Allow 3 interrogations - D7BA-D4D4 - - - Allow 4 interrogations - D0BA-D4D4 - - - Allow 5 interrogations - D9BA-D4D4 - - - Infinite interrogations - 8B83-070F - - - - College Football USA 97 (USA) - - Always 1st down - 7E1836:05 - - - Infinite time - 7E1828:FF - - - Have 50 points - P1 - 7FB140:32+7FB726:32 - - - Have 50 time outs - P1 - 7FB1C7:32 - - - - Combatribes, The (USA) - - Invincibility - both players - 2DB1-A7D4 - - - Infinite health - both players - 3CB5-6F64+CBB5-6FA4+A6B5-64D4+62B5-6464 - - - Infinite credits - A2B3-A404 - - - Hit anywhere - P1 - 3DBB-076D+70BC-0D6D+DDBB-07AD+DDBC-0DDD+EDBC-0D0D - - - One hit kills - both players - 3DA3-64AF+DDA3-67DF+DDA3-670F+40AE-6FAF - - - Invincibility - P1 - 7E1934:01 - - - Infinite health - P1 - 7E1794:C8 - - - Infinite health - P2 - 7E1796:C8 - - - Infinite credits (alt) - 7E1564:09 - - - Unlock all characters in vs mode - 7E1EE7:10 - - - - Congo's Caper (USA) - - Infinite lives - DDEC-CF6D - - - Hit anywhere - DD6B-ADA4 - - - Multi-jump - DDA2-DDDF - - - Stay as Super Congo (you may change if you walk on spikes) - CB69-34D7 - - - 1 life after continue - DDB0-44D4 - - - 6 lives after continue - D9B0-44D4 - - - 9 lives after continue - D6B0-44D4 - - - 1 ruby turns you into Super Congo - CBB2-340D+D4B2-346D - - - Start as Super Congo - 64B9-4FD4 - - - Start with 1 life - DDAC-4F09 - - - Start with 6 lives - D9AC-4F09 - - - Start with 9 lives - D6AC-4F09 - - - - Contra III - The Alien Wars (USA) - - Invincibility (top-view levels) - 8961-6F08 - - - Invincibility (side-view levels) - P1 - 89B3-6F01+89C0-6D09 - - - Invincibility (side-view levels) - P2 - 89C5-6FD9+89B6-AFA1 - - - Infinite continues - C2CA-0F04 - - - Infinite lives (side-view levels) - 22BB-AD01 - - - Infinite lives (top-view levels) - 22BB-6F0B+6DBB-64DB - - - Infinite bombs (side-view levels) - 2264-D760 - - - Infinite bombs (top-view levels) - 22B8-0766 - - - Enable 30 and 99 lives in option menu (99 actually gives 35,081 lives) - D987-AFA4 - - - Keep main weapon when you die (side-view levels) - 82BA-6FA1 - - - Keep main weapon when you die (top-view levels) - 82BC-646B - - - Multi-jump - D961-04D9+CB61-0409+EC61-0469+EE61-04A9+B961-07D9+F361-0709+C961-0D69+4661-0DA9+4B61-0FD9+DD61-0F09+6D61-0F69+ED61-0FA9 - - - Enable stage select - 40CC-67DF - - - Start with 5 bombs on each life (side-view levels) - D9BB-AFA1+D9CE-6D0D - - - Start with 9 bombs on each life (side-view levels) - DBBB-AFA1+DBCE-6D0D - - - Start with 5 bombs on each life (top-view levels) - D963-6708+D9CE-6D0F - - - Start with 9 bombs on each life (top-view levels) - DB63-6708+DBCE-6D0F - - - Always have Scatter Blaster for gun 1 (disable during bonus stages) - 7E1F84:01 - - - Always have Missile Launcher for gun 1 (disable during bonus stages) - 7E1F84:02 - - - Always have Homing Missile for gun 1 (disable during bonus stages) - 7E1F84:03 - - - Always have Torch for gun 1 (disable during bonus stages) - 7E1F84:04 - - - Always have Laser for gun 1 (disable during bonus stages) - 7E1F84:05 - - - Always have Scatter Blaster for gun 2 (disable during bonus stages) - 7E1F86:01 - - - Always have Missile Launcher for gun 2 (disable during bonus stages) - 7E1F86:02 - - - Always have Homing Missile for gun 2 (disable during bonus stages) - 7E1F86:03 - - - Always have Torch for gun 2 (disable during bonus stages) - 7E1F86:04 - - - Always have Laser for gun 2 (disable during bonus stages) - 7E1F86:05 - - - Enable stage select (alt) - 7E1E60:01 - - - Start on stage 2 - 7E0086:02 - - - Start on stage 3 - 7E0086:03 - - - Start on stage 4 - 7E0086:04 - - - Start on stage 5 - 7E0086:05 - - - Start on stage 6 - 7E0086:06 - - - - Cool Spot (USA) - - Infinite lives - 402C-D7D1 - - - Less invincibility time - FE89-DF69 - - - More invincibility time - EE89-DF69 - - - 5 seconds picked up - D98C-0D05 - - - 1 minute picked up - 7A8C-0D05 - - - 16% picked up from '7up' - FD89-07D5 - - - Be able to free fellow spot right away - DD26-D4D9 - - - Start with 1 life - DF28-D404 - - - Start with 6 lives - D128-D404 - - - Start with 9 lives - DB28-D404 - - - - Cool World (USA) - - Infinite lives - C2B6-D4DC - - - Infinite continues - C2B2-DF67 - - - A Nickel for a life costs nothing (must have 1 Nickel) - DD8D-046F+DD8D-04AF - - - Bank deposits cost nothing (must have 5 Nickels) - DD8C-0F6F+DD8C-0FAF - - - Opening a bank account costs nothing (must have 10 Nickels) - DDA6-DFA4+DDA6-D4D4 - - - High-Low game at the Gold Rush costs nothing (must have 5 Nickels) - DDC8-ADA5+DDC8-AFD5 - - - Most Nickels worth 2 on pick-up (must have 5 Nickels) - D4BE-07A1+D4B4-6761 - - - Most Nickels worth 10 on pick-up (must have 5 Nickels) - DCBE-07A1+DCB4-6761 - - - Continue with 9 lives - DB8F-6DAD - - - Start with 1 life - DFBE-DD07 - - - Start with 9 lives - DBBE-DD07 - - - Start with 10 Nickels - 3187-64DD+3387-640D - - - Start with 1 Nickel - 3187-64DD - - - Invincibility (blinking) - 7E02BF:FF - - - Infinite Nickels - 7E00ED:63 - - - - Cosmo Gang - The Video (Japan) - - Infinite lives - 7E0200:05 - - - - Cosmo Police Galivan II - Arrow of Justice (Japan) - - Invincibility - CBB4-6DAF+DFB4-6FDF+62B4-6F0F+55B4-6F6F+F4B4-6FAF - - - Infinite health - C23F-6D67 - - - Infinite lives - A2B1-6FA7 - - - One hit kills - B33A-67A4 - - - Hit anywhere - 403D-64D4+6D33-0464+6D3D-6FA4 - - - Invincibility (alt) - 7E1277:DF - - - Infinite health (alt) - 7E126C:60 - - - Infinite health (alt 2) - 7E126C:61 - - - Infinite lives (alt) - 7E1485:03 - - - - Cutthroat Island (USA) - - Stage select menu after character select screen - 3C6B-479E - - - Infinite health - P1 - 7E09F4:28 - - - Infinite health - P2 - 7E0A53:28 - - - Stage select menu after character select screen (alt) - 878C9D:EA - - - 9 lives - P1 - 7E1EF7:09 - - - 9 lives - P2 - 7E1EF9:09 - - - - Cyber Spin (USA) - - Infinite power - C2B9-ADA1+C2B5-AF01+C2BB-AFA1 - - - - Cybernator (USA) - - Infinite health - 82C7-4FDC+82C9-470C+C9B3-34A6 - - - Protection against some hazards - 82C9-470C+82C7-4FDC - - - Infinite Vulcan - C264-3D2F+C264-3DFF - - - Never overheat - C2B5-3D66 - - - Infinite credits - C234-4FDD - - - Only 2 P's needed for level 2 Vulcan - D461-4D62 - - - Only 4 P's needed for level 3 Vulcan - D061-4FD2 - - - Only 3 P's needed for level 3 Laser - D761-4462 - - - Only 3 P's needed for level 3 Missile - D765-4DD2 - - - Only 2 P's needed for level 2 Napalm - D465-4FD2 - - - Only 4 P's needed for level 3 Napalm - D065-4F62 - - - Only 2 P's needed for level 2 Punch - D465-4462 - - - Only 3 P's needed for level 3 Punch - D765-47D2 - - - Energy chip worth nothing - DD3F-1406 - - - Energy chip worth more - CD3F-1406 - - - Weapons start at level 2 - D4BF-1FDF - - - Weapons start at level 3 - D7BF-1FDF - - - Start with Lasers - 62BF-17AF - - - Start with Homing Missiles - 62BF-17DF - - - Start with Napalm - 62B4-1D6F - - - Start with 2 credits - DFB1-17AF - - - Start with 6 credits - D9B1-17AF - - - Start with 10 credits - DBB1-17AF - - - Start on level 3.1 - D4BD-176F - - - Start on level 3.2 - D7BD-176F - - - Start on level 3.3 - D0BD-176F - - - Start on level 4.1 - D9BD-176F - - - Start on level 4.2 - D1BD-176F - - - Start on level 5.1 - D5BD-176F - - - Start on level 5.2 - D6BD-176F - - - Start on level 6.1 - DBBD-176F - - - Start on level 7.3 - FDBD-176F - - - Start on level 7.4 - FFBD-176F - - - View the failed ending - F4BD-176F - - - View the successful ending - F7BD-176F - - - - Cyborg 009 (Japan) - - Infinite health - 7E0AE1:3C - - - Infinite lives - 7E1A31:02 - - - Infinite Super Power - 7E0AE3:3C - - - - Daffy Duck - The Marvin Missions (USA) - - Infinite health - C283-3D6F - - - Infinite ammo (must have some ammo for the gun to be selectable) - DD85-17DD - - - Infinite lives - DDB3-3404 - - - Infinite continues - DDA2-C76C - - - Infinite Nutty attacks - C287-34AD - - - Hit anywhere - DD33-1DDF - - - Get items from anywhere - DD20-C7A4+DD26-1FD4+DD27-CFA7+DD3C-1D6D - - - One hit kills - 6D86-17DF - - - Disable recoil - DD89-CFAD - - - Juice cans set health to 1/2 - D121-CD64 - - - Juice cans set health to 3/4 - DB21-CD64 - - - Gem power-ups worth 0 - DD3C-446D - - - Gem power-ups worth 5 (1 continue) - D93C-446D - - - Gems are free - DDA8-44D6 - - - Freeze Gun ammo is free - DDAC-4406 - - - Freeze Gun ammo is $200 - 4DAC-4406 - - - Electricity Gun ammo is free - DDAC-44A6 - - - Electricity Gun ammo is $150 - F9AC-44A6 - - - 3-way Gun ammo is free - DDAC-4706 - - - 3-way Gun ammo is $150 - F9AC-4706 - - - Bomb Gun ammo is free - DDAC-47A6 - - - Bomb Gun ammo is $150 - F9AC-47A6 - - - Antimatter Gun ammo is free - DDA8-4D06 - - - Antimatter Gun ammo is $200 - 4DA8-4D06 - - - Freeze Gun ammo power-ups are worth 20 - 4D28-4FA7 - - - Electricity Gun ammo power-ups are worth 20 - 4D26-1DA7 - - - Three-way Gun ammo power-ups are worth 20 - 4D20-C7A7 - - - Bomb Gun ammo power-ups are worth 20 - 4D2F-34A7 - - - Antimatter Gun ammo power-ups are worth 20 - 4D23-3FA7 - - - Nutty attacks are free - DDA8-4F06 - - - Nutty attacks are $400 - 0DA8-4F06 - - - Jetpack fuel is free - DDA8-4DA6 - - - Fuel is consumed at 1/4 normal rate - D1C8-14A7 - - - Fuel is consumed at 1/2 normal rate - DAC8-14A7 - - - Fuel is consumed at 3/4 normal rate - F4C8-14A7 - - - Fuel power-ups are worth 1/2 as much - D12B-17D4 - - - Fuel power-ups are worth 2x - FC2B-17D4 - - - Buy a life and get a ton of money - 6DA8-3766 - - - Bought Freeze Gun ammo is worth 20 - 4DAE-44D6 - - - Bought gems worth 0 - DDA6-34A6 - - - Bought gems worth 5 (1 continue) - D9A6-34A6 - - - Bought Electricity Gun ammo is worth 20 - 4DA9-1406 - - - Bought Three-way Gun ammo is worth 20 - 4DA8-1466 - - - Bought Bomb Gun ammo is worth 20 - 4DAF-C4A6 - - - Bought Anti matter Gun ammo is worth 20 - 4DA5-C7D6 - - - Bought fuel is worth 1/2 as much - D1A2-C7A6 - - - Bought fuel is worth 2x as much - FCA2-C7A6 - - - Extra lives cost $500 - DDA8-4466 - - - Extra lives cost $1,500 - DFA8-4466 - - - Extra life power-ups don't work - DD23-34D4 - - - Extra life power-ups worth 2 - D423-34D4 - - - Extra life power-ups worth 5 - D923-34D4 - - - Extra lives can't be bought - DDA3-3FA6 - - - 2 extra lives for each one purchased - D4A3-3FA6 - - - 5 extra lives for each one purchased - D9A3-3FA6 - - - Start with 1 life - DFBD-1DA4 - - - Start with 9 lives (don't set lives in options menu) - DBBD-1DA4 - - - Start with 25 lives (don't set lives in options menu) - 49BD-1DA4 - - - Start with 51 lives (don't set lives in options menu) - 9FBD-1DA4 - - - Start with 1/2 health - D1B4-3DD7 - - - Start with 3/4 health - DBB4-3DD7 - - - Start with no nutty attacks - DDBD-CF04 - - - Start with 3 nutty attacks - D7BD-CF04 - - - Start with 5 nutty attacks - D9BD-CF04 - - - Start with 7 nutty attacks - D5BD-CF04 - - - Start with 0 gems - DDB4-C764 - - - Start with 10 gems (2 continues) - FDB4-C764 - - - Start with 25 gems (5 continues) - 49B4-C764 - - - Start with 10 ammo for all Guns (except blaster) - FDBF-CF64 - - - Start with 50 ammo for all Guns - 9DBF-CF64 - - - Start with 90 ammo for all Guns - BDBF-CF64 - - - Start with almost no fuel - DDB4-C404 - - - Start with 2x fuel - F8B4-C404 - - - Start with 3x fuel - 45B4-C404 - - - Start with $2,500 - D4BD-C7D4 - - - Start with $3,500 - D7BD-C7D4 - - - Start with $9,500 - DBBD-C7D4 - - - Start with $30,500 - 7DBD-C7D4 - - - Start on level 1-2 - DFB9-1D04 - - - Start on level 1-3 - D4B9-1D04 - - - Start on level 1-4 - D7B9-1D04 - - - Start on level 2-1 - D0B9-1D04 - - - Start on level 2-2 - D9B9-1D04 - - - Start on level 2-3 - D1B9-1D04 - - - Start on level 2-4 - D5B9-1D04 - - - Start on level 3-1 - D6B9-1D04 - - - Start on level 3-2 - DBB9-1D04 - - - Start on level 3-3 - DCB9-1D04 - - - Start on level 3-4 - D8B9-1D04 - - - Start on level 4-1 - DAB9-1D04 - - - Start on level 4-2 - D2B9-1D04 - - - Start on level 4-3 - D3B9-1D04 - - - Start on level 4-4 - DEB9-1D04 - - - Start on level 5-1 - FDB9-1D04 - - - Start on level 5-2 - FFB9-1D04 - - - Start on level 5-3 - F4B9-1D04 - - - Start on level 5-4 - F7B9-1D04 - - - Invincibility (blinking) - 7E1F12:05 - - - Infinite health (alt) - 7E1F0E:0C - - - Infinite lives (alt) - 7E1F10:99 - - - Infinite continues (alt) - 7E1F82:99 - - - Infinite Nutty attacks (alt) - 7E1F16:07 - - - Infinite Fuel - 7E1F45:10 - - - Infinite money - 7E00F7:99+7E00F8:99 - - - Infinite ammo for Freeze Gun - 7E1F2A:99 - - - Infinite ammo for Electricity Gun - 7E1F2C:99 - - - Infinite ammo for 3-way Gun - 7E1F2E:99 - - - Infinite ammo for Bomb Gun - 7E1F30:99 - - - Infinite ammo for Antimatter Gun - 7E1F32:99 - - - - Darius Force (Japan) - - Invincibility (can make the screen flash if you use both weapons) - 7E1000:81 - - - Infinite lives - 7E0111:03 - - - - Darius Twin (USA) - - Invincibility - P1 - C22D-67D9 - - - Invincibility - P2 - C23C-AF60 - - - Infinite lives - P1 - DD35-6FA5 - - - Infinite lives - P2 - DD3B-6FA5 - - - Hit anywhere - both players - 6D23-6FA4+C22D-A764+DD28-67A4+DD2E-6D04 - - - Start with the strongest main weapon and 8 lives - both players - 3CC3-6DA7+62C3-6467+62C3-6707+CBC3-6D07+D6C3-6D67 - - - Start with 1 Green Power Cube - P1 - 62CD-AF67+4ACE-64D7 - - - Start with 1 Green Power Cube - P2 - 62CD-A407+4ACE-64D7 - - - Start with 10 lives - both players - FDC3-6D67+CBC3-6D07+3CC3-6DA7 - - - Start with 15 lives - both players - F9C3-6D67+CBC3-6D07+3CC3-6DA7 - - - Start with 20 lives - both players - 4DC3-6D67+CBC3-6D07+3CC3-6DA7 - - - Start with 25 lives - both players - 49C3-6D67+CBC3-6D07+3CC3-6DA7 - - - Start on planet B - DFB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet C - D4B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet D - D7B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet E - D0B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet F - D9B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet G - D1B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet H - D5B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet I - D6B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet J - DBB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet K - DCB0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Start on planet L - D8B0-A7DD+CDB0-A4AD+DDB0-A70D+6AB0-A76D - - - Invincibility - P1 (alt) - 01D60C:AD - - - Invincibility - P2 (alt) - 01E3A6:AD - - - Start with 99 lives - both players - 7E1067:99 - - - Infinite Shield - P1 - 7E177B:FF - - - Infinite Shield - P2 - 7E188B:FF - - - Max 1st Gun - P1 - 7E17A4:08 - - - Max 1st Gun - P2 - 7E1835:08 - - - Max 2nd Gun - P1 - 7E17EB:08 - - - Max 2nd Gun - P2 - 7E177C:08 - - - Start with 1 Green Power Cube - P1 (alt) - 00AEF8:2C+00AF06:8D - - - Start with 1 Green Power Cube - P2 (alt) - 00AEF8:2C+00AF09:8D - - - - Dark Law - Meaning of Death (Japan) - - Sell an item to get maximum cash - 6D53-7468+D653-74A8 - - - Fewer random battles - 6D7E-7DA3 - - - Any code will open locked doors - DD4C-7909 - - - One hit kills - 6DC1-8D10 - - - Infinite walking range in battle - DD98-5F19 - - - - David Crane's Amazing Tennis (USA) - - Faster side-to-side movement - EA8B-AFDD+D085-A7DD - - - Even faster side-to-side movement - EC8B-AFDD+D185-A7DD - - - - Daze Before Christmas (Europe) - - Infinite health - 7E06F9:05 - - - Infinite lives - 7E1E68:04 - - - - Death and Return of Superman, The (USA) - - Invincibility - 2D6B-CF6D+ED6C-CFAD - - - Infinite health - C92D-C7DD+992D-C70D+622D-C76D+242D-C7AD+D32F-CDDD - - - Infinite lives - 3324-3F6D - - - Infinite special attacks - 3323-C76D+D323-C7AD - - - - Death Brade (Japan) - - Infinite heath - P1 - 7E0A10:50 - - - - Demolition Man (USA) - - Infinite health - F989-376F - - - Infinite lives - C2AC-1FDD - - - Infinite Grenades - 82A2-4DA1 - - - Infinite ammo - Shotgun and Magnum - 82AA-17AF - - - Infinite ammo - Shotgun - DFAA-14DF - - - Infinite ammo - Magnum - D4BF-1FF0 - - - Jump 2x higher - 4D80-67DF - - - Jump 4x higher - FD80-67DF - - - Jump 8x higher - D680-67DF - - - - Demon's Crest (USA) - - Invincibility after one hit - C92A-44A7 - - - Hit anywhere - DD66-47DC+DD6C-4D6C+6D6D-3DDC+6D64-3DAC - - - Get GP from anywhere - DDA5-176C - - - Large health refills full health - C9AC-176C - - - Rapid fire - C939-37D7 - - - Enemies always drop the 20 coin - C9A5-370B - - - First enemy takes longer to kill - DB67-C703 - - - First enemy take less time to kill - D467-C703 - - - More flash time - EE3A-1DAF - - - Die after one hit - 6927-CDA7 - - - Super-jump - D635-1F0D - - - Ginseng costs nothing - DD38-CFD9 - - - 20 coin worth 999 - C9A2-17DC - - - 1 coin worth 999 - C9A2-170C - - - Start a new game with all items - A363-44F4+A363-4424+A363-47B4 - - - Disable anti-cheat (enable to use codes) - 7E0EEE:00+7E0EED:00 - - - Invincibility - 7E103C:30 - - - Infinite health - 7E1062:14 - - - Infinite GP - 7E1063:E7+7E1064:03 - - - Infinite Hold spells - 7E1E30:02 - - - Infinite Death spells - 7E1E31:04 - - - Infinite Shock spells - 7E1E32:06 - - - Infinite Imp spells - 7E1E33:08 - - - Infinite Shadow spells - 7E1E34:0A - - - Infinite Herb potions - 7E1E35:0C - - - Infinite Ginseng potions - 7E1E36:0E - - - Infinite Mercury potions - 7E1E37:10 - - - Infinite Sulfer potions - 7E1E38:12 - - - Infinite Elixer potions - 7E1E39:14 - - - Have all Powers, Crests, Talismen, Jewels, can hold 5 Spells/Potions - 7E1E51:FF+7E1E52:FF+7E1E53:FF - - - - Dennis the Menace (USA) - - Infinite courage - C9B7-4FD7+C9B7-44A7 - - - Infinite time - C92F-3D9E - - - Infinite lives - C9CB-44AF - - - - Desert Strike - Return to the Gulf (USA) - - Infinite ammo - 223B-07D9 - - - Infinite fuel - DD63-A409 - - - Infinite lives - 4A68-04A1 - - - 2x fuel consumption - D063-A409 - - - Faster gun auto-repeat speed - DF3C-676F - - - Slower gun auto-repeat speed - F63C-676F - - - Missiles fly faster - D032-6D6F - - - Hydras fly faster - D03E-6DDF - - - Guns do as much damage as missiles - 1038-6D6F - - - Hydras do as much damage as missiles - 1032-6DDF - - - Missiles do 250 points of damage - EC33-676F - - - AK47's do 1 point of damage - DF39-DF64 - - - AK47's do 1/2x damage - D439-DF64 - - - AK47's do 2x damage - DC39-DF64 - - - APHIDs do 1 point of damage - DF3E-A7DF - - - APHIDs do 1/2x damage - 493E-A7DF - - - APHIDs do 2x damage - B13E-A7DF - - - AAA's do 1 point of damage - DF3D-A7DF - - - AAA's do 1/2x damage - DC3D-A7DF - - - AAA's do 2x damage - 463D-A7DF - - - Rapiers do 1 point of damage - DF3C-AD6F - - - Rapiers do 1/2x damage - 743C-AD6F - - - Rapiers do 2x damage - A63C-AD6F - - - VDA's do 1 point of damage - DF34-A46F - - - VDA's do 1/2x damage - DA34-A46F - - - VDA's do 2x damage - 7434-A46F - - - ZSU's do 1 point of damage - DF31-AF6F - - - ZSU's do 1/2x damage - F031-AF6F - - - ZSU's do 2x damage - 9D31-AF6F - - - Speedboats do 1 point of damage - DF3F-D464 - - - Speedboats do 1/2x damage - FB3F-D464 - - - Speedboats do 2x damage - 103F-D464 - - - Choppers do 1 point of damage - DF37-D4D4 - - - Choppers do 1/2x damage - 7437-D4D4 - - - Choppers do 2x damage - A637-D4D4 - - - M48's do 1 point of damage - DF32-A76F - - - M48's do 1/2x damage - 7432-A76F - - - M48's do 2x damage - A632-A76F - - - Crotales do 1 point of damage - DF3A-ADDF - - - Crotales do 1/2x damage - 743A-ADDF - - - Crotales do 2x damage - A63A-ADDF - - - AK47's have 1 armor point - DF29-0FDD - - - AK47's have 1/2x armor points - D929-0FDD - - - AK47's have 2x armor points - F029-0FDD - - - APHIDs have 1 armor points - DFA7-D76D - - - APHIDs have 1/2x armor points - DAA7-D76D - - - APHIDs have 2x armor points - 74A7-D76D - - - AAA's have 1 armor points - DF83-ADD7 - - - AAA's have 1/2x armor points - FB83-ADD7 - - - AAA's have 2x armor points - 1083-ADD7 - - - Rapiers have 1 armor points - DFAE-6F6D - - - Rapiers have 1/2x armor points - 49AE-6F6D - - - Rapiers have 2x armor points - B1AE-6F6D - - - VDA's have 1 armor points - DFA9-AFDD - - - VDA's have 1/2x armor points - 74A9-AFDD - - - VDA's have 2x armor points - A6A9-AFDD - - - ZSU's have 1 armor points - DFAD-DFDF - - - ZSU's have 1/2x armor points - 08AD-DFDF - - - ZSU's have 2x armor points - EEAD-DFDF - - - Speedboats have 1 armor points - DFAB-DDDD - - - Speedboats have 1/2x armor points - 08AB-DDDD - - - Speedboats have 2x armor points - EEAB-DDDD - - - Choppers have 1 armor points - DFA7-0DDD - - - Choppers have 1/2x armor points - 08A7-0DDD - - - Choppers have 2x armor points - EEA7-0DDD - - - M48's have 1 armor points - DFA0-646D - - - M48's have 1/2x armor points - 10A0-646D - - - M48's have 2x armor points - DFA0-64AD - - - Crotales have 1 armor points - DFA3-07DD - - - Crotales have 1/2x armor points - 52A3-07DD - - - Crotales have 2x armor points - DFA3-070D - - - AK47 bullets fly slower - DD39-D4D4 - - - APHID bullets fly slower - DD3E-A76F - - - AAA bullets fly slower - DD3D-A76F - - - Rapier bullets fly slower - DD3C-AFDF - - - VDA bullets fly slower - DD34-A7DF - - - ZSU bullets fly slower - DD31-A4DF - - - Speedboat bullets fly slower - DD3F-D7D4 - - - Chopper bullets fly slower - DD37-D464 - - - M48 bullets fly slower - DD33-ADDF - - - Armor starts at 344 - DFBC-64A9+DF64-64D1 - - - Armor starts at 856 - D7BC-64A9+D764-64D1 - - - Armor starts at 1,112 - D0BC-64A9+D064-64D1 - - - Armor starts at 2,136 - D6BC-64A9+D664-64D1 - - - Armor starts at 5,208 - F0BC-64A9+F064-64D1 - - - Fuel starts at 25 - FBB1-07DC - - - Fuel starts at 50 - 74B1-07DC - - - Fuel starts at 75 - 08B1-07DC - - - Fuel starts at 150 - B1B1-07DC - - - Fuel starts at 200 - A6B1-07DC - - - Fuel starts at 868 - D7B1-070C - - - Guns start at 154 rounds remaining - DD38-6D0F - - - Guns start at 666 rounds remaining - D438-6D0F - - - Guns start at 2,458 rounds remaining - DB38-6D0F - - - Guns start at 5,018 rounds remaining - F738-6D0F - - - Guns start at 9,882 rounds remaining - 4138-6D0F - - - Start with 10 hydras - DC3A-676F - - - Start with 50 hydras - 743A-676F - - - Start with 100 hydras - 103A-676F - - - Start with 250 hydras - EC3A-676F - - - Start with 1 missile - DF33-67DF - - - Start with 20 missiles - F033-67DF - - - Start with 50 missiles - 7433-67DF - - - Start with 100 missiles - 1033-67DF - - - Start with 250 missiles - EC33-67DF - - - Start with 1 life - DFB1-0F6C - - - Start with 5 lives - D9B1-0F6C - - - Start with 7 lives - D5B1-0F6C - - - Start with 10 lives - DCB1-0F6C - - - Start with 20 lives - F0B1-0F6C - - - Start with 50 lives - 74B1-0F6C - - - Start with 99 lives - 17B1-0F6C - - - - D-Force (USA) - - Infinite lives - 3CCA-D4DD - - - Continue equipped with unguided missiles - 7D6C-D40F+2C6C-D46F+FD6C-D7DF - - - Loss of a life does not decrease cannon power at normal difficulty (except on continues) - DDC7-DD0F - - - Loss of a life does not decrease cannon power at hard difficulty (except on continues) - DDC0-D4DF - - - Pink power-up increases missile power along with cannon power - DA3D-6464 - - - Continue with 10 lives - 7168-D70F+C668-D76F - - - Continue with 12 lives - C868-D70F+C068-D76F - - - Continue with 14 lives - CF68-D70F+EF68-D76F - - - Continue with 16 lives - 9E68-D70F+C068-D76F - - - Continue with cannon power at level 2 - DF68-DF0F+DE68-DD6F - - - Continue with cannon power at level 3 - D468-DF0F+DE68-DD6F - - - Continue with cannon power at level 4 - D768-DF0F+DE68-DD6F - - - Continue with cannon power at level 6 - D968-DF0F+DE68-DD6F - - - Continue with cannon power at level 8 - D568-DF0F+DE68-DD6F - - - Continue with cannon power at level 10 - DB68-DF0F+DE68-DD6F - - - Continue with cannon power at level 12 - D868-DF0F+DE68-DD6F - - - Start with cannon power at level 2 - DFB6-DF6D - - - Start with cannon power at level 3 - D4B6-DF6D - - - Start with cannon power at level 4 - D7B6-DF6D - - - Start with cannon power at level 6 - D9B6-DF6D - - - Start with cannon power at level 8 - D5B6-DF6D - - - Start with cannon power at level 10 - DBB6-DF6D - - - Start with cannon power at level 12 - D8B6-DF6D - - - Start equipped with unguided missiles - DAB6-D76D+FDB6-D4AD - - - Start with 10 lives - 7168-D5F6+C668-D596 - - - Start with 12 lives - C868-D5F6+C068-D596 - - - Start with 14 lives - CF68-D5F6+EF68-D596 - - - Start with 16 lives - 9E68-D5F6+C068-D596 - - - - Dino City (USA) - - Infinite health - 8BA6-67A9 - - - No harm from most enemies - 6DA6-6D69 - - - No harm if swallowed by a monster - C23B-A7F9+C232-67B1 - - - Infinite plays - both players - C26E-6D2D - - - Infinite time (disable in bonus stage) - 8269-DF90 - - - Infinite credits - both players - C260-67F7 - - - Hit and stomp anywhere - 6DAE-6469+F9AE-64A9 - - - Clock runs faster - 7A64-D420 - - - Clock runs slower - ED64-D420 - - - Clock runs much slower - ED64-D420+DF64-D7F0 - - - Rex jumps higher - EC6B-DFBE - - - Rex jumps much higher - E66B-DFBE - - - Tops jumps higher - EC8A-D793 - - - Tops jumps much higher - E68A-D793 - - - Timmy and Jamie jump higher - EC22-DF22 - - - Timmy and Jamie jump much higher - E622-DF22 - - - Collect 2 eggs for extra play instead of 50 - D427-6D2D - - - Collect 5 eggs for extra play - D927-6D2D - - - Collect 10 eggs for extra play - FD27-6D2D - - - Collect 15 eggs for extra play - F927-6D2D - - - Collect 25 eggs for extra play - 4927-6D2D - - - Collect 75 eggs for extra play - 5927-6D2D - - - Collect 99 eggs for extra play - BB27-6D2D - - - 1 play per game instead of 3 - both players - DF6D-D7BD - - - 2 plays per game - both players - D46D-D7BD - - - 4 plays per game - both players - D06D-D7BD - - - 5 plays per game - both players - D96D-D7BD - - - 7 plays per game - both players - D56D-D7BD - - - 9 plays per game - both players - DB6D-D7BD - - - Start with 1 credit instead of 3 - P1 - DFC2-A494 - - - Start with 2 credits - P1 - D4C2-A494 - - - Start with 5 credits - P1 - D9C2-A494 - - - Start with 7 credits - P1 - D5C2-A494 - - - Start with 9 credits - P1 - DBC2-A494 - - - Start with No credits - P1 - DDC2-A494 - - - Start with 1 credit instead of 3 - P2 - DFCF-DFF7 - - - Start with 2 credits - P2 - D4CF-DFF7 - - - Start with 5 credits - P2 - D9CF-DFF7 - - - Start with 7 credits - P2 - D5CF-DFF7 - - - Start with 9 credits - P2 - DBCF-DFF7 - - - Start with No credits - P2 - DDCF-DFF7 - - - Infinite health - P1 - 7E16ED:03 - - - - Donald in Maui Mallard (Europe) - - Infinite health - 7E0DD3:64 - - - Infinite lives - 7E1F4A:03 - - - Infinite Zapps - 7E0DDB:0A - - - Infinite Homers - 7E0DDD:0A - - - - Donkey Kong Country (USA) - - Invincibility (no lockup) - 1DCC-CA7A+F6CF-13EA+F6CC-3E7A - - - Invincibility - 1DCC-CA7A - - - Almost invincible (disable if you get stuck) - 1DCC-CA7A+1DCA-C2EA - - - Infinite lives - C2C1-4A9C - - - Infinite lives (alt) - C2C9-4E2C+C2C1-4A9C - - - Get Life Balloons from anywhere - 6DC7-3ABB - - - Get KONG letters from anywhere - 6D2B-C272 - - - Get Banana bunches from anywhere - 6D20-3E52 - - - Get Midway Barrel from anywhere - 6DEA-CEBB - - - Get most single Bananas from anywhere - 6D88-3A14+DD80-3E34+DD89-32C4 - - - 10 Bananas needed for extra life - DBC1-3D6D+DCC1-34AD+DBC9-340D+DCC1-3D6D - - - 25 Bananas needed for extra life - F6C1-3D6D+FBC1-34AD+F6C9-340D+FBC1-3D6D - - - 50 Bananas needed for extra life - 7FC1-3D6D+74C1-34AD+7FC9-340D+74C1-3D6D - - - 75 Bananas needed for extra life - 0CC1-3D6D+08C1-34AD+0CC9-340D+08C1-3D6D - - - Easy level exit (press start and select) - DDB9-3DD4 - - - Easy level exit (press start and select) (alt) - DDB9-3DD4+DDB0-34A4 - - - Bad buddy code (In 2P team mode, the inactive player can press select to gain control) - DD8B-C28A - - - Bad buddy code (In 2P team mode, the inactive player can press select to gain control) (alt) - DD8B-C28A+DD88-CE5A - - - Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) - D76B-337E - - - Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). - EE65-C37E - - - Keep Animals between stages - 1D6B-3FDD+196A-333D - - - Keep Animals between stages (alt) - D76B-3FDD+196A-333D - - - Keep Animals between stages (alt) - 1D6B-3FDD+196A-333D+1D6B-3D6D+166A-3ECD - - - Multi-jump - 6D84-33EA+4084-1273+6D84-1353+2D87-1273 - - - Multi-jump - Expresso (the Ostrich) - EE80-C373 - - - High-jump - Donkey Kong - A081-1273 - - - Super-jump - Donkey Kong - 2D81-1273 - - - Mega-jump - Donkey Kong - 3D81-1273 - - - Moon-jump - Donkey Kong - EE81-1273 - - - High-jump - Diddy Kong - 8081-1E73 - - - Super-jump - Diddy Kong - AD81-1E73 - - - Mega-jump - Diddy Kong - 2D81-1E73 - - - Moon-jump - Diddy Kong - EE81-1E73 - - - High-jump - Animals - A08F-C273 - - - Super-jump - Animals - 2D8F-C273 - - - Mega-jump - Animals - 3D8F-C273 - - - Moon-jump - Animals - EE8F-C273 - - - High-jump - Donkey Kong - A081-1273+A086-13E3 - - - Super-jump - Donkey Kong - 2D81-1273+2D86-13E3 - - - Mega-Jump - Donkey Kong - 3D81-1273+3D86-13E3 - - - High-jump - Diddy Kong - 8081-1E73+808B-1AE3 - - - Super-jump - Diddy Kong - AD81-1E73+AD8B-1AE3 - - - Mega-Jump - Diddy Kong - 2D81-1E73+2D8B-1AE3 - - - High-jump - all Animals - A08F-C273+A087-C3E3 - - - Super-jump - all Animals - 2D8F-C273+2D87-C3E3 - - - Mega-jump - all Animals - 3D8F-C273+3087-C3E3 - - - See the ending - CD68-3FDD+226A-333D - - - Start With 8 lives - D568-C34D+D568-C33D - - - Start With 11 lives - DC68-C34D+DC68-C33D - - - Start With 16 lives - DE68-C34D+DE68-C33D - - - Start With 26 lives - FB68-C34D+FB68-C33D - - - Start With 51 lives - 7468-C34D+7468-C33D - - - Start With 76 lives - 0868-C34D+0868-C33D - - - Start With 100 lives - 1768-C34D+1768-C33D - - - Start with 255 lives - EE68-C34D - - - Return of Kong (alt) - 7E0579:01 - - - - Donkey Kong Country (USA) (Rev 1) - - Invincibility (no lockup) - 1DCA-C2EA+F6C0-1A8A+F6C2-3AEA - - - Invincibility - 1DCA-C2EA - - - Almost invincible (disable if you get stuck) - 1DCA-C2EA - - - Infinite lives - C2C1-4A2C - - - Get Life Balloons from anywhere - 6DC7-32FB - - - Get KONG letters from anywhere - 6D28-CE52 - - - Get Banana bunches from anywhere - 6D25-3282 - - - Get Midway Barrel from anywhere - 6DE3-CABB - - - Get most single Bananas from anywhere - 6D80-3E44+6D88-3244+DD89-3314 - - - Easy level exit (press start and select) - DDB0-34A4 - - - Bad buddy code (In 2P team mode, the inactive player can press select to gain control) - DD88-CE5A - - - Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) - D76C-327E - - - Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). - EE66-C27E - - - Keep Animals - 1D6B-3D6D+166A-3ECD - - - Multi-jump - 6D89-3A8A+4080-13E3+6D89-1A73+2D89-13E3 - - - Multi-jump - Expresso (the Ostrich) - EE81-CEE3 - - - High-jump - Donkey Kong - A086-13E3 - - - Super-jump - Donkey Kong - 2D86-13E3 - - - Mega-jump - Donkey Kong - 3D86-13E3 - - - Moon-jump - Donkey Kong - EE86-13E3 - - - High-jump - Diddy Kong - 808B-1AE3 - - - Super-jump - Diddy Kong - AD8B-1AE3 - - - Mega-jump - Diddy Kong - 2D8B-1AE3 - - - Moon-jump - Diddy Kong - EE8B-1AE3 - - - High-jump - Animals - A087-C3E3 - - - Super-jump - Animals - 2D87-C3E3 - - - Mega-jump - Animals - 3087-C3E3 - - - Moon-jump - Animals - EE87-C3E3 - - - Land animals roll attack - C4A2-CA7A - - - Start with 255 lives - EE68-C33D - - - Return of Kong (alt) - 7E0579:01 - - - - Donkey Kong Country (USA) (Rev 2) - - Invincibility (no lockup) - 1DC2-C3EA+F6C9-128A+F6C3-32EA - - - Invincibility - 1DC2-C3EA - - - Infinite lives - C2C5-4A2C - - - Get Life Balloons from anywhere - 6DC0-32FB - - - Get KONG letters from anywhere - 6D2D-3E52 - - - Get Banana bunches from anywhere - 6D2A-3282 - - - Get Midway Barrel from anywhere - 6DEF-32FB - - - Get most single Bananas from anywhere - 6D82-4E17+6D85-4217+DD86-4AC7 - - - Easy level exit (press start and select) - DDB9-3764 - - - Bad buddy code (In 2P team mode, the inactive player can press select to gain control) - DD82-CEEA - - - Both Kongs return (get both Kongs back on map screen after dying, doesn't work when you fall off the screen) - D76C-337E - - - Return of Kong (when your last Kong gets hit, the other one returns (reset if you get stuck). Must have had both Kongs at some point). - EE66-C37E - - - Multi-jump - 6D85-327A+4081-1E53+6D85-1A83+2D85-1E53 - - - Multi-jump - Expresso (the Ostrich) - EE8B-CA53 - - - High-jump - Donkey Kong - A08C-1E53 - - - Super-jump - Donkey Kong - 2D8C-1E53 - - - Mega-jump - Donkey Kong - 308C-1E53 - - - Moon-jump - Donkey Kong - EE8C-1E53 - - - High-jump - Diddy Kong - 8088-1253 - - - Super-jump - Diddy Kong - AD88-1253 - - - Mega-jump - Diddy Kong - 2D88-1253 - - - Moon-jump - Diddy Kong - EE88-1253 - - - High-jump - Animals - A089-CE53 - - - Super-jump - Animals - 2D89-CE53 - - - Mega-jump - Animals - 3089-CE53 - - - Moon-jump - Animals - EE89-CE53 - - - Land animals can roll attack - A98B-327A - - - Start with 255 lives - EE63-333D - - - Return of Kong (alt) - 7E0579:01 - - - - Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr) (Rev 1) - - Master code - Must be entered - E6EE-A7D7+6DA4-1A8B+6D8F-C33E - - - Invincibility - CB2C-1A4D+FD2C-1A1D+DD2C-1ACD - - - Infinite lives - C2A1-CE5B+C2A5-C37B - - - Get 2 lives per 100 bananas collected - D4A1-437C+D4A5-4AEC - - - Get 5 lives per 100 bananas collected - D9A1-437C+D9A5-4AEC - - - Get 255 lives per 100 bananas collected - EEA1-437C - - - When your last Kong is hit, the other returns - EEC2-1A1D+EECC-CA4D - - - Easy level exit (press start and select) - DD6C-C7D4+DD62-C4A4 - - - Kong family coins don't get used up - C2B9-13B7+C2B1-13F7 - - - Kremcoins don't get used up - C2B9-1297+C2B1-1A27 - - - Multi-jump - DDBD-CA44+D5BD-3214+DBB2-3244+DD8E-121D+6787-C334 - - - Mega-jump for Diddy - EDD0-735A - - - Super-jump - Diddy - E7D0-735A - - - Jump higher - Diddy - E1D0-735A - - - Jump lower - Diddy - EBD0-735A - - - Jump much lower - Diddy - ECD0-735A - - - Mega-jump - Dixie - EDD7-5AEA - - - Super-jump - Dixie - E7D7-5AEA - - - Jump higher - Dixie - E5D7-5AEA - - - Jump lower - Dixie - EBD7-5AEA - - - Jump much lower - Dixie - ECD7-5AEA - - - Mega-jump - Rambi with Diddy riding - EFDD-535A - - - Super-jump - Rambi with Diddy riding - E7DD-535A - - - Rambi jumps higher with Diddy riding - E5DD-535A - - - Rambi doesn't jump as high with Diddy riding - ECDD-535A - - - Start with more kong family coins - 626D-4EBD - - - Start with more Kremcoins - 626D-432D - - - Start with 3 lives - D465-3D67+D46C-3D07 - - - Start with 10 lives - DB65-3D67+DB6C-3D07 - - - Start with 25 lives - F665-3D67+F66C-3D07 - - - Start with 50 lives - 7F65-3D67+7F6C-3D07 - - - Start with 99 lives - 1765-3D67+176C-3D07 - - - Start with 255 lives - EE65-3D67 - - - - Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr) - - Master code - Must be entered - E6EE-A7D7+6DAF-12EB+6D8D-C33E - - - Invincibility - 4028-434D - - - Infinite lives - C2A1-CE5B+C2A5-C37B - - - When your last Kong is hit, the other returns - EEC2-1A1D+EECC-CA4D - - - Easy level exit (press start and select) - DD6C-C7D4+DD62-C4A4 - - - Kong family coins don't get used up - C2B9-13B7+C2B1-13F7 - - - Kremcoins don't get used up - C2B9-1297+C2B1-1A27 - - - Get single Bananas from almost anywhere - 6DEC-33F9+6DED-43F1+DDE8-32B9 - - - Get Banana bunches from anywhere - 6DA7-33AA - - - Get DK and Banana Coins from anywhere - 6D85-42EC - - - Get KONG letters from anywhere - 6D88-C38C - - - Get Krem Koins from anywhere - 6D83-125C - - - Get Life balloons from anywhere - 6DAE-336A - - - Get Midway Barrel from anywhere - 6D3A-42A2 - - - Get 2 lives per 100 bananas collected - D4A1-437C+D4A5-4AEC - - - Get 5 lives per 100 bananas collected - D9A1-437C+D9A5-4AEC - - - Get 255 lives per 100 bananas collected - EEA1-437C - - - Multi-jump - 4DAF-121F+54AF-12CF+A0AF-123F+1DAF-134F - - - Mega-jump for Diddy - EDD0-735A - - - Super-jump - Diddy - E7D0-735A - - - Jump higher - Diddy - E1D0-735A - - - Jump lower - Diddy - EBD0-735A - - - Jump much lower - Diddy - ECD0-735A - - - Mega-jump - Dixie - EDD7-5AEA - - - Super-jump - Dixie - E7D7-5AEA - - - Jump higher - Dixie - E5D7-5AEA - - - Jump lower - Dixie - EBD7-5AEA - - - Jump much lower - Dixie - ECD7-5AEA - - - Mega-jump - Rambi with Diddy riding - EFDD-535A - - - Super-jump - Rambi with Diddy riding - E7DD-535A - - - Rambi jumps higher with Diddy riding - E5DD-535A - - - Rambi doesn't jump as high with Diddy riding - ECDD-535A - - - Start with more kong family coins - 626D-4EBD - - - Start with more Kremcoins - 626D-432D - - - Start with 3 lives - D465-3D67+D46C-3D07 - - - Start with 10 lives - DB65-3D67+DB6C-3D07 - - - Start with 25 lives - F665-3D67+F66C-3D07 - - - Start with 50 lives - 7F65-3D67+7F6C-3D07 - - - Start with 99 lives - 1765-3D67+176C-3D07 - - - Start with 255 lives - EE65-3D67 - - - - Donkey Kong Country 3 - Dixie Kong's Double Trouble! (USA) (En,Fr) - - Invincibility - B768-C34D - - - Invincibility (alt) - CBA0-CECF+DBA0-CE3F+DDA9-CA4F - - - Infinite lives - CB6E-73CD - - - Infinite bear coins - DBB8-729D - - - Get Funky's Gyrocopter with no need for DK coins - 6D6C-7EFF+6D62-722F - - - Get Single Bananas from almost anywhere - 6D3C-33F3+6D3D-43FE+DD38-32B3 - - - Get Banana Bunches from anywhere - 6D24-434A - - - Get Bear Coins from anywhere - 6D29-C3CA - - - Get KONG letters from anywhere - 6DAF-123E - - - Get Midway Barrel from anywhere - 6D20-4388 - - - Get Bonus Coins from anywhere - 6D2E-CE1A - - - Get Life Balloons from anywhere - 6D22-1ACA - - - Get DK Coins from anywhere - DDC0-33BB - - - Multi-jump - 4D2B-3E1F+5F2B-3ECF+BD2B-3E3F+1D2C-3A4F - - - - Doom (USA) - - Infinite health - 6EDE-955D+C3DE-958D+9CDE-95ED+5DDD-B07D+6DDD-B05D2 - - - Start with mega health and mega armor - BDEA-B053+62EA-B953 - - - Start with more ammo - E3EA-B153 - - - Heat vision/color blind mode - CBD3-B17F - - - Select "The Shores of Hell" or "Inferno" in any skill level - D7CF-F953 - - - - Doom Troopers (USA) - - Invincibility - 7E0C99:01 - - - Infinite health - 7E0C31:64 - - - Infinite lives - 7E0CB3:03+7E0102:03 - - - Infinite ammo - 7E00E6:63 - - - Infinite special weapon ammo - 7E00EA:0A - - - Die to complete level (don't use with infinite lives code) - 7E0102:01 - - - - Doomsday Warrior (USA) - - Infinite health and matches last forever - 82C7-046F - - - Always get 4 bonus points for improving abilities - CBB2-ADDD+D0B2-AD0D+6DB2-A46D - - - On normal level, start with all stats at 2 bars instead of 0 - D9B9-64DD - - - First 6 fights are against Sledge - DDB0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Layban - DFB0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Amon - D4B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Daisy - D7B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against P-Lump - D0B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Grimrock - D9B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Nuform - D1B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 7 fights are against Shadow - D5B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Ashura - D6B0-ADAD+6DB0-AFDD+E9B0-AF0D - - - First 6 fights are against Main - DBB0-ADAD+6DB0-AFDD+E9B0-AF0D - - - All fights are in order (you don't choose your opponent) - DDB7-AFAD - - - You can heal completely, not just to the top of each segment - DD83-D4AF - - - Don't heal at all - 3C8E-DDAF - - - Infinite health - P1 - 7E02C6:64 - - - Infinite health - P2 - 7E03C6:64 - - - No health - P1 - 7E02C6:00 - - - No health - P2 - 7E03C6:00 - - - - Double Dragon V - The Shadow Falls (USA) - - Always win - P1 - DDAB-3DAE - - - Can't perform special moves - P2/CPU - B3C8-CFBF+B3C6-CDBF+BAC9-3FBF - - - Pick up to 9 points of any attribute instead of 5 - DBBC-1F27 - - - Harder to recover from dizziness - 3C85-CF07 - - - Dizziness doesn't last long - D685-C407 - - - Start with 50% health - both characters - 46C6-340D - - - Start with 25% health - both characters - F0C6-340D - - - Infinite health - P1 - 7E1B8D:50 - - - Infinite health - P2 - 7E1C8A:50 - - - No health - P1 - 7E1B8D:00 - - - No health - P2 - 7E1C8A:00 - - - Bosses unlocked cheat enabled - 7F0068:01 - - - Stuns disabled cheat enabled - 7F006A:01 - - - Throwing disabled cheat enabled - 7F006C:01 - - - P1 is Billy Lee - 7E0632:00 - - - P1 is Jimmy Lee - 7E0632:01 - - - P1 is Jawbreaker - 7E0632:02 - - - P1 is Icepick - 7E0632:03 - - - P1 is S Master - 7E0632:04 - - - P1 is Bones - 7E0632:05 - - - P1 is Sickle - 7E0632:06 - - - P1 is Blade - 7E0632:07 - - - P1 is T Happy - 7E0632:08 - - - P1 is Countdown - 7E0632:09 - - - P1 is Dominique - 7E0632:0A - - - P1 is Sekka - 7E0632:0B - - - P2 is Billy Lee - 7E0633:00 - - - P2 is Jimmy Lee - 7E0633:01 - - - P2 is Jawbreaker - 7E0633:02 - - - P2 is Icepick - 7E0633:03 - - - P2 is S Master - 7E0633:04 - - - P2 is Bones - 7E0633:05 - - - P2 is Sickle - 7E0633:06 - - - P2 is Blade - 7E0633:07 - - - P2 is T Happy - 7E0633:08 - - - P2 is Countdown - 7E0633:09 - - - P2 is Dominique - 7E0633:0A - - - P2 is Sekka - 7E0633:0B - - - - Dragon - The Bruce Lee Story (USA) - - Infinite health (disable before stage ends) - 7E00D9:FF - - - Infinite fighting power - 7E00DB:FF - - - 0 HP - Enemy 1 - 7E01D9:00 - - - 0 HP - Enemy 2 - 7E02D9:00 - - - Infinite time (turn on only in a timed fight and off after defeating your opponent) - 7E2082:63 - - - Hyper Mode - P1 - 7E003E:01 - - - Hyper Mode - P2/Enemy 1 - 7E013E:01 - - - Hyper Mode - P3/Enemy 2 - 7E023E:01 - - - P1 Knocks Out Easier - 7E0093:02 - - - P2 Knocks Out Easier - 7E0193:02 - - - P3 Knocks Out Easier - 7E0293:02 - - - P1 Can't Be Hit - 7E0095:44 - - - P2 Can't Be Hit - 7E0195:44 - - - P3 Can't Be Hit - 7E0295:44 - - - Start in Alley outside kitchen (version 2) - 7E539E:01 - - - Start in Alley outside kitchen - 7E539E:02 - - - Start in the Seattle Gym - 7E539E:03 - - - Start in the George Wu Gym - 7E539E:04 - - - Start in Film Set - 7E539E:05 - - - Start in Bruce's Kwoon - 7E539E:06 - - - Start in Virgin Gym - 7E539E:07 - - - Start in the Big Boss Film set (version 2) - 7E539E:08 - - - Start in the Big Boss Film set - 7E539E:09 - - - Start in the Enter The Dragon set - 7E539E:0A - - - Start in the Armored Boss Arena - 7E539E:0B - - - Start in the Machine - 7E539E:0C - - - - Dragon Ball Z - Hyper Dimension (Japan) - - One hit kills - CBAB-0D0F+DFAB-0D6F+DDAB-0DAF+62AB-04AF+1DAB-07DF - - - - Dragon Quest I & II (Japan) - - DQ I & II - Infinite MP in battle - 82C0-6F43 - - - DQ I & II - Infinite MP ouside battle - 8BA6-DDD7 - - - DQ I & II - Keep gold after deposit in the vault - 44E0-DFDD - - - DQ I & II - Take no damage from poison swamps - 3C67-0913 - - - DQ I & II - Take no damage from barriers - 8265-01C3 - - - DQ I & II - Take no damage from monster hits or magic - 1D6A-AD4E - - - DQ I & II - Take no damage from monster fire - 6DB6-DD43+DCB6-DD13 - - - DQ I & II - Inns don't take your money - C2E3-DF6F - - - DQ I & II - All equipment in shops is free - 6DA6-A7AF - - - DQ I - Infinite medical herbs - C261-A7C0 - - - DQ I - Key shops don't take your money - C2A0-6DD4 - - - DQ I - Fairy water shops don't take your money - C2AE-0FA4 - - - - Dragon View (USA) - - Infinite health (may crash at the end of Ortah Temple if using an emulator) - CE65-4586 - - - Infinite Jade - CE34-3106 - - - Infinite Bombs - E23-C9:A2 - - - Infinite Potions - CE26-41A3 - - - Infinite magic for rings - C237-4116 - - - Max level after killing a Demon - 7834-1F67 - - - Sell a fruit to get 254 fruit - 6D37-196B+7534-C0AB - - - Infinite HP - 7E6FCA:B8 - - - Max HP - 7E6FCB:BE+7E6FCB:BE - - - Max EXP - 7E7095:E7+7E7096:03 - - - Max money (Jade) - 7E2131:0F+7E2132:27 - - - Max attack power - 7E98E9:FF - - - Max defense power - 7E98EA:FF - - - - Dragon's Lair (USA) - - Infinite health - 3C8C-0FA4 - - - Infinite time - 4A84-64D4 - - - Infinite lives - 3C62-D70F - - - Start with 1 life - DD89-0404 - - - Start with 6 lives - D989-0404 - - - Start with 9 lives - D689-0404 - - - Start with the Dagger - DF86-0DD4 - - - Start with the Shuriken - D486-0DD4 - - - Slow timer - 5D89-6D04 - - - Faster timer - 4989-6D04 - - - 1 coin gives 10 - DF88-0F64 - - - Infinite health (alt) - 7E1036:04 - - - Infinite time (alt) - 7E1033:09 - - - Infinite lives (alt) - 7E1028:03 - - - Infinite Gold - 7E1030:09 - - - - Drakkhen (USA) - - Protection from some attacks - 8E3D-696D+8E30-A408+8EA2-0113 - - - Magic points restored 50 points at a time while player is on screen - 7433-6FD8 - - - Magic points restored 10 points at a time while player is on screen - DC33-6FD8 - - - Magic points don't decrease except in battle - 8E27-6D28 - - - - Dream T.V. (USA) - - Almost infinite health - 8FA6-3DA8+8FAA-3FA8 - - - Infinite lives - DDCE-C7DC - - - One hit kills, except skeletons - 8F23-3768 - - - Mega-jump (disable to land again) - 8F84-17D8 - - - Can't get hit - some characters are white - DDC7-1DD8 - - - Start with 5 lives - D9B8-1F04 - - - Start with 1 life - DFB8-1F04 - - - Start with 8 lives - D6B8-1F04 - - - Start with 2/3 health - 1st life - 4DBD-CF04 - - - Start with 2/3 health - after 1st life - 4DCE-CD0C - - - Start with 1/3 health - 1st life - FDBD-CF04 - - - Start with 1/3 health - after 1st life - FDCE-CD0C - - - - Dual Orb II (Japan) - - Gain 65,535 EXP from each battle - CEF7-8F9F+A8F7-84FF - - - Sell one item for maximum money - DD4F-8FD4 - - - Can skip barrel puzzle - 544E-7FD6 - - - No random battles - 6D7B-77D6 - - - Enemies start with 10 HP - CE2C-540D+7B2C-546D - - - Enemies start with 100 HP - CE2C-540D - - - - Dungeon Master (USA) - - Almost no mana loss (must have enough to cast) - 85B5-07D9 - - - Food meter doesn't go down - 85CF-0F29 - - - Water meter doesn't go down - 85C5-0FB9 - - - 1st character has 250 maximum hit points - ECDC-F26F - - - 2nd character has 250 maximum hit points - ECDA-220F - - - 3rd character has 250 maximum hit points - ECD3-B2D4 - - - 4th character has 250 maximum hit points - ECDD-BAA7 - - - 1st character has 250 maximum stamina - A0DC-F36F+DBDC-F3AF - - - 2nd character has 250 maximum stamina - A0DA-230F+DBDA-236F - - - 3rd character has 250 maximum stamina - A0D3-B3D4+DBD3-B304 - - - 4th character has 250 maximum stamina - A0DD-B2A7+DBDD-B3D7 - - - 1st character has 250 maximum mana - ECDC-FE6F - - - 2nd character has 250 maximum mana - ECDA-2E0F - - - 3rd character has 250 maximum mana - ECD3-BED4 - - - 4th character has 250 maximum mana - ECDD-B3A7 - - - 1st character has 99 current strength - 17D8-F36F - - - 2nd character has 99 current strength - 17D2-230F - - - 3rd character has 99 current strength - 17DE-B3D4 - - - 4th character has 99 current strength - 17DF-B2A7 - - - 1st character has 99 maximum strength - 17D8-F30F - - - 2nd character has 99 maximum strength - 17D2-23DF - - - 3rd character has 99 maximum strength - 17DE-B2A4 - - - 4th character has 99 maximum strength - 17DF-B267 - - - 1st character has 99 current dexterity - 17D8-FE0F - - - 2nd character has 99 current dexterity - 17D2-2EDF - - - 3rd character has 99 current dexterity - 17DE-B3A4 - - - 4th character has 99 current dexterity - 17DF-B367 - - - 1st character has 99 maximum dexterity - 17D8-FEDF - - - 2nd character has 99 maximum dexterity - 17D2-23AF - - - 3rd character has 99 maximum dexterity - 17DE-B364 - - - 4th character has 99 maximum dexterity - 17DF-B307 - - - 1st character has 99 current wisdom - 17DA-FADF - - - 2nd character has 99 current wisdom - 17D2-2EAF - - - 3rd character has 99 current wisdom - 17DE-BE64 - - - 4th character has 99 current wisdom - 17DF-BE07 - - - 1st character has 99 maximum wisdom - 17D8-FEAF - - - 2nd character has 99 maximum wisdom - 17D2-2E6F - - - 3rd character has 99 maximum wisdom - 17DE-BE04 - - - 4th character has 99 maximum wisdom - 17DF-BED7 - - - 1st character has 99 current vitality - 17DA-FAAF - - - 2nd character has 99 current vitality - 17D3-2A6F - - - 3rd character has 99 current vitality - 17DD-2A04 - - - 4th character has 99 current vitality - 17D4-BAD7 - - - 1st character has 99 maximum vitality - 17DA-FA6F - - - 2nd character has 99 maximum vitality - 17D3-2A0F - - - 3rd character has 99 maximum vitality - 17DD-2AD4 - - - 4th character has 99 maximum vitality - 17DF-BEA7 - - - 1st character has 99 current anti-magic - 17DA-F26F - - - 2nd character has 99 current anti-magic - 17D3-220F - - - 3rd character has 99 current anti-magic - 17DD-22D4 - - - 4th character has 99 current anti-magic - 17D4-BAA7 - - - 1st character has 99 maximum anti-magic - 17DA-F20F - - - 2nd character has 99 maximum anti-magic - 17D3-22DF - - - 3rd character has 99 maximum anti-magic - 17DD-2AA4 - - - 4th character has 99 maximum anti-magic - 17D4-BA67 - - - 1st character has 99 current anti-fire - 17DA-F30F - - - 2nd character has 99 current anti-fire - 17D3-23DF - - - 3rd character has 99 current anti-fire - 17DD-22A4 - - - 4th character has 99 current anti-fire - 17D4-B267 - - - 1st character has 99 maximum anti-fire - 17DA-F3DF - - - 2nd character has 99 maximum anti-fire - 17D3-22AF - - - 3rd character has 99 maximum anti-fire - 17DD-2264 - - - 4th character has 99 maximum anti-fire - 17D4-B207 - - - 1st character is a level 15 fighter - 5EDA-FEAF - - - 1st character is a level 15 ninja - 5ED2-F20F - - - 1st character is a level 15 healer - 5ED2-F3AF - - - 1st character is a level 15 wizard - 5ED3-FA0F - - - 2nd character is a level 15 fighter - 5ED3-2E6F - - - 2nd character is a level 15 ninja - 5EDE-22DF - - - 2nd character is a level 15 healer - 5EDE-236F - - - 2nd character is a level 15 wizard - 5EDD-FAD4 - - - 3rd character is a level 15 fighter - 5EDD-2E04 - - - 3rd character is a level 15 ninja - 5EDF-2AA4 - - - 3rd character is a level 15 healer - 5EDF-2304 - - - 3rd character is a level 15 wizard - 5EDF-2EA4 - - - 4th character is a level 15 fighter - 5ED4-BED7 - - - 4th character is a level 15 ninja - 5ED7-BA67 - - - 4th character is a level 15 healer - 5ED7-B3D7 - - - 4th character is a level 15 wizard - 5ED7-BE67 - - - 1st character has a nearly full food meter - D5D8-FAAF - - - 1st character has a nearly full water meter - D5D8-F20F - - - 2nd character has a nearly full food meter - D5D2-2A6F - - - 2nd character has a nearly full water meter - D5D2-22DF - - - 3rd character has a nearly full food meter - D5DE-BA04 - - - 3rd character has a nearly full water meter - D5DE-BAA4 - - - 4th character has a nearly full food meter - D5DF-BAD7 - - - 4th character has a nearly full water meter - D5DF-BA67 - - - - E.V.O. - Search for Eden (USA) - - Invincibility - 1D66-072B - - - Infinite EVO points - 6D27-6FAF - - - Infinite EP - FDD2-FA86+45D2-FAE6 - - - Protection from most hazards - C96E-07FB - - - Food replenishes hit points to full - DD60-D18B - - - Less damage from stronger creatures - D566-A7F8 - - - Horn never breaks - C964-A726 - - - Collect one health to max it out - DD61-D97B - - - One-hit kills - DD6C-AFF2 - - - - Earth Defense Force (USA) - - Invincibility - 406A-676F - - - Infinite shields - C263-6FAF - - - Infinite credits - C268-A491 - - - Continually hit anywhere - 4064-09DA+406A-676F+406D-01DA+406E-D16A+406F-096A - - - Advancing experience levels is easier - 4D21-6F0F - - - Advancing experience levels is much easier - DA21-6F0F - - - Keep current score when game is continued - C223-AFD7+C223-AFA7 - - - 1 credit - DD2E-AF67+CB2E-AF07+DD2E-AFA7 - - - 2 credits - DF2E-AF67+CB2E-AF07+DD2E-AFA7 - - - 3 credits - D42E-AF67+CB2E-AF07+DD2E-AFA7 - - - 6 credits - D92E-AF67+CB2E-AF07+DD2E-AFA7 - - - 8 credits - D52E-AF67+CB2E-AF07+DD2E-AFA7 - - - 10 credits - DB2E-AF67+CB2E-AF07+DD2E-AFA7 - - - Start with 4 shields - 7123-A4A7+3D23-A7D7 - - - Start with 5 shields - 2B23-A4A7+B823-A7D7 - - - Start at experience level 2 - D42E-A7A7 - - - Start at experience level 3 - D72E-A7A7 - - - Start at experience level 4 - D02E-A7A7 - - - Start at experience level 5 - D92E-A7A7 - - - Start at stage 2 - DF37-DDDD+CB34-D7AD+DD37-DD0D - - - Start at stage 3 - D437-DDDD+CB34-D7AD+DD37-DD0D - - - Start at stage 4 - D737-DDDD+CB34-D7AD+DD37-DD0D - - - Start at stage 5 - D037-DDDD+CB34-D7AD+DD37-DD0D - - - Start at stage 6 - D937-DDDD+CB34-D7AD+DD37-DD0D - - - - EarthBound (USA) - - Infinite health (all characters) - 8251-57D6 - - - Get to level 99 after one battle (all characters) - EE2E-54A1 - - - Fast money (buy a bread with the code disabled, enable and sell it for $32,646) - EE9A-E5F5 - - - Dad never calls - E395-87DD - - - Massive numbers of enemies (piracy check) - 6D4F-7704 - - - Start with a level 9 character - DB23-77D1 - - - Start with a level 15 character - DE23-77D1 - - - Start with a level 50 character - 7423-77D1 - - - Start with a level 100 character - 1723-77D1 - - - Start with a level 255 character - EE23-77D1 - - - Start with a super strong character - EE2E-7D01 - - - Start with a lot of HP - BB2D-5461 - - - Start with a lot of PSI - BB2F-54A1 - - - Infinite health - 7E9A13:E7+7E9A14:03 - - - 9999 current PP - 7E9A1B:0F+7E9A1C:27 - - - - Earthworm Jim (USA) - - Infinite health - A21F-7464 - - - Infinite Ammo - 2215-EFAF - - - Infinite lives - A2DA-87A7 - - - Hit anywhere (Gun) - 6D01-776D+6D63-7401+F901-77AD - - - Die after one hit - 7D17-7F64 - - - Start with 1 life - 7D13-8FDF - - - Start with 5 lives - 7013-8FDF - - - Start with 10 lives - 7B13-8FDF - - - Start with 25 lives - 0613-8FDF - - - Start with 50 lives - 1F13-8FDF - - - Start with 300% health - 7717-7F64 - - - Start with 500% health - 7917-7F64 - - - Start with 900% health - 7B17-7F64 - - - Invincibility against enemies - 7E682A:3D - - - Infinite health (alt) - 7E6627:39 - - - Infinite shields - 7E6B48:63 - - - Super shot always active - 7E661C:FF+7E69A0:09 - - - Infinite time in Sub - 7E6752:63 - - - Always win race in Andy Asteroids stages (glitchy graphics) - 7E6B46:FF - - - Start on What The Heck? - 7E512A:01 - - - Start on What The Heck? (Snowman Boss) - 7E512A:02 - - - Start on What The Heck? (Boss Fight With Evil The Cat) - 7E512A:03 - - - Start on Snot A Problem Round 1 - 7E512A:04 - - - Start on Snot A Problem Round 2 - 7E512A:05 - - - Start on Snot A Problem Round 3 - 7E512A:06 - - - Start on For Pete's Sake - 7E512A:07 - - - Start on Buttville, Part 2 - 7E512A:08 - - - Start on Buttville, Part 1 - 7E512A:09 - - - Start on Level 5, Part 1 - 7E512A:0A - - - Start on Level 5 (Chicken Boss) - 7E512A:0B - - - Start on Level 5, Part 2 - 7E512A:0C - - - Start on Down The Tubes - 7E512A:0D - - - Start on Tube Race - 7E512A:0E - - - Start on Andy Asteroids?, Course 1 - 7E512A:0F - - - Start on Andy Asteroids?, Course 2 - 7E512A:10 - - - Start on Andy Asteroids?, Course 3 - 7E512A:11 - - - Start on Andy Asteroids?, Course 4 - 7E512A:12 - - - Start on Andy Asteroids?, Course 5 - 7E512A:13 - - - Start on Andy Asteroids?, Course 6 - 7E512A:14 - - - Start on Who Turned Out The Light?, Part 1 - 7E512A:15 - - - Start on Who Turned Out The Light?, Part 2 - 7E512A:16 - - - Start on Who Turned Out The Light?, Part 3 - 7E512A:17 - - - Start on Who Turned Out The Light?, Part 4 - 7E512A:18 - - - Start on Who Turned Out The Light?, Part 5 - 7E512A:19 - - - Start on Psycrow - 7E512A:1A - - - - Earthworm Jim 2 (USA) - - Infinite health - CB57-7D0B - - - Infinite lives - CBF0-7464 - - - Hit anywhere (Gun) - 6D5C-EF08+F95C-EF68 - - - Infinite time - Lorenzen's Soil level - C2FA-8D0C - - - Get 1000 bullets on pick-up - D798-74F7+3B98-7F27 - - - Get 2000 bullets on pick-up - D598-74F7+3D98-7F27 - - - Start with 200% health - 7450-770B - - - Start with 300% health - 7750-770B - - - Start with 400% health - 7050-770B - - - Start with 500% health - 7950-770B - - - Start with 700% health - 7550-770B - - - Start with 900% health - 7B50-770B - - - Start with 1 life and no continues - 7D55-5F06 - - - Start with 5 lives - 7055-5F06 - - - Start with 7 lives - 7155-5F06 - - - Start with 9 lives - 7655-5F06 - - - Start with 2000 bullets - 749E-54B4 - - - Start with 3000 bullets - 779E-54B4 - - - Start with 4000 bullets - 709E-54B4 - - - Start with 5000 bullets - 799E-54B4 - - - Start with 7000 bullets - 759E-54B4 - - - Start with 9000 bullets - 7B9E-54B4 - - - Invincibility - 7E653C:10 - - - - Eek! The Cat (USA) - - Infinite health - 7E004E:BF - - - Infinite lives - 7E1FE5:09 - - - - Emerald Dragon (Japan) - - Max level after one battle - 6DDA-E707 - - - Max Parus after one battle - 6DD6-E4D7 - - - No random battles - F6C0-57D0 - - - - Equinox (USA) - - Invincibility against most small monsters - C28F-AF4D - - - Infinite life - 3CA0-0DC7 - - - Infinite magic (must have enough MP for spell to work) - CEAE-0D17 - - - More life from Apples - CB2A-C4D9 - - - Super-jump - 4F27-1F00+4020-1FD0 - - - Mega-jump - FC27-1F00+4020-1FD0 - - - Super speed - B32C-4FA0+CD2C-4700 - - - Colored doors don't need keys - DD86-674F+3C86-671F - - - Walk through objects (hold L) - 2D85-674D+4D85-64CD+4B85-6F3D+C285-6FCD+DA81-674D - - - Slow spell lasts 2x as long - D9AC-6437 - - - Slow spell lasts 3x as long - D6AC-6437 - - - Freeze spell lasts 2x as long - D9AB-6FC7 - - - Freeze spell lasts 3x as long - D6AB-6FC7 - - - - Extra Innings (USA) - - Game lasts 1 inning - DFBE-ADAD+DFBF-DF6F+DFB4-0FDF - - - Game lasts 2 innings - D4BE-ADAD+D4BF-DF6F+D4B4-0FDF - - - Game lasts 3 innings - D7BE-ADAD+D7BF-DF6F+D7B4-0FDF - - - Game lasts 4 innings - D0BE-ADAD+D0BF-DF6F+D0B4-0FDF - - - Game lasts 5 innings - D9BE-ADAD+D9BF-DF6F+D9B4-0FDF - - - Game lasts 7 innings - D5BE-ADAD+D5BF-DF6F+D5B4-0FDF - - - 1 strike and batter's out - DF67-DF07+DD60-A4D7 - - - 2 strikes and batter's out - D467-DF07+DF60-A4D7 - - - Batter never strikes out - C264-D767+C260-A4A7 - - - 1 ball and batter walks - DF6A-DFA7 - - - 2 balls and batter walks - D46A-DFA7 - - - 3 balls and batter walks - D76A-DFA7 - - - Batter never walks - C26A-DDD7 - - - 1 out per inning - DF67-AD67+DF61-D4A7 - - - 2 outs per inning - D467-AD67+D461-D4A7 - - - - F-1 ROC - Race of Champions (USA) - - No damage when hitting walls - C9A8-07DD - - - No damage when hitting other cars - C922-0FDD - - - Normal tires are free - DDEE-6F21 - - - Hi-grip tires are free - DDEE-6491 - - - Rain tires are free - DDEE-6F91 - - - 2L nitro is free - DDED-A491 - - - 3L nitro is free - DDED-A421 - - - 4L nitro is free - DDED-A791 - - - Ford V-8 engine is free - DDEE-6721+DDED-ADF1 - - - Ilmoa V-8 engine is free - DDED-AD91+DDED-ADB1 - - - Remart V-10 engine is free - DDED-AD21+DDED-AFF1 - - - Low DF rear wing is free - DDE3-6791 - - - High DF rear wing is free - DDEE-6D91+DDEE-6DB1 - - - Low DF front wing is free - DDE3-6D21 - - - High DF front wing is free - DDE3-6F21+DDE3-64F1 - - - Special-L front wing is free - DDE3-6491+DDE3-64B1 - - - Small diffuser is free - DDE2-6421 - - - Large diffuser is free - DDE2-6721 - - - Special diffuser is free - DDE3-6D91+DDE3-6DB1 - - - Hard suspension is free - DDE2-6F21 - - - Active suspension is free - DDE2-6491+DDE2-64B1 - - - Carbon brakes are free - DDE2-6D91 - - - Antilock brakes are free - DDE2-6D21+DDE2-6FF1 - - - 5-speed transmission is free - DDEA-6491 - - - 6-speed transmission is free - DDEA-6421+DDEA-67F1 - - - 7-speed transmission is free - DDEA-6791+DDEA-67B1 - - - Type 2 chassis is free - DDEA-6D21+DDEA-6FF1 - - - Type 3 chassis is free - DDEA-6F91+DDEA-6FB1 - - - Start with no money instead of $500 - BA26-A44F - - - Start with $5,240 - 3C26-AF4F+CB26-AF1F+D426-AF3F - - - Start with $20,600 - 3C26-AF4F+CB26-AF1F+D626-AF3F - - - Start with $163,960 - 3C26-AF4F+CB26-AF1F+0D26-AF3F - - - Start with $327,800 - 3C26-AF4F+CB26-AF1F+6D26-AF3F - - - Start with $652,920 - 3C26-AF4F+CB26-AF1F+EE26-AF3F - - - - Faceball 2000 (USA) - - Infinite lives - 89AB-D708 - - - Only need 8 tags to win in arena mode instead of 10 (start with 2 instead of 0) - B9B1-6F01 - - - Allow 98 seconds in zone 1 bonus level - 1061-DD52 - - - Allow 98 seconds in zone 2 bonus level - 1069-6752 - - - Allow 98 seconds in zone 3 bonus level - 1068-DDE3 - - - Allow 98 seconds in zone 4 bonus level - 1061-A473 - - - Allow 198 seconds in zone 5 bonus level - A66C-047E - - - Allow 198 seconds in zone 6 bonus level - A6B1-D45A - - - Allow 198 seconds in zone 7 bonus level - A6B0-AF7A - - - Start with 1 life instead of 3 - DFB6-6461 - - - Start with 5 lives - D9B6-6461 - - - Start with 7 lives - D5B6-6461 - - - Start with 9 lives - DBB6-6461 - - - Start with 25 lives - FBB6-6461 - - - Start with 50 lives - 74B6-6461 - - - Start with 75 lives - 08B6-6461 - - - Start with 99 lives - 17B6-6461 - - - Start with 255 lives - EEB6-6461 - - - Start each Cyberzone level with 1 tag required - CBB5-6406+DFB5-6466 - - - Start each Cyberzone level with 5 tags required - CBB5-6406+D9B5-6466 - - - Start each Cyberzone level with 20 tags required - CBB5-6406+F0B5-6466 - - - Start each Cyberzone level with 30 tags required - CBB5-6406+F3B5-6466 - - - Start each Cyberzone level with 60 tags required - CBB5-6406+7AB5-6466 - - - Start each Cyberzone level with 90 tags required - CBB5-6406+9CB5-6466 - - - Start Cyberzone mode on zone 1 level 2 - C282-0706+DFCE-0468 - - - Start Cyberzone mode on zone 1 level 3 - C282-0706+D4CE-0468 - - - Start Cyberzone mode on zone 1 level 4 - C282-0706+D7CE-0468 - - - Start Cyberzone mode on zone 1 level 5 - C282-0706+D0CE-0468 - - - Start Cyberzone mode on zone 1 bonus level - C282-0706+D9CE-0468 - - - Start Cyberzone mode on zone 2 level 6 - C282-0706+D1CE-0468 - - - Start Cyberzone mode on zone 2 level 7 - C282-0706+D5CE-0468 - - - Start Cyberzone mode on zone 2 level 8 - C282-0706+D6CE-0468 - - - Start Cyberzone mode on zone 2 level 9 - C282-0706+DBCE-0468 - - - Start Cyberzone mode on zone 2 level 10 - C282-0706+DCCE-0468 - - - Start Cyberzone mode on zone 2 bonus level - C282-0706+D8CE-0468 - - - Start Cyberzone mode on zone 3 level 11 - C282-0706+DACE-0468 - - - Start Cyberzone mode on zone 3 level 12 - C282-0706+D2CE-0468 - - - Start Cyberzone mode on zone 3 level 13 - C282-0706+D3CE-0468 - - - Start Cyberzone mode on zone 3 level 14 - C282-0706+DECE-0468 - - - Start Cyberzone mode on zone 3 level 15 - C282-0706+FDCE-0468 - - - Start Cyberzone mode on zone 3 bonus level - C282-0706+FFCE-0468 - - - Start Cyberzone mode on zone 4 level 16 - C282-0706+F4CE-0468 - - - Start Cyberzone mode on zone 4 level 17 - C282-0706+F7CE-0468 - - - Start Cyberzone mode on zone 4 level 18 - C282-0706+F0CE-0468 - - - Start Cyberzone mode on zone 4 level 19 - C282-0706+F9CE-0468 - - - Start Cyberzone mode on zone 4 level 20 - C282-0706+F1CE-0468 - - - Start Cyberzone mode on zone 4 bonus level - C282-0706+F5CE-0468 - - - Start Cyberzone mode on zone 5 level 21 - C282-0706+F6CE-0468 - - - Start Cyberzone mode on zone 5 level 22 - C282-0706+FBCE-0468 - - - Start Cyberzone mode on zone 5 level 23 - C282-0706+FCCE-0468 - - - Start Cyberzone mode on zone 5 level 24 - C282-0706+F8CE-0468 - - - Start Cyberzone mode on zone 5 level 25 - C282-0706+FACE-0468 - - - Start Cyberzone mode on zone 5 bonus level - C282-0706+F2CE-0468 - - - Start Cyberzone mode on zone 6 level 26 - C282-0706+F3CE-0468 - - - Start Cyberzone mode on zone 6 level 27 - C282-0706+FECE-0468 - - - Start Cyberzone mode on zone 6 level 28 - C282-0706+4DCE-0468 - - - Start Cyberzone mode on zone 6 level 29 - C282-0706+4FCE-0468 - - - Start Cyberzone mode on zone 6 level 30 - C282-0706+44CE-0468 - - - Start Cyberzone mode on zone 6 bonus level - C282-0706+47CE-0468 - - - Start Cyberzone mode on zone 7 level 31 - C282-0706+40CE-0468 - - - Start Cyberzone mode on zone 7 level 32 - C282-0706+49CE-0468 - - - Start Cyberzone mode on zone 7 level 33 - C282-0706+41CE-0468 - - - Start Cyberzone mode on zone 7 level 34 - C282-0706+45CE-0468 - - - Start Cyberzone mode on zone 7 level 35 - C282-0706+46CE-0468 - - - Start Cyberzone mode on zone 7 bonus level - C282-0706+4BCE-0468 - - - Start Cyberzone mode on zone 8 level 36 - C282-0706+4CCE-0468 - - - Start Cyberzone mode on zone 8 level 37 - C282-0706+48CE-0468 - - - Start Cyberzone mode on zone 8 level 38 - C282-0706+4ACE-0468 - - - Start Cyberzone mode on zone 8 level 39 - C282-0706+42CE-0468 - - - Start Cyberzone mode on zone 8 level 40 - C282-0706+43CE-0468 - - - Start Cyberzone mode on zone 8 level 41 - C282-0706+4ECE-0468 - - - - Family Dog (USA) - - Infinite health (except against vacuum or falls) - 82C6-37D5 - - - Infinite lives - C2A8-C7D9 - - - Infinite Super Barks - C2AE-CD69 - - - Start with 90 Super Barks - DB6F-17AD - - - Cheese Treats worth 10 Super Barks - DCA2-CDA9 - - - Start in the Hallway - 9DA0-CF67 - - - Start in the Living Room - 10A0-CF67 - - - Start in the Hallway to the Kitchen - 13A0-CF67 - - - Start in the Kitchen - 64A0-CF67 - - - Start in the Hallway to the Backdoor - 6AA0-CF67 - - - Start outside the Yard - B1A0-CF67 - - - Start in the Kennel Interior - 83A0-CF67 - - - Start in the Kennel Exterior - 3DA0-CF67+DFA0-CFA7 - - - Start in the Woods and Trees - E0A0-CF67+DFA0-CFA7 - - - View the ending - FAA0-CF67+D4A0-CFA7 - - - - Fatal Fury (USA) - - Take minimum damage - P1 - C2A9-D40F - - - Take minimum damage - P2/CPU - C2A2-DF6F - - - Win 1 bout to win the match instead of 2 out of 3 (disable on bonus rounds) - DFA5-64DF - - - 10 seconds to complete bonus rounds - FDC7-AFAF - - - 30 seconds to complete bonus rounds - 7DC7-AFAF - - - 45 seconds to complete bonus rounds - 09C7-AFAF - - - 60 seconds to complete bonus rounds - 1DC7-AFAF - - - 90 seconds to complete bonus rounds - BDC7-AFAF - - - Always fight Richard Myer on the West Subway - BAB4-6DAD+D7BC-A46D - - - Always fight Michael Max on the West Subway - BAB4-6DAD+D0BC-A46D - - - Always fight Duck King on the West Subway - BAB4-6DAD+D9BC-A46D - - - Always fight Tung Fu Rue on the West Subway - BAB4-6DAD+D1BC-A46D - - - Always fight Hwa Jai on the West Subway - BAB4-6DAD+D5BC-A46D - - - Always fight Raiden on the West Subway - BAB4-6DAD+D6BC-A46D - - - Always fight Billy Kane on the West Subway - BAB4-6DAD+DBBC-A46D - - - Always fight Geese Howard on the West Subway - BAB4-6DAD+DCBC-A46D - - - Start with 1/4 health - both players - F6CD-A4AF - - - Start with 1/2 health - both players - 7DCD-A4AF - - - Start with 3/4 health - both players - 06CD-A4AF - - - - Fatal Fury 2 (USA) - - Infinite health - P1 - 6D7D-54AD - - - Infinite time - DD7E-7FDD - - - Timer is 2x fast - D47E-7FDD - - - Timer is 3x fast - D77E-7FDD - - - Computer can't win a round, except last round, game ends after 4 rounds - C250-7FA7 - - - P1 is Billy Kane - CB85-E40F+D685-E46F+DD85-E4AF - - - P1 is Axel Hawk - DB85-E46F+CB85-E40F+DD85-E4AF - - - P1 is Lawrence B - CB85-E40F+DD85-E4AF+DC85-E46F - - - P1 is Wolfgang Krauser - D885-E46F+CB85-E40F+DD85-E4AF - - - P2 is Billy Kane - CB82-E40F+D682-E46F+DD82-E4AF - - - P2 is Axel Hawk - DB82-E46F+CB82-E40F+DD82-E4AF - - - P2 is Lawrence B - DC82-E46F+CB82-E40F+DD82-E4AF - - - P2 is Wolfgang Krauser - D882-E46F+CB82-E40F+DD82-E4AF - - - Super vertical jump - P1 - FDD5-EFCB - - - Bogus vertical jump - P1 - EED5-EFCB - - - Start with 1/2 health - 7D78-770D - - - - Fatal Fury Special (USA) - - Instant win - P1 - 7FF9FD:00 - - - Almost infinite time - 7FFCC1:63 - - - Win 1 round to win the match - P1 - 7FFC49:02 - - - Play as Ryo Sakazaki - 7FF703:0F - - - - Fighter's History (USA) (Rev 1) - - Infinite health - P1 - 7E0A56:C8 - - - Enable Clown and Karnov - 7E09A4:01 - - - - Final Fantasy - Mystic Quest (USA) (Rev 1) - - Infinite cure potions - 83AF-D40D - - - Use a cure, gain a cure - E3AF-D40D - - - Gain 198 cures after one is used - 03AF-D40D - - - Cure restores life points to maximum - DDA4-D40D - - - Infinite life points - can make enemies invincible - C96B-64AB - - - Infinite ninja stars - C9B8-D4A6 - - - Infinite bombs in battle - C9B0-D7A6 - - - Quick level gain - 6D2A-DD8D - - - Infinite Cure potions - 7E0E9E:10+7E0E9F:62 - - - Infinite Heal potions - 7E0EA0:10+7E0EA1:62 - - - Infinite Seeds - 7E0EA2:10+7E0EA3:62 - - - Infinite GP - 7E0E86:97 - - - Have most items - 7E0EA6:FE+7E0EA7:7F - - - Have all weapons - 7E1032:FF+7E1033:FF - - - Have all spells - 7E1038:FF+7E1039:FF - - - Cure potions restore full health - 00A040:44+15C049:D5 - - - 99 items in row 1 slot 1 - 7E0E9F:63 - - - 99 items in row 1 slot 2 - 7E0E91:63 - - - 99 items in row 1 slot 3 - 7E0E93:63 - - - Character 1 - 9999 HP - 7E1014:0F+7E1015:27 - - - Character 1 - 9999 maximum HP - 7E1016:0F+7E1017:27 - - - Character 1 - max level - 7E1010:29 - - - Character 1 - max experience - 7E1011:7F+7E1012:96+7E1013:98 - - - Character 1 - 99 White MP - 7E1018:63 - - - Character 1 - 99 maximum White MP - 7E101B:63 - - - Character 1 - 99 Black MP - 7E1019:63 - - - Character 1 - 99 maximum Black MP - 7E101C:63 - - - Character 1 - 99 Wizard MP - 7E101A:63 - - - Character 1 - 99 maximum Wizard MP - 7E101D:63 - - - Character 1 - Infinite Bombs - 7E1030:63 - - - Character 1 - Have Sword level 3 - 7E1031:22 - - - Character 1 - Have Axe level 3 - 7E1031:25 - - - Character 1 - Have Claw level 3 - 7E1031:28 - - - Character 1 - Have Bombs level 3 - 7E1031:2B - - - Character 2 - 9999 HP - 7E1096:0F+7E1097:27 - - - Character 2 - 99 White MP - 7E1098:63 - - - Character 2 - 99 maximum White MP - 7E109B:63 - - - Character 2 - 99 Black MP - 7E1099:63 - - - Character 2 - 99 maximum Black MP - 7E109C:63 - - - Character 2 - 99 Wizard MP - 7E109A:63 - - - Character 2 - 99 maximum Wizard MP - 7E109D:63 - - - Character 2 - Infinite weapon - 7E10B0:62 - - - Character 2 - Have Sword level 3 - 7E10B1:22 - - - Character 2 - Have Axe level 3 - 7E10B1:25 - - - Character 2 - Have Claw level 3 - 7E10B1:28 - - - Character 2 - Have Bombs level 3 - 7E10B1:2B - - - Character 2 - Have Bow And Arrows - 7E10B1:2D - - - Character 2 - Have Throwing Star - 7E10B1:2E - - - - Final Fantasy - Mystic Quest (USA) - - Infinite life points (can make enemies invincible, disable to defeat them) - C96B-64AB - - - Infinite cure potions - 83AF-D40D - - - Infinite ninja stars - C9B8-D4A6 - - - Infinite bombs in battle - C9B0-D7A6 - - - Use a cure, gain a cure - E3AF-D40D - - - Gain 198 cures after one is used - 03AF-D40D - - - Cure restores life points to maximum - DDA4-D40D - - - Quick level gain - 6D2A-DD8D - - - Infinite Cure potions - 7E0E9E:10+7E0E9F:62 - - - Infinite Heal potions - 7E0EA0:10+7E0EA1:62 - - - Infinite Seeds - 7E0EA2:10+7E0EA3:62 - - - Infinite GP - 7E0E86:97 - - - Have most items - 7E0EA6:FE+7E0EA7:7F - - - Have all weapons - 7E1032:FF+7E1033:FF - - - Have all spells - 7E1038:FF+7E1039:FF - - - Cure potions restore full health - 00A040:44+15C049:D5 - - - 99 items in row 1 slot 1 - 7E0E9F:63 - - - 99 items in row 1 slot 2 - 7E0E91:63 - - - 99 items in row 1 slot 3 - 7E0E93:63 - - - Character 1 - 9999 HP - 7E1014:0F+7E1015:27 - - - Character 1 - 9999 maximum HP - 7E1016:0F+7E1017:27 - - - Character 1 - max level - 7E1010:29 - - - Character 1 - max experience - 7E1011:7F+7E1012:96+7E1013:98 - - - Character 1 - 99 White MP - 7E1018:63 - - - Character 1 - 99 maximum White MP - 7E101B:63 - - - Character 1 - 99 Black MP - 7E1019:63 - - - Character 1 - 99 maximum Black MP - 7E101C:63 - - - Character 1 - 99 Wizard MP - 7E101A:63 - - - Character 1 - 99 maximum Wizard MP - 7E101D:63 - - - Character 1 - Infinite Bombs - 7E1030:63 - - - Character 1 - Have Sword level 3 - 7E1031:22 - - - Character 1 - Have Axe level 3 - 7E1031:25 - - - Character 1 - Have Claw level 3 - 7E1031:28 - - - Character 1 - Have Bombs level 3 - 7E1031:2B - - - Character 2 - 9999 HP - 7E1096:0F+7E1097:27 - - - Character 2 - 99 White MP - 7E1098:63 - - - Character 2 - 99 maximum White MP - 7E109B:63 - - - Character 2 - 99 Black MP - 7E1099:63 - - - Character 2 - 99 maximum Black MP - 7E109C:63 - - - Character 2 - 99 Wizard MP - 7E109A:63 - - - Character 2 - 99 maximum Wizard MP - 7E109D:63 - - - Character 2 - Infinite weapon - 7E10B0:62 - - - Character 2 - Have Sword level 3 - 7E10B1:22 - - - Character 2 - Have Axe level 3 - 7E10B1:25 - - - Character 2 - Have Claw level 3 - 7E10B1:28 - - - Character 2 - Have Bombs level 3 - 7E10B1:2B - - - Character 2 - Have Bow And Arrows - 7E10B1:2D - - - Character 2 - Have Throwing Star - 7E10B1:2E - - - - Final Fantasy II (USA) (Rev 1) - - Almost infinite HP (can make big and sometimes normal monsters invincible, disable to defeat them) - 82AE-6F63 - - - Infinite MP during battles, doesn't work on twin attacks - 8267-0D62 - - - Infinite items outside of battle except for the Whistle - C3CE-6F09 - - - Infinite Whistles - C3C4-A4D0 - - - Money doesn't decrease if you run away from a battle - C262-DF03+C262-D763 - - - Money doesn't decrease in shops - C2AD-AD69+C3AD-AFA9 - - - No random battles - DDD6-B28B - - - No random battles (alt) - 1D60-0704 - - - Always fight the rarest enemy in that area - DA6E-6FD4 - - - Always get a treasure from each enemy defeated - 6D3E-DD0E - - - When treasures are awarded after battle, receive 5 instead of 1 - D926-D4D9 - - - When arrows are awarded after battle, receive 50 instead of 10 - 7425-D769 - - - When treasures are awarded after battle, receive the rarest - D737-0F0E - - - Sumon the Big Chocobo anywhere by using a Carrot instead of the Whistle - 38C4-AF00 - - - The quantity of items don't decrease when selling them - 82A9-6FD1 - - - No music while traveling or in a town - 1D67-A7A4 - - - Gunslinger code - 00CE-6D69 - - - Save anywhere - CBBA-07A4 - - - Get at least 150 GP after each battle - 1B35-0D6E+B135-0DAE+3C35-0FDE - - - Get at least 255 GP after each battle - 3335-076E - - - Get at least 65,536 GP after each battle - 3336-0FAE - - - Get 99 of items that you are given or find in a pot, treasure chest, ect - 17BF-D404 - - - Get 99 arrows when you find them in a pot or treasure chest - 17B4-D4D4 - - - Cure2 is ultra strong - A6B7-A4E2 - - - Cure2 restores HP to all members in the party during battle - 0DB7-A482 - - - Cure2 restores all HP/MP during battle - F1B7-A752 - - - Fire1 spell is ultra strong - A6B0-D7E3 - - - Fire1 spell hits every enemy - AFB0-D783 - - - Ice1 spell is ultra strong - A6B1-DD53 - - - Ice1 spell hits every enemy - AFB1-DD73 - - - Lit1 spell is ultra strong - A6B5-DDE3 - - - Lit1 spell hits every enemy - AFB5-DD83 - - - Automatically win battles (no EXP or gold gained) - 7E1801:02+7E1800:08 - - - 65,000+ exp points after each battle - 7E3592:FF+7E359E:FF - - - Character 1 - Max HP - 7E1047:0F+7E1048:27+7E1049:0F+7E104A:27 - - - Character 1 - Max MP - 7E104B:0F+7E104C:27+7E104D:0F+7E104E:27 - - - Character 1 - Max Agility - 7E1050:63+7E1055:63 - - - Character 1 - Max Strength - 7E104F:63+7E1054:63 - - - Character 1 - Max Vitality - 7E1051:63+7E1056:63 - - - Character 1 - Max Will - 7E1053:63+7E1058:63 - - - Character 1 - Max Wisdom - 7E1052:63+7E1057:63 - - - Character 2 - Max HP - 7E10C7:0F+7E10C8:27+7E10C9:0F+7E10CA:27 - - - Character 2 - Max MP - 7E10CB:0F+7E10CC:27+7E10CD:0F+7E10CE:27 - - - Character 2 - Max Agility - 7E10D0:63+7E10D5:63 - - - Character 2 - Max Strength - 7E10CF:63+7E10D4:63 - - - Character 2 - Max Vitality - 7E10D1:63+7E10D6:63 - - - Character 2 - Max Will - 7E10D3:63+7E10D8:63 - - - Character 2 - Max Wisdom - 7E10D2:63+7E10D7:63 - - - Character 3 - Max HP - 7E1007:0F+7E1008:27+7E1009:0F+7E100A:27 - - - Character 3 - Max MP - 7E100B:0F+7E100C:27+7E100D:0F+7E100E:27 - - - Character 3 - Max Agility - 7E1010:63+7E1015:63 - - - Character 3 - Max Strength - 7E100F:63+7E1014:63 - - - Character 3 - Max Vitality - 7E1011:63+7E1016:63 - - - Character 3 - Max Will - 7E1013:63+7E1018:63 - - - Character 3 - Max Wisdom - 7E1012:63+7E1017:63 - - - Character 4 - Max HP - 7E1107:0F+7E1108:27+7E1109:0F+7E110A:27 - - - Character 4 - Max MP - 7E110B:0F+7E110C:27+7E110D:0F+7E110E:27 - - - Character 4 - Max Agility - 7E1110:63+7E1115:63 - - - Character 4 - Max Strength - 7E110F:63+7E1114:63 - - - Character 4 - Max Vitality - 7E1111:63+7E1116:63 - - - Character 4 - Max Will - 7E1113:63+7E1118:63 - - - Character 4 - Max Wisdom - 7E1112:63+7E1117:63 - - - Character 5 - Max HP - 7E1087:0F+7E1088:27+7E1089:0F+7E108A:27 - - - Character 5 - Max MP - 7E108B:0F+7E108C:27+7E108D:0F+7E108E:27 - - - Character 5 - Max Agility - 7E1090:63+7E1095:63 - - - Character 5 - Max Strength - 7E108F:63+7E1094:63 - - - Character 5 - Max Vitality - 7E1091:63+7E1096:63 - - - Character 5 - Max Will - 7E1093:63+7E1098:63 - - - Character 5 - Max Wisdom - 7E1092:63+7E1097:63 - - - Have 99 of slot 1 - 7E1441:63 - - - Have 99 of slot 2 - 7E1443:63 - - - Have 99 of slot 3 - 7E1445:63 - - - Have 99 of slot 4 - 7E1447:63 - - - Have 99 of slot 5 - 7E1449:63 - - - Have 99 of slot 6 - 7E144B:63 - - - Have 99 of slot 7 - 7E144D:63 - - - Have 99 of slot 8 - 7E144F:63 - - - Have 99 of slot 9 - 7E1451:63 - - - Have 99 of slot 10 - 7E1453:63 - - - Have Cure3 in slot 1 - 7E1440:D0 - - - Have Cure3 in slot 2 - 7E1442:D0 - - - Have Ether2 in slot 3 - 7E1444:D2 - - - Have Elixer in slot 4 - 7E1446:D3 - - - Have Life in slot 5 - 7E1448:D4 - - - Have Cabin in slot 6 - 7E144A:E3 - - - Have Spoon in slot 7 - 7E144C:3E - - - Have Adamant Armor in slot 8 - 7E144E:9A - - - - Final Fantasy II (USA) - - Almost infinite HP (can make big and sometimes normal monsters invincible, disable to defeat them) - 82A3-6F63 - - - Infinite MP during battles, doesn't work on twin attacks - 8267-0D62 - - - Infinite items outside of battle except for the Whistle - C3CE-6F09 - - - Infinite Whistles - C3C4-A4D0 - - - Money doesn't decrease if you run away from a battle - C262-DF03+C262-D763 - - - Money doesn't decrease in shops - C2AD-AD69+C3AD-AFA9 - - - No random battles - DDD6-B28B - - - No random battles (alt) - 1D60-0704 - - - Always fight the rarest enemy in that area - DA6E-6FD4 - - - Always get a treasure from each enemy defeated - 6D32-D7DE - - - When treasures are awarded after battle, receive 5 instead of 1 - D926-D4D9 - - - When arrows are awarded after battle, receive 50 instead of 10 - 7425-D769 - - - When treasures are awarded after battle, receive the rarest - D734-0DDE - - - Sumon the Big Chocobo anywhere by using a Carrot instead of the Whistle - 38C4-AF00 - - - The quantity of items don't decrease when selling them - 82A9-6FD1 - - - No music while traveling or in a town - 1D67-A7A4 - - - Gunslinger code - 00CE-6D69 - - - Save anywhere - CBBA-07A4 - - - Get at least 150 GP after each battle - 1B39-070E+B139-076E+3C39-07AE - - - Get at least 255 GP after each battle - 1B39-070E+EE39-076E+3C39-07AE - - - Get at least 65,536 GP after each battle - 3335-0D6E - - - Get 99 of items that you are given or find in a pot, treasure chest, ect - 17BF-D404 - - - Get 99 arrows when you find them in a pot or treasure chest - 17B4-D4D4 - - - Cure2 is ultra strong - A6B7-A4E2 - - - Cure2 restores HP to all members in the party during battle - 0DB7-A482 - - - Cure2 restores all HP/MP during battle - F1B7-A752 - - - Fire1 spell is ultra strong - A6B0-D7E3 - - - Fire1 spell hits every enemy - AFB0-D783 - - - Ice1 spell is ultra strong - A6B1-DD53 - - - Ice1 spell hits every enemy - AFB1-DD73 - - - Lit1 spell is ultra strong - A6B5-DDE3 - - - Lit1 spell hits every enemy - AFB5-DD83 - - - Infinite HP - 03CAE6:BD - - - Automatically win battles (no EXP or gold gained) - 7E1801:02+7E1800:08 - - - 65,000+ exp points after each battle - 7E3592:FF+7E359E:FF - - - Character 1 - Max HP - 7E1047:0F+7E1048:27+7E1049:0F+7E104A:27 - - - Character 1 - Max MP - 7E104B:0F+7E104C:27+7E104D:0F+7E104E:27 - - - Character 1 - Max Agility - 7E1050:63+7E1055:63 - - - Character 1 - Max Strength - 7E104F:63+7E1054:63 - - - Character 1 - Max Vitality - 7E1051:63+7E1056:63 - - - Character 1 - Max Will - 7E1053:63+7E1058:63 - - - Character 1 - Max Wisdom - 7E1052:63+7E1057:63 - - - Character 2 - Max HP - 7E10C7:0F+7E10C8:27+7E10C9:0F+7E10CA:27 - - - Character 2 - Max MP - 7E10CB:0F+7E10CC:27+7E10CD:0F+7E10CE:27 - - - Character 2 - Max Agility - 7E10D0:63+7E10D5:63 - - - Character 2 - Max Strength - 7E10CF:63+7E10D4:63 - - - Character 2 - Max Vitality - 7E10D1:63+7E10D6:63 - - - Character 2 - Max Will - 7E10D3:63+7E10D8:63 - - - Character 2 - Max Wisdom - 7E10D2:63+7E10D7:63 - - - Character 3 - Max HP - 7E1007:0F+7E1008:27+7E1009:0F+7E100A:27 - - - Character 3 - Max MP - 7E100B:0F+7E100C:27+7E100D:0F+7E100E:27 - - - Character 3 - Max Agility - 7E1010:63+7E1015:63 - - - Character 3 - Max Strength - 7E100F:63+7E1014:63 - - - Character 3 - Max Vitality - 7E1011:63+7E1016:63 - - - Character 3 - Max Will - 7E1013:63+7E1018:63 - - - Character 3 - Max Wisdom - 7E1012:63+7E1017:63 - - - Character 4 - Max HP - 7E1107:0F+7E1108:27+7E1109:0F+7E110A:27 - - - Character 4 - Max MP - 7E110B:0F+7E110C:27+7E110D:0F+7E110E:27 - - - Character 4 - Max Agility - 7E1110:63+7E1115:63 - - - Character 4 - Max Strength - 7E110F:63+7E1114:63 - - - Character 4 - Max Vitality - 7E1111:63+7E1116:63 - - - Character 4 - Max Will - 7E1113:63+7E1118:63 - - - Character 4 - Max Wisdom - 7E1112:63+7E1117:63 - - - Character 5 - Max HP - 7E1087:0F+7E1088:27+7E1089:0F+7E108A:27 - - - Character 5 - Max MP - 7E108B:0F+7E108C:27+7E108D:0F+7E108E:27 - - - Character 5 - Max Agility - 7E1090:63+7E1095:63 - - - Character 5 - Max Strength - 7E108F:63+7E1094:63 - - - Character 5 - Max Vitality - 7E1091:63+7E1096:63 - - - Character 5 - Max Will - 7E1093:63+7E1098:63 - - - Character 5 - Max Wisdom - 7E1092:63+7E1097:63 - - - Have 99 of slot 1 - 7E1441:63 - - - Have 99 of slot 2 - 7E1443:63 - - - Have 99 of slot 3 - 7E1445:63 - - - Have 99 of slot 4 - 7E1447:63 - - - Have 99 of slot 5 - 7E1449:63 - - - Have 99 of slot 6 - 7E144B:63 - - - Have 99 of slot 7 - 7E144D:63 - - - Have 99 of slot 8 - 7E144F:63 - - - Have 99 of slot 9 - 7E1451:63 - - - Have 99 of slot 10 - 7E1453:63 - - - Have Cure3 in slot 1 - 7E1440:D0 - - - Have Cure3 in slot 2 - 7E1442:D0 - - - Have Ether2 in slot 3 - 7E1444:D2 - - - Have Elixer in slot 4 - 7E1446:D3 - - - Have Life in slot 5 - 7E1448:D4 - - - Have Cabin in slot 6 - 7E144A:E3 - - - Have Spoon in slot 7 - 7E144C:3E - - - Have Adamant Armor in slot 8 - 7E144E:9A - - - - Final Fantasy III (USA) (Rev 1) - - Party has almost max HP and MP - EEDB-EDA8 - - - Activate Terra's Morph command - DAF2-9A58 - - - Infinite Morph time out of battle - EEFE-F288 - - - Infinite Morph time in battle - EE77-2A58 - - - All items in shops are free (disable to sell items) - 108C-EF03+108C-E4A3 - - - Infinite item use - 3CB8-5DAE - - - Infinite item use (alt) - 3CBC-576E - - - Protect from all status ailments - 3513-5147+E613-5117 - - - Learn all spells after one battle - 8D17-54A6 - - - Earn 65,000+ exp points after each battle - 0793-54D8 - - - Earn tons of EXP after a battle (level 99 takes two battles) - 0493-54D8 - - - Auto cast Float, Regen, Haste, Shell, Safe and Rflect - 3813-51C7 - - - Remove curse from Cursed Shield after only 1 battle - DD1D-7D66 - - - Steal command always gets the more rare item an enemy has - DD72-57AC - - - Mog never stumbles when he dances - DDFC-ED0B - - - Party has Sprint Shoes and Moogle Charm effect - AADC-EF08 - - - Party has Sprint Shoes and Moogle Charm effect (alt) - AADC-EDA8 - - - Party has Offering effect - FC47-570C+3C47-576C - - - Party has Merit Award effect - DDB9-746E - - - Party has Economizer effect - DD97-5FDA+DD90-EFDB - - - Offering gives character instant kill attacks - 7EF4-8F0B - - - Enable all characters (once you are able to switch) - EEF2-BE88+EEF2-BEE8 - - - Have 94 of all items when arrange is used - CB48-8462+6C48-87D2+CE44-E7A2+2347-ED62 - - - Have all Blitz's - EEF4-9378 - - - Have all Dance's - EEF0-9E78 - - - Have all Lore's - EEF4-9358+EEF4-9388+EEF4-93E8 - - - Have all SwdTech's - EEFE-F2E8 - - - Have all Espers - EEF1-B35C+EEF1-B38C+EEF1-B3EC+EEF1-BE7C - - - Enemy 1 has 0 HP - DD7E-2E7C+DD7E-2E5C - - - Enemy 2 has 0 HP - DD7E-2E8C+DD7E-2EEC - - - Enemy 3 has 0 HP - DD7D-FA78+DD7D-FA58 - - - Enemy 4 has 0 HP - DD7D-FA88+DD7D-FAE8 - - - Enemy 5 has 0 HP - DD7D-F278+DD7D-F258 - - - Enemy 6 has 0 HP - DD7D-F288+DD7D-F2E8 - - - Faster up/down movement on world map - 4DFB-EB88+3DF3-E6E8 - - - Faster left/right movement on world map - 4DFE-8C88+3DF0-EC78 - - - Save anywhere - 6DDD-BA56 - - - Start Terra with Man-eater equipped - D15C-78E5 - - - Start Terra with Excalibur equipped - F65C-78E5 - - - Start Terra with Illumina equipped - FC5C-78E5 - - - Start Terra with Atma equipped - FA5C-78E5 - - - Start Terra with Tempest equipped - 435C-78E5 - - - Start Terra with Blizzard equipped - D35C-78E5 - - - Start Terra with Enhancer equipped - F75C-78E5 - - - Start Terra with Mithril shield equipped - 9A58-7675 - - - Start Terra with Gold shield equipped - 9258-7675 - - - Start Terra with Ice shield equipped - 1F58-7675 - - - Start Terra with Fire shield equipped - 1D58-7675 - - - Start Terra with Hairband equipped - 1C58-7655 - - - Start Terra with Leather hat equipped - 1B58-7655 - - - Start Terra with Circlet equipped - 5C58-7655 - - - Start Terra with Mystery veil equipped - 5B58-7655 - - - Start Terra with Red cap equipped - 5658-7655 - - - Start Terra with Silk robe equipped - 6658-7685 - - - Start Terra with Mithril vest equipped - 6B58-7685 - - - Start Terra with White dress equipped - 6858-7685 - - - Start Terra with Genji armor equipped - BC58-7685 - - - Start Terra with Force armor equipped - B058-7685 - - - Party has Sprint Shoes and Moogle Charm effect (alt 2) - 7E11DF:22 - - - Have 99 Sprint Shoes in slot 10 - 7E1872:E6+7E1972:63 - - - Enemy 1 has 0 HP (alt) - 7E3BFC:00+7E3BFD:00 - - - Enemy 2 has 0 HP (alt) - 7E3BFE:00+7E3BFF:00 - - - Enemy 3 has 0 HP (alt) - 7E3C00:00+7E3C01:00 - - - Enemy 4 has 0 HP (alt) - 7E3C02:00+7E3C03:00 - - - Enemy 5 has 0 HP (alt) - 7E3C04:00+7E3C05:00 - - - Enemy 6 has 0 HP (alt) - 7E3C06:00+7E3C07:00 - - - Save anywhere (alt) - 7E0201:80 - - - Have all Rage's - 7E1D49:FF+7E1D42:FF+7E1D3B:FF+7E1D3E:FF+7E1D4A:FF+7E1D46:FF+7E1D43:FF+7E1D47:FF+7E1D3C:FF+7E1D32:FF+7E1D48:FF+7E1D4B:FF+7E1D33:FF+7E1D2C:FF+7E1D44:FF+7E1D34:FF+7E1D2D:FF+7E1D3D:FF+7E1D2E:FF+7E1D45:FF+7E1D2F:FF+7E1D30:FF+7E1D31:FF+7E1D35:FF+7E1D36:FF+7E1D37:FF+7E1D3F:FF+7E1D38:FF+7E1D40:FF+7E1D39:FF+7E1D41:FF+7E1D3A:FF - - - Celes - Level 99 - 7E16E6:63 - - - Celes - 9999 HP - 7E16E7:0F+7E16E8:27 - - - Celes - 9999 Max HP - 7E16E9:0F+7E16EA:27 - - - Celes - 9999 MP - 7E16EB:0F+7E16EC:27 - - - Celes - 9999 Max MP - 7E16ED:0F+7E16EE:27 - - - Celes - No Ailments - 7E16F2:00 - - - Celes - Float always on - 7E16F3:FF - - - Celes - 255 Vigor - 7E16F8:FF - - - Celes - 255 Speed - 7E16F9:FF - - - Celes - 255 Stamina - 7E16FA:FF - - - Celes - 255 Magic Power - 7E16FB:FF - - - Cyan - Level 99 - 7E1652:63 - - - Cyan - 9999 HP - 7E1653:0F+7E1654:27 - - - Cyan - 9999 Max HP - 7E1655:0F+7E1656:27 - - - Cyan - 9999 MP - 7E1657:0F+7E1658:27 - - - Cyan - 9999 Max MP - 7E1659:0F+7E165A:27 - - - Cyan - No Ailments - 7E165E:00 - - - Cyan - Float always on - 7E165F:FF - - - Cyan - 255 Vigor - 7E1664:FF - - - Cyan - 255 Speed - 7E1665:FF - - - Cyan - 255 Stamina - 7E1666:FF - - - Cyan - 255 Magic Power - 7E1667:FF - - - Edgar - Level 99 - 7E169C:63 - - - Edgar - 9999 HP - 7E169D:0F+7E169E:27 - - - Edgar - 9999 Max HP - 7E169F:0F+7E16A0:27 - - - Edgar - 9999 MP - 7E16A1:0F+7E16A2:27 - - - Edgar - 9999 Max MP - 7E16A3:0F+7E16A4:27 - - - Edgar - No Ailments - 7E16A8:00 - - - Edgar - Float always on - 7E16A9:FF - - - Edgar - 255 Vigor - 7E16AE:FF - - - Edgar - 255 Speed - 7E16AF:FF - - - Edgar - 255 Stamina - 7E16B0:FF - - - Edgar - 255 Magic Power - 7E16B1:FF - - - Gau - Level 99 - 7E179F:63 - - - Gau - 9999 HP - 7E17A0:0F+7E17A1:27 - - - Gau - 9999 Max HP - 7E17A2:0F+7E17A3:27 - - - Gau - 9999 MP - 7E17A4:0F+7E17A5:27 - - - Gau - 9999 Max MP - 7E17A6:0F+7E17A7:27 - - - Gau - No Ailments - 7E17AB:00 - - - Gau - Float always on - 7E17AC:FF - - - Gau - 255 Vigor - 7E17B1:FF - - - Gau - 255 Speed - 7E17B2:FF - - - Gau - 255 Stamina - 7E17B3:FF - - - Gau - 255 Magic Power - 7E17B4:FF - - - Gogo - Level 99 - 7E17C4:63 - - - Gogo - 9999 HP - 7E17C5:0F+7E17C6:27 - - - Gogo - 9999 Max HP - 7E17C7:0F+7E17C8:27 - - - Gogo - 9999 MP - 7E17C9:0F+7E17CA:27 - - - Gogo - 9999 Max MP - 7E17CB:0F+7E17CC:27 - - - Gogo - No Ailments - 7E17D0:00 - - - Gogo - Float always on - 7E17D1:FF - - - Gogo - 255 Vigor - 7E17D6:FF - - - Gogo - 255 Speed - 7E17D7:FF - - - Gogo - 255 Stamina - 7E17D8:FF - - - Gogo - 255 Magic Power - 7E17D9:FF - - - Locke - Level 99 - 7E162D:63 - - - Locke - 9999 HP - 7E162E:0F+7E162F:27 - - - Locke - 9999 Max HP - 7E1630:0F+7E1631:27 - - - Locke - 9999 MP - 7E1632:0F+7E1633:27 - - - Locke - 9999 Max MP - 7E1634:0F+7E1635:27 - - - Locke - No Ailments - 7E1639:00 - - - Locke - Float always on - 7E163A:FF - - - Locke - 255 Vigor - 7E163F:FF - - - Locke - 255 Speed - 7E1640:FF - - - Locke - 255 Stamina - 7E1641:FF - - - Locke - 255 Magic Power - 7E1642:FF - - - Mog - Level 99 - 7E177A:63 - - - Mog - 9999 HP - 7E177B:0F+7E177C:27 - - - Mog - 9999 Max HP - 7E177D:0F+7E177E:27 - - - Mog - 9999 MP - 7E177F:0F+7E1780:27 - - - Mog - 9999 Max MP - 7E1781:0F+7E1782:27 - - - Mog - No Ailments - 7E1786:00 - - - Mog - Float always on - 7E1787:FF - - - Mog - 255 Vigor - 7E178C:FF - - - Mog - 255 Speed - 7E178D:FF - - - Mog - 255 Stamina - 7E178E:FF - - - Mog - 255 Magic Power - 7E178F:FF - - - Relm - Level 99 - 7E1730:63 - - - Relm - 9999 HP - 7E1731:0F+7E1732:27 - - - Relm - 9999 Max HP - 7E1733:0F+7E1734:27 - - - Relm - 9999 MP - 7E1735:0F+7E1736:27 - - - Relm - 9999 Max MP - 7E1737:0F+7E1738:27 - - - Relm - No Ailments - 7E173C:00 - - - Relm - Float always on - 7E173D:FF - - - Relm - 255 Vigor - 7E1742:FF - - - Relm - 255 Speed - 7E1743:FF - - - Relm - 255 Stamina - 7E1744:FF - - - Relm - 255 Magic Power - 7E1745:FF - - - Sabin - Level 99 - 7E16C1:63 - - - Sabin - 9999 HP - 7E16C2:0F+7E16C3:27 - - - Sabin - 9999 Max HP - 7E16C4:0F+7E16C5:27 - - - Sabin - 9999 MP - 7E16C6:0F+7E16C7:27 - - - Sabin - 9999 Max MP - 7E16C8:0F+7E16C9:27 - - - Sabin - No Ailments - 7E16CD:00 - - - Sabin - Float always on - 7E16CE:FF - - - Sabin - 255 Vigor - 7E16D3:FF - - - Sabin - 255 Speed - 7E16D4:FF - - - Sabin - 255 Stamina - 7E16D5:FF - - - Sabin - 255 Magic Power - 7E16D6:FF - - - Setzer - Level 99 - 7E1755:63 - - - Setzer - 9999 HP - 7E1756:0F+7E1757:27 - - - Setzer - 9999 Max HP - 7E1758:0F+7E1759:27 - - - Setzer - 9999 MP - 7E175A:0F+7E175B:27 - - - Setzer - 9999 Max MP - 7E175C:0F+7E175D:27 - - - Setzer - No Ailments - 7E1761:00 - - - Setzer - Float always on - 7E1762:FF - - - Setzer - 255 Vigor - 7E1767:FF - - - Setzer - 255 Speed - 7E1768:FF - - - Setzer - 255 Stamina - 7E1769:FF - - - Setzer - 255 Magic Power - 7E176A:FF - - - Shadow - Level 99 - 7E1677:63 - - - Shadow - 9999 HP - 7E1678:0F+7E1679:27 - - - Shadow - 9999 Max HP - 7E167A:0F+7E167B:27 - - - Shadow - 9999 MP - 7E167C:0F+7E167D:27 - - - Shadow - 9999 Max MP - 7E167E:0F+7E167F:27 - - - Shadow - No Ailments - 7E1683:00 - - - Shadow - Float always on - 7E1684:FF - - - Shadow - 255 Vigor - 7E1689:FF - - - Shadow - 255 Speed - 7E168A:FF - - - Shadow - 255 Stamina - 7E168B:FF - - - Shadow - 255 Magic Power - 7E168C:FF - - - Strago - Level 99 - 7E170B:63 - - - Strago - 9999 HP - 7E170C:0F+7E170D:27 - - - Strago - 9999 Max HP - 7E170E:0F+7E170F:27 - - - Strago - 9999 MP - 7E1710:0F+7E1711:27 - - - Strago - 9999 Max MP - 7E1712:0F+7E1713:27 - - - Strago - No Ailments - 7E1717:00 - - - Strago - Float always on - 7E1718:FF - - - Strago - 255 Vigor - 7E171D:FF - - - Strago - 255 Speed - 7E171E:FF - - - Strago - 255 Stamina - 7E171F:FF - - - Strago - 255 Magic Power - 7E1720:FF - - - Terra - Level 99 - 7E1608:63 - - - Terra - 9999 HP - 7E1609:0F+7E160A:27 - - - Terra - 9999 Max HP - 7E160B:0F+7E160C:27 - - - Terra - 9999 MP - 7E160D:0F+7E160E:27 - - - Terra - 9999 Max MP - 7E160F:0F+7E1610:27 - - - Terra - No ailments - 7E1614:00 - - - Terra - Float always on - 7E1615:FF - - - Terra - 255 Vigor - 7E161A:FF - - - Terra - 255 Speed - 7E161B:FF - - - Terra - 255 Stamina - 7E161C:FF - - - Terra - 255 Magic Power - 7E161D:FF - - - Umaro - Level 99 - 7E17E9:63 - - - Umaro - 9999 HP - 7E17EA:0F+7E17EB:27 - - - Umaro - 9999 Max HP - 7E17EC:0F+7E17ED:27 - - - Umaro - 9999 MP - 7E17EE:0F+7E17EF:27 - - - Umaro - 9999 Max MP - 7E17F0:0F+7E17F1:27 - - - Umaro - No Ailments - 7E17F5:00 - - - Umaro - Float always on - 7E17F6:FF - - - Umaro - 255 Vigor - 7E17FB:FF - - - Umaro - 255 Speed - 7E17FC:FF - - - Umaro - 255 Stamina - 7E17FD:FF - - - Umaro - 255 Magic Power - 7E17FE:FF - - - - Final Fantasy III (USA) - - Party has almost max HP and MP - EEDB-EDA8 - - - Activate Terra's Morph command - DAF2-9A58 - - - Infinite Morph time out of battle - EEFE-F288 - - - Infinite Morph time in battle - EE77-2A58 - - - All items in shops are free (disable to sell items) - 108C-EF03+108C-E4A3 - - - Infinite item use - 3CB8-5DAE - - - Protect from all status ailments - 3513-5147+E613-5117 - - - Learn all spells after one battle - 8D17-54A6 - - - Earn 65,000+ exp points after each battle - 0793-54D8 - - - Earn tons of EXP after a battle (level 99 takes two battles) - 0493-54D8 - - - Auto Cast Float, Regen, Haste, Shell, Safe and Rflect - 3813-51C7 - - - Vigor/Speed/Stamina/MagPwr becomes 255 - D762-EF68 - - - Remove curse from Cursed Shield after only 1 battle - DD1D-7D66 - - - Steal command always gets the more rare item an enemy has - DD72-57AC - - - Mog never stumbles when he dances - DDFC-ED0B - - - Party has Sprint Shoes and Moogle Charm effect - 44F2-9EE6 - - - Party has Offering effect - FC47-570C+3C47-576C - - - Party has Merit Award effect - DDB9-746E - - - Party has Economizer effect - DD97-5FDA+DD90-EFDB - - - Offering gives character instant kill attacks - 7EF4-8F0B - - - Enemy 1 has 0 HP - DD7E-2E7C+DD7E-2E5C - - - Enemy 2 has 0 HP - DD7E-2E8C+DD7E-2EEC - - - Enemy 3 has 0 HP - DD7D-FA78+DD7D-FA58 - - - Enemy 4 has 0 HP - DD7D-FA88+DD7D-FAE8 - - - Enemy 5 has 0 HP - DD7D-F278+DD7D-F258 - - - Enemy 6 has 0 HP - DD7D-F288+DD7D-F2E8 - - - Have 94 of all items when arrange is used - CB48-8462+6C48-87D2+CE44-E7A2+2347-ED62 - - - Have all Blitz's - EEF4-9378 - - - Have all Dance's - EEF0-9E78 - - - Have all Lore's - EEF4-9358+EEF4-9388+EEF4-93E8 - - - Have all SwdTech's - EEFE-F2E8 - - - Have all Espers - EEF1-B35C+EEF1-B38C+EEF1-B3EC+EEF1-BE7C - - - Faster up/down movement on world map - 4DFB-EB88+3DF3-E6E8 - - - Faster left/right movement on world map - 4DFE-8C88+3DF0-EC78 - - - Enable all characters (once you are able to switch) - EEF2-BE88+EEF2-BEE8 - - - Save anywhere - 6DDD-BA56 - - - Start Terra with Man-eater equipped - D15C-78E5 - - - Start Terra with Excalibur equipped - F65C-78E5 - - - Start Terra with Illumina equipped - FC5C-78E5 - - - Start Terra with Atma equipped - FA5C-78E5 - - - Start Terra with Tempest equipped - 435C-78E5 - - - Start Terra with Blizzard equipped - D35C-78E5 - - - Start Terra with Enhancer equipped - F75C-78E5 - - - Start Terra with Mithril shield equipped - 9A58-7675 - - - Start Terra with Gold shield equipped - 9258-7675 - - - Start Terra with Ice shield equipped - 1F58-7675 - - - Start Terra with Fire shield equipped - 1D58-7675 - - - Start Terra with Hairband equipped - 1C58-7655 - - - Start Terra with Leather hat equipped - 1B58-7655 - - - Start Terra with Circlet equipped - 5C58-7655 - - - Start Terra with Mystery veil equipped - 5B58-7655 - - - Start Terra with Red cap equipped - 5658-7655 - - - Start Terra with Silk robe equipped - 6658-7685 - - - Start Terra with Mithril vest equipped - 6B58-7685 - - - Start Terra with White dress equipped - 6858-7685 - - - Start Terra with Genji armor equipped - BC58-7685 - - - Start Terra with Force armor equipped - B058-7685 - - - Party has Sprint Shoes and Moogle Charm effect (alt) - 7E11DF:22 - - - Have 99 Sprint Shoes in slot 10 - 7E1872:E6+7E1972:63 - - - Enemy 1 has 0 HP (alt) - 7E3BFC:00+7E3BFD:00 - - - Enemy 2 has 0 HP (alt) - 7E3BFE:00+7E3BFF:00 - - - Enemy 3 has 0 HP (alt) - 7E3C00:00+7E3C01:00 - - - Enemy 4 has 0 HP (alt) - 7E3C02:00+7E3C03:00 - - - Enemy 5 has 0 HP (alt) - 7E3C04:00+7E3C05:00 - - - Enemy 6 has 0 HP (alt) - 7E3C06:00+7E3C07:00 - - - Have all Rage's - 7E1D49:FF+7E1D42:FF+7E1D3B:FF+7E1D3E:FF+7E1D4A:FF+7E1D46:FF+7E1D43:FF+7E1D47:FF+7E1D3C:FF+7E1D32:FF+7E1D48:FF+7E1D4B:FF+7E1D33:FF+7E1D2C:FF+7E1D44:FF+7E1D34:FF+7E1D2D:FF+7E1D3D:FF+7E1D2E:FF+7E1D45:FF+7E1D2F:FF+7E1D30:FF+7E1D31:FF+7E1D35:FF+7E1D36:FF+7E1D37:FF+7E1D3F:FF+7E1D38:FF+7E1D40:FF+7E1D39:FF+7E1D41:FF+7E1D3A:FF - - - Celes - Level 99 - 7E16E6:63 - - - Celes - 9999 HP - 7E16E7:0F+7E16E8:27 - - - Celes - 9999 Max HP - 7E16E9:0F+7E16EA:27 - - - Celes - 9999 MP - 7E16EB:0F+7E16EC:27 - - - Celes - 9999 Max MP - 7E16ED:0F+7E16EE:27 - - - Celes - No Ailments - 7E16F2:00 - - - Celes - Float always on - 7E16F3:FF - - - Celes - 255 Vigor - 7E16F8:FF - - - Celes - 255 Speed - 7E16F9:FF - - - Celes - 255 Stamina - 7E16FA:FF - - - Celes - 255 Magic Power - 7E16FB:FF - - - Cyan - Level 99 - 7E1652:63 - - - Cyan - 9999 HP - 7E1653:0F+7E1654:27 - - - Cyan - 9999 Max HP - 7E1655:0F+7E1656:27 - - - Cyan - 9999 MP - 7E1657:0F+7E1658:27 - - - Cyan - 9999 Max MP - 7E1659:0F+7E165A:27 - - - Cyan - No Ailments - 7E165E:00 - - - Cyan - Float always on - 7E165F:FF - - - Cyan - 255 Vigor - 7E1664:FF - - - Cyan - 255 Speed - 7E1665:FF - - - Cyan - 255 Stamina - 7E1666:FF - - - Cyan - 255 Magic Power - 7E1667:FF - - - Edgar - Level 99 - 7E169C:63 - - - Edgar - 9999 HP - 7E169D:0F+7E169E:27 - - - Edgar - 9999 Max HP - 7E169F:0F+7E16A0:27 - - - Edgar - 9999 MP - 7E16A1:0F+7E16A2:27 - - - Edgar - 9999 Max MP - 7E16A3:0F+7E16A4:27 - - - Edgar - No Ailments - 7E16A8:00 - - - Edgar - Float always on - 7E16A9:FF - - - Edgar - 255 Vigor - 7E16AE:FF - - - Edgar - 255 Speed - 7E16AF:FF - - - Edgar - 255 Stamina - 7E16B0:FF - - - Edgar - 255 Magic Power - 7E16B1:FF - - - Gau - Level 99 - 7E179F:63 - - - Gau - 9999 HP - 7E17A0:0F+7E17A1:27 - - - Gau - 9999 Max HP - 7E17A2:0F+7E17A3:27 - - - Gau - 9999 MP - 7E17A4:0F+7E17A5:27 - - - Gau - 9999 Max MP - 7E17A6:0F+7E17A7:27 - - - Gau - No Ailments - 7E17AB:00 - - - Gau - Float always on - 7E17AC:FF - - - Gau - 255 Vigor - 7E17B1:FF - - - Gau - 255 Speed - 7E17B2:FF - - - Gau - 255 Stamina - 7E17B3:FF - - - Gau - 255 Magic Power - 7E17B4:FF - - - Gogo - Level 99 - 7E17C4:63 - - - Gogo - 9999 HP - 7E17C5:0F+7E17C6:27 - - - Gogo - 9999 Max HP - 7E17C7:0F+7E17C8:27 - - - Gogo - 9999 MP - 7E17C9:0F+7E17CA:27 - - - Gogo - 9999 Max MP - 7E17CB:0F+7E17CC:27 - - - Gogo - No Ailments - 7E17D0:00 - - - Gogo - Float always on - 7E17D1:FF - - - Gogo - 255 Vigor - 7E17D6:FF - - - Gogo - 255 Speed - 7E17D7:FF - - - Gogo - 255 Stamina - 7E17D8:FF - - - Gogo - 255 Magic Power - 7E17D9:FF - - - Locke - Level 99 - 7E162D:63 - - - Locke - 9999 HP - 7E162E:0F+7E162F:27 - - - Locke - 9999 Max HP - 7E1630:0F+7E1631:27 - - - Locke - 9999 MP - 7E1632:0F+7E1633:27 - - - Locke - 9999 Max MP - 7E1634:0F+7E1635:27 - - - Locke - No Ailments - 7E1639:00 - - - Locke - Float always on - 7E163A:FF - - - Locke - 255 Vigor - 7E163F:FF - - - Locke - 255 Speed - 7E1640:FF - - - Locke - 255 Stamina - 7E1641:FF - - - Locke - 255 Magic Power - 7E1642:FF - - - Mog - Level 99 - 7E177A:63 - - - Mog - 9999 HP - 7E177B:0F+7E177C:27 - - - Mog - 9999 Max HP - 7E177D:0F+7E177E:27 - - - Mog - 9999 MP - 7E177F:0F+7E1780:27 - - - Mog - 9999 Max MP - 7E1781:0F+7E1782:27 - - - Mog - No Ailments - 7E1786:00 - - - Mog - Float always on - 7E1787:FF - - - Mog - 255 Vigor - 7E178C:FF - - - Mog - 255 Speed - 7E178D:FF - - - Mog - 255 Stamina - 7E178E:FF - - - Mog - 255 Magic Power - 7E178F:FF - - - Relm - Level 99 - 7E1730:63 - - - Relm - 9999 HP - 7E1731:0F+7E1732:27 - - - Relm - 9999 Max HP - 7E1733:0F+7E1734:27 - - - Relm - 9999 MP - 7E1735:0F+7E1736:27 - - - Relm - 9999 Max MP - 7E1737:0F+7E1738:27 - - - Relm - No Ailments - 7E173C:00 - - - Relm - Float always on - 7E173D:FF - - - Relm - 255 Vigor - 7E1742:FF - - - Relm - 255 Speed - 7E1743:FF - - - Relm - 255 Stamina - 7E1744:FF - - - Relm - 255 Magic Power - 7E1745:FF - - - Sabin - Level 99 - 7E16C1:63 - - - Sabin - 9999 HP - 7E16C2:0F+7E16C3:27 - - - Sabin - 9999 Max HP - 7E16C4:0F+7E16C5:27 - - - Sabin - 9999 MP - 7E16C6:0F+7E16C7:27 - - - Sabin - 9999 Max MP - 7E16C8:0F+7E16C9:27 - - - Sabin - No Ailments - 7E16CD:00 - - - Sabin - Float always on - 7E16CE:FF - - - Sabin - 255 Vigor - 7E16D3:FF - - - Sabin - 255 Speed - 7E16D4:FF - - - Sabin - 255 Stamina - 7E16D5:FF - - - Sabin - 255 Magic Power - 7E16D6:FF - - - Setzer - Level 99 - 7E1755:63 - - - Setzer - 9999 HP - 7E1756:0F+7E1757:27 - - - Setzer - 9999 Max HP - 7E1758:0F+7E1759:27 - - - Setzer - 9999 MP - 7E175A:0F+7E175B:27 - - - Setzer - 9999 Max MP - 7E175C:0F+7E175D:27 - - - Setzer - No Ailments - 7E1761:00 - - - Setzer - Float always on - 7E1762:FF - - - Setzer - 255 Vigor - 7E1767:FF - - - Setzer - 255 Speed - 7E1768:FF - - - Setzer - 255 Stamina - 7E1769:FF - - - Setzer - 255 Magic Power - 7E176A:FF - - - Shadow - Level 99 - 7E1677:63 - - - Shadow - 9999 HP - 7E1678:0F+7E1679:27 - - - Shadow - 9999 Max HP - 7E167A:0F+7E167B:27 - - - Shadow - 9999 MP - 7E167C:0F+7E167D:27 - - - Shadow - 9999 Max MP - 7E167E:0F+7E167F:27 - - - Shadow - No Ailments - 7E1683:00 - - - Shadow - Float always on - 7E1684:FF - - - Shadow - 255 Vigor - 7E1689:FF - - - Shadow - 255 Speed - 7E168A:FF - - - Shadow - 255 Stamina - 7E168B:FF - - - Shadow - 255 Magic Power - 7E168C:FF - - - Strago - Level 99 - 7E170B:63 - - - Strago - 9999 HP - 7E170C:0F+7E170D:27 - - - Strago - 9999 Max HP - 7E170E:0F+7E170F:27 - - - Strago - 9999 MP - 7E1710:0F+7E1711:27 - - - Strago - 9999 Max MP - 7E1712:0F+7E1713:27 - - - Strago - No Ailments - 7E1717:00 - - - Strago - Float always on - 7E1718:FF - - - Strago - 255 Vigor - 7E171D:FF - - - Strago - 255 Speed - 7E171E:FF - - - Strago - 255 Stamina - 7E171F:FF - - - Strago - 255 Magic Power - 7E1720:FF - - - Terra - Level 99 - 7E1608:63 - - - Terra - 9999 HP - 7E1609:0F+7E160A:27 - - - Terra - 9999 Max HP - 7E160B:0F+7E160C:27 - - - Terra - 9999 MP - 7E160D:0F+7E160E:27 - - - Terra - 9999 Max MP - 7E160F:0F+7E1610:27 - - - Terra - No ailments - 7E1614:00 - - - Terra - Float always on - 7E1615:FF - - - Terra - 255 Vigor - 7E161A:FF - - - Terra - 255 Speed - 7E161B:FF - - - Terra - 255 Stamina - 7E161C:FF - - - Terra - 255 Magic Power - 7E161D:FF - - - Umaro - Level 99 - 7E17E9:63 - - - Umaro - 9999 HP - 7E17EA:0F+7E17EB:27 - - - Umaro - 9999 Max HP - 7E17EC:0F+7E17ED:27 - - - Umaro - 9999 MP - 7E17EE:0F+7E17EF:27 - - - Umaro - 9999 Max MP - 7E17F0:0F+7E17F1:27 - - - Umaro - No Ailments - 7E17F5:00 - - - Umaro - Float always on - 7E17F6:FF - - - Umaro - 255 Vigor - 7E17FB:FF - - - Umaro - 255 Speed - 7E17FC:FF - - - Umaro - 255 Stamina - 7E17FD:FF - - - Umaro - 255 Magic Power - 7E17FE:FF - - - - Final Fight (USA) - - Invincibility - 2DCD-AF6B - - - Infinite health - 89A1-0DA1+C9C4-AD6C - - - Infinite health (alt) - 9DDF-9278 - - - Infinite lives - A9C3-6F66+D433-0D6F - - - Infinite lives (alt) - CE33-076F - - - Infinite time - A2C0-A7D0 - - - Hit anywhere - 3CA4-0FD0+40AD-04A0+7DA4-0F00+89A4-0D60+F9A4-0DA0 - - - Slower timer - D4C9-AFD0 - - - Faster timer - DDC9-AFD0 - - - Any food restores all health - DD8D-6F06 - - - Attack speed greatly increased - DFDF-9E88 - - - Start with 2 credits - DFC8-D4A1 - - - Start with 6 credits - D9C8-D4A1 - - - Start with 10 credits - DBC8-D4A1 - - - Start on stage 2 - Subway - DFEE-2E88 - - - Start on stage 3 - West Side - D4EE-2E88 - - - Start on stage 4 - Bay Area - D0EE-2E88 - - - Start on stage 5 - Uptown - D9EE-2E88 - - - Start on bonus stage - Car - D1EE-2E88 - - - Start on bonus stage - Glass - D5EE-2E88 - - - Enemies never get knocked down, attack until they die - 7E0D70:00 - - - Enemy 1 has no health - 7E1014:00 - - - Enemy 2 has no health - 7E10B4:00 - - - Enemy 3 has no health - 7E1154:00 - - - Bosses have no health - 7E11F4:00+7E11F5:00 - - - Always get Knife - 7E1C11:00 - - - Always get Sword - 7E1C11:02 - - - Always get Pipe - 7E1C11:04 - - - - Final Fight 2 (USA) - - Invincibility - 2D65-3706 - - - Infinite health - C9E1-446F+C9C8-CFDB - - - Infinite lives - C9CE-1DAB - - - Infinite lives (alt) - DDCE-1D6B - - - Infinite time - C2A0-1F0C - - - Infinite time (alt) - DDA0-1DDC - - - One hit kills - CBE8-47AF+EEEA-4DDF - - - Hit anywhere - both players - 4062-1DA6+4062-14D6+406C-1DA6 - - - Faster timer - D4A0-1DDC - - - Barbecue restores vitality 50% instead of 95% - 0DED-1DAC - - - Barbecue worth nothing - DDED-1DAC - - - Soft drink restores vitality 95% - 6DEE-470C - - - Soft drink worth nothing - DDEE-470C - - - Both players can select same character - 33C5-1404 - - - P1 and P2 can't harm each other in a 2P game - DDB4-4708 - - - Slow motion (disable until play begins) - D46A-14AF - - - Hitting someone with your super move makes you invincible - DFCC-C4DB - - - Hitting someone with your super move uses all your health - 0DCC-C4DB - - - Start with 1 life - DDCF-C7D6 - - - Start with 3 lives - D4CF-C7D6 - - - Start with 7 lives - D1CF-C7D6 - - - Start with 10 lives - DBCF-C7D6 - - - - Final Fight 3 (USA) - - Infinite time - C2F9-84DF - - - Instant super energy - CBB5-5D07+46B5-5D67+DDB5-5DA7+4BB5-5F07 - - - Infinite lives - 3C6C-84AF - - - Hit anywhere - both players - 3DA7-E76D+D5A0-EDDD+DDA7-E7AD - - - Invincibility (blinking) - P1 - 7E0520:02 - - - Invincibility (blinking) - P2 - 7E0620:02 - - - Infinite health - P1 - 7E0558:47 - - - Infinite health - P2 - 7E0658:47 - - - Infinite lives - P1 - 7E0515:05 - - - Infinite lives - P2 - 7E0615:05 - - - Infinite super energy - P1 - 7E0516:63 - - - Infinite super energy - P2 - 7E0616:63 - - - Infinite throw time - P1 - 7E0580:10 - - - Infinite throw time - P2 - 7E0680:10 - - - Have the Pipe - P1 - 7E0514:01 - - - Have the Pipe - P2 - 7E0614:01 - - - Have the Nunchaku - P1 - 7E0514:02 - - - Have the Nunchaku - P2 - 7E0614:02 - - - Have the Club - P1 - 7E0514:03 - - - Have the Club - P2 - 7E0614:03 - - - Have the Hammer - P1 - 7E0514:04 - - - Have the Hammer - P2 - 7E0614:04 - - - - Final Fight Guy (USA) - - Infinite health - 89AF-0401 - - - Infinite health (alt) - 9DDF-9278 - - - Infinite time - 1DC3-6409 - - - Infinite time (alt) - DBD8-FE78 - - - Hit anywhere - 40A3-DD00+40AA-DFA0 - - - Gain 9 lives every time you die - DDC0-ADA6 - - - No energy lost from spin kick - 89CB-AD0C - - - Attack speed greatly increased - DFDF-9E88 - - - Any food restores all health - DDBD-6F06 - - - Enemies never get knocked down, hit them until they die - 7E0D70:00 - - - Enemy 1 has no health - 7E1014:00 - - - Enemy 2 has no health - 7E10B4:00 - - - Enemy 3 has no health - 7E1154:00 - - - Bosses have no health - 7E11F4:00+7E11F5:00 - - - Always get Knife - 7E1C11:00 - - - Always get Sword - 7E1C11:02 - - - Always get Pipe - 7E1C11:04 - - - Start on stage 2 - Subway - 7EFFFE:01 - - - Start on stage 3 - West Side - 7EFFFE:02 - - - Start on stage 4 - Bay Area - 7EFFFE:04 - - - Start on stage 5 - Uptown - 7EFFFE:05 - - - Start on bonus stage - Car - 7EFFFE:06 - - - Start on bonus stage - Glass - 7EFFFE:07 - - - - FireStriker (USA) - - Infinite health - 7E1333:07 - - - Infinite Power - 7E1335:03 - - - Infinite Rest - 7E152D:03 - - - - Firemen, The (Europe) (En,Fr,De) - - Infinite life - 7E15C7:31 - - - Infinite time - 7E1980:09 - - - Infinite Water Bombs - 7E091A:03 - - - - Firepower 2000 (USA) - - Infinite lives - 8263-4DDF - - - Loss of vehicle does not reduce bullet strength - 8267-170F - - - Loss of vehicle does not reduce flame strength - 826E-470F - - - Loss of vehicle does not reduce plasma strength - 826D-170F - - - Loss of vehicle does not reduce laser strength - 826F-170F - - - Loss of vehicle does not reduce ionic strength - 8264-170F - - - Bubble shield lasts for 4 seconds instead of 12 - DF8B-CD07 - - - Bubble shield lasts for 8 seconds - D48B-CD07 - - - Bubble shield lasts for 16 seconds - D08B-CD07 - - - Bubble shield lasts for 32 seconds - D68B-CD07 - - - Bubble shield lasts for 64 seconds - FD8B-CD07 - - - Bubble shield on jeep lasts until end of level - C2CB-3FD4 - - - Bubble shield on helicopter lasts until end of level - C2CF-1464 - - - Start with bullet strength at 3 instead of 1 - D765-146F - - - Start with bullet strength at 6 - D165-146F - - - Start with flame strength at 3 instead of 1 - D761-14DF - - - Start with flame strength at 6 - D161-14DF - - - Start with flame strength at 0 - DD61-14DF - - - Start with plasma strength at 3 instead of 1 - D761-176F - - - Start with plasma strength at 6 - D161-176F - - - Start with plasma strength at 0 - DD61-176F - - - Start with laser strength at 1 instead of 0 - DF65-1FDF - - - Start with laser strength at 3 - D765-1FDF - - - Start with laser strength at 6 - D165-1FDF - - - Start with ionic strength at 1 instead of 0 - DF66-1DDF - - - Start with ionic strength at 3 - D766-1DDF - - - Start with ionic strength at 6 - D166-1DDF - - - Start with 1 life instead of 4 - DF69-1DAF - - - Start with 2 lives - D469-1DAF - - - Start with 3 lives - D769-1DAF - - - Start with 5 lives - D969-1DAF - - - Start with 7 lives - D569-1DAF - - - Start with 10 lives - DC69-1DAF - - - Start with 15 lives - DE69-1DAF - - - Start with 25 lives - FB69-1DAF - - - Start with 50 lives - 7469-1DAF - - - Start with 75 lives - 0869-1DAF - - - Start with 100 lives - 1069-1DAF - - - Start at level 2 - D4B3-1764 - - - Start at level 3 - D7B3-1764 - - - Start at level 4 - D0B3-1764 - - - Start at level 5 - D9B3-1764 - - - Start at level 6 - D1B3-1764 - - - - First Samurai (USA) - - Infinite life and force - C9BF-D4D1 - - - Infinite lives - 406E-D461 - - - Infinite Axe, Dagger, Grendade (slot 2 item) - C9B6-6700+C9BE-6D00 - - - Infinite Warp Lanterns - C96D-04A5 - - - Collect items from anywhere - 4086-0F09 - - - Hit anywhere Sword/Punch/Kick - 40B9-AD00 - - - Hit anywhere Axe/Tri-blades - 4088-D760 - - - Hit anywhere Knife/Dual Knives - 408F-DD60 - - - Full weapon power for Dagger on pick-up - D783-0F09 - - - Less force picked up from enemies - D4C5-AFA5 - - - More force picked up from enemies - D6C5-AFA5 - - - Lots more power picked up from enemies - F9C5-AFA5 - - - Less life force from food - D789-AFA9 - - - More life force from food - FD89-AFA9 - - - Start with 9 lives - DB6A-676F - - - Start with 2 lives - D46A-676F - - - Infinite life and force (alt) - 7E006E:3F+7E006F:3F - - - Infinite lives (alt) - 7E0072:09 - - - Infinite Axe, Dagger, Grendade (slot 2 item) (alt) - 7E0073:99 - - - Infinite Warp Lanterns (alt) - 7E0078:05 - - - Infinite Bells (slot 1 item) - 7E0074:09 - - - Have all Rune Stones - 7E0075:05 - - - - Flashback - The Quest for Identity (USA) (En,Fr,De) - - Never lose a shield when shot (disable to kill enemies) - 3C1F-EDAC - - - Don't die from most falls - 8511-ED6C - - - Start with 1 shield - D4D4-5F78 - - - Start with 2 shields - D7D4-5F78 - - - Start with 3 shields - D0D4-5F78 - - - Start with 5 shields - D1D4-5F78 - - - Start with 10 shields - D8D4-5F78 - - - Start with 20 shields - F9D4-5F78 - - - Start with 50 shields - 77D4-5F78 - - - Start with 100 shields - 19D4-5F78 - - - Start with 50 credits - 74F0-5F7B - - - Start with 100 credits - 10F0-5F7B - - - Start with 250 credits - ECF0-5F7B - - - Start with 512 credits - D4F0-5DEB - - - Start with 1024 credits - D0F0-5DEB - - - - Flintstones, The (USA) (En,Fr,De,Es,It) - - Invincibility - 2DB9-3D62+2DB3-CD02 - - - Infinite health - 82BB-C402+C9B9-37D2 - - - Infinite lives - 226A-ADDD - - - Infinite time - A2EE-CFD6 - - - Hit anywhere - 418E-3DD2+6D83-37A2 - - - Get items from anywhere - DDB3-C4D0+DDB4-1760+DDC4-CFD9 - - - Multi-jump - DDB4-1F0E - - - - Flintstones, The - The Treasure of Sierra Madrock (USA) - - Invincibility - DDCF-1DB7 - - - Infinite stamina - C28D-44FD - - - Infinite time - 1P game - C2A9-3D64 - - - Infinite lives - 1P game - C2CF-17A4 - - - Hit anywhere - 3DBD-CFA7+74BD-C4A7+76BD-C4D7+DDBD-C407+EDBD-C467 - - - Get items from anywhere - 6DE3-179F+6DE7-C7BD - - - Multi-jump - C2A9-C72F - - - - Flying Hero - Bugyuru no Daibouken (Japan) - - Invincibility - FCC4-D4D0+62C4-D400+7EC4-D460+FDC4-D4A0 - - - Hit anywhere - 4064-67A9+4064-64D9+4067-6F69+4067-6709+6D61-64D9 - - - Hit anywhere continually - 4064-64D9+4067-6F69+6D61-64D9+6D6F-64D9 - - - One hit kills - 6D61-64D9+DDE3-0FAC - - - - Foreman for Real (USA) - - Infinite stamina - P1 - 7E11AE:64+7E1072:27+7E043A:78+7E045A:64 - - - - Frantic Flea (USA) - - Invincibility - 7E1E92:1E - - - - Frogger (USA) - - Invincibility - 7E17F4:00 - - - Infinite lives - 7E183D:04 - - - Infinite time - 7E078C:95 - - - Cars don't move - 7E1886:00+7E1887:00+7E1888:00+7E1889:00+7E188A:00 - - - River objects don't move - 7E1880:04+7E1881:04+7E1882:04+7E1883:04+7E1884:04 - - - - Fun 'n Games (USA) - - Style mode - nude legs - 7E0F80:FE - - - Style mode - nude top - 7E0FA3:FF - - - Style mode - nude feet - 7E0FC6:63 - - - Style mode - nude head - 7E0F5D:05 - - - - Fushigi no Dungeon 2 - Fuurai no Shiren (Japan) - - Gain any EXP for maximum - DD79-5F0B - - - Enemies start with 1 HP (If enabled when starting a new game, die, you'll restart with 1 HP, when you gain a level it should correct itself) - DD7D-770C+CE7D-776C+FF7D-77AC - - - Collect any Gitan for maximum - DD9F-7FA8 - - - Never lose Satiation - DD72-ED66 - - - One Arrow gains 99 - DD75-EFD3 - - - Smith a weapon to make it +99 - CBD1-8FD2+14D1-8F02 - - - Items from bartender get +99 Refinement - CBD8-840A+17D8-846A - - - - F-Zero (USA) - - Always rank 1st - CB3C-0FA4+DF3C-04D4 - - - Infinite turbos - D484-D404 - - - Infinite spare machines - A96E-A4A4 - - - Start with 1 spare machine - DF6C-0F0A - - - Start with 5 spare machines - D96C-0F0A - - - Start with 9 spare machines - DB6C-0F0A - - - Infinite power - 7E00C9:00+7E00CA:08 - - - Infinite turbos (alt) - 7E0CF3:03 - - - Always rank 1st (alt) - 7E1150:00 - - - Always boosted - 7E0D51:08 - - - Low timer - 7E00C1:00 - - - - Galaxy Wars (Japan) - - Infinite lives - 7E0630:05 - - - - Ganpuru - Gunman's Proof (Japan) - - Infinite health vs enemies/bullets - C266-3FBA - - - Infinite ammo for picked up guns - C281-4DAC - - - Infinite ammo for picked up hand weapons - C286-4FAC - - - Always have stronger attacks - DD66-14B2 - - - Always have super strong attacks - CB66-1FB2+7E66-14F2+6966-1422 - - - Easily get max money - DD68-4422 - - - Easily get max score - DD6D-1FB2 - - - Always have Starmine Bombs (if you have none, fire 3 off) - DDB5-3FFD+D42F-1F47 - - - Always get Rank S for dungeons, regardless of time taken - BA2B-3FC4 - - - - Gekitotsu Dangan Jidousha Kessen - Battle Mobile (Japan) - - Invincibility - B989-04A9+898B-AFD5+8988-AFA5 - - - Infinite health - 898B-AFD5+8988-AFA5 - - - Infinite lives - C282-AF65 - - - Infinite Shields - 8BBF-A7A5 - - - - George Foreman's KO Boxing (USA) (Rev 1) - - Infinite time - CB62-040F+5662-046F - - - Infinite super punch after obtaining it - 6D25-A464 - - - Time goes slower - 566D-07DD - - - Time speeds up - DC6D-07DD - - - Damage inflicted by your opponent affects him (your health may slightly decrease) - C228-A764+5728-A7A4+622A-AFA4+572A-A4D4 - - - Start with 1/2x health - both players - 4D6C-D70D - - - - Ghost Chaser Densei (Japan) - - Invincibility - 2D83-14AD - - - Infinite health - 82A9-3D6F - - - Infinite time - C2A4-47D1 - - - Hit anywhere - 3D87-CFA4+7D87-C464+7D87-C4A4+D487-C404 - - - 99 hits in bonus round - 7E0516:63 - - - - Ghoul Patrol (USA) - - Invincibility - 1DC0-1461+1DCC-1401 - - - Infinite lives - C2BD-3DD9 - - - Super powered normal arrows - EE61-C4A3 - - - Infinite health - 7E1D09:0A - - - Infinite lives (alt) - 7E1DA1:63 - - - Always have weapon - 7E1CFE:01 - - - Infinite Keys - 7E1D5D:63 - - - Infinite Shot 1 - 7E1D21:63 - - - Infinite Shot 2 - 7E1D29:63 - - - Infinite Shot 3 - 7E1D23:63 - - - Infinite Shot 4 - 7E1D1F:63 - - - Infinite Blue Potions - 7E1D63:63 - - - Infinite Red Potions - 7E1D61:63 - - - Infinite Green Potions - 7E1D65:63 - - - Infinite Medipaks - 7E1D71:63 - - - Infinite ? Potions - 7E1D69:63 - - - Infinite Vials - 7E1D67:63 - - - All victims already rescued - 7E1E05:00 - - - - Gods (USA) - - Invincibility - C268-3576 - - - Continually hit anywhere - 40A2-49E8+40A3-4988+40AF-1188+6DAD-1988 - - - Shields last until at least end of the world (disable if you get stuck) - 1DE7-31E8 - - - Infinite lives - C269-C1EB - - - Items you can afford in the shops are free - A284-35EC - - - Start with 2 lives - DF3C-4073 - - - Start with 6 lives - D93C-4073 - - - Start with 10 lives - DB3C-4073 - - - - Goof Troop (USA) - - Infinite health - 692F-1FA7 - - - Infinite lives - C96F-3F6C - - - Hit anywhere - DD23-3FDF+DD2F-176F - - - Get fruits and gems from anywhere - DDCD-CF06+DDCF-CD06 - - - Walk through walls - 6D61-146B+6D66-CF06 - - - 4 hearts give you a life - D0C0-3FA8+B3C9-3DD8 - - - 2 hearts give you a life - D4C0-3FA8+B3C9-3DD8 - - - 2 hearts from cherries - D4A8-4762 - - - 4 hearts from bananas - D0A8-47A2 - - - 1 heart from bananas - DFA8-47A2 - - - Goofy has quicker left-right movement - D46F-C70E+E264-C70E - - - Max has quicker left-right movement - D46E-170E+E26D-C70E - - - Start with 9 lives - DBCD-146D - - - Start with 6 lives - D1CD-146D - - - Start with 1 life - DFCD-146D - - - - Gradius III (USA) - - Invincibility - 6D2D-D464 - - - Infinite Konami code use (up, up, down, down, left, right, left, right, B, A) - C2A9-0DDD - - - Infinite lives - 3C8E-DDD7+3C8E-DD07 - - - Infinite credits - C227-6DDD - - - Hit anywhere - 4034-A704 - - - Makes Earwig Scorpion (Stage 1 mayor) much easier to defeat - DFBB-A766 - - - Makes Bubble Brain (Stage 2 mayor) easier to defeat - DFB1-6F6C - - - Weapons status gauge remains at current level after a weapon is selected - 3C29-0704+3C29-0764 - - - Enemies shoot at you more - CBAF-D7AD+DFA4-DDDD - - - Enables Arcade option in options menu - D78F-D4AF - - - Start with 1 life - DD8B-6DA4 - - - Start with 2 lives - DF8B-6DA4 - - - Start with 4 lives - D78B-6DA4 - - - Start with 5 lives - D08B-6DA4 - - - Start with 9 lives - D68B-6DA4 - - - Start with 16 lives - DE8B-6DA4 - - - Start with 31 lives - F38B-6DA4 - - - Start with 1 credit (1P game) - DFC3-DF0D - - - Start with 2 credits - D4C3-DF0D - - - Start with 6 credits - D1C3-DF0D - - - Start with 7 credits - D5C3-DF0D - - - Start with 8 credits - D6C3-DF0D - - - Start with 9 credits - DBC3-DF0D - - - Infinite credits (alt) - 00D230:AD - - - Infinite continues - 7E1E06:03 - - - Infinite Forcefield - 7E0346:02+7E0350:02 - - - Weapons status gauge remains at current level after a weapon is selected (alt) - 00D95D:EA+00D95E:EA - - - Enemies die automatically - 7E00DC:0B - - - Have Mega Crush - 7E00B0:07 - - - Have Max Speed - 7E00B2:05 - - - Have support upgrade - Missile - 7E00B4:0B - - - Have support upgrade - Spread Bomb - 7E00B4:0C - - - Have support upgrade - 2-Way Missile - 7E00B4:0D - - - Have gun - Double - 7E00B6:02 - - - Have gun - Tailgun - 7E00B6:03 - - - Have gun - Back Double - 7E00B6:04 - - - Have gun - Verticle - 7E00B6:05 - - - Have gun - Twin Laser - 7E00B6:06 - - - Have gun - Laser - 7E00B6:07 - - - Have gun - Charged Laser - 7E00B6:09 - - - Have gun - Laser (2nd) - 7E00B6:0A - - - Have 99 million points - P1 - 7E1F47:99 - - - Have 99 million points - P2 - 7E1F4B:99 - - - - Great Battle II, The - Last Fighter Twin (Japan) - - Invincibility - CB30-07AD+DF39-0DDD+6239-0D0D+9839-0D6D+D039-0DAD - - - Infinite health - 89BB-AFAF - - - Infinite lives - 29C8-670D - - - One hit kills - 6D88-04DF - - - Invincibility (alt) - 7E045B:01 - - - Infinite health (alt) - 7E0454:60 - - - Infinite lives (alt) - 7E00D4:03 - - - - Great Battle III, The (Japan) - - Invincibility - 2D80-0DDF+2D80-0F0F - - - Infinite health - 8985-D76D - - - Infinite lives - 2981-04A7 - - - One hit kills - 6DAC-DDA7 - - - Invincibility (alt) - 7E00D4:03 - - - Infinite health (alt) - 7E0464:48 - - - Infinite lives (alt) - 7E00E4:03 - - - - Great Circus Mystery Starring Mickey & Minnie, The (USA) - - Invincibility against enemies - 6D94-E764 - - - Invincibility against ground hazards - 6DF3-5FA0 - - - Infinite Vacuum - C9FB-5769 - - - Infinite Bullets - C9FB-8FA9 - - - Collect one coin for 999 - DD9D-5D07 - - - - GunForce (USA) - - Invincibility - 69BD-A4A1+CBBD-A401 - - - Infinite ammo - C2E7-AFAF - - - Hit anywhere - C2B7-AFD4+DDB8-070F+DDB8-0F6F+DDBB-04AF+DDBC-0D0F - - - Invincibility (alt) - 7E0055:B1 - - - Infinite time (enable during gameplay) - 7E0028:09+7E0029:09 - - - Infinite lives - P1 - 7E0051:09 - - - Infinite lives - P2 - 7E0052:09 - - - Infinite continues - P1 - 7E0053:09 - - - Infinite continues - P2 - 7E0054:09 - - - Have Rapid Fire - 7E0057:FF - - - Have regular gun - 7E9015:01 - - - Have Laser gun - 7E9015:04 - - - Have Bazooka - 7E9015:07 - - - Have Flamethrower - 7E9015:0E - - - - Hagane - The Final Conflict (USA) - - Invincibility - 1D0B-576D - - - Infinite time - 6D6F-8D0F - - - Infinite Bombs - 3CBF-8FDD - - - Infinite Daggers - 3CB9-5F6D - - - Infinite special attacks - 3C68-EDD4 - - - Infinite lives - 3C62-540F - - - Hit anywhere - DD76-E407+DD76-ED67+DD7B-EDD7+DD7B-EFA7 - - - One hit kills - DD0D-770D - - - Jump higher - E29D-8DD4 - - - Start with 9 lives - DB63-57DD - - - Start with 9 special attack points - DB6E-5DDD - - - Start with maximum health points - D963-5FDD - - - Start on stage 2 - Fortress Of Doom - CB6A-5D0D+DF6A-5D6D - - - Start on stage 3 - Violated Heavens - CB6A-5D0D+D46A-5D6D - - - Start on stage 4 - Cry Of The Spirits - CB6A-5D0D+D76A-5D6D - - - Start on stage 5 - Into The Darkness - CB6A-5D0D+D06A-5D6D - - - - HAL's Hole in One Golf (USA) - - No penalty if you land in water or out of bounds - 4A6C-6D69 - - - Always start hole with 1-shot penalty - DF6F-0D00 - - - Max 7 strokes per hole - D56C-A401 - - - Max 5 strokes per hole - D96C-A401 - - - - Harley's Humongous Adventure (USA) - - Protection against some hazards - C2C0-0DB5 - - - Infinite ammo - DD87-A4B0 - - - Infinite lives - C2C8-07B5 - - - Infinite Jet Fuel on pick-up - DDCD-6DF5 - - - Infinite time on Vent level - 3C83-ADA4 - - - Any fuel power-up gives maximum amount - DDC4-6495 - - - Press X on the title screen with the house to get level select menu - D43E-046F - - - Get only 5 ammo from a weapon power-up - D98D-DDB9 - - - Get 20 ammo from a weapon power-up - 4D8D-DDB9 - - - Get 30 ammo from a weapon power-up - 7D8D-DDB9 - - - Get 40 ammo from a weapon power-up - 0D8D-DDB9 - - - Get 50 ammo from a weapon power-up - 9D8D-DDB9 - - - 20 seconds to collect power-ups on level 1 - F08C-A704 - - - 60 seconds to collect power-ups on level 1 - 7A8C-A704 - - - 90 seconds to collect power-ups on level 1 - 9C8C-A704 - - - 60 seconds to complete the Vent level - 7A88-A7D4 - - - Start with maximum fuel on every level - 6DCF-04B1 - - - Start with 4 hearts - D6CF-ADB1 - - - Start with 5 hearts - DCCF-ADB1 - - - Start with 10 of every weapon - FD22-6415 - - - Start with 25 of every weapon - 4922-6415 - - - Start with 50 of every weapon - 9D22-6415 - - - Start with 99 of every weapon - BB22-6415 - - - Start with 2 lives - DFCF-A7F1 - - - Start with 6 lives - D9CF-A7F1 - - - Start with 11 lives - FDCF-A7F1 - - - Start with 26 lives - 49CF-A7F1 - - - Start with 51 lives - 9DCF-A7F1 - - - Start with 100 lives - BBCF-A7F1 - - - Infinite health against most enemies - 7EAB45:32 - - - Start with all weapons - 09DED9:FF - - - Infinite weapons on pick-up - 7EAB54:9A - - - Infinite Air - 7E24B2:FF - - - Infinite Fuel on pick-up (disable to complete level) - 7E24BC:FF - - - Infinte Nuts - 7E24AC:99 - - - Infinite Invincibility Spray - 7EAB44:84 - - - Infinite time - 7E1C3B:64 - - - Moon-jump - 7E0283:02 - - - - Harvest Moon (USA) - - Can access all items temporarily - C980-3460 - - - Don't lose stamina - C22E-4DD0 - - - Go to bed to get 200 stamina - CB68-34A6+A668-37D6+3C68-3706 - - - With 1 or more wood, take some to get 999 - 6D87-CFDA - - - With 0 wood, take some to get 999 - F987-CDDA - - - Fencing doesn't break when it storms - 6DC5-3DAB - - - Go to sleep to put a bell plant next to the stable - FD69-47DB - - - Go to sleep to enable the egg festival prize - DB6B-3F6B+DD6B-3FAB+FD6B-34DB - - - Town always performs Flower Festival - DD2D-37AA+242F-3D0A - - - - Home Alone (USA) - - Infinite power - C220-D464 - - - Infinite lives - DD21-DFD4 - - - Infinite Baseballs, Slingshot and Rifle ammo - DD2A-A76F - - - Power boost on jumps - 3DB1-07D5 - - - Super power boost on jumps - ADB1-07D5 - - - Need 1 item (instead of 24) to complete level 1 - DF23-A764 - - - Need 5 items to complete level 1 - D923-A764 - - - Need 10 items to complete level 1 - FD23-A764 - - - Need 15 items to complete level 1 - F923-A764 - - - Need 20 items to complete level 1 - 4D23-A764 - - - Need 1 item (instead of 30) to complete level 2 - DF23-A7A4 - - - Need 5 items to complete level 2 - D923-A7A4 - - - Need 10 items to complete level 2 - FD23-A7A4 - - - Need 15 items to complete level 2 - F923-A7A4 - - - Need 20 items to complete level 2 - 4D23-A7A4 - - - Need 25 items to complete level 2 - 4923-A7A4 - - - Need 1 item (instead of 35) to complete level 3 - DF2E-ADD4 - - - Need 5 items to complete level 3 - D92E-ADD4 - - - Need 10 items to complete level 3 - FD2E-ADD4 - - - Need 15 items to complete level 3 - F92E-ADD4 - - - Need 20 items to complete level 3 - 4D2E-ADD4 - - - Need 25 items to complete level 3 - 492E-ADD4 - - - Need 1 item (instead of 35) to complete level 4 - DF2E-AD04 - - - Need 5 items to complete level 4 - D92E-AD04 - - - Need 10 items to complete level 4 - FD2E-AD04 - - - Need 15 items to complete level 4 - F92E-AD04 - - - Need 20 items to complete level 4 - 4D2E-AD04 - - - Need 25 items to complete level 4 - 492E-AD04 - - - Extra life with 1 pizza slice instead of 8 - DF66-04A7 - - - Extra life with 2 pizza slices - D466-04A7 - - - Extra life with 3 pizza slices - D766-04A7 - - - Extra life with 4 pizza slices - D066-04A7 - - - Extra life with 5 pizza slices - D966-04A7 - - - Extra life with 6 pizza slices - D166-04A7 - - - Extra life with 7 pizza slices - D566-04A7 - - - Start with 1 life instead of 3 - DF2B-AFD4 - - - Start with 2 lives - D42B-AFD4 - - - Start with 5 lives - D92B-AFD4 - - - Start with 9 lives - DB2B-AFD4 - - - Start with 25 lives - 492B-AFD4 - - - Start with 50 lives - 9D2B-AFD4 - - - Start with 99 lives - BB2B-AFD4 - - - Start on level 2 - DF69-DFAD+AB69-D40D+D769-D46D - - - Start on level 3 - D469-DFAD+AB69-D40D+D769-D46D - - - Start on level 4 - D769-DFAD+AB69-D40D+D769-D46D - - - - Home Alone 2 - Lost in New York (USA) - - Infinite power (some things can still kill you) - C22E-AF9D - - - Infinite ammo - 3CB7-6DA4 - - - Infinite lives - C264-D464 - - - Dart guns have 50 shots - 7427-AF2F+7429-AD9F - - - Extra life from 1 pizza slice instead of 6 - DF2B-AFBF - - - Extra life from 2 pizza slices - D42B-AFBF - - - Extra life from 3 pizza slices - D72B-AFBF - - - Extra life from 4 pizza slices - D02B-AFBF - - - Extra life from 5 pizza slices - D92B-AFBF - - - Start with 1 life instead of 3 - DFB5-6FA7 - - - Start with 5 lives - D9B5-6FA7 - - - Start with 9 lives - DBB5-6FA7 - - - Start with 25 lives - FBB5-6FA7 - - - Start with 50 lives - 74B5-6FA7 - - - Start with 99 lives - 17B5-6FA7 - - - - Home Improvement - Power Tool Pursuit! (USA) - - Invincibility - 6D62-4B82+6D69-1CEA - - - Infinite lives - CB69-1FDE - - - Infinite Nut Bolts - C9BC-3673+C9C4-4683+C26F-468A - - - - Hook (USA) - - Infinite power (disable if you get stuck) - 3CA5-D70F - - - Infinite time - A268-6F03 - - - Time starts at 7 min - stage 1 - D56B-ADA2 - - - Time starts at 3 min - stage 1 - D76B-ADA2 - - - Start with 3 power leaves - D066-0FDD - - - Start with 1 leaf (shows 2, but you can only fill 1) - D466-0FDD - - - Infinite power (alt) - 7EF7C1:03 - - - Infinite lives - 7E1F00:03 - - - Infinite flying - 7E1F07:80+7E1F08:01 - - - Infinite time (alt) - 7E1F14:59 - - - - Humans, The (Europe) - - Infinite lives - 7E010B:0C - - - Infinite time (disable at end of level) - 7E0122:78+7E0123:00 - - - - Hunt for Red October, The (USA) - - Infinite Bombs - C2AE-1404 - - - Infinite ECMs - C2AC-34D4 - - - Infinite SAMs - C2AB-CFD4 - - - Infinite SSMs - C2A7-3D64 - - - Infinite Torpedoes - C2A0-1D64 - - - Start with 0 Bombs instead of 40 - DD34-4761 - - - Start with 99 Bombs - 1734-4761 - - - Start with 0 Torpedoes instead of 60 - DD3F-47D1 - - - Start with 99 Torpedoes - 173F-47D1 - - - Start with 0 Surface-to-Air Missiles (SAMs) instead of 25 - DD34-44D1 - - - Start with 50 SAMs - 7434-44D1 - - - Start with 99 SAMs - 1734-44D1 - - - Start with 0 Surface-to-Surface Missiles (SSMs) instead of 25 - DD34-4D61 - - - Start with 50 SSMs - 7434-4D61 - - - Start with 99 SSMs - 1734-4D61 - - - Start with 0 Electronic Countermeasures (ECMs) instead of 2 - DD3F-4F61 - - - Start with 50 ECMs - 743F-4F61 - - - Start with 99 ECMs - 173F-4F61 - - - Start in theatre I - Caribbean - D4BA-1F64 - - - Start in theatre II - North Pacifi - D1BA-1F64 - - - Start in theatre III - Mediterranean - DABA-1F64 - - - Start on the final mission - Return to the USSR - FDBA-1F64 - - - - Hurricanes (USA) - - Invincibility - 7E0CA2:FF - - - Infinite health - 7E0D0E:2C - - - Infinite time - 7E1252:09 - - - Infinite lives - 7E0D16:09 - - - - HyperZone (USA) - - Infinite power - 4A8A-DFD1 - - - Restore energy more quickly - D76A-D7D5 - - - Restore energy more slowly - DD6A-D7D5 - - - Start with 8 lives - D5C4-DFD1 - - - Start with 1 life - DDC4-DFD1 - - - - Ignition Factor, The (USA) - - Infinite health - 7E0669:F9 - - - Max health - 7E069A:F9 - - - Always have full abilities regardless of how many items you carry - 7E0698:00 - - - Infinite Air Tank - 7E0690:B4 - - - Infinite CO2 Bombs - 7E0695:B4 - - - Infinite Fire Trucks - 7E0697:03 - - - Infinite Blue (electrical) Extinguisher - 7E068F:B4 - - - Infinite Green (chemical) Extinguisher - 7E068E:B4 - - - Infinite Red Extinguisher - 7E068D:B4 - - - Infinite Plastic Explosives - 7E0696:B4 - - - Infinite time - minutes - 7E1CBA:00 - - - Infinite time - seconds - 7E1CB9:00 - - - Infinite time - milliseconds - 7E1CB8:00 - - - Have Green (chemical) Extinguisher in slot 1 - 7E14C2:02 - - - Have Blue (electrical) Extinguisher in slot 2 - 7E14C6:04 - - - Have Oxygen Tank and Mask in slot 3 - 7E14CA:06 - - - Have Chainsaw in slot 4 - 7E14CE:08 - - - Have Rope in slot 4 - 7E14CE:0A - - - Have Axe in slot 4 - 7E14CE:0C - - - Have Pole in slot 4 - 7E14CE:0E - - - Have CO2 Bombs in slot 4 - 7E14CE:10 - - - Have Plastic Explosives in slot 4 - 7E14CE:12 - - - Haev Fossile in slot 4 - 7E14CE:14 - - - Have First Aid Kit in slot 4 - 7E14CE:26 - - - - Illusion of Gaia (USA) - - Infinite HP - C2A5-44A2 - - - Less charge time for psycho dash - D98F-4F0C - - - Less charge time for dark friar - D98B-4DDC - - - Super run left/right only - D9AA-1F0B+E8A5-14AB - - - Super run up/down only - EAA7-1D6B+D0A3-446B - - - Get 2x the energy from herbs - FD6B-47A3 - - - Get 3x the energy from herbs - F66B-47A3 - - - Red Jewel 50 check passes - DDA0-3D37 - - - Red Jewel 30 check passes - DDA7-3447 - - - Red Jewel 20 check passes - DDA4-3F37 - - - Red Jewel 12 check passes - DDAF-3FC7 - - - Red Jewel 08 check passes - DDAD-3F17 - - - Red Jewel 05 check passes - DDAE-CF47 - - - Red Jewel 03 check passes - DDA3-CD37 - - - Start with max HP - EE61-440D - - - Start with a lot more energy - F061-44DD - - - Start with 20 strength points - F065-4D0D - - - Start with 50 strength points - 7465-4D0D - - - Start with 80 strength points - 9D65-4D0D - - - Infinite HP - 7E0ACD:32+7E0ACE:32 - - - Max HP - 7E0ACA:32+7E0ACB:03 - - - Max Strength - 7E0ADE:63 - - - Max Defense - 7E0ADC:63 - - - Can always attack - 7E09AE:00 - - - One hit kills - 7E0ADE:FF+7E0ADF:FF - - - Play as Will - 7E0AD4:00 - - - Play as Knight - 7E0AD4:01 - - - Play as Shade - 7E0AD4:02 - - - Walk through walls - 82E301:AF+82E304:9B - - - Can always attack - 7E09AE:00 - - - Have all Statues - 7E0A1F:BF - - - Have Red Jewel - slot 1 - 7E0AB4:01 - - - Have Red Jewel - slot 16 - 7E0AC3:01 - - - Have Prison Key - slot 1 - 7E0AB4:02 - - - Have Prison Key - slot 16 - 7E0AC3:02 - - - Have Incan Statue A - slot 1 - 7E0AB4:03 - - - Have Incan Statue A - slot 16 - 7E0AC3:03 - - - Have Incan Statue B - slot 1 - 7E0AB4:04 - - - Have Incan Statue B - slot 16 - 7E0AC3:04 - - - Have Incan Melody - slot 1 - 7E0AB4:05 - - - Have Incan Melody - slot 16 - 7E0AC3:05 - - - Have Herb - slot 1 - 7E0AB4:06 - - - Have Herb - slot 16 - 7E0AC3:06 - - - Have Blue Block - slot 1 - 7E0AB4:07 - - - Have Blue Block - slot 16 - 7E0AC3:07 - - - Have Wind Melody - slot 1 - 7E0AB4:08 - - - Have Wind Melody - slot 16 - 7E0AC3:08 - - - Have Lola's Melody - slot 1 - 7E0AB4:09 - - - Have Lola's Melody - slot 16 - 7E0AC3:09 - - - Have Meat - slot 1 - 7E0AB4:0A - - - Have Meat - slot 16 - 7E0AC3:0A - - - Have Mine Key A - slot 1 - 7E0AB4:0B - - - Have Mine Key A - slot 16 - 7E0AC3:0B - - - Have Mine Key B - slot 1 - 7E0AB4:0C - - - Have Mine Key B - slot 16 - 7E0AC3:0C - - - Have Memory Melody - slot 1 - 7E0AB4:0D - - - Have Memory Melody - slot 16 - 7E0AC3:0D - - - Have Crystal Ball - slot 1 - 7E0AB4:0E - - - Have Crystal Ball - slot 16 - 7E0AC3:0E - - - Have Elevator Key - slot 1 - 7E0AB4:0F - - - Have Elevator Key - slot 16 - 7E0AC3:0F - - - Have Palace Key - slot 1 - 7E0AB4:10 - - - Have Palace Key - slot 16 - 7E0AC3:10 - - - Have Purify Stone - slot 1 - 7E0AB4:11 - - - Have Purify Stone - slot 16 - 7E0AC3:11 - - - Have Statue of Hope - slot 1 - 7E0AB4:12 - - - Have Statue of Hope - slot 16 - 7E0AC3:12 - - - Have Rama Statue - slot 1 - 7E0AB4:13 - - - Have Rama Statue - slot 16 - 7E0AC3:13 - - - Have Magic Dust - slot 1 - 7E0AB4:14 - - - Have Magic Dust - slot 16 - 7E0AC3:14 - - - Have Blue Journal - slot 1 - 7E0AB4:15 - - - Have Blue Journal - slot 16 - 7E0AC3:15 - - - Have Lance's Leter - slot 1 - 7E0AB4:16 - - - Have Lance's Leter - slot 16 - 7E0AC3:16 - - - Have Necklace Stone - slot 1 - 7E0AB4:17 - - - Have Necklace Stone - slot 16 - 7E0AC3:17 - - - Have Will - slot 1 - 7E0AB4:18 - - - Have Will - slot 16 - 7E0AC3:18 - - - Have Tea Pot - slot 1 - 7E0AB4:19 - - - Have Tea Pot - slot 16 - 7E0AC3:19 - - - Have Mushroom Drop - slot 1 - 7E0AB4:1A - - - Have Mushroom Drop - slot 16 - 7E0AC3:1A - - - Have Bag of Gold - slot 1 - 7E0AB4:1B - - - Have Bag of Gold - slot 16 - 7E0AC3:1B - - - Have Black Glasses - slot 1 - 7E0AB4:1C - - - Have Black Glasses - slot 16 - 7E0AC3:1C - - - Have Gorgon Flower - slot 1 - 7E0AB4:1D - - - Have Gorgon Flower - slot 16 - 7E0AC3:1D - - - Have Heiroglyph 1 - slot 1 - 7E0AB4:1E - - - Have Heiroglyph 1 - slot 16 - 7E0AC3:1E - - - Have Heiroglyph 2 - slot 1 - 7E0AB4:1F - - - Have Heiroglyph 2 - slot 16 - 7E0AC3:1F - - - Have Heiroglyph 3 - slot 1 - 7E0AB4:20 - - - Have Heiroglyph 3 - slot 16 - 7E0AC3:20 - - - Have Heiroglyph 4 - slot 1 - 7E0AB4:21 - - - Have Heiroglyph 4 - slot 16 - 7E0AC3:21 - - - Have Heiroglyph 5 - slot 1 - 7E0AB4:22 - - - Have Heiroglyph 5 - slot 16 - 7E0AC3:22 - - - Have Heiroglyph 6 - slot 1 - 7E0AB4:23 - - - Have Heiroglyph 6 - slot 16 - 7E0AC3:23 - - - Have Aura - slot 1 - 7E0AB4:24 - - - Have Aura - slot 16 - 7E0AC3:24 - - - Have Lola's Letter - slot 1 - 7E0AB4:25 - - - Have Lola's Letter - slot 16 - 7E0AC3:25 - - - Have Father's Journal - slot 1 - 7E0AB4:26 - - - Have Father's Journal - slot 16 - 7E0AC3:26 - - - Have Crystal Ring - slot 1 - 7E0AB4:27 - - - Have Crystal Ring - slot 16 - 7E0AC3:27 - - - Have Red Apple - slot 1 - 7E0AB4:28 - - - Have Red Apple - slot 16 - 7E0AC3:28 - - - - Imperium (USA) - - Invincibility - 6DCC-DD27+DD38-AFA9 - - - Hit anywhere - 6D31-DDA1+C236-DD01 - - - Infinite bombs - C2A9-D46F - - - Start with 1 life point - DFA2-D4A4 - - - Start with 3 life points - D7A2-D4A4 - - - Start with 5 bombs - D9BD-64D7 - - - Start with 9 bombs - DBBD-64D7 - - - - Incantation (USA) - - Infinite energy - C234-CFD7 - - - Infinite lives - C2A0-3FD7 - - - Invincibility (blinking) - 7E07FC:5F - - - Infinite energy (alt) - 7E1115:30 - - - Infinite lives (alt) - 7E0846:64 - - - Super-jump with lunar descent - 7E163D:00 - - - 3 wheat for toll - 7E0E69:03 - - - Max bonus - 7E083C:5A+7E083E:63 - - - Have larger shot - 7E07E8:D4+7E07EA:1A - - - - Incredible Crash Dummies, The (USA) - - Invincibility (blinking) - 7E1338:37 - - - Infinite health - 7E03B6:05 - - - Infinite lives - 7E03B5:05 - - - Infinite time (disable at end of level) - 7E04A6:3B - - - Infinite spanners - 7E04A0:0A - - - Infinite wrenches (disable at end of level) - 7E04A0:05 - - - Infinite airbag once obtained - 7E0492:C7 - - - Infinite lightning once obtained - 7E0490:C7 - - - Start at Parking Level 1 - 7E03B9:01 - - - Start at Crash Center - 7E03B9:02 - - - Start at Crash Center Boss - 7E03B9:03 - - - Start at Construction Site 1 - 7E03B9:04 - - - Start at Construction Site 2 - 7E03B9:05 - - - Start at Construction Site Boss - 7E03B9:06 - - - Start at Artillery Range 1 - 7E03B9:07 - - - Start at Military Complex - 7E03B9:08 - - - Start at Military Complex Boss - 7E03B9:09 - - - Start at Junk Kastle - 7E03B9:0A - - - Start at Junk Kastle Boss - 7E03B9:0B - - - Start at Title Screen - 7E03B9:0C - - - Start at Credits - 7E03B9:0D - - - Start at Parking Level 2 - 7E03B9:0E - - - Start at Vehicle Crash Test 1 'car' - 7E03B9:0F - - - Start at Vehicle Crash Test 2 'bulldozer' - 7E03B9:10 - - - Start at Artillery Range 2 - 7E03B9:11 - - - Start at Vehicle Crash Test 3 'tank' - 7E03B9:12 - - - - Incredible Hulk, The (USA) - - Infinite health - 8260-1465+C2E9-44DF - - - Infinite transformation capsules on pick-up - C96D-CDC6 - - - Health doesn't decrease when Hulked-out - C260-4746 - - - Hit anywhere - 0AB3-4D00+2DB3-4DD0+3DB2-4700+DDB2-4760+DDB2-47A0 - - - One hit kills - DDBF-47D0 - - - Get items from anywhere - 6DBF-17CB - - - Get 4 shots from gun - D0BC-173B - - - Get 9 shots from gun - DBBC-173B - - - Get 20 shots from gun - F0BC-173B - - - Get 20 seconds from time icon - 4DB0-1F4B - - - Get 40 seconds from time icon - 0DB0-1F4B - - - 2x energy from gamma capsules - F3BE-144B - - - Gamma capsules act as mega-gamma capsules - DDB8-171B - - - Super-jump (sometimes) - DA25-34A7+DA34-47AD - - - Mega-jump (sometimes) - FB25-34A7+FB34-47AD - - - Mega damage from Hulk's uppercut - DCB7-44D0 - - - Mega damage from Hulk's head butt - DCB1-4FD0 - - - 4x damage from Hulk's uppercut - D0B7-44D0 - - - 4x damage from Hulk's head-butt - D0B1-4FD0 - - - Start with 1 life - DFBD-CD6F - - - Start with 6 lives - D1BD-CD6F - - - Start with 9 lives - DBBD-CD6F - - - Start on level 2 - DDB2-1F0F - - - Start on level 3 - 4DB2-1F0F - - - Start on level 4 - 0DB2-1F0F - - - Start on level 5 - 6DB2-1F0F - - - Infinite and max health - 7E0718:63 - - - Infinite lives - 7E00C0:09 - - - - Indiana Jones' Greatest Adventures (USA) - - Invincibility - 62A7-1764+2D80-CDDF - - - Infinite lives - C2C2-37A4 - - - Infinite Bombs - C2B6-370F - - - Infinite Grenades - C2B6-370F - - - Infinite continues - 3CAB-CE82+F0BC-173B - - - Hearts don't restore health - C2B6-440F - - - Can't collect Grenades - C2B9-37DF - - - Start with very little health - DFC1-3707 - - - Start with about 1/2 health - D7C1-3707 - - - Start with more health (ignore health meter) - DEC1-3701 - - - Start with 5 Grenades - D9C7-CF0F - - - Start with 9 Grenades - DBC7-CF0F - - - Start with 15 Grenades - DEC7-CF0F - - - Start with 2 lives - DFCC-1E83 - - - Start with 5 lives - D0CC-1E83 - - - Start with 10 lives - DBCC-1E83 - - - Start with no continues - D1C8-13E3 - - - Infinite health - 7E0120:06 - - - - Inindo - Way of the Ninja (USA) - - Max defend - 7EF0C8:FF - - - Max intelligence - 7EF0C3:FF - - - Max luck - 7EF0C5:FF - - - Max power - 7EF0CA:FF - - - Max resist - 7EF0C9:FF - - - Max speed - 7EF0C4:FF - - - Start with 50,000 gold - A0ED-D460 - - - Start with 250 health after the first battle - ECEC-DFD0 - - - Start with 100 energy after the first level up - 10EC-D4D0 - - - Infinite HP in battle - 7E9606:E7+7E9607:03 - - - Max HP - 7EF0B6:E7+7EF0B7:03 - - - Infinite energy - 7EF0BC:E7+7EF0BD:03 - - - Max energy - 7EF0BA:E7+7EF0BB:03 - - - Infinite chips - 7EF076:FF+7EF077:FF - - - - Inspector Gadget (USA) - - Invincibility (keep coat in collisions) - C269-5D0D - - - Infinite time - C297-8F0F - - - Infinite lives - C216-5DD4 - - - Start with 3 plungers - D74B-E7D7 - - - - Iron Commando - Koutetsu no Senshi (Japan) - - Invincibility - Bicycle stages - 18EA-CDA1 - - - Infinite ammo - C2A1-4D61 - - - One hit kills (most enemies) - 40EF-4461+B3C9-4406+BAC9-47D6 - - - - Itchy & Scratchy Game, The (USA) - - Infinite health - C2E1-402E - - - Infinite lives - C2BB-CDD4 - - - Infinite time - C28A-CD55 - - - Infinite Bones - C28A-3DDF - - - Infinite health - P1 - 7E022B:46 - - - Infinite lives (alt) - 7E023A:03 - - - Infinite Cheese speed boost - 7E023B:03 - - - Infinite Boss weapons - 7E023C:0F - - - - Izzy's Quest for the Olympic Rings (USA) - - Infinite health (disable then enable when bored in sub games) - 7E9EB0:03 - - - Infinite lives - 7E9E90:0A - - - Start on Greek Village I - 7E0394:05+7E0398:05 - - - Start on Rocket Ride I - 7E0394:06+7E0398:06 - - - Start on Greek Village II - 7E0394:07+7E0398:07 - - - Start on Space Walk I - 7E0394:08+7E0398:08 - - - Start on Greek Village III - 7E0394:09+7E0398:09 - - - Start on Rocket Ride II - 7E0394:0A+7E0398:0A - - - Start on Lava Dome I - 7E0394:0B+7E0398:0B - - - Start on Space Walk II - 7E0394:0C+7E0398:0C - - - Start on Lava Dome II - 7E0394:0D+7E0398:0D - - - Start on Rocket Ride III - 7E0394:0E+7E0398:0E - - - Start on Lava Dome III - 7E0394:0F+7E0398:0F - - - Start on Space Walk III - 7E0394:10+7E0398:10 - - - Start on Exit to Atlanta I - 7E0394:11+7E0398:11 - - - Start on Exit to Atlanta II - 7E0394:12+7E0398:12 - - - Start on Round Ends - 7E0394:13+7E0398:13 - - - Start on Game Ending - 7E0394:14+7E0398:14 - - - - J.R.R. Tolkien's The Lord of the Rings - Volume 1 (USA) - - Invincibility - all characters - 82A2-CF6D - - - Start with 908 HP - DBCE-C360+DBCE-C4A0 - - - Start with 9908 HP - BBCE-C360+BBCE-C4A0 - - - Start the game with more strength - 62CD-34D0 - - - 9999 HP - character 1 - 7E0224:99+7E0225:99 - - - 9999 max HP - character 1 - 7E0236:99+7E0237:99 - - - 9999 EXP - character 1 - 7E0246:99+7E0247:99 - - - Level 98 - character 1 - 7E0256:98 - - - 9999 HP - character 2 - 7E0226:99+7E0227:99 - - - 9999 max HP - character 2 - 7E0238:99+7E0239:99 - - - 9999 EXP - character 2 - 7E0248:99+7E0249:99 - - - Level 98 - character 2 - 7E0258:98 - - - Have all items - 7E02B0:FF+7E02B1:FF+7E02B2:FF+7E02B3:FF+7E02B4:FF+7E02B5:01+7E02AA:FF+7E02AB:FF+7E02AC:FF+7E02AD:FF+7E02AE:FF+7E02AF:FF - - - - Jack Nicklaus Golf (USA) - - Infinite mulligans - 82BF-6707 - - - Mulligan can be taken after any stroke - 6DB2-0D07 - - - No mulligans allowed - DDBA-0467 - - - Each round ends after hole 1 - DF33-076F+DDEB-D40A - - - Each round ends after hole 2 - D433-076F+DFEB-D40A - - - Each round ends after hole 3 - D733-076F+D4EB-D40A - - - Each round ends after hole 4 - D033-076F+D7EB-D40A - - - Each round ends after hole 5 - D933-076F+D0EB-D40A - - - Each round ends after hole 6 - D133-076F+D9EB-D40A - - - Each round ends after hole 7 - D533-076F+D1EB-D40A - - - Each round ends after hole 8 - D633-076F+D5EB-D40A - - - Each round ends after hole 9 - DB33-076F+D6EB-D40A - - - Each round ends after hole 10 - DC33-076F+DBEB-D40A - - - Each round ends after hole 11 - D833-076F+DCEB-D40A - - - Each round ends after hole 12 - DA33-076F+D8EB-D40A - - - Each round ends after hole 13 - D233-076F+DAEB-D40A - - - Each round ends after hole 14 - D333-076F+D2EB-D40A - - - Each round ends after hole 15 - DE33-076F+D3EB-D40A - - - Each round ends after hole 16 - FD33-076F+DEEB-D40A - - - Each round ends after hole 17 - FF33-076F+FDEB-D40A - - - - James Bond Jr (USA) - - Infinite health (can still be hurt by some things) - CE2B-D4B6 - - - Infinite Grenades - C22A-6FBC - - - Infinite Darts - C227-DDF8 - - - Infinite lives on the ground - C2E0-6F0D - - - Infinite lives in the air - C26C-6F08 - - - Hearts worth 0 - C23D-6FBC - - - Large red Grenade worth 0 instead of 5 - DD34-679C - - - Large red Grenade worth 10 - DC34-679C - - - Large red Grenade worth 20 - F034-679C - - - Large red Grenade worth 30 - F334-679C - - - Large red Grenade worth 40 - 4634-679C - - - Small silver Grenade worth 0 instead of 1 - 3C3A-ADFC - - - Start with 1 life on the ground instead of 5 - DFA0-670D - - - Start with 3 lives on the ground - D7A0-670D - - - Start with 7 lives on the ground - D5A0-670D - - - Start with 9 lives on the ground - DBA0-670D - - - Start with 1 life in the air instead of 5 - DF68-DDAD - - - Start with 3 lives in the air - D768-DDAD - - - Start with 7 lives in the air - D568-DDAD - - - Start with 9 lives in the air - DB68-DDAD - - - Start with 0 Grenades and Darts instead of 10 - DDE7-6F6D - - - Start with 5 Grenades and Darts - D9E7-6F6D - - - Start with 25 Grenades and Darts - FBE7-6F6D - - - Start with 50 Grenades and Darts - 74E7-6F6D - - - Start with 99 Grenades and Darts - 17E7-6F6D - - - Start with 0 Darts instead of 10 - DDA9-640D+CEE7-64AD - - - Start with 5 Darts - D9A9-640D+CEE7-64AD - - - Start with 25 Darts - FBA9-640D+CEE7-64AD - - - Start with 50 Darts - 74A9-640D+CEE7-64AD - - - Start with 99 Darts - 17A9-640D+CEE7-64AD - - - Start on level 3 - CBAC-6D0D+DFAC-6D6D - - - Start on level 5 - CBAC-6D0D+D4AC-6D6D - - - Start on level 7 - CBAC-6D0D+D7AC-6D6D - - - Start on level 3, part 2 - CBAB-67AD+D0AC-6DDD+6DAC-6D0D - - - Start on level 3, part 3 - CBAB-67AD+D5AC-6DDD+6DAC-6D0D - - - Start on level 5, part 2 - CBAB-67AD+D9AC-6DDD+6DAC-6D0D - - - Start on level 5, part 3 - CBAB-67AD+D6AC-6DDD+6DAC-6D0D - - - Start on level 7, part 2 - CBAB-67AD+D1AC-6DDD+6DAC-6D0D - - - Start on level 7, part 3 - CBAB-67AD+DBAC-6DDD+6DAC-6D0D - - - - Jelly Boy (Europe) - - Infinite lives - C228-3FD4 - - - Infinite time - C2E3-1D05 - - - Don't lose Music Notes when hit (can get stuck) - C226-4FA7 - - - - Jelly Boy 2 (Japan) (Proto) - - Invincibility - 7E026B:03 - - - Infinite lives - 7E0269:03 - - - - Jeopardy! (USA) - - Always get the correct answer - 6DC8-6D67+6DCE-64A7 - - - - Jetsons, The - Invasion of the Planet Pirates (USA) - - Invincibility - 3C62-1761 - - - Infinite lives - C26D-4767 - - - Infinite time - C2AD-4D6F - - - Maximum vacuum power - D0BB-146D - - - - Jikkyou Oshaberi Parodius (Japan) - - Infinite lives - 7E00AC:04 - - - - Jim Lee's WildC.A.T.S - Covert-Action-Teams (USA) - - Invincibility - C2C5-CDCB - - - Infinite health - 826C-C7C6 - - - Infinite lives - 3CB7-1F1C - - - Infinite health (alt) - 7E401E:48 - - - Infinite lives (alt) - 7E1F93:03 - - - Infinite bombs - 7E1F95:09 - - - - Jim Power - The Lost Dimension in 3D (USA) - - Invincibility - CEAB-1D0D - - - Infinite lives - C9AD-CF0D - - - Infinite time - C920-3FA5 - - - Infinite SB - C93F-4764 - - - Invincibility (alt) - 7E074E:39 - - - Infinite lives (alt) - 7E003F:09 - - - Infinite time (alt) - 7E0043:FF - - - Infinite SB (alt) - 7E0041:09 - - - Jump as high as you want and jump through walls (disable to come back down) - 7E077E:10 - - - - Joe & Mac (USA) - - Invincibility after one hit - 892C-64D4 - - - Infinite health - 2BBA-64D7 - - - Infinite health (alt) - 8BBA-64D7 - - - Infinite lives - DD36-D40D - - - Infinite lives (alt) - 8936-D46D - - - Infinite Keys - C936-D708 - - - All food fully restores health - DDE0-0F6F - - - Hit anywhere - 6DC3-0DAD+C9E5-DDDD+DDC4-076D - - - One hit kills - 40CC-07DD - - - Start with 2 lives - CBC8-6404+DFC8-6464 - - - Start with 6 lives - CBC8-6404+D9C8-6464 - - - Start with 10 lives - CBC8-6404+DBC8-6464 - - - Infinite health - P1 - 7E081C:14 - - - Infinite health - P2 - 7E085C:0F - - - Infinite lives - P1 - 7E0822:05 - - - Infinite lives - P2 - 7E0862:05 - - - Have no weapon - P1 - 7E081A:B8 - - - Have no weapon - P2 - 7E085A:B8 - - - Have Bone - P1 - 7E081A:B9 - - - Have Bone - P2 - 7E085A:B9 - - - Have Boomerang - P1 - 7E081A:BA - - - Have Boomerang - P2 - 7E085A:BA - - - Have Fire - P1 - 7E081A:BB - - - Have Fire - P2 - 7E085A:BB - - - Have Wheel - P1 - 7E081A:BC - - - Have Wheel - P2 - 7E085A:BC - - - - Joe & Mac 2 - Lost in the Tropics (USA) (Beta) - - Infinite health - B982-176D - - - Infinite lives - 893D-3FAD - - - Start with $2020 - A73B-370D - - - - Joe & Mac 2 - Lost in the Tropics (USA) - - Infinite health - B987-CD6D - - - Infinite lives - B9C1-3467 - - - Hit anywhere (disable to enter stores and houses) - DD33-1707+DD34-3DA7+DD66-C7AC - - - Start with $2020 - A73F-47AF - - - - John Madden Football (USA) - - Always 1st down - C2AB-64A4 - - - Infinite time-outs - 3C24-A70D - - - Play clock is 20 seconds instead of 45 - F0A2-A4DD - - - Play clock is 30 seconds - F3A2-A4DD - - - Play clock is 60 seconds (CPU will run down the play clock) - 7AA2-A4DD - - - Play clock is 90 seconds (CPU will run down the play clock) - 9CA2-A4DD - - - Only have 3 plays to get a first down or TD (down counter starts at 2) - D4A3-6D04 - - - Only have 2 plays to get a first down or TD (down counter starts at 3) - D7A3-6D04 - - - Only have 1 play to get a first down or TD (down counter starts at 4) - D0A3-6D04 - - - No time-outs instead of 3 - P1 - DD69-A407 - - - 6 time-outs - P1 - D169-A407 - - - 9 time-outs - P1 - DB69-A407 - - - No time-outs - P2 - DD69-A467 - - - 6 time-outs - P2 - D169-A467 - - - 9 time-outs - P2 - DB69-A467 - - - Safeties worth 1 point instead of 2 - 82A6-AF64 - - - Safeties worth 0 points - 82A6-AF64+82A6-A404 - - - Touchdowns worth 0 points instead of 6 - DDA4-0767 - - - Touchdowns worth 1 point - DFA4-0767 - - - Touchdowns worth 2 points - D4A4-0767 - - - Touchdowns worth 3 points - D7A4-0767 - - - Touchdowns worth 4 points - D0A4-0767 - - - Touchdowns worth 5 points - D9A4-0767 - - - Touchdowns worth 7 points - D5A4-0767 - - - Touchdowns worth 8 points - D6A4-0767 - - - Touchdowns worth 9 points - DBA4-0767 - - - Extra points and field goals worth 0 - 3CA7-A707+3CA7-A767 - - - Extra point or field goal resets score to 0 - B3A7-A7A7 - - - Start with 3 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+D76C-6D67 - - - Start with 5 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467 - - - Start with 9 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DB6C-6D67 - - - Start with 12 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DA6C-6D67 - - - Start with 15 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+DE6C-6D67 - - - Start with 20 points - P1 - CB6C-6D07+626C-6FD7+416C-6F07+ED6C-6467+F06C-6D67 - - - Start with 3 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+D76C-6D67 - - - Start with 5 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467 - - - Start with 9 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DB6C-6D67 - - - Start with 12 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DA6C-6D67 - - - Start with 15 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+DE6C-6D67 - - - Start with 20 points - P2 - CB6C-6D07+626C-6FD7+486C-6F07+ED6C-6467+F06C-6D67 - - - - John Madden Football '93 (USA) - - Infinite timeouts - both players - 3C3A-0FAD - - - 9 timeouts - P1 - DB30-D43A - - - 6 timeouts - P1 - D130-D43A - - - 1 timeout - P1 - DF30-D43A - - - 9 timeouts - P2 - DB30-D74A - - - 6 timeouts - P2 - D130-D74A - - - 1 timeout - P2 - DF30-D74A - - - - Judge Dredd (USA) - - Invincible after first hit - C22C-1B2D - - - Almost infinite health - C2A9-1627 - - - Almost infinite ammo - C2BE-4A4B - - - Don't flash after getting hit - DDA9-1CB7 - - - Don't flash as long after getting hit - 74A9-1CB7 - - - Flash longer after getting hit - EEA9-1CB7 - - - Start with all weapons and almost infinite ammo - EE63-1318 - - - Start with very little energy on your first life - DE6D-C338 - - - Start with half energy on your first life - 6D6D-C338 - - - Start with about 3/4 energy on your first life - A16D-C338 - - - Start with very little energy after first life - DE3A-48B7 - - - Start with half energy after first life - 6D3A-48B7 - - - Start with about 3/4 energy after first life - A13A-48B7 - - - Start with 1 life - DF62-1A38 - - - Start with 5 lives - D962-1A38 - - - Start with 9 lives - DB62-1A38 - - - Invincibility - 7E1A91:01 - - - Infinite health - 7E1B11:FF - - - Infinite lives - 7E1AF7:09 - - - Infinte Grenades - 7E1B01:99 - - - Infinite Boing - 7E1B0D:99 - - - Infinite Richochet - 7E1AFF:99 - - - Infinite Seeker - 7E1B09:99 - - - Infinite Double Whammie - 7E1B0B:99 - - - Infinite Incindiary - 7E1B05:99 - - - Infinte High Explosive - 7E1B03:99 - - - Infinte Armor Piercing - 7E1B07:99 - - - Infinite Flare - 7E1B0F:99 - - - Infinite Hover Board and Hover Boots - 7E1AA5:F9 - - - - Judge Dredd (Europe) - - Invincibility - 7E1A91:01 - - - Infinite health - 7E1B11:FF - - - Infinite lives - 7E1AF7:09 - - - Infinte Grenades - 7E1B01:99 - - - Infinite Boing - 7E1B0D:99 - - - Infinite Richochet - 7E1AFF:99 - - - Infinite Seeker - 7E1B09:99 - - - Infinite Double Whammie - 7E1B0B:99 - - - Infinite Incindiary - 7E1B05:99 - - - Infinte High Explosive - 7E1B03:99 - - - Infinte Armor Piercing - 7E1B07:99 - - - Infinite Flare - 7E1B0F:99 - - - Infinite Hover Board and Hover Boots - 7E1AA5:F9 - - - - Jungle Book, The (USA) - - Infinite weapons - DD6F-4DD4 - - - Infinite lives - C2CC-4704 - - - Hearts from big jungle fruit restore all energy - DDCF-3F6D - - - Super-jump - Mowgli - E8CA-3DA4 - - - Mega-jump - Mowgli - ECCA-3DA4 - - - 20 seconds from hourglass - D4C0-1FAF - - - 30 seconds from hourglass - D7C0-1FAF - - - Bonus gems worth 2 (don't collect over 100) - D4CA-4DDF - - - Bonus gems worth 3 (don't collect over 100) - D7CA-4DDF - - - Bonus gems worth 4 (don't collect over 100) - D0CA-4DDF - - - Red gems worth 2 (don't collect over 100) - D4C2-4FAF - - - Red gems worth 3 (don't collect over 100) - D7C2-4FAF - - - Red gems worth 4 (don't collect over 100) - D0C2-4FAF - - - The amazing rock (just for fun) - DD65-47AD - - - Start with 9 hearts (normal game) - DBEF-1F67 - - - Start with 6 hearts (normal game) - D1EF-1F67 - - - Start with 1 heart (normal game) - DFEF-1F67 - - - Start with 10 lives (normal game) - DBEF-1DD7 - - - Start with 2 lives (normal game) - DFEF-1DD7 - - - Invincibility - 7E068C:31 - - - Infinite health - 7E010B:04 - - - Have 99 green gems - 7E015D:99 - - - Have 99 red gems - 7E015E:99 - - - - Jungle Strike (USA) - - Infinite ammo - C2A5-476F - - - Infinite armor - C2A9-4FA7 - - - Infinite lives - CEBE-C4D4 - - - Start with less fuel - 7485-C7D1 - - - Start with more fuel - 7485-C7D1 - - - Start with mega fuel - 7485-C701 - - - Start with 0 hellfires - DD86-C761 - - - Start with more hellfires - B186-C761 - - - Start with mega hellfires - B186-C7A1 - - - Start with less gun ammo - DD8B-C4A1 - - - Start with more gun ammo - F18B-C4A1 - - - Start with mega gun ammo - 748B-C4A1 - - - Start with less hydras - FB8B-CFD1 - - - Start with more hydras - EE8B-CFD1 - - - Start with mega hydras - 748B-CF01 - - - - Jurassic Park (USA) (Rev 1) - - Infinite lives - C26A-4700 - - - Cattle Prod energy recharges to about 3/4 full when outside - F682-CFAD - - - Cattle Prod energy recharges to about 1/2 full when outside - FD82-CFAD - - - Cattle Prod energy recharges to about 1/4 full when outside - D682-CFAD - - - Infinite Cattle Prod energy when outside - C285-C76D - - - Infinite 1st weapons when outside - C2CB-3407 - - - Infinite 2nd weapons when outside (except gas grenade) - 8289-4DAD - - - Cattle Prod energy recharges to 1/2 full when inside - EDEA-4767 - - - Infinite Cattle Prod energy when inside - C282-4B65 - - - Infinite 1st weapons when inside - 3CC4-3C65+3CCA-36D5 - - - Infinite 2nd weapons when inside (except gas grenade) - C2C6-3BD1 - - - Infinite continues with 4 lives - C2B8-C4D0 - - - Continue 1st time with 5 lives - D0BC-CDA0 - - - Continue with 5 lives after 1st continue - D0BC-C7D0 - - - Start with 1 egg needed - DF23-3469 - - - Start with 2 lives - DF2E-3DD9 - - - Start with 4 lives - D72E-3DD9 - - - Infinite health - 7E02EB:03 - - - Infinite lives (alt) - 7E02A3:03 - - - Infinite ammo - all weapons - 7E028B:20+7E0295:20+7E029F:20 - - - Generator on - 7E00F0:EF - - - Have level 1 security card - 7E0265:01 - - - Have level 2 security card - 7E0267:01 - - - Have all 18 Eggs - 7E0E0F:00+7E0E10:00 - - - Have John Hammond ID Card - 7E0253:01 - - - Have Dr. Ellie Sattler ID Card - 7E0255:01 - - - Have Robert Muldoon ID Card - 7E0257:01 - - - Have Dr. Allen Grant ID Card - 7E0259:01 - - - Have Donald Gennaro ID Card - 7E025B:01 - - - Have Ray Arnold ID Card - 7E025E:01 - - - Have Dennis Nedry ID Card - 7E0260:01 - - - Have Dr. Henry Wu ID Card - 7E0261:01 - - - Have Dr. Ian Malcolm ID Card - 7E0263:01 - - - - Jurassic Park (USA) - - Infinite lives - C26A-4700 - - - Cattle Prod energy recharges to about 3/4 full when outside - F682-CFAD - - - Cattle Prod energy recharges to about 1/2 full when outside - FD82-CFAD - - - Cattle Prod energy recharges to about 1/4 full when outside - D682-CFAD - - - Infinite Cattle Prod energy when outside - C285-C76D - - - Infinite 1st weapons when outside - C2CB-3407 - - - Infinite 2nd weapons when outside (except gas grenade) - 8289-4DAD - - - Cattle Prod energy recharges to 1/2 full when inside - EDEA-4767 - - - Infinite Cattle Prod energy when inside - C282-4B65 - - - Infinite 1st weapons when inside - 3CC4-3C65+3CCA-36D5 - - - Infinite 2nd weapons when inside (except gas grenade) - C2C6-3BD1 - - - Infinite continues with 4 lives - C2B8-C4D0 - - - Continue 1st time with 5 lives - D0BC-CDA0 - - - Continue with 5 lives after 1st continue - D0BC-C7D0 - - - Start with 1 egg needed - DF23-3469 - - - Start with 2 lives - DF2E-3DD9 - - - Start with 4 lives - D72E-3DD9 - - - Infinite health - 7E02EB:03 - - - Infinite lives (alt) - 7E02A3:03 - - - Infinite ammo - all weapons - 7E028B:20+7E0295:20+7E029F:20 - - - Generator on - 7E00F0:EF - - - Have level 1 security card - 7E0265:01 - - - Have level 2 security card - 7E0267:01 - - - Have all 18 Eggs - 7E0E0F:00+7E0E10:00 - - - Have John Hammond ID Card - 7E0253:01 - - - Have Dr. Ellie Sattler ID Card - 7E0255:01 - - - Have Robert Muldoon ID Card - 7E0257:01 - - - Have Dr. Allen Grant ID Card - 7E0259:01 - - - Have Donald Gennaro ID Card - 7E025B:01 - - - Have Ray Arnold ID Card - 7E025E:01 - - - Have Dennis Nedry ID Card - 7E0260:01 - - - Have Dr. Henry Wu ID Card - 7E0261:01 - - - Have Dr. Ian Malcolm ID Card - 7E0263:01 - - - - Jurassic Park Part 2 - The Chaos Continues (USA) (En,Fr,De,It) - - Almost invincible - 8BEB-C22D+8B65-1C67 - - - Invincibility after one hit until you enter a new screen - 82B6-C704 - - - Infinite health against some larger dinosaurs - 6DED-3A9D - - - One hit kills on some dinosaurs - D462-48DD - - - Regular Gun is super strong - 0D6A-106E - - - Flash longer after getting hit - EE30-1DAF - - - Don't flash after getting hit - DD30-1DAF - - - Velociraptor takes more damage - 4DC5-C67C - - - Start with less Machine Gun ammo - DEC0-397D - - - Start with more Shotgun ammo - 10C0-31ED - - - Start with less Tranquilizer Gun ammo - FDC9-315D - - - Start with more Tranquilizer Missiles - 10C1-307D - - - Invincibility - P1 - 7EB04A:0E - - - Infinite health - P1 - 7EB032:28 - - - Infinite Machine Gun ammo - 7EA9B0:FF - - - Infinite Shotgun ammo - 7EA9B2:FF - - - Infinite Grenade Launcher - 7EA9B6:FF - - - Infinite Dino stock - 7E0008:64 - - - Have Rifle - 7EB040:00 - - - Have Machine Gun - 7EB040:01 - - - Have Shotgun - 7EB040:02 - - - Have Charge Gun - 7EB040:03 - - - Have Tranquilizer Gun - 7EB040:04 - - - Have Big Bomb Gun - 7EB040:05 - - - Have Big Bomb Gun with Dinosaur icon - 7EB040:07 - - - Have Needle Gun with clock icon - 7EB040:08 - - - - Justice League Task Force (USA) - - Infinite health - P1 - 7E0CF7:60 - - - No health - P2 - 7E0CF9:00 - - - Infinite time - 7E0335:99 - - - Win match after one round - 7E0547:02+7E0EFB:02 - - - - Ka-blooey (USA) - - Infinite lives - C261-0F0D - - - Bonus timer doesn't count down - 3C27-6D0D - - - Level is completed after only one bomb goes off - BAC8-07D4 - - - Start with 1 life instead of 5 - DF6B-D76D - - - Start with 3 lives - D76B-D76D - - - Start with 10 lives - DC6B-D76D - - - Start with 25 lives - FB6B-D76D - - - Start with 50 lives - 746B-D76D - - - Start with 75 lives - 086B-D76D - - - Start with 98 lives - 146B-D76D - - - Start on level 2 - BA25-07D7+DF25-04D7 - - - Start on level 3 - BA25-07D7+D425-04D7 - - - Start on level 4 - BA25-07D7+D725-04D7 - - - Start on level 5 - BA25-07D7+D025-04D7 - - - Start on level 6 - BA25-07D7+D925-04D7 - - - Start on level 7 - BA25-07D7+D125-04D7 - - - Start on level 8 - BA25-07D7+D525-04D7 - - - Start on level 9 - BA25-07D7+D625-04D7 - - - Start on level 10 - BA25-07D7+DB25-04D7 - - - Start on level 11 - BA25-07D7+DC25-04D7 - - - Start on level 12 - BA25-07D7+D825-04D7 - - - Start on level 13 - BA25-07D7+DA25-04D7 - - - Start on level 14 - BA25-07D7+D225-04D7 - - - Start on level 15 - BA25-07D7+D325-04D7 - - - Start on level 16 - BA25-07D7+DE25-04D7 - - - Start on level 17 - BA25-07D7+FD25-04D7 - - - Start on level 18 - BA25-07D7+FF25-04D7 - - - Start on level 19 - BA25-07D7+F425-04D7 - - - Start on level 20 - BA25-07D7+F725-04D7 - - - Start on level 21 - BA25-07D7+F025-04D7 - - - Start on level 22 - BA25-07D7+F925-04D7 - - - Start on level 23 - BA25-07D7+F125-04D7 - - - Start on level 24 - BA25-07D7+F525-04D7 - - - Start on level 25 - BA25-07D7+F625-04D7 - - - Start on level 26 - BA25-07D7+FB25-04D7 - - - Start on level 27 - BA25-07D7+FC25-04D7 - - - Start on level 28 - BA25-07D7+F825-04D7 - - - Start on level 29 - BA25-07D7+FA25-04D7 - - - Start on level 30 - BA25-07D7+F225-04D7 - - - Start on level 31 - BA25-07D7+F325-04D7 - - - Start on level 32 - BA25-07D7+FE25-04D7 - - - Start on level 33 - BA25-07D7+4D25-04D7 - - - Start on level 34 - BA25-07D7+4F25-04D7 - - - Start on level 35 - BA25-07D7+4425-04D7 - - - Start on level 36 - BA25-07D7+4725-04D7 - - - Start on level 37 - BA25-07D7+4025-04D7 - - - Start on level 38 - BA25-07D7+4925-04D7 - - - Start on level 39 - BA25-07D7+4125-04D7 - - - Start on level 40 - BA25-07D7+4525-04D7 - - - Start on level 41 - BA25-07D7+4625-04D7 - - - Start on level 42 - BA25-07D7+4B25-04D7 - - - Start on level 43 - BA25-07D7+4C25-04D7 - - - Start on level 44 - BA25-07D7+4825-04D7 - - - Start on level 45 - BA25-07D7+4A25-04D7 - - - Start on level 46 - BA25-07D7+4225-04D7 - - - Start on level 47 - BA25-07D7+4325-04D7 - - - Start on level 48 - BA25-07D7+4E25-04D7 - - - Start on level 49 - BA25-07D7+7D25-04D7 - - - Start on level 50 - BA25-07D7+7F25-04D7 - - - Start on level 51 - BA25-07D7+7425-04D7 - - - Start on level 52 - BA25-07D7+7725-04D7 - - - Start on level 53 - BA25-07D7+7025-04D7 - - - Start on level 54 - BA25-07D7+7925-04D7 - - - Start on level 55 - BA25-07D7+7125-04D7 - - - Start on level 56 - BA25-07D7+7525-04D7 - - - Start on level 57 - BA25-07D7+7625-04D7 - - - Start on level 58 - BA25-07D7+7B25-04D7 - - - Start on level 59 - BA25-07D7+7C25-04D7 - - - Start on level 60 - BA25-07D7+7825-04D7 - - - Start on level 61 - BA25-07D7+7A25-04D7 - - - Start on level 62 - BA25-07D7+7225-04D7 - - - Start on level 63 - BA25-07D7+7325-04D7 - - - Start on level 64 - BA25-07D7+7E25-04D7 - - - Start on level 65 - BA25-07D7+0D25-04D7 - - - Start on level 66 - BA25-07D7+0F25-04D7 - - - Start on level 67 - BA25-07D7+0425-04D7 - - - Start on level 68 - BA25-07D7+0725-04D7 - - - Start on level 69 - BA25-07D7+0025-04D7 - - - Start on level 70 - BA25-07D7+0925-04D7 - - - Start on level 71 - BA25-07D7+0125-04D7 - - - Start on level 72 - BA25-07D7+0525-04D7 - - - Start on level 73 - BA25-07D7+0625-04D7 - - - Start on level 74 - BA25-07D7+0B25-04D7 - - - Start on level 75 - BA25-07D7+0C25-04D7 - - - Start on level 76 - BA25-07D7+0825-04D7 - - - Start on level 77 - BA25-07D7+0A25-04D7 - - - Start on level 78 - BA25-07D7+0225-04D7 - - - Start on level 79 - BA25-07D7+0325-04D7 - - - Start on level 80 - BA25-07D7+0E25-04D7 - - - Start on level 81 - BA25-07D7+9D25-04D7 - - - Start on level 82 - BA25-07D7+9F25-04D7 - - - Start on level 83 - BA25-07D7+9425-04D7 - - - Start on level 84 - BA25-07D7+9725-04D7 - - - Start on level 85 - BA25-07D7+9025-04D7 - - - Start on level 86 - BA25-07D7+9925-04D7 - - - Start on level 87 - BA25-07D7+9125-04D7 - - - Start on level 88 - BA25-07D7+9525-04D7 - - - Start on level 89 - BA25-07D7+9625-04D7 - - - Start on level 90 - BA25-07D7+9B25-04D7 - - - Start on level 91 - BA25-07D7+9C25-04D7 - - - Start on level 92 - BA25-07D7+9825-04D7 - - - Start on level 93 - BA25-07D7+9A25-04D7 - - - Start on level 94 - BA25-07D7+9225-04D7 - - - Start on level 95 - BA25-07D7+9325-04D7 - - - Start on level 96 - BA25-07D7+9E25-04D7 - - - Start on level 97 - BA25-07D7+1D25-04D7 - - - Start on level 98 - BA25-07D7+1F25-04D7 - - - Start on level 99 - BA25-07D7+1425-04D7 - - - Start on level 100 - BA25-07D7+1725-04D7 - - - Start on level 101 - BA25-07D7+1025-04D7 - - - Start on level 102 - BA25-07D7+1925-04D7 - - - Start on level 103 - BA25-07D7+1125-04D7 - - - Start on level 104 - BA25-07D7+1525-04D7 - - - Start on level 105 - BA25-07D7+1625-04D7 - - - Start on level 106 - BA25-07D7+1B25-04D7 - - - Start on level 107 - BA25-07D7+1C25-04D7 - - - Start on level 108 - BA25-07D7+1825-04D7 - - - Start on level 109 - BA25-07D7+1A25-04D7 - - - Start on level 110 - BA25-07D7+1225-04D7 - - - Start on level 111 - BA25-07D7+1325-04D7 - - - Start on level 112 - BA25-07D7+1E25-04D7 - - - Start on level 113 - BA25-07D7+5D25-04D7 - - - Start on level 114 - BA25-07D7+5F25-04D7 - - - Start on level 115 - BA25-07D7+5425-04D7 - - - Start on level 116 - BA25-07D7+5725-04D7 - - - Start on level 117 - BA25-07D7+5025-04D7 - - - Start on level 118 - BA25-07D7+5925-04D7 - - - Start on level 119 - BA25-07D7+5125-04D7 - - - Start on level 120 - BA25-07D7+5525-04D7 - - - Start on level 121 - BA25-07D7+5625-04D7 - - - Start on level 122 - BA25-07D7+5B25-04D7 - - - Start on level 123 - BA25-07D7+5C25-04D7 - - - Start on level 124 - BA25-07D7+5825-04D7 - - - Start on level 125 - BA25-07D7+5A25-04D7 - - - Start on level 126 - BA25-07D7+5225-04D7 - - - Start on level 127 - BA25-07D7+5325-04D7 - - - Start on level 128 - BA25-07D7+5E25-04D7 - - - Start on level 129 - BA25-07D7+6D25-04D7 - - - Start on level 130 - BA25-07D7+6F25-04D7 - - - - Kamen Rider (Japan) - - Invincibility - C268-3DD4 - - - Infinite health - 0D68-34D4+6E68-3464+1C68-34A4+DA68-37D4+5368-3704 - - - Infinite lives - A2EF-1FD5 - - - Infinite health (alt) - 7E0C6A:40 - - - Infinite lives (alt) - 7E0038:02 - - - - Karura Ou (Japan) - - Invincibility - 7E0065:9E - - - Infinite health - 7EF801:04 - - - Infinite special power - 7E1F0D:08 - - - Infinite Warrior Force - 7E0089:FF - - - Have 99 gems - 7E1F0E:63 - - - Have Aura Attack - 7E1F0B:01 - - - Have Comet Flash - 7E1F0B:02 - - - Have Lightning Strike - 7E1F0B:03 - - - Have Time Stop - 7E1F0B:04 - - - Have Star Fire - 7E1F0B:05 - - - Have Warrior Force - 7E1F0B:06 - - - Have Heal - 7E1F0B:07 - - - Have Fiery Phoenix - 7E1F0B:08 - - - All enemies frozen - 7EFA69:8D+7EFA6A:8D+7EFA6B:8D+7EFA73:8D+7EFA6C:8D+7EFA74:8D+7EFA6D:8D+7EFA75:8D+7EFA6E:8D+7EFA7D:8D+7EFA76:8D+7EFA6F:8D+7EFA7E:8D+7EFA77:8D+7EFA70:8D+7EFA7F:8D+7EFA78:8D+7EFA71:8D+7EFA79:8D+7EFA72:8D+7EFA7A:8D+7EFA7B:8D+7EFA7C:8D+7EFA60:8D+7EFA61:8D+7EFA62:8D+7EFA63:8D+7EFA64:8D+7EFA65:8D+7EFA66:8D+7EFA67:8D+7EFA68:8D - - - - Kawasaki Caribbean Challenge (USA) - - Only 1 lap required to qualify instead of 2 - DF6F-64AD - - - Races are 1 lap instead of 5 - DF67-676D - - - Races are 2 laps - D467-676D - - - Races are 3 laps - D767-676D - - - Races are 4 laps - D067-676D - - - Coming in first is worth 9 points instead of 5 - DB82-0DD7 - - - Coming in last is worth 5 points instead of 0 - D982-0FD7 - - - Coming in last is worth 9 points - DB82-0FD7 - - - Always advance to the next island regardless of points - 6D80-DD04 - - - Each island requires 3 points instead of 5 - D7C2-0F04 - - - Each island requires 4 points - D0C2-0F04 - - - Each island requires 6 points - D1C2-0F04 - - - Each island requires 7 points - D5C2-0F04 - - - Opponents drive erratically - player is guaranteed 1st place - 6967-07AD - - - Start the Challenge with the 2nd motorcycle and jet ski - 6967-070D - - - - Ken Griffey Jr. Presents Major League Baseball (USA) - - Can't strike out - C2BE-179D - - - No outs except strike outs - C2A2-4D94+C2AA-47B4 - - - Can't walk a player - CBB3-1D2D - - - Invisible baserunners - DF27-CFA4 - - - 2 outs and whole team is out - D4C3-170F - - - 1 ball and you walk - DFC3-170F - - - 2 balls and you walk - D4C3-170F - - - 1 strike and you're out - DFCE-1F0F - - - 2 strikes and you're out - D4CE-1F0F - - - Computer can't score - C28A-3FA7 - - - Computer can't score - CBB0-4797 - - - Computer can't score - C283-34D7 - - - - Kendo Rage (USA) - - Invincibility - 7E1476:03 - - - Infinite HP - 7E148E:40 - - - Infinite lives - 7E0CE2:03 - - - Infinite PSY power - 7E148A:40 - - - Have 9 Yellow Balls - 7E1494:09 - - - Have Triple Shot - 7E1492:00 - - - Have Multi-Attack - 7E1492:08 - - - Have Flame Shot - 7E1492:10 - - - Start on round 1 - Cliff Hanger - 7E0CE4:00 - - - Start on round 2 - Ice Queen - 7E0CE4:01 - - - Start on round 3 - The Pond - 7E0CE4:02 - - - Start on round 4 - Technodvne - 7E0CE4:03 - - - Start on round 5 - The Commute - 7E0CE4:04 - - - Start on round 6 - Triathalon - 7E0CE4:05 - - - Start on round 7 - School Daze - 7E0CE4:06 - - - - Kid Klown in Crazy Chase (USA) - - Infinite health - C229-1D67 - - - Infinite continues - C238-1F27 - - - - Kidou Butouden G Gundam (Japan) - - Infinite health - 7E07D4:80 - - - - Kidou Senshi V Gundam (Japan) - - Infinite health - 7E0522:69 - - - One hit kills - 7E06A2:00+7E0822:00 - - - Infinite lives - 7E0306:63 - - - - Kidou Soukou Dion (Japan) - - Invincibility (blinking) - 7E0A50:4C - - - Infinite health - 7E0B48:05 - - - Infinite bombs - 7E0B14:09 - - - - Kikou Keisatsu Metal Jack (Japan) - - Invincibility - ED88-A467 - - - Infinite health - C983-A9CF - - - Infinite lives - C9A7-A76D - - - Infinite health (alt) - 7E0060:31 - - - Infinite lives (alt) - 7E0061:09 - - - Infinite time - 7E0031:06+7E0032:00 - - - Infinite ammo - 7E006B:63 - - - Moon-jump - 7E005F:01 - - - Moon-jump when attacking - 7E0072:20 - - - Can't walk - 7E006C:03 - - - - Killer Instinct (USA) (Rev 1) - - Invincibility - P1 - 3DBB-3F07+A7BB-3407+DDBB-3F67+EDBB-34D7 - - - Hit anywhere - P1 - 0AB6-3D67+CAB6-3DA7+CFB6-3FD7+D2B6-3D07+EDB6-3DD7 - - - Infinite health - P1 - 7E0D24:78+7E0D26:78 - - - Infinite health - P2 - 7E0D28:78+7E0D2A:78 - - - No health - P1 - 7E0D24:00+7E0D26:00 - - - No health - P2 - 7E0D28:00+7E0D2A:00 - - - CPU cannot move from starting position - 7E0E08:01 - - - CPU cannot perform special or danger moves - CB2A-170F+DD2A-176F - - - Play as Eyedol - 7E024E:0A - - - - Killer Instinct (USA) - - Master code - must be entered - 3C61-D4DF - - - Invincibility - P1 - 3DB6-3467+A7B6-3767+DDB6-34A7+EDB6-3707 - - - Hit anywhere - P1 - 0AB5-3FA7+CFB5-3407+CFB5-34D7+D2B5-3F67+EDB5-3F07 - - - CPU cannot perform special or danger moves - CB24-CFDF+DD24-CF0F - - - P1 takes all damage - EEC1-34AF - - - Always fight Jago - C265-1467+60E6-47D2 - - - Always fight Combo - C265-1467+6EE6-47D2 - - - Always fight Thunder - C265-1467+6BE6-47D2 - - - Always fight Glacius - C265-1467+6FE6-47D2 - - - Always fight Cinder - C265-1467+6DE6-47D2 - - - Always fight Orchid - C265-1467+64E6-47D2 - - - Always Fight Riptor - C265-1467+B0E6-47D2 - - - Always fight Sabrewulf - C265-1467+CBE6-4702 - - - Always fight Spinal - C265-1467+CBEC-4702 - - - Always fight Fulgore - C265-1467+CBE8-4D62 - - - Always fight Eyedol - C265-1467+CBE8-4FA2 - - - Infinite health - P1 - 7E0D24:78+7E0D26:78 - - - Infinite health - P2 - 7E0D28:78+7E0D2A:78 - - - No health - P1 - 7E0D24:00+7E0D26:00 - - - No health - P2 - 7E0D28:00+7E0D2A:00 - - - CPU cannot move from starting position - 7E0E08:01 - - - Play as Eyedol - 7E024E:0A - - - - King Arthur & The Knights of Justice (USA) - - Infinite health - 8B6B-14F4 - - - Infinite attack power - 33BD-14AF+33B9-176F - - - Infinite healing herbs - C28A-4DAC - - - Start with 99 healing herbs - 14E6-37D4 - - - Start with 99 shield attacks - 14EB-3764 - - - - King Arthur's World (USA) - - Infinite men - if you have at least one of that type - 8EA8-642F+8EAC-6F2F - - - Infinite spells - must have at least one to use - 8EBC-6DEC - - - Start with 4 of each type of spell - C4EE-6D79+7DEE-6D59+D4EE-6D89 - - - Start with many men - CBEB-6405+F0EB-6465+DDEB-64A5 - - - Start on training level 2 - F561-DD86 - - - Start on training level 3 - FB61-DD86 - - - Start on training level 4 - F161-DD86 - - - Start on training level 5 - F261-DD86 - - - Start on training level 6 - F361-DD86 - - - Start on training level 7 - FE61-DD86 - - - Start on training level 8 - 4D61-DD86 - - - Start on training level 9 - FC61-DD86 - - - Start on real world level 1 - DF61-DD86 - - - Start on real world level 2 - D461-DD86 - - - Start on real world level 3 - D761-DD86 - - - Start on real world level 4 - D061-DD86 - - - Start on goblin underworld level 1 - D961-DD86 - - - Start on goblin underworld level 2 - D161-DD86 - - - Start on goblin underworld level 3 - D561-DD86 - - - Start on goblin underworld level 4 - D661-DD86 - - - Start on cloud world level 1 - DA61-DD86 - - - Start on cloud world level 2 - D261-DD86 - - - Start on cloud world level 3 - D361-DD86 - - - Start on cloud world level 4 - DE61-DD86 - - - Start on cloud world level 5 - FD61-DD86 - - - Start on cloud world level 6 - FF61-DD86 - - - Start on cloud world level 7 - F461-DD86 - - - - King of Dragons (USA) - - Invincibility - both players - ED76-E4AF - - - Infinite health - both players - C9B5-7FDD - - - Infinite time - DD0E-EF0D - - - Infinite credits - CE05-8F0D - - - One hit kills - 4069-EF64+4069-E4D4 - - - Hit anywhere - 6D61-8DA4+6D64-87A4+6D66-87A4+6D6E-54D4+6D6E-5D04 - - - Start with level 6 Sword - 6351-E40D+6955-EDDD - - - Start with level 6 Shield - 6355-E7AD+6956-EF6D - - - Invincibility (blinking) - P1 - 7E0BB4:FF - - - Invincibility (blinking) - P2 - 7E0CB4:FF - - - Infinite health - P1 - 7E0B9A:09 - - - Infinite health - P2 - 7E0C9A:09 - - - Max attack - P1 - 7E0BEE:07 - - - Max attack - P2 - 7E0CEE:07 - - - Max defense - P1 - 7E0BF0:07 - - - Max defense - P2 - 7E0CF0:07 - - - Infinite lives - P1 - 7E0BEC:09 - - - Infinite lives - P2 - 7E0CEC:09 - - - Infinite time (alt) - 7E1F94:98 - - - Infinite time for player select screen - 7E5C24:0A - - - Start on stage 2 - Treasure In An Old Castle - 7E0658:01 - - - Start on stage 3 - Battle On Mountain Peak - 7E0658:02 - - - Start on stage 4 - Cave Of Hydra - 7E0658:03 - - - Start on stage 5 - To The Norde Isle - 7E0658:04 - - - Start on stage 6 - The Giant In The Shrine - 7E0658:05 - - - Start on stage 7 - Trent Woods - 7E0658:06 - - - Start on stage 8 - To The Castle - 7E0658:07 - - - Start on stage 9 - In The Castle - 7E0658:08 - - - Start on stage 10 - Underpass - 7E0658:09 - - - Start on stage 11 - Battle In The Front - 7E0658:0A - - - Start on stage 12 - Castle Garenos - 7E0658:0B - - - Start on stage 13 - Dark Wizard - 7E0658:0C - - - Start on stage 14 - A Cave In The Woods - 7E0658:0D - - - Start on stage 15 - Underground Labyrinth - 7E0658:0E - - - Start on stage 16 - Golden Limestone Cave - 7E0658:0F - - - - King of the Monsters (USA) - - Faster timer - F5AF-D5A1 - - - Slower timer - 1DAF-DFA1 - - - 3 power points needed to get to next power level - D7A1-0DA1 - - - Start with less health - P1 - 6DB2-AF67 - - - Start with less health - P2 - 6DC4-D764 - - - Infinite health - P1 - 7E0A50:FF - - - No health - P2 - 7E0B40:00 - - - Infinite time - minutes - 7E29F3:09 - - - Infinite time - seconds - 7E29F2:54 - - - - King of the Monsters 2 (USA) - - Infinite health - 7E1A3A:18 - - - Infinite lives - 7E09CC:03 - - - Infinite time - 7E0942:69 - - - Always have 2 power-ups - 7E1CB4:02 - - - - Kirby Super Star (USA) - - Infinite health - 62E2-AD61 - - - Infinite lives - C263-AF02 - - - Always have invincibility - 3035F1:0A - - - Infinite health (friend) - 40137E:30 - - - - Kirby's Avalanche (USA) - - Boulder warnings don't appear - 80A8-C4CD - - - Only red blobs fall - CB60-C737+DD69-CD47+DD69-CD17 - - - Only yellow blobs fall - CB60-C737+DF69-CD47+DF69-CD17 - - - Only green blobs fall - CB60-C737+D769-CD47+D769-CD17 - - - Only purple blobs fall - CB60-C737+D069-CD47+D069-CD17 - - - Only blue blobs fall - CB60-C737+D969-CD47+D969-CD17 - - - Only red and yellow blobs fall - CB60-C737+DD69-CD47+DF69-CD17 - - - Only red and green blobs fall - CB60-C737+DD69-CD47+D769-CD17 - - - Only red and purple blobs fall - CB60-C737+DD69-CD47+D069-CD17 - - - Only red and blue blobs fall - CB60-C737+DD69-CD47+D969-CD17 - - - Only red blobs with a boulder fall - CB60-C737+DD69-CD47+D169-CD17 - - - Only yellow and red blobs fall - CB60-C737+DF69-CD47+DD69-CD17 - - - Only yellow and green blobs fall - CB60-C737+DF69-CD47+D769-CD17 - - - Only yellow and purple blobs fall - CB60-C737+DF69-CD47+D069-CD17 - - - Only yellow and blue blobs fall - CB60-C737+DF69-CD47+D969-CD17 - - - Only yellow blobs with a boulder fall - CB60-C737+DF69-CD47+D169-CD17 - - - Only green and yellow blobs fall - CB60-C737+D769-CD47+DF69-CD17 - - - Only green and red blobs fall - CB60-C737+D769-CD47+DD69-CD17 - - - Only green and purple blobs fall - CB60-C737+D769-CD47+D069-CD17 - - - Only green and blue blobs fall - CB60-C737+D769-CD47+D969-CD17 - - - Only green blobs with a boulder fall - CB60-C737+D769-CD47+D169-CD17 - - - Only purple and yellow blobs fall - CB60-C737+D069-CD47+DF69-CD17 - - - Only purple and green blobs fall - CB60-C737+D069-CD47+D769-CD17 - - - Only purple and red blobs fall - CB60-C737+D069-CD47+DD69-CD17 - - - Only purple and blue blobs fall - CB60-C737+D069-CD47+D969-CD17 - - - Only purple blobs with a boulder fall - CB60-C737+D069-CD47+D169-CD17 - - - Only blue and yellow blobs fall - CB60-C737+D969-CD47+DF69-CD17 - - - Only blue and green blobs fall - CB60-C737+D969-CD47+D769-CD17 - - - Only blue and purple blobs fall - CB60-C737+D969-CD47+D069-CD17 - - - Only blue and red blobs fall - CB60-C737+D969-CD47+DD69-CD17 - - - Only blue blobs with a boulder fall - CB60-C737+D969-CD47+D169-CD17 - - - Only a boulder and yellow blobs fall - CB60-C737+D169-CD47+DF69-CD17 - - - Only a boulder and green blobs fall - CB60-C737+D169-CD47+D769-CD17 - - - Only a boulder and purple blobs fall - CB60-C737+D169-CD47+D069-CD17 - - - Only a boulder and blue blobs fall - CB60-C737+D169-CD47+D969-CD17 - - - Only a boulder and red blobs fall - CB60-C737+D169-CD47+DD69-CD17 - - - Only boulders fall - CB60-C737+D169-CD47+D169-CD17 - - - Disable the next box - CBB7-4D4D+3CB7-4DCD+CBB7-4F1D+3CB7-4F3D - - - - Kirby's Dream Course (USA) - - Infinite Strawberries - 82CF-4D6E - - - Don't lose a life from falling out of bounds - 82E2-4DD4 - - - Don't ever gain any Strawberries - 82CD-4D0E - - - Start with 5 lives - D0A9-4F6D - - - Start with 7 lives - D1A9-4F6D - - - Start with 9 lives - D6A9-4F6D - - - Start with 1 Strawberry - DFAD-1F0D - - - Start with 2 Strawberries - D4AD-1F0D - - - Start with 3 Strawberries - D7AD-1F0D - - - Infinite Tomatoes - 83AC12:BD - - - - Kirby's Dream Land 3 (USA) - - Always have Invincibility - Kirby - 4054B2:01 - - - Infinite life - Kirby - 4039D1:0A - - - Infinite life - Partner - 4039D3:08 - - - Infinite lives - 4039CF:0A - - - Infinite Mouth Shot - 4054ED:02 - - - Always have No Mouth power - 4054A9:00 - - - Always have Fireball Mouth power - 4054A9:01 - - - Always have Stone Mouth power - 4054A9:02 - - - Always have Ice Mouth power - 4054A9:03 - - - Always have Needle Mouth power - 4054A9:04 - - - Always have Broom Mouth power - 4054A9:05 - - - Always have Parasol Mouth power - 4054A9:06 - - - Always have Spark Mouth power - 4054A9:07 - - - Always have Boomerang Mouth power - 4054A9:08 - - - Have all level 1 Stars - 4053A7:01+4053A8:01+4053A9:01+4053AA:01+4053AB:01+4053AC:01 - - - Have all level 2 Stars - 4053AE:01+4053AF:01+4053B0:01+4053B1:01+4053B2:01+4053B3:01 - - - Have all level 3 Stars - 4053B5:01+4053B6:01+4053B7:01+4053B8:01+4053B9:01+4053BA:01 - - - Have all level 4 Stars - 4053BC:01+4053BD:01+4053BE:01+4053BF:01+4053C0:01+4053C1:01 - - - Have all level 5 Stars - 4053C3:01+4053C4:01+4053C5:01+4053C6:01+4053C7:01+4053C8:01 - - - Start a new game with 9 lives - DC85-64D4 - - - Start a new game with 25 lives - FC85-64D4 - - - Start a new game with 98 lives - 1785-64D4 - - - - Knights of the Round (USA) - - Invincibility - ED2F-3FD9 - - - More invincibility time after successful block - EE2C-C7DC - - - Infinite health - 8B29-4D65 - - - Almost infinite health - 4029-4DD5+4022-1DD5 - - - Maximum health from most food - DDAD-17BF - - - Infinite lives - 8B27-4F68 - - - Infinite time - C26C-47AF - - - One hit kills - 4027-37A5+4038-C760+4033-4760 - - - No health lost from special move - DD2A-3406 - - - No health lost from special move (alt) - 8B2A-34A6 - - - Less health lost from special move - D12A-3406 - - - More health lost from special move - F02A-3406 - - - Super-jump - Arthur - DAC9-1DDB - - - Super-jump - Lancelot - DAC0-17DB - - - Super-jump - Percival - DAC9-1FDB - - - Slower timer - 1D6B-47AF - - - Faster timer - F36B-47AF - - - Enable hidden options screen in the options menu - 4DA1-14DD+84A1-140D+ABA1-146D+1DA8-14D4 - - - Start on stage 2 - 3C81-4461+CB81-44A1+DF81-47D1 - - - Start on stage 3 - 3C81-4461+CB81-44A1+D481-47D1 - - - Start on stage 4 - 3C81-4461+CB81-44A1+D781-47D1 - - - Start on stage 5 - 3C81-4461+CB81-44A1+D081-47D1 - - - Start on stage 6 - 3C81-4461+CB81-44A1+D981-47D1 - - - Invincibility (blinking) - P1 - 7E4136:02 - - - Invincibility (blinking) - P2 - 7E4336:02 - - - Infinite health (alt) - 7E4008:50 - - - Infinite time (alt) - 7E0C4A:59 - - - Quick level gain - P1 - 7E4149:00+7E414A:00+7E414B:00+7E414C:00 - - - Quick level gain - P2 - 7E4349:00+7E434A:00+7E434B:00+7E434C:00 - - - - Kouryuu no Mimi (Japan) - - Infinite health - CB6D-1F24+0D6D-14F4+DD6D-1494+626D-17F4 - - - Infinite health (alt) - 7E09C0:40 - - - Infinite Ring power - 7E008C:20 - - - - Krusty's Super Fun House (USA) (Rev 1) - - Infinite lives - 7E11A3:03 - - - Infinite weapons - 7E032C:0A - - - - Krusty's Super Fun House (USA) - - Invincibility - Krusty - 8725-0D64 - - - Infinite Custard Pies - C1E1-D7DD - - - Infinite Superballs - C1E2-D76D - - - Infinite lives - C265-0FA7 - - - Custard Pie bonus worth 2 pies instead of 10 - D43D-67D7 - - - Custard Pie bonus worth 5 pies - D93D-67D7 - - - Custard Pie bonus same as Superball bonus (disable is game freezes) - D03D-6767 - - - Superball bonus worth 2 balls instead of 5 (disable is game freezes) - D43F-6F67 - - - Superball bonus worth 10 balls (disable is game freezes) - DC3F-6F67 - - - Superball bonus same as Custard Pie bonus (disable is game freezes) - 6D3F-6DA7+E03F-6FD7 - - - Food bonuses restore less strength - D53E-0407 - - - Food bonuses restore more strength - F33E-0407 - - - Food bonuses restore Krusty to full strength - 173E-0407 - - - Food bonuses also get Custard Pie bonus - D03D-6FD7 - - - Food bonuses also get Superball bonus - D33D-6FD7 - - - Doll bonus same as Custard Pie bonus - 3134-6D67+6D34-6D07 - - - Doll bonus same as Superball bonus - ED34-6D67+6D34-6D07 - - - Doll bonus same as food bonus - 2F34-6D67+6D34-6D07 - - - Jump higher - Krusty - FD3C-D704 - - - Jump much higher - Krusty - D63C-D704 - - - Start with section 1 finished - DD65-67DF+6D65-670F+D965-676F - - - Start with section 2 finished - DF65-67DF+6D65-670F+D965-676F - - - Start with section 3 finished - D465-67DF+6D65-670F+D965-676F - - - Start with section 4 finished - D765-67DF+6D65-670F+D965-676F - - - Start with access to all sections - D065-67DF+6D65-670F+D965-676F - - - Start with 1 life instead of 3 - DF6C-D704 - - - Start with 2 lives - D46C-D704 - - - Start with 5 lives - D96C-D704 - - - Start with 7 lives - D56C-D704 - - - Start with 9 lives - DB6C-D704 - - - Start with 0 Custard Pies - DD6B-D764 - - - Start with 2 Custard Pies - D46B-D764 - - - Start with 5 Custard Pies - D96B-D764 - - - Start with 2 Superballs instead of 10 Custard Pies - D46B-D764+DF6C-DDA4 - - - Start with 5 Superballs - D96B-D764+DF6C-DDA4 - - - Start with 10 Superballs - DF6C-DDA4 - - - - Lagoon (USA) - - HP always recovers instantly - CBB0-0FA0+EEB0-04D0 - - - MP always recovers instantly - CBB0-07A0+EEB9-0DD0 - - - Save always available - 6D8A-6FA8+F78A-64D8 - - - Pit death disabled - 1DA9-04D1 - - - - 1BB5-D769+DFB5-D7A9+3CB6-DDD9 - - Get 100 gold for each creature killed - 1BB5-D769+10B5-D7A9+3CB6-DDD9 - - - Get 200 gold for each creature killed - 1BB5-D769+A6B5-D7A9+3CB6-DDD9 - - - Start with 0 STR - DD23-07DC - - - Start with 100 STR - 1023-07DC - - - Start with 255 STR - EE23-07DC - - - Start with 0 DEF - DD2E-04AC - - - Start with 100 DEF - 102E-04AC - - - Start with 255 DEF - EE2E-04AC - - - Start with 999 DEF - E12E-07DC+F52E-04AC - - - Start with 612 gold - D42D-6D6C - - - Start with 1,380 gold - D92D-6D6C - - - Start with 2,148 gold - D62D-6D6C - - - Start with 8,292 gold - 4D2D-6D6C - - - Start with 22,116 gold - 912D-6D6C - - - Start with 65,380 gold - EE2D-6D6C - - - Start on level 2, MP = 8/8, HP = 17/17, EXP = 0/40 - D422-040C - - - Start on level 3, MP = 10/10, HP = 23/23, EXP = 0/90 - D722-040C - - - Start on level 4, MP = 12/12, HP = 28/28, EXP = 0/170 - D022-040C - - - Start on level 5, MP = 19/19, HP =36/36, EXP = 0/280 - D922-040C - - - Start on level 241, HP = 255, MP = 255, EXP = 22859, walk at a regular speed - EF22-040C - - - Start on level 242, HP = 220, MP = 221, EXP = 30560, walk at a medium speed - E422-040C - - - Infinite HP - 7E0520:FF - - - Infinite MP - 7E0522:FF - - - Have all equipment and magic - 7E04D0:FF+7E04D1:FF+7E04D2:FF+7E04D3:F8 - - - Have all items - 7E04D4:FF+7E04D5:FF+7E04D6:FF+7E04D7:80 - - - Shop item 1 free - 7E045C:00+7E045D:00 - - - Shop item 2 free - 7E045E:00+7E045F:00 - - - Shop item 3 free - 7E0460:00+7E0461:00 - - - Max EXP - 7E052A:FF+7E052B:FF - - - Max level (level 35) - 7E052C:23 - - - Max STR - 7E0525:02 - - - Max DEF - 7E0527:02 - - - Max Gold - 7E0529:FF - - - - Lamborghini American Challenge (USA) - - Always finish first - 58E6-CF18+6D60-C71C+ADE6-CD48+BBE6-CF38+DDE6-CD18+DDE6-CDC8+D4E6-CF48+E360-C7CC+F1E6-C418+FCE6-CFC8+1DE6-C4C8+2DE6-CD38+4D60-C74C+53E6-C448 - - - Don't take damage in races - 8B81-34D7 - - - Free turbos - C22A-377D - - - Repair 10% of car for $100 - C224-CF8F - - - Repair 10% of car for free - 3324-C45F - - - Turbos for $1000 - DC28-348D+DD28-34ED - - - Turbos for $2000 - F028-348D+DD28-34ED - - - Start with 6-speed transmission - D169-443B - - - Start with $128,000 - DD6E-440D+D96E-446D - - - Start with $88,000 - 5D6E-440D+D76E-446D - - - Start with $12,800 - 6D6E-440D - - - Always finish first (alt) - 7E167E:01 - - - Infinite money - 7E0D21:FF+7E0D22:FF - - - Infinite Boost - 7E0DDD:09 - - - - Last Action Hero (USA) - - Invincibility - 62AF-140D - - - Infinite health - C2A0-1D6D - - - Infinite time - C2BF-1FAF - - - Infinite lives - A2CB-4FAF - - - Invincibility (blinking) - 7E03B7:FF - - - Infinite health (alt) - 7E031F:FF - - - Infinite time (alt) - 7E0315:99 - - - Infinite lives (alt) - 7E0316:04 - - - Hit anywhere continually - 4022-440F+4023-470F - - - One hit kills - enemy 1 - 7E0822:00 - - - One hit kills - enemy 2 - 7E0880:00 - - - One hit kills - enemy 3 - 7E08DE:00 - - - Start on stage 2 - 7E030F:02 - - - Start on stage 3 - 7E030F:03 - - - Start on stage 4 - 7E030F:04 - - - Start on stage 5 - 7E030F:05 - - - - Lawnmower Man, The (USA) - - Invincible in Cyber Run level - C268-17AC - - - Invincible in Cyber Tube level - C26A-CD6C - - - Invincible in Cyber Jobe level - C223-1DD5 - - - Invincible in Cyber Space level - C2A2-479C - - - Infinite lives - 40BE-1DAD - - - After you die, your main weapon is fully powered up from then on - D0B5-CDAD+CBB5-CD6D - - - Super-jump - ECB6-4FD7 - - - Energize icon effect lasts 2x longer - D785-376F - - - Energize icon effect lasts 4x longer - D985-376F - - - Bitstream powers up instantly (don't shoot too many bitstreams at once) - D1BB-4F64 - - - Keep weapon power ups once gained - DDB5-CDAD - - - Never lose homing bullets once gained - CEB7-CFAD - - - Never lose rear bullets once gained - CEB7-CDAD - - - - Legend (USA) - - Invincibility - 62A6-3FAD+29A6-34DD+F7A6-340D - - - Infinite health - C2EB-1709 - - - Infinite time - C23F-1DDD - - - Infinite lives - C289-1DD7 - - - One hit kills - 40C6-C469+4081-1F69 - - - Hit anywhere - 40E4-37A0+40ED-37D0+40E0-3DD0+40E0-3FA0+6DED-3FD0+6DEF-3DA0 - - - Infinite health - P1 - 7E130D:08 - - - Infinite magic - P1 - 7E1315:09 - - - Infinite lives - P1 - 7E1309:09 - - - Infinite time (alt) - 7E15EF:09 - - - Infinite Keys - P1 - 7E12F1:63 - - - - Legend of the Mystical Ninja, The (USA) - - Invincibility - 4081-AFAF - - - Infinite health - 89CF-0729 - - - Infinite lives - top-view - 3CA6-A764 - - - Hit anywhere - top view - 4086-0D02+408D-670A - - - Hit anywhere - side view - 4081-070A+4089-0D62 - - - Collect items from anywhere - top view - 408D-0F02 - - - Don't lose most weapons when hit - 40C0-04F9 - - - Pick-up more coins from enemies - 9DAF-DD6E - - - No coins used up when thrown - DDED-D4D4 - - - Faster timer - F0BE-AF20 - - - Slower timer - 1DBE-AF20 - - - Die after one hit - DDCF-0429 - - - Start with 6 lives - D927-A464 - - - Start with 9 lives - D627-A464 - - - Invincibility - P1 - 7E0592:02 - - - Infinite health - P1 - 7E1AB2:10 - - - Infinite money - P1 - 7E1AAC:99+7E1AAD:99+7E1AAE:09 - - - Infinite lives - P1 - 7E1AB0:04 - - - Have Jutsu technique 1 - 7E1AD6:01 - - - Have Jutsu technique 2 - 7E1AD8:01 - - - Have Jutsu technique 3 - 7E1ADA:01 - - - Have Jutsu technique 4 - 7E1ADC:01 - - - Have 1st upgraded weapon - 7E1AB6:01+7E1AB8:01 - - - Have 2nd upgraded weapon - 7E1AB6:02+7E1AB8:02 - - - Infinite Bombs - 7E1ABA:30 - - - Have Gold Helmet - 7E1AE0:08 - - - Have Iron Helmet - 7E1AE2:06 - - - Have Straw Hat - 7E1AE4:04 - - - Have Gold Armor - 7E1AF0:08 - - - Have Chain Armor - 7E1AF2:06 - - - Have Straw Coat - 7E1AF4:04 - - - Have whole Pizza - 7E1B10:01 - - - Have slice of Pizza - 7E1B12:01 - - - Have Burger - 7E1B14:01 - - - Have Pass - 7E1B20:01 - - - Have Text - 7E1B22:01 - - - Max walking speed - 7E1AC2:02+7E1B00:03 - - - - Legend of Zelda, The - A Link to the Past (USA) - - Invincibility - 1CDF-2EE6 - - - Infinite rupees - 35E1-2A76 - - - Infinite health and all heart containers - CDE1-2E56 - - - Almost infinite health - AE6E-DF2A - - - Infinite magic - 6DE1-2E86 - - - Almost infinite magic - AE8A-D4FA+AE8D-0D9A - - - Max heart containers - CDEE-DDBF - - - Infinite Bombs - AE67-0D30 - - - Infinite Bombs (alt) - 17E0-2AE6 - - - Infinite Arrows - 17E5-22E6 - - - Hit anywhere (disable before fighting Ganon, use the Boomerang instead of Sword to hit switches) - 40E2-6D96+6D3E-A7FC+403F-DD28+40EC-AF26+6D34-D7F8+4068-A0E6 - - - Get items from anywhere - 402F-07B6 - - - Regular sword is very strong (100 damage instead of 2) - 108E-D481 - - - Blue Boomerang has much longer reach - 82BD-6F4D - - - Enemies frozen by Boomerang or Hookshot stay frozen - 8234-AD96 - - - Sword can destroy solid objects in Overworld - 6D87-611E - - - Objects that you can pick up and throw never break away - FD37-6FF6 - - - Dash without having the Pegasus Boots - EEE5-2356 - - - Dash without charge up - 45B8-D49A - - - Use the Magic Mirror to warp between the Light and Dark Worlds freely - 6DC9-0D23 - - - Some shops don't take your money - AEEC-A586 - - - Spin attack needs nearly no time to charge - D6B5-049E - - - Spin attack needs no time at all to charge - DDB5-049E - - - 100% enemy drop rate (from enemies that normally drop items) - DDE8-142C - - - No enemies in dungeons - D9D7-9A78+D9D7-9A58+D9D7-9A88 - - - Dark rooms are fully lit - D7D9-F38B - - - Trigger doors are open (works with most dungeon doors, some that even look closed) - EED6-BE5B - - - Have Bombos Medallion - DFE0-22E6 - - - Have Book Of Mudora - DFE0-2E86 - - - Have Bug-Catching Net - DFE0-2E56 - - - Have Cane Of Byrna - DFE9-2A56 - - - Have Cane Of Somaria - DFE9-2A76 - - - Have Ether Medallion - DFE0-2376 - - - Have Fire Rod - DFE0-2256 - - - Have Flute - D4E0-2E76 - - - Have Flute with Duck - D7E0-2E76 - - - Have Golden Sword (level 4) - D0E9-2356 - - - Have Hookshot - DFE0-2A86 - - - Have Ice Rod - DFE0-2286 - - - Have Lamp - DFE0-2386 - - - Have Magic Boomerang - D4E0-2A56 - - - Have Magic Cape - DFE9-2A86 - - - Have Magic Hammer - DFE0-23E6 - - - Have Magic Mirror - D4E9-2AE6 - - - Have Magic Powder - D4E0-2276 - - - Have Mirror Shield - D7E9-2386 - - - Have Moon Pearl - DFE9-22E6 - - - Have Pegasus Boots - D4E9-2256 - - - Have Quake Medallion - DFE0-2356 - - - Have Red Mail - D4E9-23E6 - - - Have Shovel - DFE0-2E76 - - - Have Titan's Mitten - D4E9-2276 - - - Have Zora's Flippers - DFE9-2286 - - - Have 1/2 Magic curse - DFE5-23E6 - - - Have all abilities except Lift - 1EE5-2356 - - - Have all Maps, Compasses and Big Keys - EEE1-2276+EEE1-2256+EEE1-2286+EEE1-22E6+EEE1-2376+EEE1-2356 - - - Invincibility (alt) - 7E031F:10 - - - Invincibility (alt 2) - 7E031F:01 - - - Infinite rupees (alt) - 7EF360:E7+7EF361:03 - - - Infinite Keys - 7EF36F:09 - - - Bombs full - 7EF375:01 - - - Play chest game for free and able to open all chests - 7E04C4:01 - - - Infinite time for digging game in the Dark World - 7E04B4:1E - - - Always get Faerie at the Pond Of Happiness (as if you threw in 100 rupees) - 7EF36A:64 - - - Luck modifier - Great - 7E0CF9:01 - - - Luck modifier - Big Trouble - 7E0CF9:02 - - - Turn rain on - 7E001D:01 - - - Turn rain off - 7E001D:00 - - - Walk through walls - 07CB9A:EA+07CB9B:EA+07C1FA:EA+07C1FB:EA - - - Walk faster - 7E005E:16 - - - Walk much faster - 7E005E:10 - - - Have 20 Heart Containers and infinite health - 7EF36D:A0 - - - Have Blue Mail - 7EF35B:02 - - - Have Boomerang - 7EF341:01 - - - Have Bow - 7EF340:01 - - - Have Bow with Arrows - 7EF340:02 - - - Have Bow with Silver Arrows - 7EF340:04 - - - Have all Lift abilities - D7E9-2276 - - - Have all Crystals - 7EF37A:7F - - - Have all Pendants - 7EF374:47 - - - Have Small Key In dungeons - 7EF36F:09 - - - Have Big Key in dungeons - 7EF366:FF+7EF367:FF - - - Have Compass in dungeons - 7EF365:FF - - - Have bottle 1 - 7EF35C:02 - - - Have bottle 1 with infinite Mushrooms - 7EF35C:01 - - - Have bottle 1 with infinite Red Medicine (life) - 7EF35C:03 - - - Have bottle 1 with infinite Green Medicine (magic) - 7EF35C:04 - - - Have bottle 1 with infinite Blue Medicine (cure all) - 7EF35C:05 - - - Have bottle 1 with infinite Faeries - 7EF35C:06 - - - Have bottle 1 with infinite Bees - 7EF35C:07 - - - Have bottle 1 with infinite Good Bees - 7EF35C:08 - - - Have bottle 2 - 7EF35D:02 - - - Have bottle 2 with infinite Mushrooms - 7EF35D:01 - - - Have bottle 2 with infinite Red Medicine (life) - 7EF35D:03 - - - Have bottle 2 with infinite Green Medicine (magic) - 7EF35D:04 - - - Have bottle 2 with infinite Blue Medicine (cure all) - 7EF35D:05 - - - Have bottle 2 with infinite Faeries - 7EF35D:06 - - - Have bottle 2 with infinite Bees - 7EF35D:07 - - - Have bottle 2 with infinite Good Bees - 7EF35D:08 - - - Have bottle 3 - 7EF35E:02 - - - Have bottle 3 with infinite Mushrooms - 7EF35E:01 - - - Have bottle 3 with infinite Red Medicine (life) - 7EF35E:03 - - - Have bottle 3 with infinite Green Medicine (magic) - 7EF35E:04 - - - Have bottle 3 with infinite Blue Medicine (cure all) - 7EF35E:05 - - - Have bottle 3 with infinite Faeries - 7EF35E:06 - - - Have bottle 3 with infinite Bees - 7EF35E:07 - - - Have bottle 3 with infinite Good Bees - 7EF35E:08 - - - Have bottle 4 - 7EF35F:02 - - - Have bottle 4 with infinite Mushrooms - 7EF35F:01 - - - Have bottle 4 with infinite Red Medicine (life) - 7EF35F:03 - - - Have bottle 4 with infinite Green Medicine (magic) - 7EF35F:04 - - - Have bottle 4 with infinite Blue Medicine (cure all) - 7EF35F:05 - - - Have bottle 4 with infinite Faeries - 7EF35F:06 - - - Have bottle 4 with infinite Bees - 7EF35F:07 - - - Have bottle 4 with infinite Good Bees - 7EF35F:08 - - - - Lemmings (USA) (Rev 1) - - Infinite climbers if you start with at least 1 - C984-A467 - - - Infinite floaters if you start with at least 1 - C98F-AD07 - - - Infinite bombers if you start with at least 1 - C987-A407 - - - Infinite blockers if you start with at least 1 - C984-6DA7 - - - Infinite builders if you start with at least 1 - C98E-6D07 - - - Infinite bashers if you start with at least 1 - C982-6FD7 - - - Infinite miners if you start with at least 1 - C981-67D7 - - - Infinite diggers if you start with at least 1 - C98B-64A7 - - - Each saved lemming counts as two - 31B6-6FAF+18B6-64DF - - - Start on Level 2; rating: Fun - CBCC-DD05+DFCC-DD65+C9C8-0FD5 - - - Start on Level 3; rating: Fun - CBCC-DD05+D4CC-DD65+C9C8-0FD5 - - - Start on Level 4; rating: Fun - CBCC-DD05+D7CC-DD65+C9C8-0FD5 - - - Start on Level 5; rating: Fun - CBCC-DD05+D0CC-DD65+C9C8-0FD5 - - - Start on Level 6; rating: Fun - CBCC-DD05+D9CC-DD65+C9C8-0FD5 - - - Start on Level 7; rating: Fun - CBCC-DD05+D1CC-DD65+C9C8-0FD5 - - - Start on Level 8; rating: Fun - CBCC-DD05+D5CC-DD65+C9C8-0FD5 - - - Start on Level 9; rating: Fun - CBCC-DD05+D6CC-DD65+C9C8-0FD5 - - - Start on Level 10; rating: Fun - CBCC-DD05+DBCC-DD65+C9C8-0FD5 - - - Start on Level 11; rating: Fun - CBCC-DD05+DCCC-DD65+C9C8-0FD5 - - - Start on Level 12; rating: Fun - CBCC-DD05+D8CC-DD65+C9C8-0FD5 - - - Start on Level 13; rating: Fun - CBCC-DD05+DACC-DD65+C9C8-0FD5 - - - Start on Level 14; rating: Fun - CBCC-DD05+D2CC-DD65+C9C8-0FD5 - - - Start on Level 15; rating: Fun - CBCC-DD05+D3CC-DD65+C9C8-0FD5 - - - Start on Level 16; rating: Fun - CBCC-DD05+DECC-DD65+C9C8-0FD5 - - - Start on Level 17; rating: Fun - CBCC-DD05+FDCC-DD65+C9C8-0FD5 - - - Start on Level 18; rating: Fun - CBCC-DD05+FFCC-DD65+C9C8-0FD5 - - - Start on Level 19; rating: Fun - CBCC-DD05+F4CC-DD65+C9C8-0FD5 - - - Start on Level 20; rating: Fun - CBCC-DD05+F7CC-DD65+C9C8-0FD5 - - - Start on Level 21; rating: Fun - CBCC-DD05+F0CC-DD65+C9C8-0FD5 - - - Start on Level 22; rating: Fun - CBCC-DD05+F9CC-DD65+C9C8-0FD5 - - - Start on Level 23; rating: Fun - CBCC-DD05+F1CC-DD65+C9C8-0FD5 - - - Start on Level 24; rating: Fun - CBCC-DD05+F5CC-DD65+C9C8-0FD5 - - - Start on Level 25; rating: Fun - CBCC-DD05+F6CC-DD65+C9C8-0FD5 - - - Start on Level 26; rating: Fun - CBCC-DD05+FBCC-DD65+C9C8-0FD5 - - - Start on Level 27; rating: Fun - CBCC-DD05+FCCC-DD65+C9C8-0FD5 - - - Start on Level 28; rating: Fun - CBCC-DD05+F8CC-DD65+C9C8-0FD5 - - - Start on Level 29; rating: Fun - CBCC-DD05+FACC-DD65+C9C8-0FD5 - - - Start on Level 30; rating: Fun - CBCC-DD05+F2CC-DD65+C9C8-0FD5 - - - Start on Level 1; rating: Tricky - CBCC-DD05+F3CC-DD65+C9C8-0FD5 - - - Start on Level 2; rating: Tricky - CBCC-DD05+FECC-DD65+C9C8-0FD5 - - - Start on Level 3; rating: Tricky - CBCC-DD05+4DCC-DD65+C9C8-0FD5 - - - Start on Level 4; rating: Tricky - CBCC-DD05+4FCC-DD65+C9C8-0FD5 - - - Start on Level 5; rating: Tricky - CBCC-DD05+44CC-DD65+C9C8-0FD5 - - - Start on Level 6; rating: Tricky - CBCC-DD05+47CC-DD65+C9C8-0FD5 - - - Start on Level 7; rating: Tricky - CBCC-DD05+40CC-DD65+C9C8-0FD5 - - - Start on Level 8; rating: Tricky - CBCC-DD05+49CC-DD65+C9C8-0FD5 - - - Start on Level 9; rating: Tricky - CBCC-DD05+41CC-DD65+C9C8-0FD5 - - - Start on Level 10; rating: Tricky - CBCC-DD05+45CC-DD65+C9C8-0FD5 - - - Start on Level 11; rating: Tricky - CBCC-DD05+46CC-DD65+C9C8-0FD5 - - - Start on Level 12; rating: Tricky - CBCC-DD05+4BCC-DD65+C9C8-0FD5 - - - Start on Level 13; rating: Tricky - CBCC-DD05+4CCC-DD65+C9C8-0FD5 - - - Start on Level 14; rating: Tricky - CBCC-DD05+48CC-DD65+C9C8-0FD5 - - - Start on Level 15; rating: Tricky - CBCC-DD05+4ACC-DD65+C9C8-0FD5 - - - Start on Level 16; rating: Tricky - CBCC-DD05+42CC-DD65+C9C8-0FD5 - - - Start on Level 17; rating: Tricky - CBCC-DD05+43CC-DD65+C9C8-0FD5 - - - Start on Level 18; rating: Tricky - CBCC-DD05+4ECC-DD65+C9C8-0FD5 - - - Start on Level 19; rating: Tricky - CBCC-DD05+7DCC-DD65+C9C8-0FD5 - - - Start on Level 20; rating: Tricky - CBCC-DD05+7FCC-DD65+C9C8-0FD5 - - - Start on Level 21; rating: Tricky - CBCC-DD05+74CC-DD65+C9C8-0FD5 - - - Start on Level 22; rating: Tricky - CBCC-DD05+77CC-DD65+C9C8-0FD5 - - - Start on Level 23; rating: Tricky - CBCC-DD05+70CC-DD65+C9C8-0FD5 - - - Start on Level 24; rating: Tricky - CBCC-DD05+79CC-DD65+C9C8-0FD5 - - - Start on Level 25; rating: Tricky - CBCC-DD05+71CC-DD65+C9C8-0FD5 - - - Start on Level 26; rating: Tricky - CBCC-DD05+75CC-DD65+C9C8-0FD5 - - - Start on Level 27; rating: Tricky - CBCC-DD05+76CC-DD65+C9C8-0FD5 - - - Start on Level 28; rating: Tricky - CBCC-DD05+7BCC-DD65+C9C8-0FD5 - - - Start on Level 29; rating: Tricky - CBCC-DD05+7CCC-DD65+C9C8-0FD5 - - - Start on Level 30; rating: Tricky - CBCC-DD05+78CC-DD65+C9C8-0FD5 - - - Start on Level 1; rating: Taxing - CBCC-DD05+7ACC-DD65+C9C8-0FD5 - - - Start on Level 2; rating: Taxing - CBCC-DD05+72CC-DD65+C9C8-0FD5 - - - Start on Level 3; rating: Taxing - CBCC-DD05+73CC-DD65+C9C8-0FD5 - - - Start on Level 4; rating: Taxing - CBCC-DD05+7ECC-DD65+C9C8-0FD5 - - - Start on Level 5; rating: Taxing - CBCC-DD05+0DCC-DD65+C9C8-0FD5 - - - Start on Level 6; rating: Taxing - CBCC-DD05+0FCC-DD65+C9C8-0FD5 - - - Start on Level 7; rating: Taxing - CBCC-DD05+04CC-DD65+C9C8-0FD5 - - - Start on Level 8; rating: Taxing - CBCC-DD05+07CC-DD65+C9C8-0FD5 - - - Start on Level 9; rating: Taxing - CBCC-DD05+00CC-DD65+C9C8-0FD5 - - - Start on Level 10; rating: Taxing - CBCC-DD05+09CC-DD65+C9C8-0FD5 - - - Start on Level 11; rating: Taxing - CBCC-DD05+01CC-DD65+C9C8-0FD5 - - - Start on Level 12; rating: Taxing - CBCC-DD05+05CC-DD65+C9C8-0FD5 - - - Start on Level 13; rating: Taxing - CBCC-DD05+06CC-DD65+C9C8-0FD5 - - - Start on Level 14; rating: Taxing - CBCC-DD05+0BCC-DD65+C9C8-0FD5 - - - Start on Level 15; rating: Taxing - CBCC-DD05+0CCC-DD65+C9C8-0FD5 - - - Start on Level 16; rating: Taxing - CBCC-DD05+08CC-DD65+C9C8-0FD5 - - - Start on Level 17; rating: Taxing - CBCC-DD05+0ACC-DD65+C9C8-0FD5 - - - Start on Level 18; rating: Taxing - CBCC-DD05+02CC-DD65+C9C8-0FD5 - - - Start on Level 19; rating: Taxing - CBCC-DD05+03CC-DD65+C9C8-0FD5 - - - Start on Level 20; rating: Taxing - CBCC-DD05+0ECC-DD65+C9C8-0FD5 - - - Start on Level 21; rating: Taxing - CBCC-DD05+9DCC-DD65+C9C8-0FD5 - - - Start on Level 22; rating: Taxing - CBCC-DD05+9FCC-DD65+C9C8-0FD5 - - - Start on Level 23; rating: Taxing - CBCC-DD05+94CC-DD65+C9C8-0FD5 - - - Start on Level 24; rating: Taxing - CBCC-DD05+97CC-DD65+C9C8-0FD5 - - - Start on Level 25; rating: Taxing - CBCC-DD05+90CC-DD65+C9C8-0FD5 - - - Start on Level 26; rating: Taxing - CBCC-DD05+99CC-DD65+C9C8-0FD5 - - - Start on Level 27; rating: Taxing - CBCC-DD05+91CC-DD65+C9C8-0FD5 - - - Start on Level 28; rating: Taxing - CBCC-DD05+95CC-DD65+C9C8-0FD5 - - - Start on Level 29; rating: Taxing - CBCC-DD05+96CC-DD65+C9C8-0FD5 - - - Start on Level 30; rating: Taxing - CBCC-DD05+9BCC-DD65+C9C8-0FD5 - - - Start on Level 1; rating: Mayhem - CBCC-DD05+9CCC-DD65+C9C8-0FD5 - - - Start on Level 2; rating: Mayhem - CBCC-DD05+98CC-DD65+C9C8-0FD5 - - - Start on Level 3; rating: Mayhem - CBCC-DD05+9ACC-DD65+C9C8-0FD5 - - - Start on Level 4; rating: Mayhem - CBCC-DD05+92CC-DD65+C9C8-0FD5 - - - Start on Level 5; rating: Mayhem - CBCC-DD05+93CC-DD65+C9C8-0FD5 - - - Start on Level 6; rating: Mayhem - CBCC-DD05+9ECC-DD65+C9C8-0FD5 - - - Start on Level 7; rating: Mayhem - CBCC-DD05+1DCC-DD65+C9C8-0FD5 - - - Start on Level 8; rating: Mayhem - CBCC-DD05+1FCC-DD65+C9C8-0FD5 - - - Start on Level 9; rating: Mayhem - CBCC-DD05+14CC-DD65+C9C8-0FD5 - - - Start on Level 10; rating: Mayhem - CBCC-DD05+17CC-DD65+C9C8-0FD5 - - - Start on Level 11; rating: Mayhem - CBCC-DD05+10CC-DD65+C9C8-0FD5 - - - Start on Level 12; rating: Mayhem - CBCC-DD05+19CC-DD65+C9C8-0FD5 - - - Start on Level 13; rating: Mayhem - CBCC-DD05+11CC-DD65+C9C8-0FD5 - - - Start on Level 14; rating: Mayhem - CBCC-DD05+15CC-DD65+C9C8-0FD5 - - - Start on Level 15; rating: Mayhem - CBCC-DD05+16CC-DD65+C9C8-0FD5 - - - Start on Level 16; rating: Mayhem - CBCC-DD05+1BCC-DD65+C9C8-0FD5 - - - Start on Level 17; rating: Mayhem - CBCC-DD05+1CCC-DD65+C9C8-0FD5 - - - Start on Level 18; rating: Mayhem - CBCC-DD05+18CC-DD65+C9C8-0FD5 - - - Start on Level 19; rating: Mayhem - CBCC-DD05+1ACC-DD65+C9C8-0FD5 - - - Start on Level 20; rating: Mayhem - CBCC-DD05+12CC-DD65+C9C8-0FD5 - - - Start on Level 21; rating: Mayhem - CBCC-DD05+13CC-DD65+C9C8-0FD5 - - - Start on Level 22; rating: Mayhem - CBCC-DD05+1ECC-DD65+C9C8-0FD5 - - - Start on Level 23; rating: Mayhem - CBCC-DD05+5DCC-DD65+C9C8-0FD5 - - - Start on Level 24; rating: Mayhem - CBCC-DD05+5FCC-DD65+C9C8-0FD5 - - - Start on Level 25; rating: Mayhem - CBCC-DD05+54CC-DD65+C9C8-0FD5 - - - Start on Level 26; rating: Mayhem - CBCC-DD05+57CC-DD65+C9C8-0FD5 - - - Start on Level 27; rating: Mayhem - CBCC-DD05+50CC-DD65+C9C8-0FD5 - - - Start on Level 28; rating: Mayhem - CBCC-DD05+59CC-DD65+C9C8-0FD5 - - - Start on Level 29; rating: Mayhem - CBCC-DD05+51CC-DD65+C9C8-0FD5 - - - Start on Level 30; rating: Mayhem - CBCC-DD05+55CC-DD65+C9C8-0FD5 - - - Start on Level 1; rating: Sunsoft - CBCC-DD05+56CC-DD65+C9C8-0FD5 - - - Start on Level 2; rating: Sunsoft - CBCC-DD05+5BCC-DD65+C9C8-0FD5 - - - Start on Level 3; rating: Sunsoft - CBCC-DD05+5CCC-DD65+C9C8-0FD5 - - - Start on Level 4; rating: Sunsoft - CBCC-DD05+58CC-DD65+C9C8-0FD5 - - - Start on Level 5; rating: Sunsoft - CBCC-DD05+5ACC-DD65+C9C8-0FD5 - - - Have a lot of time - 7E0094:FF - - - Open all 'Fun' levels - 7FFFC0:1E - - - Open all 'Tricky' levels - 7FFFC1:1E - - - Open all 'Taxing' levels - 7FFFC2:1E - - - Open all 'Mayhem' levels - 7FFFC3:1E - - - Open all 'SUNSOFT' levels - 7FFFC4:05 - - - Instantly win levels - 7E0091:00 - - - 0% Lemmings needed - 7E0092:00 - - - Have 99 Climbers left - 7E0095:63 - - - Have 99 Floaters left - 7E0096:63 - - - Have 99 Exploders left - 7E0097:63 - - - Have 99 Blockers left - 7E0098:63 - - - Have 99 Builders left - 7E0099:63 - - - Have 99 Bashers left - 7E009A:63 - - - Have 99 Miners left - 7E009B:63 - - - Have 99 Diggers left - 7E009C:63 - - - Have 0 Lemmings left in level - 7E0069:00 - - - Have 0 Lemmings left to enter level - 7E006A:00 - - - Always rescued 100% of Lemmings - 7E006B:64 - - - - Lester the Unlikely (USA) - - Infinite health against most enemies - C2C2-8DEB - - - Infinite lives - C2C6-7F58 - - - Flashing lasts a long time after getting hit - D0C2-848B - - - Flashing lasts a really long time after getting hit - DAC2-848B - - - Lighter gravity effect (disable right after pressing start, donメt enable until first game play screen) - 0DCA-5D5B - - - Even lighter gravity effect - 49CA-5D5B - - - Amazingly lighter gravity effect - F9CA-5D5B - - - Infinite health - 7E859B:03 - - - - Lethal Enforcers (USA) - - Invincibility - both players - 6DC2-CF24 - - - Infinite ammo - 3CCE-C4AB - - - Infinite health - both players - 3CB5-140C - - - No health loss when you hit civilians - 3CB2-446C - - - Hit anywhere - both players - 6D23-47BD+6DBA-446C+6D67-472F+7925-1FFD - - - 1/2 health lost when you hit civilians - 3CB2-446C - - - Play with more health - F365-CF64+F362-CD64 - - - Keep weapon until you die - 6DBF-1FAC - - - Magnum - more shots per round - DAA3-4F60 - - - Normal gun - more shots per round - DAA3-4D60 - - - Shotgun - more shots per round - DAA3-4460 - - - Invincibility - P1 - 7E00B2:07 - - - Invincibility - P2 - 7E00B4:07 - - - Infinite ammo for all guns - P1 - 7E1FC0:06 - - - Infinite ammo for all guns - P2 - 7E1FC2:06 - - - Have Grenade Launcher - P1 - 7E1FBC:02 - - - Have Grenade Launcher - P2 - 7E1FBE:02 - - - Have Magnum - P1 - 7E1FBC:04 - - - Have Magnum - P2 - 7E1FBE:04 - - - Have Shotgun - P1 - 7E1FBC:06 - - - Have Shotgun - P2 - 7E1FBE:06 - - - Have Automatic - P1 - 7E1FBC:08 - - - Have Automatic - P2 - 7E1FBE:08 - - - Have Glock 45 - P1 - 7E1FBC:0A - - - Have Glock 45 - P2 - 7E1FBE:0A - - - Have Uzi - P1 - 7E1FBC:0C - - - Have Uzi - P2 - 7E1FBE:0C - - - - Lethal Weapon (USA) - - Infinite health - 4ABE-AFD7 - - - Infinite ammo - DD8D-D7A4 - - - Infinite time - C285-670F - - - More bullets in magazine - DB8F-DF64 - - - 2 magazines on pick-up - D4CA-A7AF - - - 4 magazines on pick-up - D0CA-A7AF - - - Slower timer - 148B-6F0F - - - Faster timer - FE8B-6F0F - - - Super-jump (can get stuck) - 3CBD-04DF - - - Start with more badges - D162-A7DF - - - Start with fewer badges - DD62-A7DF - - - Start with more magazine clips - DB6A-AF6F - - - Start with fewer magazine clips - DF6A-AF6F - - - Invincibility (blinking) - 7E025E:50 - - - Infinite health (alt) - 7E0226:06 - - - Infinite ammo (alt) - 7E021E:07 - - - Infinite time (alt) - 7E0D28:99+7E0D29:09 - - - Play as Riggs - 7E0246:00 - - - Play as Murtaugh - 7E0246:01 - - - - Lion King, The (USA) - - Almost infinite health - C298-7DDE - - - Infinite lives - CE6E-8464 - - - Roaring doesn't decrease your roar meter - C291-5763 - - - Roar meter doesn't fill up with time - C289-5D6F - - - Don't lose roar power when you get hit - C293-E703 - - - higher-jump - CBF9-5D6A+E1F9-5DAA+EEF9-5FDA - - - Mega-jump - CBF9-5D6A+E0F9-5DAA+EEF9-5FDA - - - Walk through walls - 6D6C-5D2D+DD67-5FBD+DDA2-EDAF - - - Invincibility (blinking) - 7EB259:3D - - - Infinite health - 7E2004:04 - - - Infinite Roar meter - 7E2002:10 - - - Infinite lives (alt) - 7FFFAA:09 - - - Infinite continues - 7FFFA8:09 - - - Infinite time - Bug Hunt I - 7EC0C1:28 - - - Infinite time - Bug Hunt II - 7ECB41:28 - - - Infinite time - Bug Hunt III - 7EBBC1:28 - - - Play as young Simba - 7E2000:00 - - - Play as adult Simba - 7E2001:FF - - - Start on The Pride Lands - 7FFF9E:00 - - - Start on Roar At Monkeys - 7FFF9E:01 - - - Start on The Elephant Graveyard - 7FFF9E:02 - - - Start on The Stampede - 7FFF9E:03 - - - Start on Simba's Exile - 7FFF9E:04 - - - Start on Hakuna Matata - 7FFF9E:05 - - - Start on Simba's Destiny - 7FFF9E:06 - - - Start on Be Prepared - 7FFF9E:07 - - - Start on Simba's Return - 7FFF9E:08 - - - Start on Pride Rock - 7FFF9E:09 - - - Start on Bug Toss - 7FFF9E:0A - - - Start on Bug Hunt I - 7FFF9E:0B - - - Start on Bug Hunt II - 7FFF9E:0C - - - Start on Bug Hunt III - 7FFF9E:0D - - - Start on Game Begins - 7FFF9E:0E - - - Start on Kill Him - 7FFF9E:0F - - - - Little Magic (Japan) - - Infinite Mays / Retries - 7E0059:09 - - - - Lock On (USA) - - Infinite Flares - 7E1113:46 - - - Infinite Missile A - 7E1115:46 - - - Infinite Missile B - 7E1116:46 - - - Infinite lives - 7E1106:0A - - - - Lost Vikings, The (USA) - - Start with infinite health - all Vikings - 7E0FE9:08 - - - - Lost Vikings 2 (USA) - - Infinite health - 1st viking - 7E1037:06 - - - Infinite health - 2nd viking - 7E1039:06 - - - Infinite health - 3rd viking - 7E103B:06 - - - - Lucky Luke (Europe) (En,Fr,De,Es) - - Invincibility - 7E0526:48 - - - Infinite health - 7E059F:04 - - - Infinite lives - 7E05A0:09 - - - Infinite rounds - 7E05A2:09 - - - Infinite bombs - 7E05A3:09 - - - - Lufia & The Fortress of Doom (USA) - - Move around caves and world map quicker (except when leaving a vehicle) - 4DB4-D401 - - - Infinite HP (hit points) - 8236-0F34 - - - Infinite magic points in battle mode - 823A-0FC4 - - - No HP lost when walking over swamp ground - DDB8-6FD9 - - - More HP lost when walking over swamp ground - D0B8-6FD9 - - - Cheap bombs - 1 gold each - DF30-A718 - - - Cheap smokeballs - 1 gold each - DF3C-0D18 - - - Immune to all petrifying effects (stone, poison, confused, etc.) - 6D8F-0DC4 - - - Shopkeepers don't charge for purchases - some shops only - 95A8-67A4 - - - More agility points from speed potion - FD34-0448 - - - More intelligence points from mind potion - FD30-0438 - - - More strength points from great potion - FD31-07C8 - - - Higher max level of magic points from spell potion - FD3D-0F18 - - - Higher max level of hit points from power potion - FD33-DDC8 - - - 99 of item in slot 1 - 7E14F8:63 - - - 99 of item in slot 2 - 7E14FA:63 - - - 99 of item in slot 3 - 7E14FC:63 - - - No random battles - 7E149E:00 - - - Slot 1 - Nothing - 7E14F7:00 - - - Slot 1 - Knife - 7E14F7:01 - - - Slot 1 - Club - 7E14F7:02 - - - Slot 1 - Mace - 7E14F7:03 - - - Slot 1 - Dagger - 7E14F7:04 - - - Slot 1 - Long Knife - 7E14F7:05 - - - Slot 1 - Short Sword - 7E14F7:06 - - - Slot 1 - Rod - 7E14F7:07 - - - Slot 1 - Gladius - 7E14F7:08 - - - Slot 1 - Glass Robe - 7E14F7:09 - - - Slot 1 - Brone Sword - 7E14F7:0A - - - Slot 1 - Staff - 7E14F7:0B - - - Slot 1 - Scimitar - 7E14F7:0C - - - Slot 1 - Rapier - 7E14F7:0D - - - Slot 1 - Long Sword - 7E14F7:0E - - - Slot 1 - Long Staff - 7E14F7:0F - - - Slot 1 - Axe - 7E14F7:10 - - - Slot 1 - Spear - 7E14F7:11 - - - Slot 1 - Morning Star - 7E14F7:12 - - - Slot 1 - Catwhip - 7E14F7:13 - - - Slot 1 - Battle Axe - 7E14F7:14 - - - Slot 1 - Hammer Rod - 7E14F7:15 - - - Slot 1 - Trident - 7E14F7:16 - - - Slot 1 - Silver Rod - 7E14F7:17 - - - Slot 1 - Silver Sword - 7E14F7:18 - - - Slot 1 - Buster Sword - 7E14F7:19 - - - Slot 1 - Zircon Rod - 7E14F7:1A - - - Slot 1 - Great Axe - 7E14F7:1B - - - Slot 1 - Great Blade - 7E14F7:1C - - - Slot 1 - Zircon Axe - 7E14F7:1D - - - Slot 1 - Zircon Sword - 7E14F7:1E - - - Slot 1 - Broad Sword - 7E14F7:1F - - - Slot 1 - Broad Rod - 7E14F7:20 - - - Slot 1 - Luck Blade - 7E14F7:21 - - - Slot 1 - Gloom Pick - 7E14F7:22 - - - Slot 1 - Dual Blade - 7E14F7:23 - - - Slot 1 - Dress - 7E14F7:24 - - - Slot 1 - Cloth - 7E14F7:25 - - - Slot 1 - Cloth Armor - 7E14F7:26 - - - Slot 1 - Robe - 7E14F7:27 - - - Slot 1 - Tan Armor - 7E14F7:28 - - - Slot 1 - Tan Robe - 7E14F7:29 - - - Slot 1 - Light Armor - 7E14F7:2A - - - Slot 1 - Light Robe - 7E14F7:2B - - - Slot 1 - Chain Mail - 7E14F7:2C - - - Slot 1 - Chain Cloth - 7E14F7:2D - - - Slot 1 - Plate Cloth - 7E14F7:2E - - - Slot 1 - Brone Armor - 7E14F7:2F - - - Slot 1 - Quilted Silk - 7E14F7:30 - - - Slot 1 - Half Mail - 7E14F7:31 - - - Slot 1 - Brone Robe - 7E14F7:32 - - - Slot 1 - Silver Armor - 7E14F7:33 - - - Slot 1 - Silver Robe - 7E14F7:34 - - - Slot 1 - Plate Mail - 7E14F7:35 - - - Slot 1 - Zircon Robe - 7E14F7:36 - - - Slot 1 - Zircon Armor - 7E14F7:37 - - - Slot 1 - Clear Silk - 7E14F7:38 - - - Slot 1 - Bracelet - 7E14F7:39 - - - Slot 1 - Tan Shield - 7E14F7:3A - - - Slot 1 - Wood Shield - 7E14F7:3B - - - Slot 1 - Buckler - 7E14F7:3C - - - Slot 1 - Wood Wrist - 7E14F7:3D - - - Slot 1 - Kite Shield - 7E14F7:3E - - - Slot 1 - Round Shield - 7E14F7:3F - - - Slot 1 - Round Wrist - 7E14F7:40 - - - Slot 1 - Brone Shield - 7E14F7:41 - - - Slot 1 - Tower Shield - 7E14F7:42 - - - Slot 1 - Large Shield - 7E14F7:43 - - - Slot 1 - Silver Wrist - 7E14F7:44 - - - Slot 1 - Silver Plate - 7E14F7:45 - - - Slot 1 - Zircon Wrist - 7E14F7:46 - - - Slot 1 - Zircon Plate - 7E14F7:47 - - - Slot 1 - Cloth Helm - 7E14F7:48 - - - Slot 1 - Tan Helm - 7E14F7:49 - - - Slot 1 - Hair Band - 7E14F7:4A - - - Slot 1 - Wood Helm - 7E14F7:4B - - - Slot 1 - Glass Cap - 7E14F7:4C - - - Slot 1 - Brone Helm - 7E14F7:4D - - - Slot 1 - Red Beret - 7E14F7:4E - - - Slot 1 - Iron Helm - 7E14F7:4F - - - Slot 1 - Plate Cap - 7E14F7:50 - - - Slot 1 - Plate Helm - 7E14F7:51 - - - Slot 1 - Glass Beret - 7E14F7:52 - - - Slot 1 - Silver Helm - 7E14F7:53 - - - Slot 1 - Sakret - 7E14F7:54 - - - Slot 1 - Zircon Beret - 7E14F7:55 - - - Slot 1 - Zircon Helm - 7E14F7:56 - - - Slot 1 - Sandal - 7E14F7:57 - - - Slot 1 - Cloth Shoes - 7E14F7:58 - - - Slot 1 - Tan Shoes - 7E14F7:59 - - - Slot 1 - Spike Shoes - 7E14F7:5A - - - Slot 1 - Heeled Shoes - 7E14F7:5B - - - Slot 1 - Wind Shoes - 7E14F7:5C - - - Slot 1 - Wind Heels - 7E14F7:5D - - - Slot 1 - Knife Shoes - 7E14F7:5E - - - Slot 1 - Needle Heels - 7E14F7:5F - - - Slot 1 - Sonic Shoes - 7E14F7:60 - - - Slot 1 - Sonic Heels - 7E14F7:61 - - - Slot 1 - Sword Shoes - 7E14F7:62 - - - Slot 1 - Cat Heels - 7E14F7:63 - - - Slot 1 - Mach Shoes - 7E14F7:64 - - - Slot 1 - Mach Heels - 7E14F7:65 - - - Slot 1 - Power Ring - 7E14F7:66 - - - Slot 1 - HiPower Ring - 7E14F7:67 - - - Slot 1 - Daze Ring - 7E14F7:68 - - - Slot 1 - Hi Daze Ring - 7E14F7:69 - - - Slot 1 - Mind Ring - 7E14F7:6A - - - Slot 1 - Sonic Ring - 7E14F7:6B - - - Slot 1 - Mach Ring - 7E14F7:6C - - - Slot 1 - Undead Ring - 7E14F7:6D - - - Slot 1 - Ghost Ring - 7E14F7:6E - - - Slot 1 - Dragon Ring - 7E14F7:6F - - - Slot 1 - Sea Ring - 7E14F7:70 - - - Slot 1 - Fly Ring - 7E14F7:71 - - - Slot 1 - Water Ring - 7E14F7:72 - - - Slot 1 - Fire Ring - 7E14F7:73 - - - Slot 1 - Ice Ring - 7E14F7:74 - - - Slot 1 - Electro Ring - 7E14F7:75 - - - Slot 1 - Flash Ring - 7E14F7:76 - - - Slot 1 - Flame Ring - 7E14F7:77 - - - Slot 1 - Water Ring - 7E14F7:78 - - - Slot 1 - Blast Ring - 7E14F7:79 - - - Slot 1 - Frost Ring - 7E14F7:7A - - - Slot 1 - Might Armor - 7E14F7:7B - - - Slot 1 - Might Shield - 7E14F7:7C - - - Slot 1 - Might Helmet - 7E14F7:7D - - - Slot 1 - Gloom Ring - 7E14F7:7E - - - Slot 1 - Gloom Voice - 7E14F7:7F - - - Slot 1 - Dummy (?) - 7E14F7:80 - - - Slot 1 - Brone Breast - 7E14F7:81 - - - Slot 1 - Carbo Sword - 7E14F7:82 - - - Slot 1 - Carbo Plate - 7E14F7:83 - - - Slot 1 - Carbo Shield - 7E14F7:84 - - - Slot 1 - Carbo Helm - 7E14F7:85 - - - Slot 1 - Carbo Cap - 7E14F7:86 - - - Slot 1 - Gloom Guard - 7E14F7:87 - - - Slot 1 - Diamond Ring - 7E14F7:88 - - - Slot 1 - Engage Ring - 7E14F7:89 - - - Slot 1 - Monster Ring - 7E14F7:8A - - - Slot 1 - Blue Ring - 7E14F7:8B - - - Slot 1 - Yellow Ring - 7E14F7:8C - - - Slot 1 - Red Ring - 7E14F7:8D - - - Slot 1 - Purple Ring - 7E14F7:8E - - - Slot 1 - Green Ring - 7E14F7:8F - - - Slot 1 - White Ring - 7E14F7:90 - - - Slot 1 - Black Ring - 7E14F7:91 - - - Slot 1 - Heavy Ring - 7E14F7:92 - - - Slot 1 - Wave Ring - 7E14F7:93 - - - Slot 1 - Potion - 7E14F7:94 - - - Slot 1 - Hi Potion - 7E14F7:95 - - - Slot 1 - Ex Potion - 7E14F7:96 - - - Slot 1 - Hi Magic - 7E14F7:97 - - - Slot 1 - Ex Magic - 7E14F7:98 - - - Slot 1 - Antidote - 7E14F7:99 - - - Slot 1 - Sweet Water - 7E14F7:9A - - - Slot 1 - Foul Water - 7E14F7:9B - - - Slot 1 - Awaken - 7E14F7:9C - - - Slot 1 - Stone Cure - 7E14F7:9D - - - Slot 1 - Mystery Pin - 7E14F7:9E - - - Slot 1 - Shriek - 7E14F7:9F - - - Slot 1 - Swing Wing - 7E14F7:A0 - - - Slot 1 - Magic Guard - 7E14F7:A1 - - - Slot 1 - Power Gourd - 7E14F7:A2 - - - Slot 1 - Mind Gourd - 7E14F7:A3 - - - Slot 1 - Power Potion - 7E14F7:A4 - - - Slot 1 - Spell Potion - 7E14F7:A5 - - - Slot 1 - Speed Potion - 7E14F7:A6 - - - Slot 1 - Mind Potion - 7E14F7:A7 - - - Slot 1 - Great Potion - 7E14F7:A8 - - - Slot 1 - Float - 7E14F7:A9 - - - Slot 1 - Smoke Ball - 7E14F7:AA - - - Slot 1 - Arrow - 7E14F7:AB - - - Slot 1 - Mid Arrow - 7E14F7:AC - - - Slot 1 - Big Arrow - 7E14F7:AD - - - Slot 1 - Arrows - 7E14F7:AE - - - Slot 1 - Hi Arrows - 7E14F7:AF - - - Slot 1 - Ex Arrows - 7E14F7:B0 - - - Slot 1 - Dragon Arrow - 7E14F7:B1 - - - Slot 1 - Sleep Arrow - 7E14F7:B2 - - - Slot 1 - Puzzle Arrow - 7E14F7:B3 - - - Slot 1 - Stun Arrow - 7E14F7:B4 - - - Slot 1 - Gloom Arrow - 7E14F7:B5 - - - Slot 1 - Bomb - 7E14F7:B6 - - - Slot 1 - Hi Bomb - 7E14F7:B7 - - - Slot 1 - Ex Bomb - 7E14F7:B8 - - - Slot 1 - Miracle - 7E14F7:B9 - - - Slot 1 - Revive - 7E14F7:BA - - - Slot 1 - Pear Cider - 7E14F7:BB - - - Slot 1 - Sour Cider - 7E14F7:BC - - - Slot 1 - Lime Cider - 7E14F7:BD - - - Slot 1 - Plum Cider - 7E14F7:BE - - - Slot 1 - Apple Cider - 7E14F7:BF - - - Slot 1 - Hair Band - 7E14F7:C0 - - - Slot 1 - Brooch - 7E14F7:C1 - - - Slot 1 - Earring - 7E14F7:C2 - - - Slot 1 - Necklace - 7E14F7:C3 - - - Slot 1 - Stuffed Bear - 7E14F7:C4 - - - Slot 1 - Stuffed Dog - 7E14F7:C5 - - - Slot 1 - Stuffed Pig - 7E14F7:C6 - - - Slot 1 - Emerald - 7E14F7:C7 - - - Slot 1 - Opal - 7E14F7:C8 - - - Slot 1 - Goblet - 7E14F7:C9 - - - Slot 1 - Ear Tip - 7E14F7:CA - - - Slot 1 - Empty Bottle - 7E14F7:CB - - - Slot 1 - Gown - 7E14F7:CC - - - Slot 1 - Ribbon - 7E14F7:CD - - - Slot 1 - Fry Pan - 7E14F7:CE - - - Slot 1 - Small Knife - 7E14F7:CF - - - Slot 1 - Pot - 7E14F7:D0 - - - Slot 1 - Chop Block - 7E14F7:D1 - - - Slot 1 - Apron - 7E14F7:D2 - - - Slot 1 - Dragon Egg - 7E14F7:D3 - - - Slot 1 - Crown - 7E14F7:D4 - - - Slot 1 - Secret Map - 7E14F7:D5 - - - Slot 1 - Miracle Gem - 7E14F7:D6 - - - Slot 1 - Silver Wick - 7E14F7:D7 - - - Slot 1 - Royal Statue - 7E14F7:D8 - - - Slot 1 - Silver Tarot - 7E14F7:D9 - - - Slot 1 - Golden Pawn - 7E14F7:DA - - - Slot 1 - Crown Jewels - 7E14F7:DB - - - Slot 1 - Wind Flute - 7E14F7:DC - - - Slot 1 - Escape - 7E14F7:DD - - - Slot 1 - Magic Jar - 7E14F7:DE - - - Slot 1 - Dragon Tooth - 7E14F7:DF - - - Slot 1 - Grilled Newt - 7E14F7:E0 - - - Slot 1 - Poison Pin - 7E14F7:E1 - - - Slot 1 - Might Sword - 7E14F7:E2 - - - Slot 1 - Straw Doll - 7E14F7:E3 - - - Slot 1 - Long Nail - 7E14F7:E4 - - - Slot 1 - Bomb - 7E14F7:E5 - - - Slot 1 - Alumina - 7E14F7:E6 - - - Slot 1 - Power Oil - 7E14F7:E7 - - - Slot 1 - Elven Bow - 7E14F7:E8 - - - Slot 1 - Artea's Bow - 7E14F7:E9 - - - Slot 1 - Might Bow - 7E14F7:EA - - - Slot 1 - Dummy (?) - 7E14F7:EB - - - Slot 1 - Dummy (?) - 7E14F7:EC - - - Slot 1 - Dummy (?) - 7E14F7:ED - - - Slot 1 - Dummy (?) - 7E14F7:EE - - - Slot 1 - Free Door - 7E14F7:EF - - - Slot 1 - Sheran Key - 7E14F7:F0 - - - Slot 1 - Letter - 7E14F7:F1 - - - Slot 1 - Dais Key - 7E14F7:F2 - - - Slot 1 - Shrine Key - 7E14F7:F3 - - - Slot 1 - Pirate Key - 7E14F7:F4 - - - Slot 1 - Light Key - 7E14F7:F5 - - - Slot 1 - Oil Key - 7E14F7:F6 - - - Slot 1 - Green Jade - 7E14F7:F7 - - - Slot 1 - Red Sapphire - 7E14F7:F8 - - - Slot 1 - Blue Jade - 7E14F7:F9 - - - Slot 1 - Purple Newt - 7E14F7:FA - - - Slot 1 - Glasdar Key - 7E14F7:FB - - - Slot 1 - Magic Flavor - 7E14F7:FC - - - Slot 1 - Fairy Kiss - 7E14F7:FD - - - Slot 2 - Nothing - 7E14F9:00 - - - Slot 2 - Knife - 7E14F9:01 - - - Slot 2 - Club - 7E14F9:02 - - - Slot 2 - Mace - 7E14F9:03 - - - Slot 2 - Dagger - 7E14F9:04 - - - Slot 2 - Long Knife - 7E14F9:05 - - - Slot 2 - Short Sword - 7E14F9:06 - - - Slot 2 - Rod - 7E14F9:07 - - - Slot 2 - Gladius - 7E14F9:08 - - - Slot 2 - Glass Robe - 7E14F9:09 - - - Slot 2 - Brone Sword - 7E14F9:0A - - - Slot 2 - Staff - 7E14F9:0B - - - Slot 2 - Scimitar - 7E14F9:0C - - - Slot 2 - Rapier - 7E14F9:0D - - - Slot 2 - Long Sword - 7E14F9:0E - - - Slot 2 - Long Staff - 7E14F9:0F - - - Slot 2 - Axe - 7E14F9:10 - - - Slot 2 - Spear - 7E14F9:11 - - - Slot 2 - Morning Star - 7E14F9:12 - - - Slot 2 - Catwhip - 7E14F9:13 - - - Slot 2 - Battle Axe - 7E14F9:14 - - - Slot 2 - Hammer Rod - 7E14F9:15 - - - Slot 2 - Trident - 7E14F9:16 - - - Slot 2 - Silver Rod - 7E14F9:17 - - - Slot 2 - Silver Sword - 7E14F9:18 - - - Slot 2 - Buster Sword - 7E14F9:19 - - - Slot 2 - Zircon Rod - 7E14F9:1A - - - Slot 2 - Great Axe - 7E14F9:1B - - - Slot 2 - Great Blade - 7E14F9:1C - - - Slot 2 - Zircon Axe - 7E14F9:1D - - - Slot 2 - Zircon Sword - 7E14F9:1E - - - Slot 2 - Broad Sword - 7E14F9:1F - - - Slot 2 - Broad Rod - 7E14F9:20 - - - Slot 2 - Luck Blade - 7E14F9:21 - - - Slot 2 - Gloom Pick - 7E14F9:22 - - - Slot 2 - Dual Blade - 7E14F9:23 - - - Slot 2 - Dress - 7E14F9:24 - - - Slot 2 - Cloth - 7E14F9:25 - - - Slot 2 - Cloth Armor - 7E14F9:26 - - - Slot 2 - Robe - 7E14F9:27 - - - Slot 2 - Tan Armor - 7E14F9:28 - - - Slot 2 - Tan Robe - 7E14F9:29 - - - Slot 2 - Light Armor - 7E14F9:2A - - - Slot 2 - Light Robe - 7E14F9:2B - - - Slot 2 - Chain Mail - 7E14F9:2C - - - Slot 2 - Chain Cloth - 7E14F9:2D - - - Slot 2 - Plate Cloth - 7E14F9:2E - - - Slot 2 - Brone Armor - 7E14F9:2F - - - Slot 2 - Quilted Silk - 7E14F9:30 - - - Slot 2 - Half Mail - 7E14F9:31 - - - Slot 2 - Brone Robe - 7E14F9:32 - - - Slot 2 - Silver Armor - 7E14F9:33 - - - Slot 2 - Silver Robe - 7E14F9:34 - - - Slot 2 - Plate Mail - 7E14F9:35 - - - Slot 2 - Zircon Robe - 7E14F9:36 - - - Slot 2 - Zircon Armor - 7E14F9:37 - - - Slot 2 - Clear Silk - 7E14F9:38 - - - Slot 2 - Bracelet - 7E14F9:39 - - - Slot 2 - Tan Shield - 7E14F9:3A - - - Slot 2 - Wood Shield - 7E14F9:3B - - - Slot 2 - Buckler - 7E14F9:3C - - - Slot 2 - Wood Wrist - 7E14F9:3D - - - Slot 2 - Kite Shield - 7E14F9:3E - - - Slot 2 - Round Shield - 7E14F9:3F - - - Slot 2 - Round Wrist - 7E14F9:40 - - - Slot 2 - Brone Shield - 7E14F9:41 - - - Slot 2 - Tower Shield - 7E14F9:42 - - - Slot 2 - Large Shield - 7E14F9:43 - - - Slot 2 - Silver Wrist - 7E14F9:44 - - - Slot 2 - Silver Plate - 7E14F9:45 - - - Slot 2 - Zircon Wrist - 7E14F9:46 - - - Slot 2 - Zircon Plate - 7E14F9:47 - - - Slot 2 - Cloth Helm - 7E14F9:48 - - - Slot 2 - Tan Helm - 7E14F9:49 - - - Slot 2 - Hair Band - 7E14F9:4A - - - Slot 2 - Wood Helm - 7E14F9:4B - - - Slot 2 - Glass Cap - 7E14F9:4C - - - Slot 2 - Brone Helm - 7E14F9:4D - - - Slot 2 - Red Beret - 7E14F9:4E - - - Slot 2 - Iron Helm - 7E14F9:4F - - - Slot 2 - Plate Cap - 7E14F9:50 - - - Slot 2 - Plate Helm - 7E14F9:51 - - - Slot 2 - Glass Beret - 7E14F9:52 - - - Slot 2 - Silver Helm - 7E14F9:53 - - - Slot 2 - Sakret - 7E14F9:54 - - - Slot 2 - Zircon Beret - 7E14F9:55 - - - Slot 2 - Zircon Helm - 7E14F9:56 - - - Slot 2 - Sandal - 7E14F9:57 - - - Slot 2 - Cloth Shoes - 7E14F9:58 - - - Slot 2 - Tan Shoes - 7E14F9:59 - - - Slot 2 - Spike Shoes - 7E14F9:5A - - - Slot 2 - Heeled Shoes - 7E14F9:5B - - - Slot 2 - Wind Shoes - 7E14F9:5C - - - Slot 2 - Wind Heels - 7E14F9:5D - - - Slot 2 - Knife Shoes - 7E14F9:5E - - - Slot 2 - Needle Heels - 7E14F9:5F - - - Slot 2 - Sonic Shoes - 7E14F9:60 - - - Slot 2 - Sonic Heels - 7E14F9:61 - - - Slot 2 - Sword Shoes - 7E14F9:62 - - - Slot 2 - Cat Heels - 7E14F9:63 - - - Slot 2 - Mach Shoes - 7E14F9:64 - - - Slot 2 - Mach Heels - 7E14F9:65 - - - Slot 2 - Power Ring - 7E14F9:66 - - - Slot 2 - HiPower Ring - 7E14F9:67 - - - Slot 2 - Daze Ring - 7E14F9:68 - - - Slot 2 - Hi Daze Ring - 7E14F9:69 - - - Slot 2 - Mind Ring - 7E14F9:6A - - - Slot 2 - Sonic Ring - 7E14F9:6B - - - Slot 2 - Mach Ring - 7E14F9:6C - - - Slot 2 - Undead Ring - 7E14F9:6D - - - Slot 2 - Ghost Ring - 7E14F9:6E - - - Slot 2 - Dragon Ring - 7E14F9:6F - - - Slot 2 - Sea Ring - 7E14F9:70 - - - Slot 2 - Fly Ring - 7E14F9:71 - - - Slot 2 - Water Ring - 7E14F9:72 - - - Slot 2 - Fire Ring - 7E14F9:73 - - - Slot 2 - Ice Ring - 7E14F9:74 - - - Slot 2 - Electro Ring - 7E14F9:75 - - - Slot 2 - Flash Ring - 7E14F9:76 - - - Slot 2 - Flame Ring - 7E14F9:77 - - - Slot 2 - Water Ring - 7E14F9:78 - - - Slot 2 - Blast Ring - 7E14F9:79 - - - Slot 2 - Frost Ring - 7E14F9:7A - - - Slot 2 - Might Armor - 7E14F9:7B - - - Slot 2 - Might Shield - 7E14F9:7C - - - Slot 2 - Might Helmet - 7E14F9:7D - - - Slot 2 - Gloom Ring - 7E14F9:7E - - - Slot 2 - Gloom Voice - 7E14F9:7F - - - Slot 2 - Dummy (?) - 7E14F9:80 - - - Slot 2 - Brone Breast - 7E14F9:81 - - - Slot 2 - Carbo Sword - 7E14F9:82 - - - Slot 2 - Carbo Plate - 7E14F9:83 - - - Slot 2 - Carbo Shield - 7E14F9:84 - - - Slot 2 - Carbo Helm - 7E14F9:85 - - - Slot 2 - Carbo Cap - 7E14F9:86 - - - Slot 2 - Gloom Guard - 7E14F9:87 - - - Slot 2 - Diamond Ring - 7E14F9:88 - - - Slot 2 - Engage Ring - 7E14F9:89 - - - Slot 2 - Monster Ring - 7E14F9:8A - - - Slot 2 - Blue Ring - 7E14F9:8B - - - Slot 2 - Yellow Ring - 7E14F9:8C - - - Slot 2 - Red Ring - 7E14F9:8D - - - Slot 2 - Purple Ring - 7E14F9:8E - - - Slot 2 - Green Ring - 7E14F9:8F - - - Slot 2 - White Ring - 7E14F9:90 - - - Slot 2 - Black Ring - 7E14F9:91 - - - Slot 2 - Heavy Ring - 7E14F9:92 - - - Slot 2 - Wave Ring - 7E14F9:93 - - - Slot 2 - Potion - 7E14F9:94 - - - Slot 2 - Hi Potion - 7E14F9:95 - - - Slot 2 - Ex Potion - 7E14F9:96 - - - Slot 2 - Hi Magic - 7E14F9:97 - - - Slot 2 - Ex Magic - 7E14F9:98 - - - Slot 2 - Antidote - 7E14F9:99 - - - Slot 2 - Sweet Water - 7E14F9:9A - - - Slot 2 - Foul Water - 7E14F9:9B - - - Slot 2 - Awaken - 7E14F9:9C - - - Slot 2 - Stone Cure - 7E14F9:9D - - - Slot 2 - Mystery Pin - 7E14F9:9E - - - Slot 2 - Shriek - 7E14F9:9F - - - Slot 2 - Swing Wing - 7E14F9:A0 - - - Slot 2 - Magic Guard - 7E14F9:A1 - - - Slot 2 - Power Gourd - 7E14F9:A2 - - - Slot 2 - Mind Gourd - 7E14F9:A3 - - - Slot 2 - Power Potion - 7E14F9:A4 - - - Slot 2 - Spell Potion - 7E14F9:A5 - - - Slot 2 - Speed Potion - 7E14F9:A6 - - - Slot 2 - Mind Potion - 7E14F9:A7 - - - Slot 2 - Great Potion - 7E14F9:A8 - - - Slot 2 - Float - 7E14F9:A9 - - - Slot 2 - Smoke Ball - 7E14F9:AA - - - Slot 2 - Arrow - 7E14F9:AB - - - Slot 2 - Mid Arrow - 7E14F9:AC - - - Slot 2 - Big Arrow - 7E14F9:AD - - - Slot 2 - Arrows - 7E14F9:AE - - - Slot 2 - Hi Arrows - 7E14F9:AF - - - Slot 2 - Ex Arrows - 7E14F9:B0 - - - Slot 2 - Dragon Arrow - 7E14F9:B1 - - - Slot 2 - Sleep Arrow - 7E14F9:B2 - - - Slot 2 - Puzzle Arrow - 7E14F9:B3 - - - Slot 2 - Stun Arrow - 7E14F9:B4 - - - Slot 2 - Gloom Arrow - 7E14F9:B5 - - - Slot 2 - Bomb - 7E14F9:B6 - - - Slot 2 - Hi Bomb - 7E14F9:B7 - - - Slot 2 - Ex Bomb - 7E14F9:B8 - - - Slot 2 - Miracle - 7E14F9:B9 - - - Slot 2 - Revive - 7E14F9:BA - - - Slot 2 - Pear Cider - 7E14F9:BB - - - Slot 2 - Sour Cider - 7E14F9:BC - - - Slot 2 - Lime Cider - 7E14F9:BD - - - Slot 2 - Plum Cider - 7E14F9:BE - - - Slot 2 - Apple Cider - 7E14F9:BF - - - Slot 2 - Hair Band - 7E14F9:C0 - - - Slot 2 - Brooch - 7E14F9:C1 - - - Slot 2 - Earring - 7E14F9:C2 - - - Slot 2 - Necklace - 7E14F9:C3 - - - Slot 2 - Stuffed Bear - 7E14F9:C4 - - - Slot 2 - Stuffed Dog - 7E14F9:C5 - - - Slot 2 - Stuffed Pig - 7E14F9:C6 - - - Slot 2 - Emerald - 7E14F9:C7 - - - Slot 2 - Opal - 7E14F9:C8 - - - Slot 2 - Goblet - 7E14F9:C9 - - - Slot 2 - Ear Tip - 7E14F9:CA - - - Slot 2 - Empty Bottle - 7E14F9:CB - - - Slot 2 - Gown - 7E14F9:CC - - - Slot 2 - Ribbon - 7E14F9:CD - - - Slot 2 - Fry Pan - 7E14F9:CE - - - Slot 2 - Small Knife - 7E14F9:CF - - - Slot 2 - Pot - 7E14F9:D0 - - - Slot 2 - Chop Block - 7E14F9:D1 - - - Slot 2 - Apron - 7E14F9:D2 - - - Slot 2 - Dragon Egg - 7E14F9:D3 - - - Slot 2 - Crown - 7E14F9:D4 - - - Slot 2 - Secret Map - 7E14F9:D5 - - - Slot 2 - Miracle Gem - 7E14F9:D6 - - - Slot 2 - Silver Wick - 7E14F9:D7 - - - Slot 2 - Royal Statue - 7E14F9:D8 - - - Slot 2 - Silver Tarot - 7E14F9:D9 - - - Slot 2 - Golden Pawn - 7E14F9:DA - - - Slot 2 - Crown Jewels - 7E14F9:DB - - - Slot 2 - Wind Flute - 7E14F9:DC - - - Slot 2 - Escape - 7E14F9:DD - - - Slot 2 - Magic Jar - 7E14F9:DE - - - Slot 2 - Dragon Tooth - 7E14F9:DF - - - Slot 2 - Grilled Newt - 7E14F9:E0 - - - Slot 2 - Poison Pin - 7E14F9:E1 - - - Slot 2 - Might Sword - 7E14F9:E2 - - - Slot 2 - Straw Doll - 7E14F9:E3 - - - Slot 2 - Long Nail - 7E14F9:E4 - - - Slot 2 - Bomb - 7E14F9:E5 - - - Slot 2 - Alumina - 7E14F9:E6 - - - Slot 2 - Power Oil - 7E14F9:E7 - - - Slot 2 - Elven Bow - 7E14F9:E8 - - - Slot 2 - Artea's Bow - 7E14F9:E9 - - - Slot 2 - Might Bow - 7E14F9:EA - - - Slot 2 - Dummy (?) - 7E14F9:EB - - - Slot 2 - Dummy (?) - 7E14F9:EC - - - Slot 2 - Dummy (?) - 7E14F9:ED - - - Slot 2 - Dummy (?) - 7E14F9:EE - - - Slot 2 - Free Door - 7E14F9:EF - - - Slot 2 - Sheran Key - 7E14F9:F0 - - - Slot 2 - Letter - 7E14F9:F1 - - - Slot 2 - Dais Key - 7E14F9:F2 - - - Slot 2 - Shrine Key - 7E14F9:F3 - - - Slot 2 - Pirate Key - 7E14F9:F4 - - - Slot 2 - Light Key - 7E14F9:F5 - - - Slot 2 - Oil Key - 7E14F9:F6 - - - Slot 2 - Green Jade - 7E14F9:F9 - - - Slot 2 - Red Sapphire - 7E14F9:F8 - - - Slot 2 - Blue Jade - 7E14F9:F9 - - - Slot 2 - Purple Newt - 7E14F9:FA - - - Slot 2 - Glasdar Key - 7E14F9:FB - - - Slot 2 - Magic Flavor - 7E14F9:FC - - - Slot 2 - Fairy Kiss - 7E14F9:FD - - - Slot 3 - Nothing - 7E14FB:00 - - - Slot 3 - Knife - 7E14FB:01 - - - Slot 3 - Club - 7E14FB:02 - - - Slot 3 - Mace - 7E14FB:03 - - - Slot 3 - Dagger - 7E14FB:04 - - - Slot 3 - Long Knife - 7E14FB:05 - - - Slot 3 - Short Sword - 7E14FB:06 - - - Slot 3 - Rod - 7E14FB:07 - - - Slot 3 - Gladius - 7E14FB:08 - - - Slot 3 - Glass Robe - 7E14FB:09 - - - Slot 3 - Brone Sword - 7E14FB:0A - - - Slot 3 - Staff - 7E14FB:0B - - - Slot 3 - Scimitar - 7E14FB:0C - - - Slot 3 - Rapier - 7E14FB:0D - - - Slot 3 - Long Sword - 7E14FB:0E - - - Slot 3 - Long Staff - 7E14FB:0F - - - Slot 3 - Axe - 7E14FB:10 - - - Slot 3 - Spear - 7E14FB:11 - - - Slot 3 - Morning Star - 7E14FB:12 - - - Slot 3 - Catwhip - 7E14FB:13 - - - Slot 3 - Battle Axe - 7E14FB:14 - - - Slot 3 - Hammer Rod - 7E14FB:15 - - - Slot 3 - Trident - 7E14FB:16 - - - Slot 3 - Silver Rod - 7E14FB:17 - - - Slot 3 - Silver Sword - 7E14FB:18 - - - Slot 3 - Buster Sword - 7E14FB:19 - - - Slot 3 - Zircon Rod - 7E14FB:1A - - - Slot 3 - Great Axe - 7E14FB:1B - - - Slot 3 - Great Blade - 7E14FB:1C - - - Slot 3 - Zircon Axe - 7E14FB:1D - - - Slot 3 - Zircon Sword - 7E14FB:1E - - - Slot 3 - Broad Sword - 7E14FB:1F - - - Slot 3 - Broad Rod - 7E14FB:20 - - - Slot 3 - Luck Blade - 7E14FB:21 - - - Slot 3 - Gloom Pick - 7E14FB:22 - - - Slot 3 - Dual Blade - 7E14FB:23 - - - Slot 3 - Dress - 7E14FB:24 - - - Slot 3 - Cloth - 7E14FB:25 - - - Slot 3 - Cloth Armor - 7E14FB:26 - - - Slot 3 - Robe - 7E14FB:27 - - - Slot 3 - Tan Armor - 7E14FB:28 - - - Slot 3 - Tan Robe - 7E14FB:29 - - - Slot 3 - Light Armor - 7E14FB:2A - - - Slot 3 - Light Robe - 7E14FB:2B - - - Slot 3 - Chain Mail - 7E14FB:2C - - - Slot 3 - Chain Cloth - 7E14FB:2D - - - Slot 3 - Plate Cloth - 7E14FB:2E - - - Slot 3 - Brone Armor - 7E14FB:2F - - - Slot 3 - Quilted Silk - 7E14FB:30 - - - Slot 3 - Half Mail - 7E14FB:31 - - - Slot 3 - Brone Robe - 7E14FB:32 - - - Slot 3 - Silver Armor - 7E14FB:33 - - - Slot 3 - Silver Robe - 7E14FB:34 - - - Slot 3 - Plate Mail - 7E14FB:35 - - - Slot 3 - Zircon Robe - 7E14FB:36 - - - Slot 3 - Zircon Armor - 7E14FB:37 - - - Slot 3 - Clear Silk - 7E14FB:38 - - - Slot 3 - Bracelet - 7E14FB:39 - - - Slot 3 - Tan Shield - 7E14FB:3A - - - Slot 3 - Wood Shield - 7E14FB:3B - - - Slot 3 - Buckler - 7E14FB:3C - - - Slot 3 - Wood Wrist - 7E14FB:3D - - - Slot 3 - Kite Shield - 7E14FB:3E - - - Slot 3 - Round Shield - 7E14FB:3F - - - Slot 3 - Round Wrist - 7E14FB:40 - - - Slot 3 - Brone Shield - 7E14FB:41 - - - Slot 3 - Tower Shield - 7E14FB:42 - - - Slot 3 - Large Shield - 7E14FB:43 - - - Slot 3 - Silver Wrist - 7E14FB:44 - - - Slot 3 - Silver Plate - 7E14FB:45 - - - Slot 3 - Zircon Wrist - 7E14FB:46 - - - Slot 3 - Zircon Plate - 7E14FB:47 - - - Slot 3 - Cloth Helm - 7E14FB:48 - - - Slot 3 - Tan Helm - 7E14FB:49 - - - Slot 3 - Hair Band - 7E14FB:4A - - - Slot 3 - Wood Helm - 7E14FB:4B - - - Slot 3 - Glass Cap - 7E14FB:4C - - - Slot 3 - Brone Helm - 7E14FB:4D - - - Slot 3 - Red Beret - 7E14FB:4E - - - Slot 3 - Iron Helm - 7E14FB:4F - - - Slot 3 - Plate Cap - 7E14FB:50 - - - Slot 3 - Plate Helm - 7E14FB:51 - - - Slot 3 - Glass Beret - 7E14FB:52 - - - Slot 3 - Silver Helm - 7E14FB:53 - - - Slot 3 - Sakret - 7E14FB:54 - - - Slot 3 - Zircon Beret - 7E14FB:55 - - - Slot 3 - Zircon Helm - 7E14FB:56 - - - Slot 3 - Sandal - 7E14FB:57 - - - Slot 3 - Cloth Shoes - 7E14FB:58 - - - Slot 3 - Tan Shoes - 7E14FB:59 - - - Slot 3 - Spike Shoes - 7E14FB:5A - - - Slot 3 - Heeled Shoes - 7E14FB:5B - - - Slot 3 - Wind Shoes - 7E14FB:5C - - - Slot 3 - Wind Heels - 7E14FB:5D - - - Slot 3 - Knife Shoes - 7E14FB:5E - - - Slot 3 - Needle Heels - 7E14FB:5F - - - Slot 3 - Sonic Shoes - 7E14FB:60 - - - Slot 3 - Sonic Heels - 7E14FB:61 - - - Slot 3 - Sword Shoes - 7E14FB:62 - - - Slot 3 - Cat Heels - 7E14FB:63 - - - Slot 3 - Mach Shoes - 7E14FB:64 - - - Slot 3 - Mach Heels - 7E14FB:65 - - - Slot 3 - Power Ring - 7E14FB:66 - - - Slot 3 - HiPower Ring - 7E14FB:67 - - - Slot 3 - Daze Ring - 7E14FB:68 - - - Slot 3 - Hi Daze Ring - 7E14FB:69 - - - Slot 3 - Mind Ring - 7E14FB:6A - - - Slot 3 - Sonic Ring - 7E14FB:6B - - - Slot 3 - Mach Ring - 7E14FB:6C - - - Slot 3 - Undead Ring - 7E14FB:6D - - - Slot 3 - Ghost Ring - 7E14FB:6E - - - Slot 3 - Dragon Ring - 7E14FB:6F - - - Slot 3 - Sea Ring - 7E14FB:70 - - - Slot 3 - Fly Ring - 7E14FB:71 - - - Slot 3 - Water Ring - 7E14FB:72 - - - Slot 3 - Fire Ring - 7E14FB:73 - - - Slot 3 - Ice Ring - 7E14FB:74 - - - Slot 3 - Electro Ring - 7E14FB:75 - - - Slot 3 - Flash Ring - 7E14FB:76 - - - Slot 3 - Flame Ring - 7E14FB:77 - - - Slot 3 - Water Ring - 7E14FB:78 - - - Slot 3 - Blast Ring - 7E14FB:79 - - - Slot 3 - Frost Ring - 7E14FB:7A - - - Slot 3 - Might Armor - 7E14FB:7B - - - Slot 3 - Might Shield - 7E14FB:7C - - - Slot 3 - Might Helmet - 7E14FB:7D - - - Slot 3 - Gloom Ring - 7E14FB:7E - - - Slot 3 - Gloom Voice - 7E14FB:7F - - - Slot 3 - Dummy (?) - 7E14FB:80 - - - Slot 3 - Brone Breast - 7E14FB:81 - - - Slot 3 - Carbo Sword - 7E14FB:82 - - - Slot 3 - Carbo Plate - 7E14FB:83 - - - Slot 3 - Carbo Shield - 7E14FB:84 - - - Slot 3 - Carbo Helm - 7E14FB:85 - - - Slot 3 - Carbo Cap - 7E14FB:86 - - - Slot 3 - Gloom Guard - 7E14FB:87 - - - Slot 3 - Diamond Ring - 7E14FB:88 - - - Slot 3 - Engage Ring - 7E14FB:89 - - - Slot 3 - Monster Ring - 7E14FB:8A - - - Slot 3 - Blue Ring - 7E14FB:8B - - - Slot 3 - Yellow Ring - 7E14FB:8C - - - Slot 3 - Red Ring - 7E14FB:8D - - - Slot 3 - Purple Ring - 7E14FB:8E - - - Slot 3 - Green Ring - 7E14FB:8F - - - Slot 3 - White Ring - 7E14FB:90 - - - Slot 3 - Black Ring - 7E14FB:91 - - - Slot 3 - Heavy Ring - 7E14FB:92 - - - Slot 3 - Wave Ring - 7E14FB:93 - - - Slot 3 - Potion - 7E14FB:94 - - - Slot 3 - Hi Potion - 7E14FB:95 - - - Slot 3 - Ex Potion - 7E14FB:96 - - - Slot 3 - Hi Magic - 7E14FB:97 - - - Slot 3 - Ex Magic - 7E14FB:98 - - - Slot 3 - Antidote - 7E14FB:99 - - - Slot 3 - Sweet Water - 7E14FB:9A - - - Slot 3 - Foul Water - 7E14FB:9B - - - Slot 3 - Awaken - 7E14FB:9C - - - Slot 3 - Stone Cure - 7E14FB:9D - - - Slot 3 - Mystery Pin - 7E14FB:9E - - - Slot 3 - Shriek - 7E14FB:9F - - - Slot 3 - Swing Wing - 7E14FB:A0 - - - Slot 3 - Magic Guard - 7E14FB:A1 - - - Slot 3 - Power Gourd - 7E14FB:A2 - - - Slot 3 - Mind Gourd - 7E14FB:A3 - - - Slot 3 - Power Potion - 7E14FB:A4 - - - Slot 3 - Spell Potion - 7E14FB:A5 - - - Slot 3 - Speed Potion - 7E14FB:A6 - - - Slot 3 - Mind Potion - 7E14FB:A7 - - - Slot 3 - Great Potion - 7E14FB:A8 - - - Slot 3 - Float - 7E14FB:A9 - - - Slot 3 - Smoke Ball - 7E14FB:AA - - - Slot 3 - Arrow - 7E14FB:AB - - - Slot 3 - Mid Arrow - 7E14FB:AC - - - Slot 3 - Big Arrow - 7E14FB:AD - - - Slot 3 - Arrows - 7E14FB:AE - - - Slot 3 - Hi Arrows - 7E14FB:AF - - - Slot 3 - Ex Arrows - 7E14FB:B0 - - - Slot 3 - Dragon Arrow - 7E14FB:B1 - - - Slot 3 - Sleep Arrow - 7E14FB:B2 - - - Slot 3 - Puzzle Arrow - 7E14FB:B3 - - - Slot 3 - Stun Arrow - 7E14FB:B4 - - - Slot 3 - Gloom Arrow - 7E14FB:B5 - - - Slot 3 - Bomb - 7E14FB:B6 - - - Slot 3 - Hi Bomb - 7E14FB:B7 - - - Slot 3 - Ex Bomb - 7E14FB:B8 - - - Slot 3 - Miracle - 7E14FB:B9 - - - Slot 3 - Revive - 7E14FB:BA - - - Slot 3 - Pear Cider - 7E14FB:BB - - - Slot 3 - Sour Cider - 7E14FB:BC - - - Slot 3 - Lime Cider - 7E14FB:BD - - - Slot 3 - Plum Cider - 7E14FB:BE - - - Slot 3 - Apple Cider - 7E14FB:BF - - - Slot 3 - Hair Band - 7E14FB:C0 - - - Slot 3 - Brooch - 7E14FB:C1 - - - Slot 3 - Earring - 7E14FB:C2 - - - Slot 3 - Necklace - 7E14FB:C3 - - - Slot 3 - Stuffed Bear - 7E14FB:C4 - - - Slot 3 - Stuffed Dog - 7E14FB:C5 - - - Slot 3 - Stuffed Pig - 7E14FB:C6 - - - Slot 3 - Emerald - 7E14FB:C7 - - - Slot 3 - Opal - 7E14FB:C8 - - - Slot 3 - Goblet - 7E14FB:C9 - - - Slot 3 - Ear Tip - 7E14FB:CA - - - Slot 3 - Empty Bottle - 7E14FB:CB - - - Slot 3 - Gown - 7E14FB:CC - - - Slot 3 - Ribbon - 7E14FB:CD - - - Slot 3 - Fry Pan - 7E14FB:CE - - - Slot 3 - Small Knife - 7E14FB:CF - - - Slot 3 - Pot - 7E14FB:D0 - - - Slot 3 - Chop Block - 7E14FB:D1 - - - Slot 3 - Apron - 7E14FB:D2 - - - Slot 3 - Dragon Egg - 7E14FB:D3 - - - Slot 3 - Crown - 7E14FB:D4 - - - Slot 3 - Secret Map - 7E14FB:D5 - - - Slot 3 - Miracle Gem - 7E14FB:D6 - - - Slot 3 - Silver Wick - 7E14FB:D7 - - - Slot 3 - Royal Statue - 7E14FB:D8 - - - Slot 3 - Silver Tarot - 7E14FB:D9 - - - Slot 3 - Golden Pawn - 7E14FB:DA - - - Slot 3 - Crown Jewels - 7E14FB:DB - - - Slot 3 - Wind Flute - 7E14FB:DC - - - Slot 3 - Escape - 7E14FB:DD - - - Slot 3 - Magic Jar - 7E14FB:DE - - - Slot 3 - Dragon Tooth - 7E14FB:DF - - - Slot 3 - Grilled Newt - 7E14FB:E0 - - - Slot 3 - Poison Pin - 7E14FB:E1 - - - Slot 3 - Might Sword - 7E14FB:E2 - - - Slot 3 - Straw Doll - 7E14FB:E3 - - - Slot 3 - Long Nail - 7E14FB:E4 - - - Slot 3 - Bomb - 7E14FB:E5 - - - Slot 3 - Alumina - 7E14FB:E6 - - - Slot 3 - Power Oil - 7E14FB:E7 - - - Slot 3 - Elven Bow - 7E14FB:E8 - - - Slot 3 - Artea's Bow - 7E14FB:E9 - - - Slot 3 - Might Bow - 7E14FB:EA - - - Slot 3 - Dummy (?) - 7E14FB:EB - - - Slot 3 - Dummy (?) - 7E14FB:EC - - - Slot 3 - Dummy (?) - 7E14FB:ED - - - Slot 3 - Dummy (?) - 7E14FB:EE - - - Slot 3 - Free Door - 7E14FB:EF - - - Slot 3 - Sheran Key - 7E14FB:F0 - - - Slot 3 - Letter - 7E14FB:F1 - - - Slot 3 - Dais Key - 7E14FB:F2 - - - Slot 3 - Shrine Key - 7E14FB:F3 - - - Slot 3 - Pirate Key - 7E14FB:F4 - - - Slot 3 - Light Key - 7E14FB:F5 - - - Slot 3 - Oil Key - 7E14FB:F6 - - - Slot 3 - Green Jade - 7E14FB:FB - - - Slot 3 - Red Sapphire - 7E14FB:F8 - - - Slot 3 - Blue Jade - 7E14FB:F9 - - - Slot 3 - Purple Newt - 7E14FB:FA - - - Slot 3 - Glasdar Key - 7E14FB:FB - - - Slot 3 - Magic Flavor - 7E14FB:FC - - - Slot 3 - Fairy Kiss - 7E14FB:FD - - - - Lufia II - Rise of the Sinistrals (USA) - - Infinite 999 MP in and out of battle - EEEE-44D9 - - - Level 99 after one battle - 6EEB-17A1 - - - Level 83 after one battle - EEEB-17A1 - - - Gain 35,000 gold after a battle - EEED-4F05 - - - Enemies always miss - EEE5-4FD5 - - - One hit kills - EEE7-44D5 - - - No random battles on world map - 7E11E3:00 - - - 9999999 GP - 7E0A8A:7F+7E0A8B:96+7E0A8C:98 - - - 9999999 Coins - 7E0B55:7F+7E0B56:96+7E0B57:98 - - - All warps - 7E098D:FF+7E098E:FF+7E098F:FF+7E0981:FF+7E0990:FF+7E0982:FF+7E097B:FF+7E0983:FF+7E097C:FF+7E097D:FF+7E097E:FF+7E097F:FF+7E0980:FF+7E0986:FF+7E0988:FF+7E0989:FF+7E0991:FF+7E098A:FF+7E0992:FF+7E098B:FF+7E0996:FF+7E098C:FF - - - P1 - 999 HP - 7E0BBE:E7+7E0BBF:03 - - - P1 - 999 MP - 7E0BC0:E7+7E0BC1:03 - - - P1 - 999 MAX MP - 7E0BD4:E7+7E0BD5:03 - - - P1 - 999 STP - 7E0BFE:E7+7E0BFF:03 - - - P1 - 999 DFP - 7E0C00:E7+7E0C01:03 - - - P1 - 999 STR - 7E0C02:E7+7E0C03:03 - - - P1 - 999 AGL - 7E0C04:E7+7E0C05:03 - - - P1 - 999 INT - 7E0C06:E7+7E0C07:03 - - - P1 - 999 GUT - 7E0C08:E7+7E0C09:03 - - - P1 - 999 MGR - 7E0C0A:E7+7E0C0B:03 - - - P1 - Max IP - 7E0C69:FF - - - P2 - 999 HP - 7E0C7C:E7+7E0C7D:03 - - - P2 - 999 MP - 7E0C7E:E7+7E0C7F:03 - - - P2 - 999 MAX MP - 7E0C92:E7+7E0C93:03 - - - P2 - 999 STP - 7E0CBC:E7+7E0CBD:03 - - - P2 - 999 DFP - 7E0CBE:E7+7E0CBF:03 - - - P2 - 999 STR - 7E0CC0:E7+7E0CC1:03 - - - P2 - 999 AGL - 7E0CC2:E7+7E0CC3:03 - - - P2 - 999 INT - 7E0CC4:E7+7E0CC5:03 - - - P2 - 999 GUT - 7E0CC6:E7+7E0CC7:03 - - - P2 - 999 MGR - 7E0CC8:E7+7E0CC9:03 - - - P2 - Max IP - 7E0D27:FF - - - P3 - 999 HP - 7E0D3A:E7+7E0D3B:03 - - - P3 - 999 MP - 7E0D3C:E7+7E0D3D:03 - - - P3 - 999 MAX MP - 7E0D50:E7+7E0D51:03 - - - P3 - 999 STP - 7E0D7A:E7+7E0D7B:03 - - - P3 - 999 DFP - 7E0D7C:E7+7E0D7D:03 - - - P3 - 999 STR - 7E0D7E:E7+7E0D7F:03 - - - P3 - 999 AGL - 7E0D80:E7+7E0D81:03 - - - P3 - 999 INT - 7E0D82:E7+7E0D83:03 - - - P3 - 999 GUT - 7E0D84:E7+7E0D85:03 - - - P3 - 999 MGR - 7E0D86:E7+7E0D87:03 - - - P3 - Max IP - 7E0DE5:FF - - - P4 - 999 HP - 7E0DF8:E7+7E0DF9:03 - - - P4 - 999 MP - 7E0DFA:E7+7E0DFB:03 - - - P4 - 999 MAX MP - 7E0E0E:E7+7E0E0F:03 - - - P4 - 999 STP - 7E0E38:E7+7E0E39:03 - - - P4 - 999 DFP - 7E0E3A:E7+7E0E3B:03 - - - P4 - 999 STR - 7E0E3C:E7+7E0E3D:03 - - - P4 - 999 AGL - 7E0E3E:E7+7E0E3F:03 - - - P4 - 999 INT - 7E0E40:E7+7E0E41:03 - - - P4 - 999 GUT - 7E0E42:E7+7E0E43:03 - - - P4 - 999 MGR - 7E0E44:E7+7E0E45:03 - - - P4 - Max IP - 7E0EA3:FF - - - P5 - 999 HP - 7E0EB6:E7+7E0EB7:03 - - - P5 - 999 MP - 7E0EB8:E7+7E0EB9:03 - - - P5 - 999 MAX MP - 7E0ECC:E7+7E0ECC:03 - - - P5 - 999 STP - 7E0EF6:E7+7E0EF7:03 - - - P5 - 999 DFP - 7E0EF8:E7+7E0EF9:03 - - - P5 - 999 STR - 7E0EFA:E7+7E0EFB:03 - - - P5 - 999 AGL - 7E0EFC:E7+7E0EFD:03 - - - P5 - 999 INT - 7E0EFE:E7+7E0EFF:03 - - - P5 - 999 GUT - 7E0F00:E7+7E0F01:03 - - - P5 - 999 MGR - 7E0F02:E7+7E0F03:03 - - - P5 - Max IP - 7E0F61:FF - - - P6 - 999 HP - 7E0F74:E7+7E0F75:03 - - - P6 - 999 MP - 7E0F76:E7+7E0F77:03 - - - P6 - 999 MAX MP - 7E0F8A:E7+7E0F8B:03 - - - P6 - 999 STP - 7E0FB4:E7+7E0FB5:03 - - - P6 - 999 DFP - 7E0FB6:E7+7E0FB7:03 - - - P6 - 999 STR - 7E0FB8:E7+7E0FB9:03 - - - P6 - 999 AGL - 7E0FBA:E7+7E0FBB:03 - - - P6 - 999 INT - 7E0FBC:E7+7E0FBD:03 - - - P6 - 999 GUT - 7E0FBE:E7+7E0FBF:03 - - - P6 - 999 MGR - 7E0FC0:E7+7E0FC1:03 - - - P6 - Max IP - 7E101F:FF - - - P7 - 999 HP - 7E1032:E7+7E1033:03 - - - P7 - 999 MP - 7E1034:E7+7E1035:03 - - - P7 - 999 MAX MP - 7E1048:E7+7E1049:03 - - - P7 - 999 STP - 7E1072:E7+7E1073:03 - - - P7 - 999 DFP - 7E1074:E7+7E1075:03 - - - P7 - 999 STR - 7E1076:E7+7E1077:03 - - - P7 - 999 AGL - 7E1078:E7+7E1079:03 - - - P7 - 999 INT - 7E107A:E7+7E107B:03 - - - P7 - 999 GUT - 7E107C:E7+7E107D:03 - - - P7 - 999 MGR - 7E107E:E7+7E107F:03 - - - P7 - Max IP - 7E10DD:FF - - - - Madden NFL '94 (USA) - - Always 1st down - 3CAC-5DDD - - - 1 play to get a 1st down - D4A8-54AD - - - 2 plays to get a 1st down - D7A8-54AD - - - 3 plays to get a 1st down - D0A8-54AD - - - 5 plays to get a 1st down - D1A8-54AD - - - 7 plays to get a 1st down - D6A8-54AD - - - Extra points worth 0 points - DDAE-ED0F - - - Extra points worth 3 points - D7AE-ED0F - - - Extra points worth 5 points - D9AE-ED0F - - - Extra points worth 7 points - D5AE-ED0F - - - Field goals worth 0 points - DDAE-E76F - - - Field goals worth 2 points - D4AE-E76F - - - Field goals worth 5 points - D9AE-E76F - - - Field goals worth 7 points - D5AE-E76F - - - Field goals worth 9 points - DBAE-E76F - - - Safeties worth 0 points - DDAB-8DAD - - - Safeties worth 3 points - D7AB-8DAD - - - Safeties worth 5 points - D9AB-8DAD - - - Safeties worth 7 points - D5AB-8DAD - - - Touchdowns worth 0 points - DDAA-5D0F - - - Touchdowns worth 3 points - D7AA-5D0F - - - Touchdowns worth 5 points - D9AA-5D0F - - - Touchdowns worth 9 points - DBAA-5D0F - - - TD, FG, PAT, S worth 1 point - home team - CBA2-8F6D+DFA2-8FAD - - - TD, FG, PAT, S worth 3 points - home team - CBA2-8F6D+D7A2-8FAD - - - TD, FG, PAT, S worth 5 points - home team - CBA2-8F6D+D9A2-8FAD - - - TD, FG, PAT, S worth 7 points - home team - CBA2-8F6D+D5A2-8FAD - - - TD, FG, PAT, S worth 14 points - home team - CBA2-8F6D+D3A2-8FAD - - - TD, FG, PAT, S worth 21 points - home team - CBA2-8F6D+F9A2-8FAD - - - TD, FG, PAT, S worth 35 points - home team - CBA2-8F6D+47A2-8FAD - - - TD, FG, PAT, S worth 3 points - visitor - CBAD-ED0D+DFAD-ED6D - - - TD, FG, PAT, S worth 5 points - visitor - CBAD-ED0D+D9AD-ED6D - - - TD, FG, PAT, S worth 7 points - visitor - CBAD-ED0D+D5AD-ED6D - - - TD, FG, PAT, S worth 14 points - visitor - CBAD-ED0D+D3AD-ED6D - - - TD, FG, PAT, S worth 21 points - visitor - CBAD-ED0D+F9AD-ED6D - - - TD, FG, PAT, S worth 35 points - visitor - CBAD-ED0D+47AD-ED6D - - - Home team starts with a 3-point lead - D73F-7D0F+DE3F-7F6F - - - Home team starts with a 7-point lead - D53F-7D0F+DE3F-7F6F - - - Home team starts with a 10-point lead - DC3F-7D0F+DE3F-7F6F - - - Home team starts with a 14-point lead - D33F-7D0F+DE3F-7F6F - - - Home team starts with a 35-point lead - 473F-7D0F+DE3F-7F6F - - - Visitors start with a 5-point lead - D93F-7D0F+DE3F-7D6F - - - Visitors start with a 7-point lead - D53F-7D0F+DE3F-7D6F - - - Visitors start with a 10-point lead - DC3F-7D0F+DE3F-7D6F - - - Visitors start with a 14-point lead - D33F-7D0F+DE3F-7D6F - - - Visitors start with a 35-point lead - 473F-7D0F+DE3F-7D6F - - - - Madden NFL 95 (USA) - - Always 1st down - C267-E46D - - - Infinite timeouts - both players (slightly glitchy) - 8250-5700 - - - Cannot be tackled (hold X) - 6D59-7FD7+7D59-7F67+C959-7DA7+DC59-7F07+E959-7FA7 - - - Field goals worth 0 points - DD6F-8404 - - - Field goals worth 1 points - DF6F-8404 - - - Field goals worth 5 points - D06F-8404 - - - Field goals worth 9 points - DB6F-8404 - - - Safetys worth 0 points - DD6F-77AF - - - Safetys worth 1 points - DF6F-77AF - - - Safetys worth 5 points - D06F-77AF - - - Safetys worth 7 points - D56F-77AF - - - Touchdowns worth 0 points - DD62-E4DF - - - Touchdowns worth 1 points - DF62-E4DF - - - Touchdowns worth 5 points - D062-E4DF - - - Touchdowns worth 9 points - DB62-E4DF - - - Start with 15 seconds on the play clock - DE55-84DF - - - Start with 1 timeout - P1 - DFD0-7DAD - - - Start with 1 timeout - P2 - DFD0-7FDD - - - - Madden NFL 96 (USA) - - Infinite time (2P mode only) - C2D2-8F0D - - - Infinite downs - C26A-8767 - - - Infinite timeouts - 8297-7F09 - - - Cannot be tackled (hold X) - 6D6C-EFDF+7D6C-EF6F+C96C-EDAF+DC6C-EF0F+E96C-EFAF - - - Safeties are worth 0 points - DD62-EFA7 - - - Safeties are worth 1 point - DF62-EFA7 - - - Safeties are worth 3 points - D462-EFA7 - - - Safeties are worth 5 points - D962-EFA7 - - - Safeties are worth 7 points - D562-EFA7 - - - Safeties are worth 9 points - DB62-EFA7 - - - Field Goals are worth 0 points - DDBB-8DAF - - - Field Goals are worth 1 point - DFBB-8DAF - - - Field Goals are worth 2 points - D4BB-8DAF - - - Field Goals are worth 5 points - D9BB-8DAF - - - Field Goals are worth 7 points - D5BB-8DAF - - - Field Goals are worth 9 points - DBBB-8DAF - - - Start with 5 downs each possession - DD65-E7A7 - - - Start with 3 downs each possession - D765-E7A7 - - - Start with 2 downs each possession - D465-E7A7 - - - Start with 1 down each possession - DF65-E7A7 - - - - Madden NFL 97 (USA) - - Cannot be tackled (hold X) - 6D66-7767+7D6B-7DD7+C966-7707+DC66-77A7+E96B-7D07 - - - - Madden NFL 98 (USA) - - Cannot be tackled (hold X) - 6D6F-5407+7D6F-54A7+C96F-54D7+DC6F-5467+E96F-57D7 - - - - Magic Boy (USA) - - Infinite lives - 7E9BB6:03 - - - - Magic Sword (USA) - - No health loss on collision with enemies - C2BC-D7A5+C280-D7DD - - - No health loss when magic is used - C2B4-6FD9 - - - No magic counter countdown - C2CC-0F67 - - - Hit anywhere - 3C67-046A+C267-0FAA+D667-04DA+ED67-04AA+F167-040A - - - One hit kills - 6D63-D40A - - - Slower magic counter countdown - 5ECC-0D67 - - - Faster magic counter countdown - EECC-0D67 - - - Invincibility - 7E831C:09 - - - Infinite continues - 7E042D:09 - - - Infinite health - 7E0432:09 - - - Infinite support health - 7E0423:04 - - - Infinite magic - 7E040C:09+7E040D:09 - - - Have powered-up attack - 7E068A:06 - - - Infinite Silver Keys - 7E040F:09 - - - Infinite Gold Keys - 7E0410:09 - - - Infinite Platinum Keys - 7E0411:09 - - - Have optimum sword - 7E040A:06 - - - Have optimum shield - 7E040B:04 - - - Never lose shield - 7E0435:02 - - - Barrier Invincibility - 7E06D6:FF - - - Set score to 90,000,000 - 7E0448:09 - - - Support modifier - Amazon - 7E0424:03 - - - Support modifier - Big Man - 7E0424:07 - - - Support modifier - Wizard - 7E0424:09 - - - Support modifier - Knight - 7E0424:0C - - - Support modifier - Lizardman - 7E0424:0F - - - Support modifier - Ninja - 7E0424:12 - - - Support modifier - Thief - 7E0424:15 - - - Support modifier - Cleric - 7E0424:18 - - - Max power for Amazon's Crossbow - 7E0413:07 - - - Max power for Big Man's Axe - 7E0414:07 - - - Max power for Wizard's Magic Missile - 7E0415:07 - - - Max power for Knight's Spear - 7E0416:07 - - - Max power for Lizardman's Sword - 7E0417:07 - - - Max power for Ninja's Throwing Star - 7E0418:07 - - - Max power for Thief's Bomb - 7E0419:07 - - - Max power for Cleric's Magic Bullet - 7E041A:07 - - - - Magical Pop'n (Japan) - - Infinite health - 7E051A:06 - - - Infinite lives - 7E0516:02 - - - Infinite stars - 7E0508:09 - - - - Magical Quest Starring Mickey Mouse, The (USA) - - Protection from most hits (lose no hearts) (disable if you get stuck) - C2E7-D462 - - - Infinite magic - wizard's costume only - C23E-6405 - - - Infinite lives - C22B-ADA5 - - - Small heart fill health completely - 622F-DDD6+C22F-DF06 - - - Each gold coin worth 10 (if too many are collected you may go back to 0) - DFE7-0708 - - - Longer invincibility after getting hit - C23D-6FA0 - - - No invincibility after getting hit - CB3D-6D60 - - - Super-jump - 1B2D-6765+4A2D-67A5 - - - Mega-jump - 1B2D-6765+4D2D-67A5 - - - Ultra-jump - 1B2D-6765+F02D-67A5 - - - Items in general store are free if you can afford them - 6DE6-04A8+48E6-07D8 - - - Start with 1 heart instead of 3 - DFAE-D4D7 - - - Start with 5 hearts - D9AE-D4D7 - - - Start with 7 hearts - D5AE-D4D7 - - - Start with 10 hearts - DCAE-D4D7 - - - Start with 1 life instead of 3 - DD69-07A0 - - - Start with 7 lives - D169-07A0 - - - Start with 10 lives - DB69-07A0 - - - Invincibility after first hit - 7E033F:03 - - - Infinite health - 7E02B1:0A - - - Infinite magic - 7E02B7:20 - - - Infinite water for Fireman costume - 7E02B9:17 - - - Infinite lives (alt) - 01DF93:AD - - - Have all costumes - 7E02C1:01+7E02C2:01+7E02C3:01 - - - Mega-jump - 7E04B0:1A - - - Ultra-jump - 7E04B0:06 - - - - Majuu Ou (Japan) - - Infinite health - 7E009F:50 - - - Infinite lives - 7E00A3:01 - - - - Mario Is Missing! (USA) - - Talk to someone once to learn all they know (all four checks appear on computer for that person) - CB8D-17DF+EE8D-170F+3C8D-176F - - - Use computer to access any facts except pamphlets (no checks appear on computer) - 6D8D-C4AF+DD80-C70F+DD85-C4DF - - - Use computer to view pamphlets on any artifact (no checks appear on computer) - 6D82-17AF - - - Always get Yoshi after using Globulator - DFED-4D04 - - - Pick up one artifact and get all three - CB8E-47AF+EE8D-1DDF+3C8D-1D0F - - - Have all three arifacts - 7E050A:07 - - - Always have Yoshi (Globulator doesn't automatically pick your location) - 7E06DB:01 - - - No waiting on wrong answer - 7E0565:00 - - - - Mario Paint (Japan, USA) - - Invincibility in bug swatting game - CBCF-0769+62C4-0DA9+EECF-07A9 - - - Infinite lives in bug swatting game - A2C3-6409 - - - Have all icons in bug swatting game - CBC4-A400 - - - Star easier to get under "P" on title screen - DD69-1F52+DD69-1452+DF69-1482 - - - Invincibility in bug swatting game (alt) - 7F0040:FF - - - Infinite lives in bug swatting game (alt) - 7F0018:63 - - - Have all icons in bug swatting game (alt) - 7F0012:0F - - - Only need to swat once to move around and kill flies - 7F001E:02 - - - Enable all rotate/flip options - 7E099F:01 - - - One hit to kill boss - 7F00C9:14 - - - Start on level 2 - 7F0014:01 - - - Start on level 3 - 7F0014:02 - - - - Mario's Time Machine (USA) - - Bonus timer doesn't count down in the whole game - DD6A-1405 - - - Don't lose mushrooms in collisions - CB64-3FA9+DD64-34D7+DD64-3409 - - - 1 wrong answer to questions allowed - DF24-1704 - - - 255 wrong answers allowed (ignore sad face icon) - EE24-1704 - - - - Marvel Super Heroes in War of the Gems (USA) - - Infinite health - B9D9-74D4 - - - Infinite Air - B9D9-74D4 - - - Infinite Air (alt) - E15A-5F66 - - - Infinite equipment, all Gems selectable on pick-up - FA85-7464+6D85-7704+FE85-7764 - - - One hit kills - CB1F-EF0D - - - Always have a Gem - B354-E4D8 - - - Always have 9 Gem power items - E916-740D - - - Always have 9 Revive items - E15A-5F66 - - - Invincibility - Boston Aquarium - 7E042D:03+7E042F:00 - - - Invincibility - Alaska - 7E02CD:03+7E02CF:00 - - - Invincibility - Dr. Doom's Castle - 7E02BD:03+7E02BF:00 - - - Invincibility - Amazon - 7E02FD:03+7E02FF:00 - - - Invincibility - Magus' Spaceship and Asteroid Belt - 7E026D:03+7E026F:00 - - - Invincibility - Egypt - 7E02DD:03+7E02DF:00 - - - Invincibility - Arizona Mining Facility - 7E031D:03+7E031F:00 - - - Invincibility - Mt. Vezuvius - 7E039D:03+7E039F:00 - - - Invincibility - Nebula's Level - 7E033D:03+7E033F:00 - - - Invincibility - Thanos' Level - 7E034D:03+7E034F:00 - - - Infinite health - Dr. Doom's Castle - 7E026B:64 - - - Infinite health - Alaska - 7E027B:64 - - - Infinite health - Mt. Vesuvius - 7E034B:64 - - - Infinite health - Egypt - 7E028B:64 - - - Infinite health - Arizona Mining Facility - 7E02CB:64 - - - Always have 9 Big energy Tanks - 7FFF1A:09 - - - Always have 9 Small energy Tanks - 7FFF1B:09 - - - - Mary Shelley's Frankenstein (USA) - - Infinite health - C2B9-1DA4+8533-3F0D - - - Energy balls don't deplete health - DDE5-3FB0+DDE5-3F20 - - - Cool effects - ??86-146D - - - Invincibility (blinking) - 7E200D:09 - - - Infinite health (alt) - 7E2043:1D - - - - Mask, The (USA) - - Invincibility - 40C0-47DF+40C9-4F6F - - - Invincibility after one hit - 82C0-476F - - - Infinite mask power - C282-1F0D - - - Infinite lives - C961-146F - - - Hit anywhere + collect items from anywhere) - 40C5-14A7+40C6-14A7+40C6-17A7+40C9-1467+40C9-1767 - - - Mallet doesn't use any power - 8EBF-3DD4 - - - Walk through walls - C287-4DAF - - - Green hearts worth 10 - FDC6-3707 - - - Green hearts worth 30 - 7DC6-3707 - - - Green hearts worth 100 - CDC6-3707 - - - Green hearts worth 0 - C2CC-3F07 - - - Flash longer - EE88-140D - - - Don't flash at all - DD88-140D - - - M's worth 0 - C9C4-3467 - - - M's worth 10 - FDCF-37A7 - - - M's worth 30 - 7DCF-37A7 - - - M's worth 100 - CDCF-37A7 - - - Start with 100 mask energy - DF6E-44AD - - - Start with 300 mask energy - D76E-44AD - - - Start with 900 mask energy - DB6E-44AD - - - Start with 1 life - CB63-446D+DD63-44AD+DD63-47DD - - - Start with 5 lives - CB63-446D+D963-44AD+DD63-47DD - - - Start with 9 lives - CB63-446D+DB63-44AD+DD63-47DD - - - Infinite life - 7E18AF:20+7E18B0:03 - - - Infinite mask power (alt) - 7E008F:84+7E0090:03 - - - - MechWarrior (USA) - - Protection from most hazards - 628C-4F20 - - - Infinite short-range missiles - EE2F-C7A4 - - - Infinite short-range homing missiles - EE24-CD04 - - - Infinite medium-range missiles - EE24-CDA4 - - - Infinite medium-range homing missiles - EE24-CF04 - - - Infinite long-range missiles - EE24-CFA4 - - - Infinite long-range homing missiles - EE24-C404 - - - Infinite machine gun ammo - EE24-C4A4 - - - Never run out of any ammo - 3CCD-4404 - - - Getting any money sets money to 32 million C-bills - DD38-146D - - - 100 ammo for short-range missiles - 102F-C7A4 - - - 100 ammo for short-range homing missiles - 1024-CD04 - - - 80 ammo for medium-range missiles - 9D24-CDA4 - - - 80 ammo for medium-range homing missiles - 9D24-CF04 - - - 40 ammo for long-range missiles - 4624-CFA4 - - - 40 ammo for long-range homing missiles - 4624-C404 - - - 200 short-range missiles - A62F-C7A4 - - - 200 short-range homing missiles - A624-CD04 - - - 100 medium-range missiles - 1024-CDA4 - - - 100 medium-range homing missiles - 1024-CF04 - - - 100 long-range missiles - 1024-CFA4 - - - 100 long-range homing missiles - 1024-C404 - - - Mech isn't slowed down as much by most obstacles - CBED-34F7+3CED-34B7 - - - Start with 100,000 C-bills - 103E-C4AD - - - Start with 250,000 C-bills - EC3E-C4AD - - - Start with 562,000 C-bills - D43E-C7DD - - - Start with 1,074,000 C-bills - D03E-C7DD - - - Start with 5,170,000 C-bills - F03E-C7DD - - - Start with 10,290,000 C-bills - 463E-C7DD - - - - MechWarrior 3050 (USA) - - Almost infinite ammo - C295-5FAD - - - Almost invincible (disable to kill some enemies) - 1D9E-ED6D - - - Coolant does nothing - CB6B-5464+CB6B-5704 - - - Guass Rifle starts at 10 - DC09-7998 - - - Guass Rifle starts at 50 - 7409-7998 - - - Guass Rifle starts at 100 - 1009-7998 - - - Arrow VI Missiles start at 20 - F009-7028 - - - Arrow VI Missiles start at 50 - 7409-7028 - - - Arrow VI Missiles start at 100 - 1009-7028 - - - Particle Projection Cannon start at 10 - DC00-7528 - - - Particle Projection Cannon start at 50 - 7400-7528 - - - Particle Projection Cannon start at 100 - 1000-7528 - - - Machine Gun starts at 100 - DD00-79B8+1000-7998 - - - Machine Gun starts at 1,000 - D700-79B8+3600-7998 - - - Machine Gun starts at 10,000 - 4100-79B8+FD00-7998 - - - Auto Cannon starts at 50 - 7400-7928 - - - Auto Cannon starts at 100 - 1000-7928 - - - Auto Cannon starts at 250 - EC00-7928 - - - Large Laser starts at 50 - 7400-7128+DD00-75F8 - - - Large Laser starts at 1,000 - 3600-7128+D700-75F8 - - - Large Laser starts at 10,000 - FD00-7128+4100-75F8 - - - "Inferno" Short-Range Missiles start at 10 - DC00-7198 - - - "Inferno" Short-Range Missiles start at 50 - 7400-7198 - - - "Inferno" Short-Range Missiles start at 250 - EC00-7198 - - - "Maelstrom" Long-Range Missiles start at 20 - F009-7098 - - - "Maelstrom" Long-Range Missiles start at 100 - 1009-7098 - - - "Maelstrom" Long-Range Missiles start at 250 - EC09-7098 - - - "Thunder" Time-Delay Mines start at 10 - DC00-7598 - - - "Thunder" Time-Delay Mines start at 100 - 1000-7598 - - - "Thunder" Time-Delay Mines start at 250 - EC00-7598 - - - - Mega lo Mania (Europe) (En,Fr,De) - - Infinite number of people to use - 7EE8D9:64 - - - - Mega Man 7 (USA) - - Invincibility after first hit (blinking) - 6D79-84A0 - - - Infinite health - C2DB-5F62 - - - Infinite health (alt) - D9DB-5DA2 - - - Infinite E-Tanks - C209-7DA4 - - - Infinite W-Tanks - C20B-7DD4 - - - Infinite S-Tanks - C20E-7D04 - - - Infinite Beat Whistles - C277-8F00 - - - Infinite weapon energy - FE42-E405 - - - One hit kills - 40DE-7FD2 - - - Hit anywhere - 6DD8-7DD2 - - - Multi-jump - DC51-ED65+BD51-EDA5+D751-EFD5+4D51-EF05+8551-EF65+7451-EFA5+4D51-E4D5+BC51-E405+FF51-E465+1D51-E4A5+1DFC-E400+5EFC-E460+C951-EDD5+0951-ED05 - - - Always Shoot Shots - FF40-E405 - - - Always shoot Freeze Cracker - 4040-E405 - - - Always shoot Scorch Wheel - 4140-E405 - - - Always shoot Danger Wrap Bombs - 4340-E405 - - - Always shoot Noise Crush - 1140-E405 - - - Always shoot Fully Charged Mega Buster Blasts - 5240-E405 - - - Always shoot Slash Claw - BA40-E405 - - - Always shoot Thunder Bolt - 8940-E405 - - - Always shoot Wild Coil - E740-E405 - - - Always shoot Charged Wild Coils - EE40-E405 - - - White Shots/Special Weapons - EE02-E465 - - - Infinite E-Tanks (alt) - 7E0BA0:FF - - - Infinite W-Tanks (alt) - 7E0BA1:FF - - - Infinite S-Tanks (alt) - 7E0BA2:FF - - - Infinite Beat Whistles (alt) - 7E0BA3:84 - - - Infinite Bolts - 7E0BA6:E7+7E0BA7:03 - - - Infinite slide - 7E0C61:FF - - - Moon-jump - 7E0C1A:F4 - - - Have exit - 7E0BA4:FF - - - Have S.Adapt - 7E0B9F:FF - - - Have Super Fist upgrade for S.Adapt - 7E0BA4:4F - - - Have Proto Shield - 7E0B95:FF - - - Infinite Feeze Cracker - 7E0B85:FF - - - Infinite Junk Shield - 7E0B89:FF - - - Infinite Scorch Wheel - 7E0B8B:FF - - - Infinite Slash Claw - 7E0B8D:FF - - - Infinite Thunder Bolt - 7E0B87:FF - - - Infinite Noise Crush - 7E0B8F:FF - - - Infinite Danger Wrap - 7E0B91:FF - - - Infinite Wild Coil - 7E0B93:FF - - - Infinite Rush Coil - 7E0B9B:FF - - - Infinite Rush Search - 7E0B97:FF - - - Infinite Rush Jet - 7E0B99:FF - - - - Mega Man X (USA) (Rev 1) - - Infinite weapons once obtained - DDB3-4FA9 - - - Immune to drain attack - C2AD-4401 - - - One hit kills (most enemies) - 6DB5-CD97 - - - Hit anywhere - 40B1-34F4 - - - Multi-jump - 4065-17A9+EA66-1409+B966-1469 - - - Enemies always drop large energy - C4CB-3DBD+D4CB-3D2D - - - Enemies always drop large weapon energy - C4CB-3DBD+D0CB-3D2D - - - Bogus jump (may go back to normal jumps) - D08A-1FBC - - - Super-jump (may go back to normal jumps) - D58A-1FBC - - - Mega-jump (may go back to normal jumps) - DB8A-1FBC - - - Start with less health - D6BE-47AF - - - Start with more health - 4DBE-47AF - - - Start with 10 lives - DBBE-446F - - - Start with 7 lives - D1BE-446F - - - Start with 5 lives - D0BE-446F - - - Start with 1 life - DDBE-446F - - - Max health containers - 7E1F9A:20 - - - Infinite lives - 7E1F80:09 - - - Have all equipment - 7E1F99:FF - - - Enable Hadoken - 7E1F7E:85 - - - Have sub-tank 1 full - 7E1F83:FF - - - Have sub-tank 2 full - 7E1F84:FF - - - Have sub-tank 3 full - 7E1F85:FF - - - Have sub-tank 4 full - 7E1F86:FF - - - - Mega Man X (USA) - - Infinite health - C2B9-1FF7 - - - Infinite lives - C2B9-3404 - - - Infinite weapons once obtained - C9B3-4769 - - - One hit kills (most enemies) - 6DB5-CD97 - - - Hit anywhere - 40B1-34F4 - - - Weapon charges to 1st power level faster - DDB1-4F61 - - - Disable weapon charging - DDB0-4FA1 - - - Multi-jump - 4065-1F09+E465-17A9+B966-1DD9 - - - Enemies always drop large energy - C4C6-379D+D4C6-37BD - - - Enemies always drop large weapon energy - C4C6-379D+D0C6-37BD - - - Bogus jump (may go back to normal jumps) - D08A-1FBC - - - Super-jump (may go back to normal jumps) - D58A-1FBC - - - Mega-jump (may go back to normal jumps) - DB8A-1FBC - - - Start with all weapons and all enemies defeated (except Sigma) - 23BD-3F07 - - - Start with less health - D6BE-47AF - - - Start with more health - 4DBE-47AF - - - Start with 10 lives - DBBE-446F - - - Start with 7 lives - D1BE-446F - - - Start with 5 lives - D0BE-446F - - - Start with 1 life - DDBE-446F - - - Max health containers - 7E1F9A:20 - - - Infinite lives (alt) - 7E1F80:09 - - - Have all equipment - 7E1F99:FF - - - Have sub-tank 1 full - 7E1F83:FF - - - Have sub-tank 2 full - 7E1F84:FF - - - Have sub-tank 3 full - 7E1F85:FF - - - Have sub-tank 4 full - 7E1F86:FF - - - - Mega Man X2 (USA) - - Invincibility - D6B0-DD4F - - - Infinite health - C223-0414 - - - Infinite health (alt) - BA23-0FC4 - - - One hit kills - 6D2D-AF14 - - - Hit anywhere - 4028-A73F+C222-6734+D4E7-DDFB - - - Multi-jump - 40BE-DD44+26BE-D4C4+8BBE-D434 - - - Infinite health (alt 2) - 7E09FF:20 - - - Max health containers - 7E1FD1:20 - - - Infinite lives - 7E1FB3:09 - - - Have Shouryuken (F, D, DF + Fire) (must have max health and health containers) - 7E1FB1:80 - - - Infinite L.Tracer - 7E1FCD:5C - - - Infinite Bubble.S - 7E1FBD:5C - - - Infinite Crystal.H - 7E1FBB:5C - - - Infinite Magnet.M - 7E1FC7:5C - - - Infinite S.Burner - 7E1FC9:5C - - - Infinite S.Chain - 7E1FC5:5C - - - Infinite S.Slicer - 7E1FC3:5C - - - Infinite S.Wheel - 7E1FC1:5C - - - Infinite Silk.S - 7E1FBF:5C - - - Infinite G.Crush - 7E1FCB:5C - - - Infinite Dash - 7E0A2A:16 - - - Have all equipment - 7E1FD0:FF - - - Have sub-tank 1 full - 7E1FB6:FF - - - Have sub-tank 2 full - 7E1FB7:FF - - - Have sub-tank 3 full - 7E1FB8:FF - - - Have sub-tank 4 full - 7E1FB9:FF - - - Have Zero's Head, Body and Legs - 7E1FD6:80+7E1FD7:80+7E1FD8:80 - - - - Mega Man X3 (USA) - - Infinite health - C2AD-6FF7 - - - Infinite special weapons on pick-up - 82CB-0D2F+82CA-0F2F - - - Hit anywhere - 40AC-A7B4+6DA0-ADF7+6DAF-AD97 - - - Multi-jump - 4064-042F+D367-0F9F+C567-0FBF - - - Enemies always drop large energy - C42E-0D2F+D42E-0FFF - - - Enemies always drop large weapon energy - C42E-0D2F+D02E-0FFF - - - Super-jump - D586-6F26 - - - Mega-jump - DB86-6F26 - - - Ultra mega-jump - D886-6F26 - - - Normal weapon is much more powerful - 6DA0-ADF7 - - - Skip bosses at start of game and proceed to stage select - B933-DF6C - - - Start with max health bar - F02A-ADF4 - - - Invincibility - 7E0A08:08 - - - Infinite lives - 7E1FB4:09 - - - Infinite Boosts - 7E0A9A:01 - - - Get all equipment when you enter the start menu - 00CD80:A9+00CD81:FF+00CD82:8D+00CD83:D7 - - - Always have Super Shot - 7E0A67:02 - - - Infinite Air Dash - 7E0A34:78 - - - Have Zero-Saber - 7E1FB2:FC - - - Have all upgrades - 7E1FD1:4F - - - Invincible Ride Armor - 7E0CF8:01 - - - - Mega Man Soccer (USA) - - Choose any character to play as Dr. Willy - CBCA-3F60+F0CA-3FA0+DDCA-34D0 - - - View ending (select Capcom Championship) - 81829B:EE+81829C:E0 - - - Unlock Capcom Championship mode ending - 82D1F0:EA+82D1F1:EA+82D1F2:EA+82D1F3:EA - - - Unlock Tournament mode ending - 82D29C:EA+82D29D:EA+82D29E:EA+82D29F:EA - - - - Metal Combat - Falcon's Revenge (USA) - - Infinite health - 7E1968:7F - - - No time - 7E03C5:00+7E03C7:00 - - - Infinite Bombs - 7E03FE:08 - - - Infinite Energy Bolt charge - 7E1B13:96 - - - Infinite Treble Energy Bolts - 7E1B17:03 - - - - Metal Marines (USA) - - Building an ICBM only takes up one space - 6DA1-67AD - - - Can view entire enemy map - 6DCE-DD03 - - - Enemy has no attack phase - 1D25-64A8 - - - Instant maximum energy - DD25-04AD - - - Instant maximum war funds - DD28-0D0D - - - Enemy always has 0 energy - BA21-07AD - - - Enemy always has 0 war funds - BA2C-0F0D - - - - Metal Morph (USA) - - Infinite ammo for all weapons (disable to change weapons) - C926-C7A1 - - - Infinite continues - C9A9-4F65 - - - Infinite time on continue screen - C2AD-4D65 - - - Hit anywhere (side-scrolling mode) - 40E0-1F61+40E7-14D1 - - - Hit anywhere (flying mode) - 4084-3FA0+408E-CD00 - - - Start with 255 continues - EE6C-1FDD - - - Invincibility - 7E0387:03 - - - - Metal Warriors (USA) - - Infinite health (Mech) - C38F-4DD0 - - - Infinite health (Human) - C9A9-3D60 - - - Infinite Gun ammo on pick-up - 306C-1D65 - - - Press L to go Hyper (Mech) - C168-1F05 - - - - Michael Jordan - Chaos in the Windy City (USA) - - Infinite lives - 7E1427:05 - - - Infinite Flame Balls - 7E594E:05 - - - Infinite Grenade(?) Balls - 7E5948:05 - - - Infinite Homing Balls - 7E5950:05 - - - Infinite Bounce Balls - 7E594C:05 - - - Invincibility and hit anywhere - 4008-57AD+4008-5FAD+400A-5FAD+6DF0-57AD - - - - Mickey Mania - The Timeless Adventures of Mickey Mouse (USA) - - Infinite health - C2B8-CAC3 - - - Infinite lives - C2B3-C313 - - - Infinite Marbles - C2A8-CA32 - - - Hit anywhere - 2CBB-4AE7+2DBB-4257+C2BB-4A87+D1BB-4277+F1BB-4287 - - - Each Marble worth 99 - CB8C-C27A - - - One hit and you're dead - DDAA-3869 - - - Start with less health - D4AA-3869 - - - Start with more health - DBAA-3869 - - - Start with 1 life - DDA3-36D9 - - - Start with 7 lives - D1A3-36A9 - - - Start with 10 lives - DBA3-36A9 - - - Start on stage - the Wharf - DFAB-3669 - - - Start on stage - Mad Doc 1 - D4AB-3669 - - - Start on stage - Mad Doc 2 - D7AB-3669 - - - Start on stage - Ride The Gurney - D0AB-3669 - - - Start on stage - Mad Doc 4 - D9AB-3669 - - - Start on stage - Elevator - D1AB-3669 - - - Start on stage - Mad Doc Eol - D5AB-3669 - - - Start on stage - Moose Hunt - D6AB-3669 - - - Start on stage - Moose Chase - DBAB-3669 - - - Start on stage - Haunted House - DCAB-3669 - - - Start on stage - Haunted Basement - D8AB-3669 - - - Start on stage - Haunted Halls - DAAB-3669 - - - Start on stage - Garden - D2AB-3669 - - - Start on stage - Tunnel - D3AB-3669 - - - Start on stage - Steps - DEAB-3669 - - - Start on stage - Table - FDAB-3669 - - - Start on stage - Library - FFAB-3669 - - - Start on stage - Kitchen - F4AB-3669 - - - Start on stage - Dungeon - F7AB-3669 - - - Start on stage - Tower Escape - F0AB-3669 - - - Start on stage - Dungeon 2 - F9AB-3669 - - - - Mickey to Donald - Magical Adventure 3 (Japan) - - Invincibility - P1 - 7E0454:FF - - - Invincibility - P2 - 7E0554:FF - - - Infinite health - P1 - 7E046F:03 - - - Infinite health - P2 - 7E056F:03 - - - Infinite lives - P1 - 7E0486:04 - - - Infinite lives - P2 - 7E0586:04 - - - Infinite Oxygen - P1 - 7E0481:0F - - - Infinite Oxygen - P2 - 7E0581:0F - - - Max power bar - P1 - 7E048A:FF - - - Max power bar - P2 - 7E058A:FF - - - - Micro Machines (USA) - - Infinite lives - 7E0323:09 - - - - Mighty Max (USA) - - Invincibility - 7E0254:A1 - - - Infinite energy - 7E0294:03 - - - Infinite lives - 7E028C:09 - - - - Mighty Morphin Power Rangers (USA) - - Invincibility - C280-AD2F - - - Infinite health - C286-6DF4 - - - Infinite lives - 3CAA-DFDF - - - Infinite bombs on pick-up - C2B7-0FF7 - - - Collect items from anywhere - 4084-D794+6D8A-0724+F282-0DF4 - - - Mega-jump - EC6A-ADF7 - - - More health from capsule - AD64-6465 - - - Trini moves faster before morphing - D468-04BF - - - Billy moves faster before morphing - D46C-0DBF - - - Jason moves faster before morphing - D46B-04BF - - - Kimberley moves faster before morphing - AD6C-049F - - - Zach moves faster before morphing - D468-0DBF - - - Trini moves faster after morphing - EE62-0DBF - - - Billy moves faster after morphing - EE6A-049F - - - Jason moves faster after morphing - D46A-0D9F - - - Kimberley moves faster after morphing - AD62-0D9F - - - Zach moves faster, but the wrong way - EE62-04BF - - - Start game with full health - AD82-64DD - - - Start with 1 life - DD8A-6DDD - - - Start with 6 lives - D98A-6DDD - - - Start with 9 lives - D68A-6DDD - - - Infinite health (Megazord) - 7E04C0:71 - - - Infinite power (Megazord) - 7E04C2:71 - - - - Mighty Morphin Power Rangers - The Fighting Edition (USA) - - Infinite health - P1 - 7E1A22:70 - - - Infinite health - P2 - 7E1A26:70 - - - Special maxed - P1 - 7E06A0:30 - - - Special maxed -P2 - 7E06A6:30 - - - Play As Ivan Ooze - P1 - 7E1A68:10 - - - Play as Ivan Ooze - P2 - 7E1A6C:10 - - - Infinite round time - 7E06B8:06+7E06BA:00 - - - Infinite time - 7E06BC:01 - - - Special 1 - P1 - 7E1B00:07+7E1B02:0C - - - Special 2 - P1 - 7E1B08:07+7E1B0A:0C - - - Special 3 - P1 - 7E1B10:07+7E1B12:0C - - - Special 4 - P1 - 7E1B18:07+7E1B1A:0C - - - Special 5 - P1 - 7E1B20:07+7E1B22:0C - - - Special 1 - P2 - 7E1B04:07+7E1B06:0C - - - Special 2 - P2 - 7E1B0C:07+7E1B0E:0C - - - Special 3 - P2 - 7E1B14:07+7E1B16:0C - - - Special 4 - P2 - 7E1B1C:07+7E1B1E:0C - - - Special 5 - P2 - 7E1B24:07+7E1B26:0C - - - Super move - P2 - 7E1B34:03+7E1B36:18 - - - - Mighty Morphin Power Rangers - The Movie (USA) - - Invincibility - 6286-D46A - - - Infinite life force - C226-07A2 - - - Almost infinite life force - 8B26-07A2 - - - Infinite lives - C229-0D6A - - - Infinite continues - 1P mode - C2E0-DF0A - - - Infinite continues - 2P mode - C2B1-AFAA - - - Large main power-up box gives max power - F620-0FA2 - - - Main collectable power doesn't go down after ranger powerup as fast - 3C8D-6D67+3CA4-64DA - - - One hit kills - 6D27-AD6A - - - No continues - DDA8-0DDD - - - Start with mega-points - D7AA-0DDD - - - Start with a lot of energy - first life only - DBA2-04AD - - - Start with very little energy - first life only - DFA2-04AD - - - Start with very little energy after first life - DF29-07DA - - - Start with more energy after first life - DB29-07DA - - - Start with 9 continues - DBA8-0DDD - - - Start with 9 lives - DB6E-0D6D - - - Start with 5 lives - D96E-0D6D - - - Start with 1 life - DF6E-0D6D - - - Invincibility - P1 - 7E1C28:01 - - - Infinite health - P1 - 7E0628:05 - - - Infinite power - P1 - 7E062A:18 - - - Infinite time - P1 - FF4139:09 - - - Infinite lives - P1 - 7E060A:09 - - - - Miracle Girls (Japan) - - Invincibility - 1D3F-E4AD - - - Infinite lives - C243-7707 - - - - Mohawk & Headphone Jack (USA) - - Infinite health - 7E0308:03 - - - Infinite lives - 7E0306:05 - - - - Monopoly (USA) (Rev 1) - - Land, rent and some other things are free - all players - 1D85-6FDF - - - Land, rent, and some other things are $50 - all players - 3B85-6FDF+7485-6F0F+DD85-6F6F - - - Land, rent, and some other things are $100 - all players - 3B85-6FDF+1085-6F0F+DD85-6F6F - - - Land, rent, and some other things are $200 - all players - 3B85-6FDF+A685-6F0F+DD85-6F6F - - - Land, rent, and some other things are $500 - all players - 3B85-6FDF+E085-6F0F+DD85-6F6F - - - Always throw double 6's - CBB3-AF0D+D1B3-AF6D+D1B3-AFAD - - - Always throw double 5's - CBB3-AF0D+D9B3-AF6D+D9B3-AFAD - - - Always throw double 4's - CBB3-AF0D+D0B3-AF6D+D0B3-AFAD - - - Always throw double 3's - CBB3-AF0D+D4B3-AF6D+D7B3-AFAD - - - Always throw double 2's - CBB3-AF0D+D4B3-AF6D+D4B3-AFAD - - - Always throw double 1's - CBB3-AF0D+DFB3-AF6D+DFB3-AFAD - - - P1 has a Get Out Of Jail card - 7E08F2:01 - - - P2 has a Get Out Of Jail card - 7E08F4:01 - - - P3 has a Get Out Of Jail card - 7E08F6:01 - - - P4 has a Get Out Of Jail card - 7E08F8:01 - - - P5 has a Get Out Of Jail card - 7E08FA:01 - - - P6 has a Get Out Of Jail card - 7E08FC:01 - - - P7 has a Get Out Of Jail card - 7E08FE:01 - - - P8 has a Get Out Of Jail card - 7E0900:01 - - - - Monopoly (USA) - - Land, rent and some other things are free - all players - 1D85-6FDF - - - Land, rent, and some other things are $50 - all players - 3B85-6FDF+7485-6F0F+DD85-6F6F - - - Land, rent, and some other things are $100 - all players - 3B85-6FDF+1085-6F0F+DD85-6F6F - - - Land, rent, and some other things are $200 - all players - 3B85-6FDF+A685-6F0F+DD85-6F6F - - - Land, rent, and some other things are $500 - all players - 3B85-6FDF+E085-6F0F+DD85-6F6F - - - Always throw double 6's - CBB3-AF0D+D1B3-AF6D+D1B3-AFAD - - - Always throw double 5's - CBB3-AF0D+D9B3-AF6D+D9B3-AFAD - - - Always throw double 4's - CBB3-AF0D+D0B3-AF6D+D0B3-AFAD - - - Always throw double 3's - CBB3-AF0D+D4B3-AF6D+D7B3-AFAD - - - Always throw double 2's - CBB3-AF0D+D4B3-AF6D+D4B3-AFAD - - - Always throw double 1's - CBB3-AF0D+DFB3-AF6D+DFB3-AFAD - - - P1 has a Get Out Of Jail card - 7E08F2:01 - - - P2 has a Get Out Of Jail card - 7E08F4:01 - - - P3 has a Get Out Of Jail card - 7E08F6:01 - - - P4 has a Get Out Of Jail card - 7E08F8:01 - - - P5 has a Get Out Of Jail card - 7E08FA:01 - - - P6 has a Get Out Of Jail card - 7E08FC:01 - - - P7 has a Get Out Of Jail card - 7E08FE:01 - - - P8 has a Get Out Of Jail card - 7E0900:01 - - - - Mortal Kombat (USA) - - Invincibility (except against throws) - 40C2-4FDF+40C2-446F+3DC2-476F+55C2-47AF+F5C3-4DDF+1DB9-34AF - - - Infinite health - CF30-CFAF+6230-C40F+8B30-C46F - - - Infinite time - C9B2-17AF - - - Have much more fatality time - 5EB5-3F64 - - - Always get Flawless Victory bonus - 6DB8-3D67 - - - First strike of any kind wins round - DDBC-370F - - - Hit anywhere - P1 - 3DBF-3D0F+27BF-3D6F+F6BF-3DAF+74BF-3F0F - - - All strikes do minimal damage (all equal to 1 hit point) (2P game only, donメt choose handicap for either player) - DDBF-1FA4 - - - P1 nearly invincible in 2P game (go to options, move P1メs handicap bar all the way to the right) - D881-404F - - - All throws do more damage - 56B9-4DAD - - - Kano's High Punch does more damage - F320-1914 - - - Kano's Low Punch does more damage - F320-15C4 - - - Kano's High Kick does more damage - 0626-1514 - - - Kano's Low Kick does more damage - 062B-19C4 - - - Kano's Head Blow does more damage - 0621-1044 - - - Kano's Knee does more damage - 0629-1934 - - - Kano's Crouched Kick does more damage - 7A26-1944 - - - Kano's Uppercut does more damage - 5625-1134 - - - Kano's Roundhouse Kick does more damage - 1D27-1544 - - - Kano's Foot Sweep does more damage - 7A25-10C4 - - - Kano's Flying Punch does more damage - 082C-1144 - - - Kano's Knife does more damage (only at close distance) - 0824-11C4 - - - Johnny Cage's High Punch does more damage - F32C-4944 - - - Johnny Cage's Low Punch does more damage - F32C-4514 - - - Johnny Cage's High Kick does more damage - 062B-40C4 - - - Johnny Cage's Low Kick does more damage - 042B-4134 - - - Johnny Cage's Head Blow does more damage - 7A2A-4144 - - - Johnny Cage's Knee does more damage - 0622-4014 - - - Johnny Cage's Crouched Kick does more damage - F628-4534 - - - Johnny Cage's Uppercut does more damage - 5622-41C4 - - - Johnny Cage's Roundhouse Kick does more damage - 1D26-4114 - - - Johnny Cage's Foot Sweep does more damage - 7A28-49C4 - - - Johnny Cage's Flying Punch does more damage - 0826-4044 - - - Johnny Cage's Shadow Kick does more damage - 9C20-41C4 - - - Johnny Cage's Fireball does more damage (only at close distance) - 0821-4914 - - - Johnny Cage's Split Punch does more damage - 1129-4544 - - - Liu Kang's High Punch does more damage - F323-C034 - - - Liu Kang's Low Punch does more damage - F323-C544 - - - Liu Kang's High Kick does more damage - 0624-30C4 - - - Liu Kang's Low Kick does more damage - 0624-3134 - - - Liu Kang's Head Blow does more damage - 7A28-C534 - - - Liu Kang's Knee does more damage - 062E-C914 - - - Liu Kang's Crouched Kick does more damage - 7A2F-3114 - - - Liu Kang's Uppercut does more damage - 562F-3044 - - - Liu Kang's Roundhouse Kick does more damage - 1D22-C1C4 - - - Liu Kang's Foot Sweep does more damage - 7A2D-3934 - - - Liu Kang's Flying Punch does more damage - 0827-3514 - - - Liu Kang's Special Flying Kick does more damage - 9C28-C9C4 - - - Liu Kang's Fireball does more damage (only at close distance) - 082A-C144 - - - Sonya Blade's High Punch does more damage - F32F-393F - - - Sonya Blade's Low Punch does more damage - F324-304F - - - Sonya Blade's High Kick does more damage - 9023-C01F - - - Sonya Blade's Low Kick does more damage - 9F23-C1CF - - - Sonya Blade's Head Blow does more damage - 7A2E-C03F - - - Sonya Blade's Knee does more damage - 062E-C54F - - - Sonya Blade's Crouched Kick does more damage - 7A2D-35CF - - - Sonya Blade's Uppercut does more damage - 5624-311F - - - Sonya Blade's Roundhouse Kick does more damage - 1122-C14F - - - Sonya Blade's Foot Sweep does more damage - 7A2A-C53F - - - Sonya Blade's Flying Punch does more damage - 0827-313F - - - Sonya Blade's Leg Grab does more damage - 5620-17A7 - - - Sonya Blade's Sonic Rings does more damage (only at close distance) - 0822-C13F - - - Sonya Blade's Special Flying Kick does more damage - 0827-313F - - - Rayden's High Punch does more damage - F324-C914 - - - Rayden's Low Punch does more damage - F327-C934 - - - Rayden's High Kick does more damage - 092F-C034 - - - Rayden's Low Kick does more damage - 042F-C544 - - - Rayden's Head Blow does more damage - 7A29-C0C4 - - - Rayden's Knee does more damage - 0629-C134 - - - Rayden's Crouched Kick does more damage - F620-C114 - - - Rayden's Uppercut does more damage - 5621-C944 - - - Rayden's Roundhouse Kick does more damage - 9C2D-C1C4 - - - Rayden's Foot Sweep does more damage - 7A20-C044 - - - Rayden's Flying Punch does more damage - 082D-C014 - - - Rayden's Flying Thunderbolt does more damage - 9C22-1514 - - - Rayden's Lightning does more damage (only at close distance) - 0823-19C4 - - - Scorpion's, Sub-Zero's and Reptile's High Punch do more damage - F328-3934 - - - Scorpion's, Sub-Zero's and Reptile's Low Punch do more damage - F32A-3044 - - - Scorpion's, Sub-Zero's and Reptile's High Kick do more damage - 062E-39C4 - - - Scorpion's, Sub-Zero's and Reptile's Low Kick do more damage - 062E-3534 - - - Scorpion's, Sub-Zero's and Reptile's Head Blow do more damage - 7A22-30C4 - - - Scorpion's, Sub-Zero's and Reptile's Knee do more damage - 062A-3114 - - - Scorpion's, Sub-Zero's and Reptile's Crouched Kick do more damage - F62F-41C7 - - - Scorpion's, Sub-Zero's and Reptile's Uppercut do more damage - 562C-35C4 - - - Scorpion's, Sub-Zero's and Reptile's Roundhouse Kick do more damage - 1D2F-4017 - - - Scorpion's, Sub-Zero's and Reptile's Foot Sweep do more damage - 7A2D-4147 - - - Scorpion's, Sub-Zero's and Reptile's Flying Punch do more damage - 0823-3944 - - - Sub-Zero's and Reptile's Deep Freeze do damage - 462C-3914 - - - Sub-Zero's and Reptile's Slide do more damage - 4525-3144 - - - Scorpion's and Reptile's Harpoon do more damage - F626-31C4 - - - Scorpion's and Reptile's Scorpion Split do more damage - 0823-3944 - - - Each round is 199 seconds (time counts down twice) - D466-3D04 - - - Each round is 90 seconds - BF66-3DD4+DD66-3D04 - - - Each round is 80 seconds - 6F66-3DD4+DD66-3D04 - - - Each round is 70 seconds - 5F66-3DD4+DD66-3D04 - - - Each round is 60 seconds - 1F66-3DD4+DD66-3D04 - - - Each round is 50 seconds - 9F66-3DD4+DD66-3D04 - - - Each round is 40 seconds - 0F66-3DD4+DD66-3D04 - - - Each round is 30 seconds - 7F66-3DD4+DD66-3D04 - - - Each round is 20 seconds - 4F66-3DD4+DD66-3D04 - - - Each round is 10 seconds - FF66-3DD4+DD66-3D04 - - - Always fight in the the Courtyard - DD6A-47AF - - - After 1st match, almost always fight at the Palace Gates - CB6A-44AF+DF6A-47DF - - - After 1st match, almost always fight in the Warrior Shrine - CB6A-44AF+D46A-47DF - - - After 1st match, almost always fight in the Pit - CB6A-44AF+D76A-47DF - - - After 1st match, almost always fight in the Throne Room - CB6A-44AF+D06A-47DF - - - After 1st match, almost always fight in Goro's Lair - CB6A-44AF+D96A-47DF - - - After 1st match, almost always fight in the bottom of the pit (screen says Goro's Lair) - CB6A-44AF+D16A-47DF - - - Almost always fight Johnny Cage - CBBA-394F+DDBA-391F - - - Almost always fight Kano - CBBA-394F+DFBA-391F - - - Almost always fight Rayden - CBBA-394F+D4BA-391F - - - Almost always fight Liu Kang - CBBA-394F+D7BA-391F - - - Almost always fight Scorpion - CBBA-394F+D0BA-391F - - - Almost always fight Sub-Zero - CBBA-394F+D9BA-391F - - - Almost always fight Sonya Blade - CBBA-394F+D1BA-391F - - - Almost always fight Goro (don't use Kano's or Johnny Cage's finishing move on Goro) - CBBA-394F+D5BA-391F - - - Start on Match 2 - DF61-14DD - - - Start on Match 3 - D461-14DD - - - Start on Match 4 - D761-14DD - - - Start on Match 5 - D061-14DD - - - Start on Match 6 - D961-14DD - - - Start on Mirror Match - D161-14DD - - - Start on Endurance 1 match - D561-14DD - - - Start on Endurance 2 match - D661-14DD - - - Start on Endurance 3 match - DB61-14DD - - - Start on match with Goro - DC61-14DD - - - Start on match with Shang Tsung - D861-14DD - - - - Mortal Kombat - Shinken Kourin Densetsu (Japan) - - Infinite health - CF31-4F64+6231-44D4+EB31-4404+D031-4464 - - - One hit kill - P1 - DD3C-44D4+623C-4464+E83C-44A4+D03C-47D4 - - - - Mortal Kombat II (USA) - - Invincibility - P1 - C2B1-14F7 - - - Invincibility - P2/CPU - C2B5-14F7 - - - Infinite health - CB89-4FAA+CF89-44DA+DD89-440A+EA89-44AA+4389-47DA - - - Infinite time - 6DC7-1DAA - - - Infinite continues - C2C4-47AA - - - No health - P1 - DDB1-1FF7 - - - No health - P2/CPU - DDB5-1FF7 - - - Hit anywhere - P1 - 0DB0-4F97+2DB0-4FF7+3DB0-4D97+DDB0-4DB7 - - - Have 127x more fatality time - 5EC2-CF02 - - - Disable throws - 2P mode - 622B-C7AC - - - Mileena's Sai Throw does massive damage - 06E1-17D4 - - - Liu Kang's High Fireball does massive damage - 06E9-1DD7 - - - Kung Lao's Hat Throw does massive damage - 06E2-1767 - - - Cage's Shadow Kick does massive damage - 06EF-4767 - - - Reptile's Force Ball does massive damage - 06EB-17AF - - - Shang Tsung's Flaming Skull attack does massive damage - 06E0-4FA4 - - - Kitana's Fan Throw does massive damage - 06E9-17A4 - - - Baraka's Blade Spark does massive damage - 06EE-C4A4 - - - Rayden's Lightning Bolt does massive damage - 06E4-34DF - - - Enable all 2P rules/moves when fighting computer - 6DCF-4D9D - - - Always fight Kung Lao - CBC6-3D6E+DDC6-3DAE - - - Always fight Liu Kang - CBC6-3D6E+DFC6-3DAE - - - Always fight Cage - CBC6-3D6E+D4C6-3DAE - - - Always fight Baraka - CBC6-3D6E+D7C6-3DAE - - - Always fight Kitana - CBC6-3D6E+D0C6-3DAE - - - Always fight Mileena - CBC6-3D6E+D9C6-3DAE - - - Always fight Shang Tsung - CBC6-3D6E+D1C6-3DAE - - - Always fight Rayden - CBC6-3D6E+D5C6-3DAE - - - Always fight Sub-Zero - CBC6-3D6E+D6C6-3DAE - - - Always fight Reptile - CBC6-3D6E+DBC6-3DAE - - - Always fight Scorpion - CBC6-3D6E+DCC6-3DAE - - - Always fight Jax - CBC6-3D6E+D8C6-3DAE - - - Always fight Kintaro - CBC6-3D6E+DAC6-3DAE - - - Always fight Shao Kahn - CBC6-3D6E+D2C6-3DAE - - - Always fight Smoke - CBC6-3D6E+D3C6-3DAE - - - Always fight Noob Saibot - CBC6-3D6E+DEC6-3DAE - - - Always fight Jade - CBC6-3D6E+FDC6-3DAE - - - Start with 0 continues - DF8C-CDDA - - - Start with 2 continues - D78C-CDDA - - - Start with 6 continues - D58C-CDDA - - - Start with 8 continues - DB8C-CDDA - - - Invincibility - P1 (alt) - 849C68:80+849C69:09+849C7B:00+85AA52:60+85AB1C:60+85AC2A:60 - - - Invincibility - P2/CPU (alt) - 849C68:80+849C69:06+849C76:00+85AA52:60+85AB1C:60+85AC2A:60 - - - - Mortal Kombat II (USA) (Rev 1) - - P1 is killed by one hit - DDB1-1FF7 - - - P2/CPU is killed by one hit - DDB5-1FF7 - - - Have 127x more fatality time - 5EC3-CF02 - - - Disable throws - 2P mode - 622B-C7AC - - - Enable all 2P rules/moves when fighting computer - 6DCF-4D9D - - - - Mortal Kombat 3 (USA) - - Infinite health - P1 - C230-CD62 - - - Infinite health - P2 - C239-CD62 - - - P1 takes all damage - DD37-CF62 - - - P2 takes all damage - 6D37-CF02 - - - Infinite continues - A220-3FB6 - - - Hit anywhere - P1 - 3DE6-3DDE+6D30-1462+C4E6-3F6E+D4E6-3D0E+DDE6-3D6E+EDE6-3DAE+D7E6-3FDE+EE30-14A2+0AE6-3F0E+0AE6-340E+0AE6-34DE+39E6-346E+39E6-3FAE - - - Press A on main menu for Sound Test - D42E-44D8 - - - Press Up on main menu for Kool Stuff Menu - D424-17D8 - - - Press Select on main menu for Kooler Stuff Menu - D421-1DD8 - - - Press X on main menu for Scott's Menu - D42B-1FD8 - - - Always fight Kano in Master mode - CE8F-3FB7+BA23-3727+DDAE-4FFF - - - Always fight Sonya in Master mode - CE8F-3FB7+BA23-3727+DFAE-4FFF - - - Always fight Jax in Master mode - CE8F-3FB7+BA23-3727+D4AE-4FFF - - - Always fight Nightwolf in Master mode - CE8F-3FB7+BA23-3727+D7AE-4FFF - - - Always fight Sub-Zero in Master mode - CE8F-3FB7+BA23-3727+D0AE-4FFF - - - Always fight Stryker in Master mode - CE8F-3FB7+BA23-3727+D9AE-4FFF - - - Always fight Sindel in Master mode - CE8F-3FB7+BA23-3727+D1AE-4FFF - - - Always fight Sektor in Master mode - CE8F-3FB7+BA23-3727+D5AE-4FFF - - - Always fight Cyrax in Master mode - CE8F-3FB7+BA23-3727+D6AE-4FFF - - - Always fight Kung Lao in Master mode - CE8F-3FB7+BA23-3727+DBAE-4FFF - - - Always fight Kabal in Master mode - CE8F-3FB7+BA23-3727+DCAE-4FFF - - - Always fight Sheeva in Master mode - CE8F-3FB7+BA23-3727+D8AE-4FFF - - - Always fight Shang Tsung in Master mode - CE8F-3FB7+BA23-3727+DAAE-4FFF - - - Always fight Liu Kang in Master mode - CE8F-3FB7+BA23-3727+D2AE-4FFF - - - Always fight Smoke in Master mode - CE8F-3FB7+BA23-3727+D3AE-4FFF - - - Always fight Motaro in Master mode - CE8F-3FB7+BA23-3727+DEAE-4FFF - - - Always fight Shao Kahn in Master mode - CE8F-3FB7+BA23-3727+FDAE-4FFF - - - Always fight Noob-Saibot in Master mode - CE8F-3FB7+BA23-3727+FFAE-4FFF - - - Invincibility (except throws and uppercuts) - P1 - 7E5447:01 - - - Invincibility (except throws and uppercuts) - P2 - 7E5449:01 - - - First round / one button fatalities - 7E3AF0:01 - - - - Mr. Do! (USA) - - Infinite lives - 7E18B2:09 - - - Two enemies on screen at most - 7E1440:00 - - - Level modifier (level is always one less than entered) - 7E189E:??+7E18A0:??+7E18B4:?? - - - - Mr. Nutz (USA) (En,Fr) - - Invincibility - 7E008D:2D - - - Infinite Nuts - 7E0A29:99 - - - Infinite coins - 7E1894:99 - - - One hit kills on bosses - 7E05D0:00 - - - - Mr. Tuff (Europe) (En,Fr,De,Es,It) (Proto) (1994-12-05) - - Infinite time - 7EEB1C:39 - - - Infinite time on item pick-ups and flame-thrower fuel - 7EEB93:27 - - - Enable auto-hit - 7EEB79:03 - - - Easy bosses (except Octopod) - 7EF4F8:00 - - - Jump higher - 7E0421:00 - - - Have drill - 7EEAF4:01 - - - Have super attack - 7EEAF4:02 - - - Have bowling ball - 7EEAF4:03 - - - Have fire smash - 7EEAF4:04 - - - Have regular punch - 7EEAF4:05 - - - Have crescent blast - 7EEAF4:06 - - - Have mace - 7EEAF4:07 - - - Have jet pack special - 7EEB68:01 - - - Have missiles special - 7EEB68:02 - - - Have flame thrower special - 7EEB68:03 - - - - Mr. Tuff (USA) (En,Fr,De) (Proto) (1994-07-12) - - Invincibility - 7EEB46:FE - - - Infinite health - 7ED580:03 - - - Infinite lives - 7ED580:03 - - - No targets to smash - 7EEB2E:00 - - - - Ms. Pac-Man (USA) - - Ghosts eatable at start and infinite power pill time - 7E029E:03 - - - Infinite Power Pellet time - 7E029E:01 - - - Infinite lives - 7E028C:03 - - - Level modifier - 7E039E:?? - - - - Musya - The Classic Japanese Tale of Horror (USA) - - Invincibility (blinking) - 7E103C:0A - - - Infinite health - 7E101A:10 - - - Infinite lives - 7E1033:03 - - - Infinite Fire magic - 7E102F:04 - - - Infinite Heal magic - 7E1032:33 - - - Infinite Help magic - 7E1030:33 - - - Infinite Lightning magic - 7E102E:04 - - - Infinite Web magic - 7E1031:33 - - - Have strongest weapon - 7E102C:06 - - - - Mystic Ark (Japan) - - 999 HP for hero - 7EB004:0F+7EB005:27 - - - 999 MP for Hero - 7EB008:E7+7EB009:03 - - - Have enough gold - 7EB120:FF+7EB121:FF - - - Quick gain EXP - 7E0551:FF+7E0552:FF - - - - NBA All-Star Challenge (USA) - - P1 can't score in the 1-on-1, free throw or tournament stages - 123B-3F0D - - - P2 or computer can't score in the 1-on-1, free throw or tournament events - A238-340D - - - P1 can't score in 3-point shootout - A239-1F0D+A237-176D - - - P2 or computer can't score in 3-point shootout - A23F-176D+A23D-1FAD - - - Stop shot clock (1-on-1 and 1-on-1 tournament modes) - A2C6-3F07+6DC6-3DA7 - - - 12-second shot clock (1-on-1 and 1-on-1 tournament modes) - DFC3-34D7+D4C3-3DA7 - - - 48-second shot clock - after the 1st shot (1-on-1 and 1-on-1 tournament modes) - D0C3-34D7+D6C3-3DA7 - - - - NBA Jam - Tournament Edition (USA) - - Infinite shot clock time - C2C9-1467 - - - Ability to set shot clock option down to 1 - DF62-1B1B - - - Have almost Infinite Turbo - P1 - C28B-1DA5 - - - Have almost Infinite Turbo - P2 - C286-1B2B - - - Turbo recharges quicker - P1 - DF8A-1D65 - - - Turbo recharges quicker - P2 - DF88-1BBB - - - Twice as much turbo - P1 - 0D8A-1FA5 - - - Twice as much turbo - P2 - 0D88-1C2B - - - Shots worth more - P1 - 76C2-6DDF - - - Shots worth more - P2 - 76C3-DF04 - - - Player is On Fire after 2 baskets instead of 3 - D0BF-11C8 - - - No turbo (except in tournament mode) - P1 - CB88-1565 - - - No turbo (except in tournament mode) - P2 - CB88-16BB - - - Move much faster (except in tournament mode) - all players - DDE4-0B28+D1E4-08F8 - - - Move super fast (except in tournament mode) - all players - DDE4-0B28+DBE4-08F8 - - - Hot spots and Power ups are on in tournament mode automatically (don't select the special features menu) - D1E9-DC98 - - - Have all secret power-ups except slippery floors on - all players - DDE5-C74C+6DEB-CD4C+41E5-F47D - - - Have Power Push, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P1 - EEEA-1FDC - - - Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P2 - EEE1-C46C - - - Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P3 - EEEF-3DDC - - - Have Power Block, Powered Up 3pts, Infinite Turbo, Always On Fire, Super Dunks, Max Power, Powered Up Goal Tending and Quick Hands - P4 - EEE8-3F6C - - - Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P1 - EEEA-1F0C - - - Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P2 - EEE1-C4AC - - - Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P3 - EEEF-3D0C - - - Have Power-up offense, Speed Up, block opponent to make both fall, Teleport Pass and High Shots - P4 - EEE8-3FAC - - - Have all secret power-ups - all players - DDE5-C74C+6DEB-CD4C - - - Have all secret power-ups on - P1 - EEEA-1FDC+EEEA-1F0C - - - Have all secret power-ups on - P2 - EEE1-C46C+EEE1-C4AC - - - Have all secret power-ups on - P3 - EEEF-3DDC+EEEF-3D0C - - - Have all secret power-ups on - P4 - EEE8-3F6C+EEE8-3FAC - - - Have Power Push - P1 - DFEA-1FDC - - - Have Powered Up 3 pointers - P1 - D4EA-1FDC - - - Have Powered Up 3 pointers - P2 - D4E1-C46C - - - Have Powered Up 3 pointers - P3 - D4EF-3DDC - - - Have Powered Up 3 pointers - P4 - D4E8-3F6C - - - Have Infinite Turbo - P1 - D0EA-1FDC - - - Have Infinite Turbo - P2 - D0E1-C46C - - - Have Infinite Turbo - P3 - D0EF-3DDC - - - Have Infinite Turbo - P4 - D0E8-3F6C - - - Always On Fire - P1 - D6EA-1FDC - - - Always On Fire - P2 - D6E1-C46C - - - Always On Fire - P3 - D6EF-3DDC - - - Always On Fire - P4 - D6E8-3F6C - - - Have Super Dunks - P1 - FDEA-1FDC - - - Have Super Dunks - P2 - FDE1-C46C - - - Have Super Dunks - P3 - FDEF-3DDC - - - Have Super Dunks - P4 - FDE8-3F6C - - - Have Max Power - P1 - 4DEA-1FDC - - - Have Max Power - P2 - 4DE1-C46C - - - Have Max Power - P3 - 4DEF-3DDC - - - Have Max Power - P4 - 4DE8-3F6C - - - Have Powered Up Goal Tending - P1 - 0DEA-1FDC - - - Have Powered Up Goal Tending - P2 - 0DE1-C46C - - - Have Powered Up Goal Tending - P3 - 0DEF-3DDC - - - Have Powered Up Goal Tending - P4 - 0DE8-3F6C - - - Have Quick Hands - P1 - 6DEA-1FDC - - - Have Quick Hands - P2 - 6DE1-C46C - - - Have Quick Hands - P3 - 6DEF-3DDC - - - Have Quick Hands - P4 - 6DE8-3F6C - - - Have Powered Up Offense - P1 - DFEA-1F0C - - - Have Powered Up Offense - P2 - DFE1-C4AC - - - Have Powered Up Offense - P3 - DFEF-3D0C - - - Have Powered Up Offense - P4 - DFE8-3FAC - - - Move very quickly - P1 - D4EA-1F0C - - - Move very quickly - P2 - D4E1-C4AC - - - Move very quickly - P3 - D4EF-3D0C - - - Move very quickly - P4 - D4E8-3FAC - - - Knock down both opponents by pushing one - P1 - D0EA-1F0C - - - Knock down both opponents by pushing two - P2 - D0E1-C4AC - - - Knock down both opponents by pushing three - P3 - D0EF-3D0C - - - Knock down both opponents by pushing four - P4 - D0E8-3FAC - - - Knock down opposite opponent - P1 - FDEA-1F0C - - - Knock down opposite opponent - P2 - FDE1-C4AC - - - Knock down opposite opponent - P3 - FDEF-3D0C - - - Knock down opposite opponent - P4 - FDE8-3FAC - - - Have High Shots - P1 - 4DEA-1F0C - - - Have High Shots - P2 - 4DE1-C4AC - - - Have High Shots - P3 - 4DEF-3D0C - - - Have High Shots - P4 - 4DE8-3FAC - - - Have Power Block - P2 - DFE1-C46C - - - Have Power Block - P3 - DFEF-3DDC - - - Have Power Block - P4 - DFE8-3F6C - - - Have Teleport Passes - P1 - D6EA-1F0C - - - Have Teleport Passes - P2 - D6E1-C4AC - - - Have Teleport Passes - P3 - D6EF-3D0C - - - Have Teleport Passes - P4 - D6E8-3FAC - - - Start with 1 point - P1 - 33E0-4DAC - - - Start with 1 point - P2 - 33E0-47AC - - - - NBA Jam (USA) (Rev 1) - - Always On Fire - all players - D6E2-CFC8 - - - Always On Fire (alt) - all players - D6E9-CD18 - - - Have Infinite Turbo - all players - D6E3-C748 - - - Have Infinite Turbo (alt) - all players - D6E1-CF38 - - - Have Super Dunk ability - all players - D8E8-C718 - - - Have Super Dunk ability (alt) - all players - D8E7-C448 - - - Have Super Interception ability - all players - D8E6-C7C8 - - - Have Super Interception ability (alt) - all players - D8ED-C418 - - - Juice mode - D6ED-3DC8 - - - Juice mode (alt) - D6E5-C718 - - - Visitor's baskets worth 1 - BBCC-0F6F - - - Visitor's baskets worth 2 - 34CC-0F6F - - - Visitor's baskets worth 3 - 30CC-0F6F - - - Visitor's baskets worth 4 - 39CC-0F6F - - - Visitor's baskets worth 5 - 35CC-0F6F - - - Visitor's baskets worth 6 - 36CC-0F6F - - - Visitor's baskets worth 7 - 3CCC-0F6F - - - Visitor's baskets worth 8 - 3ACC-0F6F - - - Home's baskets worth 1 - BBC6-A7AF - - - Home's baskets worth 2 - 34C6-A7AF - - - Home's baskets worth 3 - 30C6-A7AF - - - Home's baskets worth 4 - 39C6-A7AF - - - Home's baskets worth 5 - 35C6-A7AF - - - Home's baskets worth 6 - 36C6-A7AF - - - Home's baskets worth 7 - 3CC6-A7AF - - - Home's baskets worth 8 - 3AC6-A7AF - - - Shot success percentages displayed for non-dunk shots - D6EC-CF38 - - - Shot success percentages displayed for non-dunk shots (alt) - D6E4-CDC8 - - - Need 2 baskets to be On Fire - D4BD-3038+D4BA-C948 - - - Need 4 baskets to be On Fire - D0BD-3038 - - - Need 5 baskets to be On Fire - D9BD-3038 - - - Need 6 baskets to be On Fire - D1BD-3038 - - - Need 7 baskets to be On Fire - D5BD-3038 - - - Need 8 baskets to be On Fire - D6BD-3038 - - - Need 9 baskets to be On Fire - DBBD-3038 - - - Need 10 baskets to be On Fire - DCBD-3038 - - - Need 2 baskets to stay On Fire until an opponent goes On Fire - D4BD-3038 - - - Turbo bar never goes up (until next quarter) - DDE6-3B2A - - - Turbo bar never goes up (until next quarter) (alt) - DDE1-3C2A - - - Turbo bar restores very slowly - D3E6-3B2A - - - Turbo bar restores very slowly (alt) - D3E1-3C2A - - - Turbo bar restores much slower - F9E6-3B2A - - - Turbo bar restores much slower (alt) - F9E1-3C2A - - - Turbo bar restores slower - F2E6-3B2A - - - Turbo bar restores slower (alt) - F2E1-3C2A - - - Turbo bar restores faster - 0DE6-3B2A - - - Turbo bar restores faster (alt) - 0DE1-3C2A - - - Turbo bar restores much faster - 9DE6-3B2A - - - Turbo bar restores much faster (alt) - 9DE1-3C2A - - - Turbo bar restores extremely fast - 6FE6-3B2A - - - Turbo bar restores extremely fast (alt) - 6FE1-3C2A - - - Turbo drains very slowly - D0E5-3CFA - - - Turbo drains very slowly (alt) - D0E9-38FA - - - Turbo drains slower - D6E5-3CFA - - - Turbo drains slower (alt) - D6E9-38FA - - - Turbo drains slightly slower - FDE5-3CFA - - - Turbo drains slightly slower (alt) - FDE9-38FA - - - Turbo drains slightly faster - 44E5-3CFA - - - Turbo drains slightly faster (alt) - 44E9-38FA - - - Turbo drains faster - 42E5-3CFA - - - Turbo drains faster (alt) - 42E9-38FA - - - Turbo drains very fast - 76E5-3CFA - - - Turbo drains very fast (alt) - 76E9-38FA - - - Always On Fire - P1 - 7E0A96:01 - - - Always On Fire - P2 - 7E0A96:03 - - - - NBA Jam (USA) - - Always On Fire - all players - D6E2-CFC8 - - - Always On Fire (alt) - all players - D6E9-CD18 - - - Have Infinite Turbo - all players - D6E3-C748 - - - Have Infinite Turbo (alt) - all players - D6E1-CF38 - - - Have Super Dunk ability - all players - D8E8-C718 - - - Have Super Dunk ability (alt) - all players - D8E7-C448 - - - Have Super Interception ability - all players - D8E6-C7C8 - - - Have Super Interception ability (alt) - all players - D8ED-C418 - - - Juice mode - D6ED-3DC8 - - - Juice mode (alt) - D6E5-C718 - - - Visitor's baskets worth 1 - BBCC-0F6F - - - Visitor's baskets worth 2 - 34CC-0F6F - - - Visitor's baskets worth 3 - 30CC-0F6F - - - Visitor's baskets worth 4 - 39CC-0F6F - - - Visitor's baskets worth 5 - 35CC-0F6F - - - Visitor's baskets worth 6 - 36CC-0F6F - - - Visitor's baskets worth 7 - 3CCC-0F6F - - - Visitor's baskets worth 8 - 3ACC-0F6F - - - Home's baskets worth 1 - BBC6-A7AF - - - Home's baskets worth 2 - 34C6-A7AF - - - Home's baskets worth 3 - 30C6-A7AF - - - Home's baskets worth 4 - 39C6-A7AF - - - Home's baskets worth 5 - 35C6-A7AF - - - Home's baskets worth 6 - 36C6-A7AF - - - Home's baskets worth 7 - 3CC6-A7AF - - - Home's baskets worth 8 - 3AC6-A7AF - - - Shot success percentages displayed for non-dunk shots - D6EC-CF38 - - - Shot success percentages displayed for non-dunk shots (alt) - D6E4-CDC8 - - - Need 2 baskets to be On Fire - D4BD-3038+D4BA-C948 - - - Need 4 baskets to be On Fire - D0BD-3038 - - - Need 5 baskets to be On Fire - D9BD-3038 - - - Need 6 baskets to be On Fire - D1BD-3038 - - - Need 7 baskets to be On Fire - D5BD-3038 - - - Need 8 baskets to be On Fire - D6BD-3038 - - - Need 9 baskets to be On Fire - DBBD-3038 - - - Need 10 baskets to be On Fire - DCBD-3038 - - - Need 2 baskets to stay On Fire until an opponent goes On Fire - D4BD-3038 - - - Turbo bar never goes up (until next quarter) - DDE6-3B2A - - - Turbo bar never goes up (until next quarter) (alt) - DDE1-3C2A - - - Turbo bar restores very slowly - D3E6-3B2A - - - Turbo bar restores very slowly (alt) - D3E1-3C2A - - - Turbo bar restores much slower - F9E6-3B2A - - - Turbo bar restores much slower (alt) - F9E1-3C2A - - - Turbo bar restores slower - F2E6-3B2A - - - Turbo bar restores slower (alt) - F2E1-3C2A - - - Turbo bar restores faster - 0DE6-3B2A - - - Turbo bar restores faster (alt) - 0DE1-3C2A - - - Turbo bar restores much faster - 9DE6-3B2A - - - Turbo bar restores much faster (alt) - 9DE1-3C2A - - - Turbo bar restores extremely fast - 6FE6-3B2A - - - Turbo bar restores extremely fast (alt) - 6FE1-3C2A - - - Turbo drains very slowly - D0E5-3CFA - - - Turbo drains very slowly (alt) - D0E9-38FA - - - Turbo drains slower - D6E5-3CFA - - - Turbo drains slower (alt) - D6E9-38FA - - - Turbo drains slightly slower - FDE5-3CFA - - - Turbo drains slightly slower (alt) - FDE9-38FA - - - Turbo drains slightly faster - 44E5-3CFA - - - Turbo drains slightly faster (alt) - 44E9-38FA - - - Turbo drains faster - 42E5-3CFA - - - Turbo drains faster (alt) - 42E9-38FA - - - Turbo drains very fast - 76E5-3CFA - - - Turbo drains very fast (alt) - 76E9-38FA - - - Always On Fire - P1 - 7E0A96:01 - - - Always On Fire - P2 - 7E0A96:03 - - - - NBA Showdown (USA) - - Infinite time - C224-4DA4 - - - Infinite time-outs - C239-1F6D - - - No personal fouls - both teams - C23B-44A8 - - - Infinite shot clock - computer - C220-4FDF - - - 12-sec. shot clock when ball is in-bounded - P1 - DAE3-14AA+DAB7-37DA+DA3F-140F - - - 12-sec. shot clock when ball is in-bounded - computer - DAE3-14AA+DA6E-47D8+DA84-CDDB - - - 1-min. quarters - DFED-342C - - - 3 time-outs - D7E1-1D6A - - - - NCAA Basketball (USA) (Rev 1) - - Infinite time to shoot - C2B5-DDA9 - - - Infinite timeouts - P1 - C224-6FDF - - - Infinite timeouts - P2 - C224-676F - - - Shot timer starts at 10 sec. instead of 45 - FDBB-DDD9 - - - Shot timer starts at 20 sec. - 4DBB-DDD9 - - - Shot timer starts at 30 sec. - 7DBB-DDD9 - - - Shot timer starts at 60 sec. - 1DBB-DDD9 - - - Shot timer starts at 90 sec. - BDBB-DDD9 - - - 3-point shots worth 0 - both players - DD34-A767 - - - 3-point shots worth 1 point - DF34-A767 - - - 3-point shots worth 2 points - D434-A767 - - - 3-point shots worth 4 points - D034-A767 - - - 3-point shots worth 5 points - D934-A767 - - - 3-point shots worth 6 points - D134-A767 - - - 3-point shots worth 7 points - D534-A767 - - - 3-point shots worth 8 points - D634-A767 - - - 3-point shots worth 9 points - DB34-A767 - - - P1 shots worth 1 extra point (2-pt. shots worth 3, 3-pt. shots worth 4) - 76BA-A404+76B9-6FA7 - - - P2 shots worth 1 extra point (2-pt. shots worth 3, 3-pt. shots worth 4) - 76B0-64A7+76B8-A704 - - - P1 free throws worth 2 instead of 1 - 76BD-0D07 - - - P2 free throws worth 2 - 76BE-DF07 - - - No 5-second violations - C265-D4D7 - - - - NHL Stanley Cup (USA) (En,Fr) - - Visitor starts with 1 point (exhibition mode) - DF67-CDA4+D667-CFA4+E667-CF64 - - - Home starts with 1 point (exhibition mode) - DF67-CDA4+D667-CFA4+EC67-CF64 - - - Visitor starts with 3 points (exhibition mode) - D767-CDA4+D667-CFA4+E667-CF64 - - - Home starts with 3 points (exhibition mode) - D767-CDA4+D667-CFA4+EC67-CF64 - - - Visitor starts with 5 points (exhibition mode) - D967-CDA4+D667-CFA4+E667-CF64 - - - Home starts with 5 points (exhibition mode) - D967-CDA4+D667-CFA4+EC67-CF64 - - - Visitor starts with 7 points (exhibition mode) - D567-CDA4+D667-CFA4+E667-CF64 - - - Home starts with 7 points (exhibition mode) - D567-CDA4+D667-CFA4+EC67-CF64 - - - Visitor starts with 9 points (exhibition mode) - DB67-CDA4+D667-CFA4+E667-CF64 - - - Home starts with 9 points (exhibition mode) - DB67-CDA4+D667-CFA4+EC67-CF64 - - - Visitor scores 1 point for goals, Home scores 3 - 1BA1-4D01 - - - Periods are 1 min (choose 5 minutes from Options) - DFE0-CD0F - - - Periods are 3 min (choose 5 minutes from Options) - D7E0-CD0F - - - Periods are 7 min (choose 5 minutes from Options) - D5E0-CD0F - - - Periods are 9 min (choose 5 minutes from Options) - DBE0-CD0F - - - Periods are 15 min (choose 10 minutes from Options) - 94ED-C46F - - - Periods are 30 min (choose 10 minutes from Options) - D7E0-C76F - - - Penalty for charging is 1 minute instead of 2 - 7A2B-3F00 - - - Penalty for holding is 1 minute instead of 2 - 7A2B-3760 - - - Penalty for tripping is 1 minute instead of 2 - 7A2C-3FA0 - - - Penalty for high sticking is 1 minute instead of 2 - 7A28-3DD0 - - - Penalty for elbowing is 1 minute instead of 2 - 7A28-3400 - - - Penalty for hooking is 1 minute instead of 2 - 7A2A-3D60 - - - Penalty for roughing is 1 minute instead of 2 - 7A2A-34A0 - - - Penalty for slashing is 1 minute instead of 4 - 7A22-3FD0 - - - Penalty for spearing is 1 minute instead of 2 - 7A22-3700 - - - Penalty for charging is 30 seconds - F32B-3F00 - - - Penalty for holding is 30 seconds - F32B-3760 - - - Penalty for tripping is 30 seconds - F32C-3FA0 - - - Penalty for high sticking is 30 seconds - F328-3DD0 - - - Penalty for elbowing is 30 seconds - F328-3400 - - - Penalty for hooking is 30 seconds - F32A-3D60 - - - Penalty for roughing is 30 seconds - F32A-34A0 - - - Penalty for slashing is 30 seconds - F322-3FD0 - - - Penalty for spearing is 30 seconds - F322-3700 - - - Penalty for charging is 3 minutes - 802B-3F00 - - - Penalty for holding is 3 minutes - 802B-3760 - - - Penalty for tripping is 3 minutes - 802C-3FA0 - - - Penalty for high sticking is 3 minutes - 8028-3DD0 - - - Penalty for elbowing is 3 minutes - 8028-3400 - - - Penalty for hooking is 3 minutes - 802A-3D60 - - - Penalty for roughing is 3 minutes - 802A-34A0 - - - Penalty for slashing is 3 minutes - 8022-3FD0 - - - Penalty for spearing is 3 minutes - 8022-3700 - - - - NHLPA Hockey 93 (USA) - - Period clock runs faster - F160-4776 - - - Period clock runs slower - D060-4776 - - - Period clock runs much faster - 0D60-4776 - - - Period clock runs much slower - DF60-4776 - - - Period clock is frozen (no time limit) - C269-4D86 - - - Each period lasts 1 minute instead of 10 minutes - 7AE8-4D98+DDE8-4DB8 - - - Each period lasts 2 minutes - 56E8-4D98+DDE8-4DB8 - - - Each period lasts 3 minutes - 80E8-4D98+DDE8-4DB8 - - - Each period lasts 4 minutes - EDE8-4D98+DDE8-4DB8 - - - Each period lasts 15 minutes - 60E8-4D98+D7E8-4DB8 - - - Each period lasts 30 minutes - D6E8-4D98+D5E8-4DB8 - - - Each period lasts 40 minutes - 1DE8-4D98+DBE8-4DB8 - - - Each period lasts 60 minutes - FDE8-4D98+D3E8-4DB8 - - - All penalties last 1 minute - DF31-3F64+CB31-3F04 - - - All penalties last 2 minutes - D431-3F64+CB31-3F04 - - - All penalties last 3 minutes - D731-3F64+CB31-3F04 - - - All penalties last 4 minutes - D031-3F64+CB31-3F04 - - - All penalties last 5 minutes - D931-3F64+CB31-3F04 - - - All penalties last 7 minutes - D531-3F64+CB31-3F04 - - - All penalties last 9 minutes - DB31-3F64+CB31-3F04 - - - - Nickelodeon GUTS (USA) - - Gain lots of points in Slam Dunk / Attack levels - 7E126D:FF - - - - Nigel Mansell's World Championship Racing (USA) - - Almost no tire wear (graphic distortion in the pits) - C96B-1705+C9B1-4D61 - - - Only 1 lap required on all tracks - E481-3467 - - - Only 3 laps required in South Africa - D461-4FBA - - - Only 3 laps required in Mexico - D461-44FA - - - Only 3 laps required in Brazil - D461-44BA - - - Only 3 laps required in Spain - D461-47FA - - - Only 3 laps required in San Marino - D461-47BA - - - Only 3 laps required in Monaco - D465-4DFA - - - Only 3 laps required in Canada - D465-4DBA - - - Only 3 laps required in France - D465-4FFA - - - Only 3 laps required in Britain - D465-4FBA - - - Only 3 laps required in Germany - D465-44FA - - - Only 3 laps required in Hungary - D465-44BA - - - Only 3 laps required in Belgium - D465-47FA - - - Only 3 laps required in Italy - D465-47BA - - - Only 3 laps required in Portugal - D466-4DFA - - - Only 3 laps required in Japan - D466-4DBA - - - Only 3 laps required in Australia - D466-4FFA - - - Full season ends after South Africa - DF3E-015A - - - Full season ends after Mexico - D43E-015A - - - Full season ends after Brazil - D73E-015A - - - Full season ends after Spain - D03E-015A - - - Full season ends after San Marino - D93E-015A - - - Full season ends after Monaco - D13E-015A - - - Full season ends after Canada - D53E-015A - - - Full season ends after France - D63E-015A - - - Full season ends after Britain - DB3E-015A - - - Full season ends after Germany - DC3E-015A - - - Full season ends after Hungary - D83E-015A - - - Full season ends after Belgium - DA3E-015A - - - Full season ends after Italy - D23E-015A - - - Full season ends after Portugal - D33E-015A - - - Full season ends after Japan - DE3E-015A - - - Start in Mexico in the Full Season - DF62-0953 - - - Start in Brazil - D462-0953 - - - Start in Spain - D762-0953 - - - Start in San Marino - D062-0953 - - - Start in Monaco - D962-0953 - - - Start in Canada - D162-0953 - - - Start in France - D562-0953 - - - Start in Britain - D662-0953 - - - Start in Germany - DB62-0953 - - - Start in Hungary - DC62-0953 - - - Start in Belgium - D862-0953 - - - Start in Italy - DA62-0953 - - - Start in Portugal - D262-0953 - - - Start in Japan - D362-0953 - - - Start in Australia - DE62-0953 - - - Start on extra course (stats are for South Africa but the course is different) - FD62-0953 - - - - Ninja Gaiden Trilogy (USA) - - (NG) Invincibility - 6DB5-3797 - - - (NG) Infinite health - C9C3-3F2D - - - (NG) Infinite lives - C9CF-CFBF - - - (NG) Infinite time - DD81-1F97 - - - (NG) Start with very little time - B1C8-3DF8 - - - (NG) Start with lots of time - EEC8-3DF8 - - - (NG) Start with very little health (after first life) - DFCE-142F - - - (NG) Start with about half health (after first life) - DFCE-142F - - - (NG) Start with 1 life - DDC5-4DF4 - - - (NG) Start with 5 lives - D7C5-4DF4 - - - (NG) Start with 9 lives - D6C5-4DF4 - - - (NGII) Invincibility - 1DB4-CD4D - - - (NGII) Infinite health - C9BB-441F - - - (NGII) Infinite lives - C961-3D37 - - - (NGII) Infinite time - C96F-1FC7 - - - (NGII) Start with very little health - DFB3-144F - - - (NGII) Start with about half health - D6B3-144F - - - (NGII) Start every life with two Shadow Ninjas - DEB9-14C4 - - - (NGII) Throwing stars don't use Ninja Power (ignore counter) - DFC4-1F47 - - - (NGII) Start with 1 life - DDB3-C4CF - - - (NGIII) Invincibility - DDAB-3FE7 - - - (NGIII) Infinite health - C92A-CFED - - - (NGIII) Infinite lives - CB69-CD57 - - - (NGIII) Infinite time - C927-17EF - - - (NGIII) Almost infinite Ninja Power - C9A7-C757 - - - (NGIII) Start with 99 Ninja Power (ignore the counter) - 176C-CDE7 - - - (NGIII) Start with 1 life - DD6B-CF87 - - - (NGIII) Start with 5 lives - D76B-CF87 - - - (NGIII) Start with 9 lives - D66B-CF87 - - - (NGIII) Start with very little health - DF68-CD77 - - - (NGIII) Start with about half health - D668-CD77 - - - (NG) Invincibility after first hit - 7E0093:01 - - - (NG) Infinite Ninja Power - 7E0064:63 - - - (NG) Auto kill enemies that are close by - 849F92:80+849F9F:80 - - - (NGII) Invincibility (alt) - 7E0068:25 - - - (NGII) Infinite Ninja Power - 7E00AE:63 - - - (NGII) Always have Fireball - 7E007D:02 - - - (NGIII) Infinite lives (alt) - 7E00C4:03 - - - (NGIII) Infinite Ninja Power - 7E00CD:63 - - - - Ninjawarriors (USA) - - Invincibility - EDB0-D768+ED8D-AD0B+2DB1-DDD8+2DB1-DF08+2D8D-A70B - - - Infinite health - C2B0-DD6C - - - Infinite time - 62C4-6DD7 - - - Infinite specials once you obtain one - CECB-A467 - - - One hit kills - CB68-D7AE+DD6A-DDDE+DD6A-DD0E+CBCE-ADD6+DDCE-AD06+DDCE-AD66 - - - - No Escape (USA) - - Infinite health - 852A-CF67 - - - Infinite time - CBB4-C75F - - - Infinite lives - 842F-44A7 - - - - Nolan Ryan's Baseball (USA) - - 1 strike and batter is out - A3BF-6DD1 - - - Batter never strikes out - C2BF-6DD1 - - - 1 ball and batter walks - A3BE-0D61 - - - Batter never walks - C2BE-0D61 - - - Each run worth 2 - P1 - 76AC-0D65 - - - Each run worth 2 - P2 - 76A8-04D5 - - - Short game (play only odd-numbered innings) - 766D-67A5 - - - Increasing a player's power setting does not decrease the power number excess (use to maximize stats for a player) - DDC8-D706 - - - Maximum power for a player is 32 instead of 25 - 4DBF-A7A8 - - - Maximum power for a player is 40 instead of 25 - 46BF-A7A8 - - - Maximum power for a player is 48 - 7DBF-A7A8 - - - - Nosferatu (USA) - - Almost infinite health - C9BA-1F04 - - - Infinite time - C127-4D67 - - - Don't lose crystals when you get hit - C265-3DBD - - - Start with very little health - DFB2-34D7 - - - Start with less health - D7B2-34D7 - - - Start with more health - DBB2-34D7 - - - Start with a lot more health - DEB2-34D7 - - - Start with more time - CBCE-CDAD+44CE-CFDD+DDCE-CF0D - - - Start on stage 1-2 - D1B3-3DA7 - - - Start on stage 1-3 - DBB3-3DA7 - - - Start on stage 2 - DCB3-3DA7 - - - Start on stage 2-2 - FDB3-3DA7 - - - Start on stage 2-3 - FFB3-3DA7 - - - Start on stage 2-4 - F5B3-3DA7 - - - Start on stage 3 - F6B3-3DA7 - - - Start on stage 3-2 - 4DB3-3DA7 - - - Start on stage 3-3 - 40B3-3DA7 - - - Start on stage 4 - 45B3-3DA7 - - - Start on stage 4-2 - 42B3-3DA7 - - - Start on stage 4-3 - 43B3-3DA7 - - - Start on stage 4-4 - 70B3-3DA7 - - - Start on stage 5 - 79B3-3DA7 - - - Start on stage 5-2 - 78B3-3DA7 - - - Start on stage 5-3 - 7AB3-3DA7 - - - Start on stage 5-4 - 09B3-3DA7 - - - Start on stage 6 - 01B3-3DA7 - - - Start on stage 6-2 - 03B3-3DA7 - - - Start on the final stage - 90B3-3DA7 - - - Start on the final stage with more crystals - 90B3-3DA7+62B3-3FA7 - - - View the ending - 91B3-3DA7 - - - - Obitus (USA) - - Infinite health - 7E1113:20 - - - Infinite Stamina - 7E1117:20 - - - Infinite Daggers (keep off until you obtain one) - 7F132E:02 - - - Infinite Silver Keys (keep off until you obtain one) - 7F0ED8:02 - - - Infinite Gold Coins (keep off until you obtain one) - 7F0E8E:63 - - - - Ogre Battle - The March of the Black Queen (USA) - - Level up after every battle (even if you run away) - DD2F-AFF4 - - - View 'Edit Units' screen to give everyone 2778 max HP (2000 of it won't be visible, and you won't get your HP restored. It will go down to 999 max HP if it tries to update the amount) - CBE7-A70C+B2E0-AD6C+2CE0-ADAC+DCE0-AFDC - - - View someone's stats from 'Edit Units' screen to give them max Luck - CB67-ADFB+EE67-AD9B+3C67-ADBB+BE67-AD2B - - - View someone's stats from 'Edit Units' screen to give them max Cha - CB6F-A7FB+196F-A79B+3C6F-A7BB+BE6F-A72B - - - Every hidden thing is visible when you first enter an area - CB6A-AD20+CB6A-AF90+EE6A-AFB0 - - - Leader's group moves 'Sky High' - DDE6-1D68 - - - Lans' group moves 'Sky High' - DDE7-1F68 - - - Judgement tarot card is stronger - EE20-070E - - - - On the Ball (USA) - - Infinite credits - C2AE-DF65 - - - Faster timer - D4BB-D404 - - - Stop timer - not lap timer (can still lose time by hitting hazards) - DDBB-D404 - - - Minus blocks and bricks worth 0 (don't combine with other minus codes) - C2BA-D7D4 - - - Minus 2 second block worth 0 - DDB7-0DA5 - - - Minus 2 second block worth minus 1 - FDB7-0DA5 - - - Minus 2 second block worth minus 3 - 7DB7-0DA5 - - - Minus 2 second block worth minus 4 - 0DB7-0DA5 - - - Minus 2 second block worth minus 5 - 9DB7-0DA5 - - - Minus 2 second block worth minus 6 - 1DB7-0DA5 - - - Minus 2 second block worth minus 7 - 5DB7-0DA5 - - - Minus 2 second block worth minus 8 - 6DB7-0DA5 - - - Minus 2 second block worth minus 9 - BDB7-0DA5 - - - Minus 5 second block worth 0 - DDB0-0F65 - - - Minus 5 second block worth minus 1 - FDB0-0F65 - - - Minus 5 second block worth minus 2 - 4DB0-0F65 - - - Minus 5 second block worth minus 3 - 7DB0-0F65 - - - Minus 5 second block worth minus 4 - 0DB0-0F65 - - - Minus 5 second block worth minus 6 - 1DB0-0F65 - - - Minus 5 second block worth minus 7 - 5DB0-0F65 - - - Minus 5 second block worth minus 8 - 6DB0-0F65 - - - Minus 5 second block worth minus 9 - BDB0-0F65 - - - Minus 3 second brick worth 0 - DDB9-0405 - - - Minus 3 second brick worth minus 1 - FDB9-0405 - - - Minus 3 second brick worth minus 2 - 4DB9-0405 - - - Minus 3 second brick worth minus 4 - 0DB9-0405 - - - Minus 3 second brick worth minus 5 - 9DB9-0405 - - - Minus 3 second brick worth minus 6 - 1DB9-0405 - - - Minus 3 second brick worth minus 7 - 5DB9-0405 - - - Minus 3 second brick worth minus 8 - 6DB9-0405 - - - Minus 3 second brick worth minus 9 - BDB9-0405 - - - Plus bricks worth 0 (don't combine with other plus bricks codes) - C2B8-DFA4 - - - Plus 3 bricks worth 0 - DDBB-0DA5 - - - Plus 3 bricks worth plus 1 - FDBB-0DA5 - - - Plus 3 bricks worth plus 2 - 4DBB-0DA5 - - - Plus 3 bricks worth plus 4 - 0DBB-0DA5 - - - Plus 3 bricks worth plus 5 - 9DBB-0DA5 - - - Plus 3 bricks worth plus 6 - 1DBB-0DA5 - - - Plus 3 bricks worth plus 7 - 5DBB-0DA5 - - - Plus 3 bricks worth plus 8 - 6DBB-0DA5 - - - Plus 3 bricks worth plus 9 - BDBB-0DA5 - - - Plus 5 bricks worth 0 - DDBC-0F65 - - - Plus 5 bricks worth plus 1 - FDBC-0F65 - - - Plus 5 bricks worth plus 2 - 4DBC-0F65 - - - Plus 5 bricks worth plus 3 - 7DBC-0F65 - - - Plus 5 bricks worth plus 4 - 0DBC-0F65 - - - Plus 5 bricks worth plus 6 - 1DBC-0F65 - - - Plus 5 bricks worth plus 7 - 5DBC-0F65 - - - Plus 5 bricks worth plus 8 - 6DBC-0F65 - - - Plus 5 bricks worth plus 9 - BDBC-0F65 - - - Start with 2 credits - DF66-DDA0 - - - Start with 6 credits - D966-DDA0 - - - Start with 8 credits - D566-DDA0 - - - Start with 10 credits - DB66-DDA0 - - - - Operation Logic Bomb - The Ultimate Search & Destroy (USA) - - Infinite health - C2B5-4DD0 - - - Take minimal damage - 33C6-C704 - - - Faster left-to-right movement - E2B2-1F00+D4BA-1700 - - - Faster up-and-down movement - E2BD-CFA0+D4B3-1FA0 - - - Reflecting laser fire travels longer - 1DB2-44D9 - - - Reflecting laser fire travels a lot longer - EEB2-44D9 - - - Start with 1 continue - DFB4-1FD4 - - - Start with 6 continues - D1B4-1FD4 - - - Start with 9 continues - DBB4-1FD4 - - - Start with tracking missiles - D7BD-1D64+4DBE-4DD4+40BD-1FD4 - - - Start with reflecting laser - D0BD-1D64+4DBE-4DD4+40BD-1FD4 - - - Start with flame thrower - D9BD-1D64+4DBE-4DD4+40BD-1FD4 - - - Start with hologram weapon - DFBF-1FD4+BABF-14D4+BABF-14A4 - - - Start with directional mines - D4BF-1FD4+BABF-14D4+BABF-14A4 - - - Infinite health (alt) - 819070:AD - - - Infinite weapons - 03ED4E:01 - - - Start with Tracking Missiles (alt) - 8098F0:20+809902:03+809904:24 - - - Start with Reflecting Laser (alt) - 8098F0:20+809902:04+809904:24 - - - Start with Flame Thrower (alt) - 8098F0:20+809902:05+809904:24 - - - Start with Hologram weapon (alt) - 809914:01+809918:9C+80991B:9C - - - Start with Directional Mines (alt) - 809914:02+809918:9C+80991B:9C - - - Faster left-to-right movement (alt) - 8191CD:02+8191D5:FD - - - Faster up-and-down movement (alt) - 8191E7:02+819207:FD - - - Reflecting laser fire travels a lot longer (alt) - 8194D8:FF - - - - Operation Starfi5h (Europe) - - Infinite health - 7EFB05:03 - - - Infinite lives - 7EFB03:03 - - - - Operation Thunderbolt (USA) - - Infinite health - 7E36EA:63 - - - Infinite Bullets - 7E36ED:09 - - - Infinite Rockets - 7E36EF:09 - - - Infinite Clips - 7E36EE:09 - - - - Oscar (USA) - - Invincibility - 7E0320:03 - - - Invincibility (alt) - 7E05B6:FF - - - Infinite lives - 7E0322:0A - - - All Oscars found - 7E0324:00 - - - No Oscars to find - 7E0324:00 - - - Multi-jump - 7E0C7E:00+7E0C7F:00 - - - - Outlander (USA) - - Infinite health while in the car - C260-CF07+C260-6F07 - - - Almost infinite health while out of the car (except when you eat poisonous food) - C9B6-450D - - - Infinite handgun ammo - DD69-45A4 - - - Infinite surface-to-air missiles on pick-up - C285-C7D9 - - - Car ammo worth nothing on pick-up - DD67-C1A4 - - - Car ammo worth more on pick-up - D467-C5D4 - - - Water worth nothing on pick-up - DD63-C0A4 - - - Water worth more on pick-up - DF63-C9D4 - - - Hand gun ammo worth nothing on pick-up - DD66-C064 - - - Food worth nothing on pick-up - DD6A-C0D4 - - - Gas can worth nothing on pick-up - DD6F-C004 - - - Gas can worth more on pick-up - D46F-C064 - - - Start with more car ammo - D980-47A1 - - - Start with less car ammo - DD80-47A1 - - - Start with more handgun ammo - 1A89-4FD1 - - - Start with less handgun ammo - FD89-4FD1 - - - Start with more fuel - D480-4F61 - - - - Out of This World (USA) - - First three shields are infinite - 7E0D84:E7+7E0D8A:E7+7E0D90:E7 - - - Infinite ammo in levels that have guns - 7E0C4E:80+7E0C4F:80 - - - - Out to Lunch (USA) - - Infinite lives - 7E0088:63 - - - Score modifier - 7E0009:63 - - - - Pac-Attack (USA) - - Fairy bar is always full (normal mode) - 7E160E:FF - - - - Pac-in-Time (USA) - - Infinite health - 7E1533:BF - - - Infinite lives - 7E0AD5:02 - - - Instant exit - 7E0B03:00 - - - - Pac-Man 2 - The New Adventures (USA) - - Infinite power pellets - C288-3FDB - - - Have Rope-Way and Train Pass - 7E0500:04 - - - Have all 3 Power Pellets - 7E0506:03 - - - Have all 3 Cartridges - 7E0507:07 - - - Have all 3 I.D. Cards - 7E0508:07 - - - Have Milk - 7E0509:01 - - - - Paladin's Quest (USA) - - Level 99 after one battle - 6D63-6701+6D6E-6401 - - - Infinite health - 10B5-6405 - - - Spells use up no HP - 108E-AF00 - - - No money needed in toolhouse and weapon shop - BA88-6481 - - - No money needed in learning center - BA3A-04BE - - - Spell power increases at 2x normal rate - D063-D401 - - - Spell power increases at 3x normal rate - D163-D401 - - - Chezni starts with 255 max HP - EEEB-6D1F - - - Chezni starts with 255 present HP - EEE6-673F - - - Chezni starts with 40 Power, 42 Attack - 46EB-6D3F - - - Chezni starts with 60 Power, 62 Attack - 7AEB-6D3F - - - Chezni starts with 42 Defense, 30 Endurance - F3EB-6F3F - - - Chezni starts with 72 Defense, 60 Endurance - 7AEB-6F3F - - - Chezni starts with 30 Speed - F3EB-6F1F - - - Chezni starts with 60 Speed - 7AEB-6F1F - - - Chezni starts with a bow - D6EA-6F1D - - - Chezni starts with a light sword - D2EA-6F1D - - - Chezni starts with a mid sword - FDEA-6F1D - - - Chezni starts with a Aybro Spear - FCEA-6F1D - - - Chezni starts with a heavy sword - F5EA-6F1D - - - Chezni starts with a wind sword - 7DEA-6F1D - - - Chezni starts with HST - 70EA-6F1D - - - Chezni starts with Gomutai - 9FEA-6F1D - - - Chezni starts with a Psych Beam - 54EA-6F1D - - - Chezni starts with a flame thrower - 57EA-6F1D - - - Chezni starts with light armor - D8EA-6FCD - - - Chezni starts with mid armor - DEEA-6FCD - - - Chezni starts with heavy armor - FAEA-6FCD - - - Chezni starts with storm armor - 7FEA-6FCD - - - Chezni starts with bib - 77EA-6FCD - - - Chezni starts with wood boots - D4EA-6F3D - - - Chezni starts with long boots - F8EA-6F3D - - - Chezni starts with knife boots - 40EA-6F3D - - - Chezni starts with mid boots - F9EA-6F3D - - - Chezni starts with sun helm - 74EA-6D3D - - - Chezni starts with leather helm - D9EA-6D3D - - - Chezni starts with helmet - DAEA-6D3D - - - Chezni starts with rage helmet - 4AEA-6D3D - - - Chezni starts with power helmet - F1EA-6D3D - - - Chezni starts with cosmo helmet - 55EA-6D3D - - - Chezni starts with gabni shield - 79EA-6F4D - - - Chezni starts with leather shield - 71EA-6F4D - - - Chezni starts with pick-axe - DBEA-6F4D - - - Chezni starts with gauntlet - F0EA-6F4D - - - Chezni starts with fire shield - FBEA-6F4D - - - Chezni starts with Rft shield - 59EA-6F4D - - - No random battles - 7E1868:09 - - - Infinite high gold - 7E17C3:0E - - - Character 1 - level 99 - 7E15FA:63 - - - Character 1 - 9999 current HP - 7E15FE:0F+7E15FF:27 - - - Character 1 - 9999 max HP - 7E1600:0F+7E1601:27 - - - Character 1 - 999 Power/Attack - 7E1602:E7+7E1603:03 - - - Character 1 - 999 SP/Attack SP - 7E1604:E7+7E1605:03 - - - Character 1 - 999 Defense/Endurance - 7E1606:E7+7E1607:03 - - - Character 1 - 999 Luck - 7E1608:E7+7E1608:03 - - - Character 1 - 99 available Magic - 7E160F:63 - - - Character 1 - 127 E Spirit - 7E1610:7F - - - Character 1 - 127 W Spirit - 7E1611:7F - - - Character 1 - 127 F Spirit - 7E1612:7F - - - Character 1 - 127 Sk Spirit - 7E1613:7F - - - Character 1 - 127 L Spirit - 7E1614:7F - - - Character 1 - 127 A Spirit - 7E1615:7F - - - Character 1 - 127 MT Spirit - 7E1616:7F - - - Character 1 - 127 SP Spirit - 7E1617:7F - - - Character 1 - 25 spells - 7E16DD:25 - - - Character 2 - level 99 - 7E1620:63 - - - Character 2 - 9999 current HP - 7E1624:0F+7E1625:27 - - - Character 2 - 9999 max HP - 7E1626:0F+7E1627:27 - - - Character 2 - 999 Power/Attack - 7E1628:E7+7E1629:03 - - - Character 2 - 999 SP/Attack SP - 7E162A:E7+7E162B:03 - - - Character 2 - 999 Defense/Endurance - 7E162C:E7+7E162D:03 - - - Character 2 - 999 Luck - 7E162E:E7+7E162E:03 - - - Character 2 - 99 available Magic - 7E1635:63 - - - Character 2 - 127 E Spirit - 7E1636:7F - - - Character 2 - 127 W Spirit - 7E1637:7F - - - Character 2 - 127 F Spirit - 7E1638:7F - - - Character 2 - 127 Sk Spirit - 7E1639:7F - - - Character 2 - 127 L Spirit - 7E163A:7F - - - Character 2 - 127 A Spirit - 7E163B:7F - - - Character 2 - 127 MT Spirit - 7E163C:7F - - - Character 2 - 127 SP Spirit - 7E163D:7F - - - Character 2 - 25 spells - 7E1703:25 - - - Character 3 - level 99 - 7E1646:63 - - - Character 3 - 9999 current HP - 7E164A:0F+7E164B:27 - - - Character 3 - 9999 max HP - 7E164C:0F+7E164D:27 - - - Character 3 - 999 Power/Attack - 7E164E:E7+7E164F:03 - - - Character 3 - 999 SP/Attack SP - 7E1650:E7+7E1651:03 - - - Character 3 - 999 Defense/Endurance - 7E1652:E7+7E1653:03 - - - Character 3 - 999 Luck - 7E1654:E7+7E1654:03 - - - Character 3 - 99 available Magic - 7E165B:63 - - - Character 3 - 127 E Spirit - 7E165C:7F - - - Character 3 - 127 W Spirit - 7E165D:7F - - - Character 3 - 127 F Spirit - 7E165E:7F - - - Character 3 - 127 Sk Spirit - 7E165F:7F - - - Character 3 - 127 L Spirit - 7E1660:7F - - - Character 3 - 127 A Spirit - 7E1661:7F - - - Character 3 - 127 MT Spirit - 7E1662:7F - - - Character 3 - 127 SP Spirit - 7E1663:7F - - - Character 3 - 25 spells - 7E1729:25 - - - Character 4 - level 99 - 7E166C:63 - - - Character 4 - 9999 current HP - 7E1670:0F+7E1671:27 - - - Character 4 - 9999 max HP - 7E1672:0F+7E1673:27 - - - Character 4 - 999 Power/Attack - 7E1674:E7+7E1675:03 - - - Character 4 - 999 SP/Attack SP - 7E1676:E7+7E1677:03 - - - Character 4 - 999 Defense/Endurance - 7E1678:E7+7E1679:03 - - - Character 4 - 999 Luck - 7E167A:E7+7E167A:03 - - - Character 4 - 99 available Magic - 7E1681:63 - - - Character 4 - 127 E Spirit - 7E1682:7F - - - Character 4 - 127 W Spirit - 7E1683:7F - - - Character 4 - 127 F Spirit - 7E1684:7F - - - Character 4 - 127 Sk Spirit - 7E1685:7F - - - Character 4 - 127 L Spirit - 7E1686:7F - - - Character 4 - 127 A Spirit - 7E1687:7F - - - Character 4 - 127 MT Spirit - 7E1688:7F - - - Character 4 - 127 SP Spirit - 7E1689:7F - - - Character 4 - 25 spells - 7E174F:25 - - - - Paperboy 2 (USA) - - Infinite papers - DD88-D464 - - - Infinite time in training course - DD67-D4D9 - - - Infinite lives (game still ends when all subscriptions are canceled) - DDBE-6404 - - - Paper bundles worth 0 if you have less than 10 - DD6D-6F60 - - - Paper bundles worth 5 if you have less than 10 - D96D-6F60 - - - Paper bundles worth 20 if you have less than 10 - F06D-6F60 - - - Paper bundles worth 30 if you have less than 10 - F36D-6F60 - - - Paper bundles worth 40 if you have less than 10 - 466D-6F60 - - - Paper bundles worth 50 if you have less than 10 - 746D-6F60 - - - Continue next life with 1 paper if you had less than 10 - DFC1-0FAF - - - Continue next life with 5 papers if you had less than 10 - D9C1-0FAF - - - Continue next life with 20 papers if you had less than 10 - F0C1-0FAF - - - Continue next life with 30 papers if you had less than 10 - F3C1-0FAF - - - Continue next life with 40 papers if you had less than 10 - 46C1-0FAF - - - Continue next life with 50 papers if you had less than 10 - 74C1-0FAF - - - Start with 79 seconds instead of 39 in Week 1 training course - DB6A-ADA0 - - - Start with 59 seconds in Week 1 training course - D56A-ADA0 - - - Start with 19 seconds in Week 1 training course - D76A-ADA0 - - - Start with 25 papers instead of 10 - FBC6-DFAD - - - Start with 50 papers - 74C6-DFAD - - - Start with 99 papers - 17C6-DFAD - - - Start with 1 life instead of 5 - Paperboy - DFBF-A767 - - - Start with 3 lives - Paperboy - D7BF-A767 - - - Start with 7 lives - Paperboy - D5BF-A767 - - - Start with 9 lives - Paperboy - DBBF-A767 - - - Start with 25 lives - Paperboy - FBBF-A767 - - - Start with 50 lives - Paperboy - 74BF-A767 - - - Start with 99 lives - Paperboy - 17BF-A767 - - - Start with 1 life instead of 5 - Papergirl - DFB5-ADD7 - - - Start with 3 lives - Papergirl - D7B5-ADD7 - - - Start with 7 lives - Papergirl - D5B5-ADD7 - - - Start with 9 lives - Papergirl - DBB5-ADD7 - - - Start with 25 lives - Papergirl - FBB5-ADD7 - - - Start with 50 lives - Papergirl - 74B5-ADD7 - - - Start with 99 lives - Papergirl - 17B5-ADD7 - - - - Parodius Da! - Shinwa kara Owarai e (Japan) - - Infinite lives - 7E0098:03 - - - - Peace Keepers, The (USA) - - Invincibility - C229-CF07 - - - Infinite health - 6E31-4DAD+B031-4FDD+D131-4F0D+5331-4F6D - - - One hit kills - 102C-C7D3 - - - Hit anywhere - 3DA1-C7D1+58A5-CDD1+DDA1-C701+D5A1-C761+FDA1-C7A1 - - - - PGA Tour Golf (USA) - - Ball goes in from anywhere - 6D85-67AD+6DCC-ADD7 - - - Allow 14 clubs for full set instead of 13 - D235-6D07+D22A-D40F - - - Allow 15 clubs for full set - D335-6D07+D32A-D40F - - - Allow 16 clubs for full set - DE35-6D07+DE2A-D40F - - - No wind - 6DC8-6DD7 - - - Constant wind of 10 mph - CBC8-6DD7+DDC8-6D67+DCC8-6D07 - - - Constant wind direction to the left - BACA-64D7 - - - Each round ends after hole 1 - DFA7-A704 - - - Each round ends after hole 2 - D4A7-A704 - - - Each round ends after hole 3 - D7A7-A704 - - - Each round ends after hole 4 - D0A7-A704 - - - Each round ends after hole 5 - D9A7-A704 - - - Each round ends after hole 6 - D1A7-A704 - - - Each round ends after hole 7 - D5A7-A704 - - - Each round ends after hole 8 - D6A7-A704 - - - Each round ends after hole 9 - DBA7-A704 - - - Each round ends after hole 10 - DCA7-A704 - - - Each round ends after hole 11 - D8A7-A704 - - - Each round ends after hole 12 - DAA7-A704 - - - Each round ends after hole 13 - D2A7-A704 - - - Each round ends after hole 14 - D3A7-A704 - - - Each round ends after hole 15 - DEA7-A704 - - - Each round ends after hole 16 - FDA7-A704 - - - Each round ends after hole 17 - FFA7-A704 - - - - Phalanx (USA) - - Infinite health - 3C21-AD0F - - - Infinite lives - DD2A-64AF - - - Infinite credits - DD63-DD04 - - - Hit anywhere - C230-6DDD+DD34-64DD+DD34-670D+DD3F-640D+DD3F-676D - - - Once power-up has been obtained, it is not lost until you continue (doesn't work for weapon, only power-ups) - C229-D7A4 - - - Power capsule restores armor to full strength - 9D23-6DAF+6723-6FDF - - - Power capsule has no effect on armor or power-up - 1D23-6D6F - - - Start with 1 credit instead of 4 - DFA8-05E3+DF2D-015A - - - Start with 2 credits - D4A8-05E3+D42D-015A - - - Start with 3 credits - D7A8-05E3+D72D-015A - - - Start with 5 credits - D9A8-05E3+D92D-015A - - - Start with 7 credits - D5A8-05E3+D52D-015A - - - Start with 10 credits - FDA8-05E3+FD2D-015A - - - Start with 1 life - DFA8-00E3+DF2D-008A - - - Start with 2 lives - D4A8-00E3+D42D-008A - - - Start with 3 lives - D7A8-00E3+D72D-008A - - - Start with 4 lives - D0A8-00E3+D02D-008A - - - Start with 6 lives - D1A8-00E3+D12D-008A - - - Start with 11 lives - FFA8-00E3+FF2D-008A - - - Start with 26 lives - 41A8-00E3+412D-008A - - - Start with 51 lives - 9FA8-00E3+9F2D-008A - - - Start with 100 lives - BCA8-00E3+BC2D-008A - - - Start on mission 2 - D42F-007A+D4AA-01E3 - - - Start on mission 3 - D72F-007A+D7AA-01E3 - - - Start on mission 4 - D02F-007A+D0AA-01E3 - - - Start on mission 5 - D92F-007A+D9AA-01E3 - - - Start on mission 6 - D12F-007A+D1AA-01E3 - - - Start on mission 7 - D52F-007A+D5AA-01E3 - - - Start on mission 8 - D62F-007A+D6AA-01E3 - - - After losing a life automatically finish level, gain 99 lives and retain all power-ups - 00D83A:AD - - - Infinite lives (alt) - 00D6CB:00 - - - - Phantom 2040 (USA) (Beta) - - Invincibility after first hit - 3367-3760 - - - Infinite lives - C2AF-CFD9 - - - Infinite weapon energy - C2AA-14A9 - - - Access all weapons (highlight weapon and press X to equip) - B23B-34D9 - - - - Phantom 2040 (USA) - - Invincibility - 3365-3DD0+3361-34A0 - - - Infinite lives - 62AF-34D9 - - - Infinite weapon energy - C2A2-CF69 - - - Access all weapons (highlight weapon and press X to equip) - 233E-3FD9 - - - - Pilotwings (USA) - - Infinite fuel - 108D-0FA7 - - - Infinite time (disable to detach hang glider from plane) - DD8E-AFD5 - - - Reduce gravity - 4DE7-CD0F - - - Increase gravity - CDE7-CD0F - - - Increase rocket pack thrust power 3x - E2EF-6F0F - - - - Pinball Dreams (USA) - - Slow motion - C763-3DD4 - - - Ball attracts to the top - 13C9-CDDF - - - Ball attracts to the side - 13CF-CDDF - - - Spastic ball - BECC-CD0F - - - - Pinball Fantasies (USA) - - Infinite balls - 7E00B8:03 - - - - Pink Goes to Hollywood (USA) - - Invincibility - 1DB0-C7AA+1DB9-3F62+1DB1-CFA2 - - - Invincibility (alt) - 7E0201:FF - - - Infinite lives - 7E01FF:03 - - - Infinite time - 7E0203:09 - - - Have 99 tricks - 7E0217:99 - - - Have 9 of every token - 7E01B9:09+7E01BB:09+7E01BD:09+7E01BF:09+7E01C1:09 - - - - Pinocchio (Europe) - - Infinite health - 7E03D8:28 - - - Infinite lives - 7E03DE:03 - - - - Pinocchio (USA) - - Infinite health - 7E03D8:50 - - - Infinite lives - 7E03DE:05 - - - Enable level select - 7E201C:FF - - - - Pirates of Dark Water, The (USA) - - Invincibility - C28B-47D4 - - - Health refills about every 15 seconds - 4F82-17AF+D583-1DDF - - - Infinite health - DD82-14AF - - - Infinite health (alt) - 622B-37D8+CB2B-3468+962B-34A8 - - - Infinite special attacks (no health loss) - DDA5-1DDF - - - Infinite lives - C280-1F6F - - - Hit anywhere - 40A0-C7DD+40AA-370D+62A4-C70D+6DA9-CFDD+6DA9-34DD+6DAF-CFAD+75A4-C76D+D5A4-C7AD+F0AF-C4DD - - - One hit kills - 3CAF-3DAF+3CAF-3FDF+CBAF-3F0F+5EAF-3F6F - - - 1/2 health after 1st hit (1st life only) - 4D65-1FF5+4D63-440E - - - Start with less health (after 1st life) - 4DB0-CFDF - - - Start with 6 lives (not when joining in) - D9C8-4DA4 - - - Start with 2 lives (not when joining in) - DFC8-4DA4 - - - - Pit-Fighter (USA) - - Infinite super powers after gaining one - DD32-6700 - - - Executioner in match 1 has less health - 10C6-07DF - - - Executioner in match 1 has more health - DFC6-070F - - - C.C. has less health in match 2 - 10CB-07DF+DDCB-070F - - - C.C. has more health in match 2 - D4CB-070F - - - Angel has less health in match 3 - 10C8-07DF - - - Angel has more health in match 3 - DFC8-070F - - - All opponents have less health - C485-0DD7+DD85-0D07+10C6-07DF - - - All opponents have more health - C485-0DD7+DD85-0D07+10C6-07DF+D4C6-070F - - - Start with more health - EEBF-A4D0 - - - Start with less health - 74BF-A4D0 - - - Start with a lot more health - D4BF-A760 - - - Start with 3 super powers - D7B3-D769 - - - - Pitfall - The Mayan Adventure (USA) - - Infinite Stones of Pacal - DDA6-3D69 - - - Infinite Sling Stones - DDA5-1709 - - - Infinite Boomerangs - DDA5-3700 - - - Walk through walls - 6D64-CDAF - - - Jump through ceilings - 6D68-1FD4 - - - Get 2x energy from sacred hearts - 746B-4D6A - - - Get 3x energy from sacred hearts - 086B-4D6A - - - Sling stones do mega-damage - 74A4-CF69 - - - Time keeper power-up lasts longer - ED6C-CDDA+D46C-CD0A - - - 20 Stones of Pacal on pick-up - F06D-1D0A - - - Moon-jump - DD6F-C7A1 - - - Reset game to play original Pitfall infinitely - D3B5-1F0F - - - Replaces main game with original Pitfall - D389-4FAA - - - Start with 10 lives - DB6B-C4A1+DBC6-34DE - - - Start with 7 lives - D16B-C4A1+D1C6-34DE - - - Start with 2 lives - DF6B-C4A1+DFC6-34DE - - - Invincibility and invisibility - 7E03CD:19 - - - Infinite health - 7E10C1:FF - - - Infinite lives - 7E00C0:03 - - - - Pocky & Rocky (USA) - - Infinite health - Pocky - C933-A794 - - - Infinite health - Rocky - C93E-A797 - - - Infinite time - CB2D-DFDF - - - Infinite lives - Pocky - DDA7-AD65 - - - Infinite lives - Rocky - DD35-0761 - - - Weapons don't deplete when hit - Pocky - 4032-A4F4 - - - Weapons don't deplete when hit - Pocky - 4033-AFF7 - - - Blue ball acts as red ball - Pocky - D43F-6FF4 - - - Red ball acts as blue ball - Pocky - DF3D-6424 - - - Blue ball acts as red ball - Rocky - D43B-6F27 - - - Red ball acts as blue ball - Rocky - DF36-67B7 - - - 9 lives stolen from Rocky (must have one life remaining) - DBAA-AD60 - - - 9 lives stolen from Pocky (must have one life remaining) - DB3A-DD69 - - - Start with 1 life - Pocky - DF62-A7D4 - - - Start with 6 lives - Pocky - D162-A7D4 - - - Start with 9 lives - Pocky - DB62-A7D4 - - - Start with 1 life - Rocky - DF62-A704 - - - Start with 6 lives - Rocky - D162-A704 - - - Start with 9 lives - Rocky - DB62-A704 - - - Invincibility - 01B67F:D0+01B67D:85 - - - Infinite health - 7E0068:08 - - - Infinite time (alt) - 7E0F12:9A - - - Infinite lives - 7E006A:03 - - - Infinite Special - 7E0066:02 - - - Infinite Shield - 7E00E4:02 - - - - Pocky & Rocky 2 (USA) - - Invincibility - 039731:60+069739:60 - - - Infinite time - 7E7064:76 - - - Infinite time (alt) - 7E7064:79+7E7062:79+7E7060:79 - - - Infinite lives - 7E19F4:03 - - - Infinite Keys - 7E05B2:99 - - - Max Card - 7E19F6:02 - - - Infinite hearts when riding Spirit Dog - 7E19F2:05 - - - - Pop'n TwinBee - Rainbow Bell Adventures (Europe) - - Infinite health - 7E02EC:64 - - - - Populous (USA) - - Allows you to select any world from the Conquer screen with the B and X buttons - DD30-64DD - - - Your population starts at 10 instead of 3 for battles 0-4 - DC6C-6F09 - - - Your population starts at 20 for battles 0-4 - F06C-6F09 - - - Your population starts at 30 for battles 0-4 - F36C-6F09 - - - His population starts at 10 instead of 3 for battles 0-4 - DC6C-6F69 - - - His population starts at 20 for battles 0-4 - F06C-6F69 - - - His population starts at 30 for battles 0-4 - F36C-6F69 - - - You have no Supreme Commands available for battles 0-4 - DD6C-6D69 - - - He has all Supreme Commands available for battles 0-4 - 7E6C-6D09 - - - Your population starts at 10 instead of 3 for battles 5-9 - DC6C-67A9 - - - Your population starts at 20 for battles 5-9 - F06C-67A9 - - - Your population starts at 30 for battles 5-9 - F36C-67A9 - - - His population starts at 10 instead of 3 for battles 5-9 - DC68-6DD9 - - - His population starts at 20 for battles 5-9 - F068-6DD9 - - - His population starts at 30 for battles 5-9 - F368-6DD9 - - - You have no Supreme Commands available for battles 5-9 - DD6C-67D9 - - - He has all Supreme Commands available for battles 5-9 - 7E6C-64A9 - - - Your population starts at 10 instead of 2 for battles 10-14 - DC68-6409 - - - Your population starts at 20 for battles 10-14 - F068-6409 - - - Your population starts at 30 for battles 10-14 - F368-6409 - - - His population starts at 10 instead of 2 for battles 10-14 - DC68-6469 - - - His population starts at 20 for battles 10-14 - F068-6469 - - - His population starts at 30 for battles 10-14 - F368-6469 - - - You have no Supreme Commands available for battles 10-14 - DD68-6F69 - - - He has all Supreme Commands available for battles 10-14 - 7E68-6F09 - - - - Porky Pig's Haunted Holiday (USA) - - Invincibility (blinking) - C9C3-D708 - - - Don't flash after geting hit - DD26-D4DB - - - Don't flash as long after geting hit - F426-D4DB - - - Flash longer after geting hit - EE26-D4DB - - - Cupcakes are worth 0 - DD6F-6FDE - - - Cupcakes are worth 2 - D46F-6FDE - - - Cupcakes are worth 5 - D96F-6FDE - - - Cupcakes are worth 10 - DC6F-6FDE - - - Cupcakes are worth 15 - DE6F-6FDE - - - Start with 1 life - DDC6-DFAD - - - Start with 7 lives - D1C6-DFAD - - - Start with 10 lives - DBC6-DFAD - - - Start with 1 heart - DFC6-D46D - - - Start with 2 hearts - D4C6-D46D - - - Start with 8 hearts - D6C6-D46D - - - Start with 10 hearts - DCC6-D46D - - - Infinite health - 7E0EAA:04 - - - Infinite Cupcakes - 7E0E9F:63 - - - Infinite lives - 7E0E9E:09 - - - - Power Instinct (USA) - - Hit anywhere - P1 - 3DA2-E4BF+DDA2-E7FF+EDA2-E79F+FAA2-E7BF - - - - Power Piggs of the Dark Age (USA) - - Invincibility - 1DB7-C40F+6DB1-CF0D - - - Multi-jump - 4066-CFA7+D5EA-44DC - - - Partial invincibility - 7E06A4:3F - - - Infinite health - 7E147E:00 - - - Infinite lives - 7E1500:09 - - - Infinite Doughnuts - 7E1505:09 - - - Start on level Beautiful Downtown Pigg - 7E1874:00 - - - Start on level Dark Age Donut - 7E1874:01 - - - Start on level North Blowhole Forest - 7E1874:02 - - - Start on level Road to Wolff Castle - 7E1874:03 - - - - Prehistorik Man (USA) (En,Fr,Es) - - Invincibility - 7E00B6:03 - - - Infinite health - 7E0558:03 - - - Infinite lives - 7E0556:03 - - - Infinite Shout - 7E056C:0A - - - Infinite ammo - 7E0564:99 - - - Level modifier (first level must be cleared before the code actually works) - 7E052A:## - - - Lots of bones - 7E0560:99+7E0561:09 - - - Have 99 diamonds (disable after you finish the level) - 7E0814:99 - - - - Primal Rage (USA) - - Infinite time - C20F-E767 - - - Press down 3 times then start at the Start/Options screen for a hidden menu - D925-846F - - - Able to select as many credits as you want in the options screen - BB54-87AB - - - Select different times in the options screen - FD1D-7DD4 - - - Start with less health - 0DA5-876D - - - Infinite health - P1 - 7E1926:00 - - - Infinite health - P2 - 7E1928:00 - - - One hit kills - P1 - 7E210C:01 - - - One hit kills - P2 - 7E210E:01 - - - Infinite fatality time - 7E0270:00+7E02CE:54 - - - Freeplay activated - 7E2114:01 - - - - Prince of Persia (USA) - - Infinite time - 6D32-0FA1+DC32-04D1 - - - Non-fatal injuries do no damage - BAA6-ADA5 - - - Non-fatal falls do no damage - 43C9-6D61 - - - Non-fatal falls do 2 points of damage instead of 1 - D4C1-6701 - - - Falls do no damage except spikes (if you get stuck choose End Game and use a password to start the level over) - 6DC0-6701 - - - All enemies have 1 health point - C260-A701+DF6C-DFA0 - - - All enemies have 2 health points - C260-A701+D46C-DFA0 - - - All enemies have 3 health points - C260-A701+D76C-DFA0 - - - All enemies have 4 health points - C260-A701+D06C-DFA0 - - - All enemies have 5 health points - C260-A701+D96C-DFA0 - - - All enemies have 10 health points - C260-A701+DC6C-DFA0 - - - Enemies defeated immediately (disable on bosses) - BA69-ADA1 - - - Start with 2 health points instead of 3 - D430-04A5 - - - Start with 4 health points - D030-04A5 - - - Start with 5 health points - D930-04A5 - - - Start with 6 health points - D130-04A5 - - - Start with 7 health points - D530-04A5 - - - Start with 8 health points - D630-04A5 - - - Start with 9 health points - DB30-04A5 - - - Start with 15 health points - FD30-04A5 - - - Start on level 2 - DFB7-D46E - - - Start on level 3 - D4B7-D46E - - - Start on level 4 - D7B7-D46E - - - Start on level 5 - D0B7-D46E - - - Start on level 6 - D9B7-D46E - - - Start on level 7 - D1B7-D46E - - - Start on level 8 - D5B7-D46E - - - Start on level 9 - D6B7-D46E - - - Start on level 10 - DBB7-D46E - - - Start on level 11 - DCB7-D46E - - - Start on level 12 - D8B7-D46E - - - Start on level 13 - DAB7-D46E - - - Start on level 14 - D2B7-D46E - - - Start on level 15 - D3B7-D46E - - - Start on level 16 - DEB7-D46E - - - Start on level 17 - FDB7-D46E - - - Start on level 18 - FFB7-D46E - - - Start on level 19 - F4B7-D46E - - - Start on level 20 - F7B7-D46E - - - - Prince of Persia 2 (USA) - - Infinite health - 7E0957:03 - - - Infinite time - 7E0B98:69 - - - Hit anywhere - 40E0-C46F+40E0-C7AF+40E0-CD6F+40E1-C4AF+40E7-CF6F+40E7-C7DF+40E9-CFDF+40EA-1FAF - - - - Psycho Dream (Japan) - - Invincibility (blinking) - DDB7-8D6D - - - Infinite time - DD7F-7407 - - - Infinite magic - 69BE-77DF - - - Hit anywhere - 6DDD-E71F+6DD4-EDCF+6DD7-EF3F+6DD0-E74F - - - Best weapon on pick-up - CBC7-74AD - - - - Push-Over (USA) - - Still can complete level even if time runs out - 6D6B-6F0F - - - Tokens aren't lost when used to undo a push - 3366-6F0F - - - Tokens aren't lost when used to advance when time runs out - 3367-A4AF - - - Start on level 2 - CB66-AD6F+6266-AF0F+DF66-ADAF - - - Start on level 3 - CB66-AD6F+6266-AF0F+D466-ADAF - - - Start on level 4 - CB66-AD6F+6266-AF0F+D766-ADAF - - - Start on level 5 - CB66-AD6F+6266-AF0F+D066-ADAF - - - Start on level 6 - CB66-AD6F+6266-AF0F+D966-ADAF - - - Start on level 7 - CB66-AD6F+6266-AF0F+D166-ADAF - - - Start on level 8 - CB66-AD6F+6266-AF0F+D566-ADAF - - - Start on level 9 - CB66-AD6F+6266-AF0F+D666-ADAF - - - Start on level 10 - CB66-AD6F+6266-AF0F+DB66-ADAF - - - Start on level 11 - CB66-AD6F+6266-AF0F+DC66-ADAF - - - Start on level 12 - CB66-AD6F+6266-AF0F+D866-ADAF - - - Start on level 13 - CB66-AD6F+6266-AF0F+DA66-ADAF - - - Start on level 14 - CB66-AD6F+6266-AF0F+D266-ADAF - - - Start on level 15 - CB66-AD6F+6266-AF0F+D366-ADAF - - - Start on level 16 - CB66-AD6F+6266-AF0F+DE66-ADAF - - - Start on level 17 - CB66-AD6F+6266-AF0F+FD66-ADAF - - - Start on level 18 - CB66-AD6F+6266-AF0F+FF66-ADAF - - - Start on level 19 - CB66-AD6F+6266-AF0F+F466-ADAF - - - Start on level 20 - CB66-AD6F+6266-AF0F+F766-ADAF - - - Start on level 21 - CB66-AD6F+6266-AF0F+F066-ADAF - - - Start on level 22 - CB66-AD6F+6266-AF0F+F966-ADAF - - - Start on level 23 - CB66-AD6F+6266-AF0F+F166-ADAF - - - Start on level 24 - CB66-AD6F+6266-AF0F+F566-ADAF - - - Start on level 25 - CB66-AD6F+6266-AF0F+F666-ADAF - - - Start on level 26 - CB66-AD6F+6266-AF0F+FB66-ADAF - - - Start on level 27 - CB66-AD6F+6266-AF0F+FC66-ADAF - - - Start on level 28 - CB66-AD6F+6266-AF0F+F866-ADAF - - - Start on level 29 - CB66-AD6F+6266-AF0F+FA66-ADAF - - - Start on level 30 - CB66-AD6F+6266-AF0F+F266-ADAF - - - Start on level 31 - CB66-AD6F+6266-AF0F+F366-ADAF - - - Start on level 32 - CB66-AD6F+6266-AF0F+FE66-ADAF - - - Start on level 33 - CB66-AD6F+6266-AF0F+4D66-ADAF - - - Start on level 34 - CB66-AD6F+6266-AF0F+4F66-ADAF - - - Start on level 35 - CB66-AD6F+6266-AF0F+4466-ADAF - - - Start on level 36 - CB66-AD6F+6266-AF0F+4766-ADAF - - - Start on level 37 - CB66-AD6F+6266-AF0F+4066-ADAF - - - Start on level 38 - CB66-AD6F+6266-AF0F+4966-ADAF - - - Start on level 39 - CB66-AD6F+6266-AF0F+4166-ADAF - - - Start on level 40 - CB66-AD6F+6266-AF0F+4566-ADAF - - - Start on level 41 - CB66-AD6F+6266-AF0F+4666-ADAF - - - Start on level 42 - CB66-AD6F+6266-AF0F+4B66-ADAF - - - Start on level 43 - CB66-AD6F+6266-AF0F+4C66-ADAF - - - Start on level 44 - CB66-AD6F+6266-AF0F+4866-ADAF - - - Start on level 45 - CB66-AD6F+6266-AF0F+4A66-ADAF - - - Start on level 46 - CB66-AD6F+6266-AF0F+4266-ADAF - - - Start on level 47 - CB66-AD6F+6266-AF0F+4366-ADAF - - - Start on level 48 - CB66-AD6F+6266-AF0F+4E66-ADAF - - - Start on level 49 - CB66-AD6F+6266-AF0F+7D66-ADAF - - - Start on level 50 - CB66-AD6F+6266-AF0F+7F66-ADAF - - - Start on level 51 - CB66-AD6F+6266-AF0F+7466-ADAF - - - Start on level 52 - CB66-AD6F+6266-AF0F+7766-ADAF - - - Start on level 53 - CB66-AD6F+6266-AF0F+7066-ADAF - - - Start on level 54 - CB66-AD6F+6266-AF0F+7966-ADAF - - - Start on level 55 - CB66-AD6F+6266-AF0F+7166-ADAF - - - Start on level 56 - CB66-AD6F+6266-AF0F+7566-ADAF - - - Start on level 57 - CB66-AD6F+6266-AF0F+7666-ADAF - - - Start on level 58 - CB66-AD6F+6266-AF0F+7B66-ADAF - - - Start on level 59 - CB66-AD6F+6266-AF0F+7C66-ADAF - - - Start on level 60 - CB66-AD6F+6266-AF0F+7866-ADAF - - - Start on level 61 - CB66-AD6F+6266-AF0F+7A66-ADAF - - - Start on level 62 - CB66-AD6F+6266-AF0F+7266-ADAF - - - Start on level 63 - CB66-AD6F+6266-AF0F+7366-ADAF - - - Start on level 64 - CB66-AD6F+6266-AF0F+7E66-ADAF - - - Start on level 65 - CB66-AD6F+6266-AF0F+0D66-ADAF - - - Start on level 66 - CB66-AD6F+6266-AF0F+0F66-ADAF - - - Start on level 67 - CB66-AD6F+6266-AF0F+0466-ADAF - - - Start on level 68 - CB66-AD6F+6266-AF0F+0766-ADAF - - - Start on level 69 - CB66-AD6F+6266-AF0F+0066-ADAF - - - Start on level 70 - CB66-AD6F+6266-AF0F+0966-ADAF - - - Start on level 71 - CB66-AD6F+6266-AF0F+0166-ADAF - - - Start on level 72 - CB66-AD6F+6266-AF0F+0566-ADAF - - - Start on level 73 - CB66-AD6F+6266-AF0F+0666-ADAF - - - Start on level 74 - CB66-AD6F+6266-AF0F+0B66-ADAF - - - Start on level 75 - CB66-AD6F+6266-AF0F+0C66-ADAF - - - Start on level 76 - CB66-AD6F+6266-AF0F+0866-ADAF - - - Start on level 77 - CB66-AD6F+6266-AF0F+0A66-ADAF - - - Start on level 78 - CB66-AD6F+6266-AF0F+0266-ADAF - - - Start on level 79 - CB66-AD6F+6266-AF0F+0366-ADAF - - - Start on level 80 - CB66-AD6F+6266-AF0F+0E66-ADAF - - - Start on level 81 - CB66-AD6F+6266-AF0F+9D66-ADAF - - - Start on level 82 - CB66-AD6F+6266-AF0F+9F66-ADAF - - - Start on level 83 - CB66-AD6F+6266-AF0F+9466-ADAF - - - Start on level 84 - CB66-AD6F+6266-AF0F+9766-ADAF - - - Start on level 85 - CB66-AD6F+6266-AF0F+9066-ADAF - - - Start on level 86 - CB66-AD6F+6266-AF0F+9966-ADAF - - - Start on level 87 - CB66-AD6F+6266-AF0F+9166-ADAF - - - Start on level 88 - CB66-AD6F+6266-AF0F+9566-ADAF - - - Start on level 89 - CB66-AD6F+6266-AF0F+9666-ADAF - - - Start on level 90 - CB66-AD6F+6266-AF0F+9B66-ADAF - - - Start on level 91 - CB66-AD6F+6266-AF0F+9C66-ADAF - - - Start on level 92 - CB66-AD6F+6266-AF0F+9866-ADAF - - - Start on level 93 - CB66-AD6F+6266-AF0F+9A66-ADAF - - - Start on level 94 - CB66-AD6F+6266-AF0F+9266-ADAF - - - Start on level 95 - CB66-AD6F+6266-AF0F+9366-ADAF - - - Start on level 96 - CB66-AD6F+6266-AF0F+9E66-ADAF - - - Start on level 97 - CB66-AD6F+6266-AF0F+1D66-ADAF - - - Start on level 98 - CB66-AD6F+6266-AF0F+1F66-ADAF - - - Start on level 99 - CB66-AD6F+6266-AF0F+1466-ADAF - - - - Q-bert 3 (USA) - - Infinite lives - C2C5-AF6F - - - Start with 1 life instead of 5 - DF66-D7DD - - - Start with 3 lives - D766-D7DD - - - Start with 7 lives - D566-D7DD - - - Start with 9 lives - DB66-D7DD - - - Start with 25 lives - FB66-D7DD - - - Start with 100 lives - 1066-D7DD - - - Start on level 1-2 - DF61-D76D - - - Start on level 1-3 - D461-D76D - - - Start on level 1-4 - D761-D76D - - - Start on level 2-1 - D061-D76D - - - Start on level 2-2 - D961-D76D - - - Start on level 2-3 - D161-D76D - - - Start on level 2-4 - D561-D76D - - - Start on level 3-1 - D661-D76D - - - Start on level 3-2 - DB61-D76D - - - Start on level 3-3 - DC61-D76D - - - Start on level 3-4 - D861-D76D - - - Start on level 4-1 - DA61-D76D - - - Start on level 4-2 - D261-D76D - - - Start on level 4-3 - D361-D76D - - - Start on level 4-4 - DE61-D76D - - - Start on level 5-1 - FD61-D76D - - - Start on level 5-2 - FF61-D76D - - - Start on level 5-3 - F461-D76D - - - Start on level 5-4 - F761-D76D - - - Start on level 6-1 - F061-D76D - - - Start on level 6-2 - F961-D76D - - - Start on level 6-3 - F161-D76D - - - Start on level 6-4 - F561-D76D - - - Start on level 7-1 - F661-D76D - - - Start on level 7-2 - FB61-D76D - - - Start on level 7-3 - FC61-D76D - - - Start on level 7-4 - F861-D76D - - - Start on level 8-1 - FA61-D76D - - - Start on level 8-2 - F261-D76D - - - Start on level 8-3 - F361-D76D - - - Start on level 8-4 - FE61-D76D - - - Start on level 9-1 - 4D61-D76D - - - Start on level 9-2 - 4F61-D76D - - - Start on level 9-3 - 4461-D76D - - - Start on level 9-4 - 4761-D76D - - - Start on level 10-1 - 4061-D76D - - - Start on level 10-2 - 4961-D76D - - - Start on level 10-3 - 4161-D76D - - - Start on level 10-4 - 4561-D76D - - - Start on level 11-1 - 4661-D76D - - - Start on level 11-2 - 4B61-D76D - - - Start on level 11-3 - 4C61-D76D - - - Start on level 11-4 - 4861-D76D - - - Start on level 12-1 - 4A61-D76D - - - Start on level 12-2 - 4261-D76D - - - Start on level 12-3 - 4361-D76D - - - Start on level 12-4 - 4E61-D76D - - - Start on level 13-1 - 7D61-D76D - - - Start on level 13-2 - 7F61-D76D - - - Start on level 13-3 - 7461-D76D - - - Start on level 13-4 - 7761-D76D - - - Start on level 14-1 - 7061-D76D - - - Start on level 14-2 - 7961-D76D - - - Start on level 14-3 - 7161-D76D - - - Start on level 14-4 - 7561-D76D - - - Start on level 15-1 - 7661-D76D - - - Start on level 15-2 - 7B61-D76D - - - Start on level 15-3 - 7C61-D76D - - - Start on level 15-4 - 7861-D76D - - - Start on level 16-1 - 7A61-D76D - - - Start on level 16-2 - 7261-D76D - - - Start on level 16-3 - 7361-D76D - - - Start on level 16-4 - 7E61-D76D - - - Start on level 17-1 - 0D61-D76D - - - Start on level 17-2 - 0F61-D76D - - - Start on level 17-3 - 0461-D76D - - - Start on level 17-4 - 0761-D76D - - - Start on level 18-1 - 0061-D76D - - - Start on level 18-2 - 0961-D76D - - - Start on level 18-3 - 0161-D76D - - - Start on level 18-4 - 0561-D76D - - - Start on level 19-1 - 0661-D76D - - - Start on level 19-2 - 0B61-D76D - - - Start on level 19-3 - 0C61-D76D - - - Start on level 19-4 - 0861-D76D - - - Start on level 20-1 - 0A61-D76D - - - Start on level 20-2 - 0261-D76D - - - Start on level 20-3 - 0361-D76D - - - Start on level 20-4 - 0E61-D76D - - - Start on level x1 - 9D61-D76D - - - Start on level x2 - 9F61-D76D - - - Start on level x3 - 9461-D76D - - - Start on level x4 - 9761-D76D - - - Start on level x5 - 9061-D76D - - - Start on level x6 - 9961-D76D - - - Start on level x7 - 9161-D76D - - - Start on level x8 - 9561-D76D - - - Start on level x9 - 9661-D76D - - - Start on level x10 - 9B61-D76D - - - Start on level x11 - 9C61-D76D - - - Start on level x12 - 9861-D76D - - - Start on level x13 - 9A61-D76D - - - Start on level x14 - 9261-D76D - - - Start on level x15 - 9361-D76D - - - Start on level x16 - 9E61-D76D - - - Start on level x17 - 1D61-D76D - - - Start on level x18 - 1F61-D76D - - - Start on level x19 - 1461-D76D - - - Start on level x20 - 1761-D76D - - - - R-Type III (USA) - - Invincibility - DD62-33DD - - - Infinite lives - C26B-C7D0 - - - Start at speed level 3 - DA6F-CE0D - - - Start at speed level 4 - FD6F-CE0D - - - Start at speed level 5 - F06F-CE0D - - - - Radical Psycho Machine Racing (USA) - - Sturdy tires are free - DDB8-0465 - - - 4-liter high output engine is free - DDB1-0F65 - - - Sell sturdy tires for $4,910 instead of $10 - 0BBA-0FA5 - - - Sell 4-liter high output engine for $9,925 instead of $25 - BBB5-0DA5 - - - Start new game with $9,910 instead of $4,910 - BBCB-DF61 - - - Start new game with $49,104,910 - 62CB-D701 - - - Start new game with $99,109,910 - BBCB-DF61+62CB-D701 - - - - Race Drivin' (USA) - - Infinite time - A266-07AD - - - Slow timer - 8066-04DD - - - Fast timer - 4266-04DD - - - Freeze lap timer - 2B6C-07AD - - - Slow lap timer - 1968-0DAD - - - - Radical Rex (USA) - - Infinite health - 89B4-C4D1 - - - Infinite roar - C28C-1FD5+C2C9-D7A4 - - - Infinite lives - C221-3D94 - - - Don't loose breath level when you die - C2B2-4D04+C2BA-4F04 - - - - Raiden Trad (USA) - - Invincibility - both players - DDEF-0F1B - - - Infinite bombs - P1 - EDE8-67A4+D9EA-6DD4+3CEA-6D04+23EA-6DA4 - - - Infinite bombs - P2 - 2DE8-67A4+D9EA-6DD4+3CEA-6D04+23EA-6DA4 - - - Infinite bombs - both players - 3CEA-6D64 - - - Infinite lives - P1 - 3CBD-DDD7 - - - Infinite lives - P2 - 3CB5-0467 - - - Hit anywhere - 44E8-6446+6DE8-6F36+C9E3-6446 - - - Replacement planes carry 0 bombs - P1 - CEB7-DFD7+62B7-DF07 - - - Replacement planes carry 6 bombs - P1 - 91B7-DFD7+6BB7-DF07 - - - Replacement planes carry 9 bombs - P1 - 8FB7-DFD7+62B7-DF07 - - - Replacement planes carry 0 bombs - P2 - CEBC-0707+62BC-0767 - - - Replacement planes carry 6 bombs - P2 - 91BC-0707+6BBC-0767 - - - Replacement planes carry 9 bombs - P2 - 8FBC-0707+62BC-0767 - - - Start with 1 life - both players - B6BD-D76F - - - Start with 7 lives - both players - 8BBD-D70F+60BD-D76F - - - Start with 9 lives - both players - 8FBD-D70F+62BD-D76F - - - Start with 0 bombs - P1 - CEBF-D7AF+62B4-DDDF - - - Start with 6 bombs - P1 - 91BF-D7AF+6BB4-DDDF - - - Start with 9 bombs - P1 - 8FBF-D7AF+62B4-DDDF - - - Start with 0 bombs - P2 - CEB7-D7DF+62B7-D70F - - - Start with 6 bombs - P2 - 91B7-D7DF+6BB7-D70F - - - Start with 9 bombs - P2 - 8FB7-D7DF+62B7-D70F - - - Start with 3 credits - D4BF-6F6F - - - Start with 4 credits - D7BF-6F6F - - - Start with 6 credits - D9BF-6F6F - - - Start with 8 credits - D5BF-6F6F - - - Start with 10 credits - DBBF-6F6F - - - Start with 1 credit - DDBF-6F6F - - - - Rampart (USA) - - Infinite continues - C284-DD07 - - - Infinite cannons - 3C6B-D467 - - - Start on battlefield 2 - CBAA-67DD+DDAA-676D+DFAA-670D - - - Start on battlefield 3 - CBAA-67DD+DDAA-676D+D4AA-670D - - - Start on battlefield 4 - CBAA-67DD+DDAA-676D+D7AA-670D - - - Start on battlefield 5 - CBAA-67DD+DDAA-676D+D0AA-670D - - - Start on battlefield 6 - CBAA-67DD+DDAA-676D+D9AA-670D - - - Start on battlefield 7 - CBAA-67DD+DDAA-676D+D1AA-670D - - - - Ranma 1-2 - Hard Battle (USA) - - Invincibility - P1 - 6D45-E7DD - - - Invincibility - P2 - 6D42-E7AD - - - Hit anywhere - P1 - 6D42-E7AD+F443-EDDD - - - Hit anywhere - P2 - 6D45-E7DD+F445-E70D - - - Ranma moves faster - D7B4-0DA9+EABF-04D9 - - - Ranma jumps faster - E8B7-07D9+D0B7-0769 - - - Ranma's diagonal jumps are higher - E1B7-0769 - - - Ranma's diagonal kicks are harder - F6B7-AD60 - - - Ranma's dragon blast kills with 1 hit - 1DB1-D4D9 - - - Genma moves faster - D78F-6DD5+EA8D-DFD5 - - - Genma's paternal anger (running at enemy) is faster - E48C-6DD5 - - - Genma's verbal punishment is stronger - 4689-0465 - - - Genma's verbal punishment kills with 1 hit - 1D89-0465 - - - Ryoga moves faster - EA81-6760+D7B5-6460 - - - Ryoga jumps faster - EA8B-6D60+D78B-6760 - - - Ryoga's bandana throw kills with 1 hit - 1DD8-DD05 - - - Shampoo moves faster - EAC9-D765+D7C1-D465 - - - Shampoo's dragon sky kick is faster - E9CF-0765 - - - Shampoo's super fury charge goes farther - E9CE-D465 - - - Shampoo's fury charge 1 hit kill - 1DCB-A4A1 - - - Shampoo's kick is faster - 41C5-67D1 - - - Akane moves faster - EA84-D4D1+D787-DFD1 - - - Akane jumps faster - E880-D7D1+D089-6760 - - - Akane's 2-step whip kick is faster - E68E-DFD1 - - - Akane's 2-step whip kick is stronger - 418B-6D69 - - - Akane's 2-step whip kick kills with 1 hit - 1D8B-6D69 - - - Akane's dust devil uppercut is faster - 3E8A-DF61+EE8A-D401 - - - Gosunkugi moves faster - ECC5-64D9+D0C6-6FD9 - - - Gosunkugi jumps faster - E8CB-67D9+D0CC-64D9 - - - Gosunkugi's straw man throw does more damage - 40D8-DD05 - - - Gosunkugi's straw man throw kills with 1 hit - 1DD8-DD05 - - - Ukkyo moves faster - ECB8-64D1+D0BA-6FD1 - - - Ukkyo jumps faster - E8B2-67D1+D0B3-64D1 - - - Mousse's flying egg bombs are faster - EBC5-0FD0 - - - Mousse's eagle claw strike - 1 hit kill - 1DB1-AF65 - - - Mousse's claw strike is quicker - D6C1-0460 - - - Every move kills every opponent with 1 hit - DDD7-8407 - - - No knock back when opponent is cornered - DD6B-D700 - - - - Realm (USA) - - Infinite ammo - C9E4-3DA7 - - - Hit anywhere (if a platform is missing go back and come back) - 01CB-1F07+10CB-C407+2DCB-1FD7+82C3-1FA7+FAC3-14D7 - - - Invincibility - 7E007D:4F - - - Invincibility after first hit - C928-4DA7+C92D-1DD7 - - - Almost invincible + enable stage skip (press Start + Select to skip) (enable code before title screen) - ED66-C54F - - - Almost invincible + enable stage skip (press Start + Select to skip) (enable code before title screen) (alt) - 7E0224:FF - - - Infinite health - C2EB-4F15 - - - Infinite health (alt) - 7E132B:06 - - - Infinite lives - C236-1DFE - - - Infinite lives (alt) - 7E1334:03 - - - Infinite ammo (alt) - 7E00F5:09 - - - - Redline F-1 Racer (USA) - - Always in 1st place - C98E-6FDF - - - Infinite special fuel - 3CAA-AF04 - - - Instant 255 mph speed (best to get into 6th gear before activating this code, then you can go 357 mph) - CBC5-D70F+EEC5-D7AF - - - No speed loss when you get off accelerator button - C98C-6F0F - - - No speed loss on grass - C9BD-0F04 - - - - Ren & Stimpy Show, The - Fire Dogs (USA) - - Invincibility - 7E257E:05 - - - Infinite health - 7E00E3:30 - - - Infinite lives - 7E0002:09 - - - Infinite time (disable on bonus stages) - 7E00F5:3B - - - Max money - 7E0004:E7+7E0005:03 - - - Infinite Dalmation Paint meter - 7E0055:EE - - - Infinite Fire Extinguisher meter - 7E0059:EE - - - Have Boots - 7E2584:01 - - - Have Bucket - 7E2586:01 - - - Have Fire Coat - 7E2590:01 - - - Have Fire Hat - 7E258C:01 - - - Have Fire Hose - 7E2582:01 - - - Have Fire Extinguisher - 7E2590:01 - - - Have Socks - 7E258A:01 - - - Have Trampoline - 7E2588:01 - - - Have 99 sacks of Gritty Kitty (On The Job stages) - 7E2550:63 - - - Skip to bonus level (On The Job stages) - 7E07AE:93+7E07AF:20 - - - - Ren & Stimpy Show, The - Time Warp (USA) - - Infinite health - 82ED-4DD6 - - - Infinite lives - 3CB1-14AC - - - Don't have to charge special attack - CBBE-4468+6DBE-47D8+DDBE-4768+62BE-47A8 - - - Flash longer after you die - EE33-1F62 - - - Don't flash after you die - EE33-1F62 - - - Health never goes back up - 82EA-34D6 - - - 1 kitty gritty gives 99 - CBEF-440B+17EF-446B+3CEF-47DB+3CEF-470B - - - Start with 1 lives - DD3A-1DA2 - - - Start with 5 lives - D03A-1DA2 - - - Start with 10 lives - DB3A-1DA2 - - - Have 99 kitty gritty - 7E0583:63 - - - - Ren & Stimpy Show, The - Veediots! (USA) - - Infinite health - C2CD-0FA0 - - - Infinite lives - C2C5-0460 - - - Infinite time - C2CF-D7A9 - - - Powdered Toast Shield lasts 85x longer - EEE8-6DD6 - - - "Socks" power-up lasts 200x longer - EEEF-D7AB - - - Stimpy's mouth won't close - C2C5-0FD9 - - - Money is worth 10x more - ECBC-6DA5+ECAB-DDA5 - - - - Rendering Ranger R2 (Japan) - - Invincibility - 7E06AE:03 - - - Infinite health - 7E06BC:05 - - - Infinite lives - 7E0515:09 - - - Infinite Bombs - 7E06C1:03 - - - Deactivate shield - 7E06B8:00 - - - Have Pods (ship stages) - 7E06B5:01 - - - Have Blue weapon (press A to switch weapons) - 7E0AA2:00 - - - Have Green weapon (press A to switch weapons) - 7E0AA3:00 - - - Have Yellow weapon (press A to switch weapons) - 7E0AA4:00 - - - Best Red weapon - 7E0A9D:04 - - - Best Blue weapon - 7E0A9E:04 - - - Best Green weapon - 7E0A9F:04 - - - Best Yellow weapon - 7E0AA0:04 - - - - Revolution X (USA) - - Infinite CDs - both players - CBA0-4DDD - - - Infinite health - P1 - 7E022B:FF - - - Infinite CDs - P1 - 7E0088:FF - - - - Rex Ronan - Experimental Surgeon (USA) (En,Es) - - Infinite health - 7E03C4:FF - - - - Rise of the Robots (USA) - - Infinite time - DDAC-5767 - - - Hit anywhere - both players - DDC1-77D7+DDC5-7D67+DDCB-7DA7 - - - One hit kills - both players - CB34-570F - - - No jumping allowed - CBA2-E4D4+DDA2-E404 - - - Win one round to advance - DF78-57AF - - - Every hit does more damage - 4D34-576F+3CC7-E4A7+DD34-57AF - - - - Rival Turf! (USA) - - Invincibility - C2BF-D0EB - - - Infinite health - C965-DDDC - - - Infinite lives - C96C-0DAC - - - Infinite continues - C2C3-0F0D - - - Full health from all food - DD6A-AD61 - - - No score lost when special attack is used - DD62-A7A6 - - - Hit anywhere (might make some enemies invisible) - 6DB6-69EA+F9B6-617A - - - Start with more health - EEC4-OD6F+EE64-646C+EE63-04A7+EE68-A7A1 - - - Start with less health - FEC4-0D6F+FE64-646C+FE63-04A7+FE68-A7A1 - - - Start with 1 life - DDB7-D4A7 - - - Start with 8 lives - D5B7-D4A7 - - - Start with 9 continues - DBB0-DF07 - - - Start with 1 continue - DFB0-DF07 - - - Invincibility - P1 - 7E0208:FF - - - Invincibility - P2 - 7E02D8:FF - - - Infinite health - P1 - 7E0217:FF - - - Infinite health - P2 - 7E02E7:FF - - - Infinite lives - P1 - 7E023F:09 - - - Infinite lives - P2 - 7E030F:09 - - - Infinite continues (alt) - 7E10F5:05 - - - Always angry - P1 - 7E024F:03 - - - Always angry - P2 - 7E031F:03 - - - One hit kills - 7E0487:00+7E0557:00+7E024F:00+7E03B7:00 - - - Infinite points - P1 - 7E0224:70 - - - Infinite points - P2 - 7E02F4:70 - - - Start on stage 2 - L.A. City Stadium - 7E0120:01 - - - Start on stage 3 - Things Are Looking Up - 7E0120:02 - - - Start on stage 4 - South Of The Border - 7E0120:03 - - - Start on stage 5 - Dockyard Brawl - 7E0120:04 - - - Start on stage 6 - Fight to the Finish - 7E0120:05 - - - Start on stage - Welcome To The Warp Room - 7E0120:06 - - - - Road Riot 4WD (USA) - - Races are 1 lap instead of 3 - DDBF-07DF - - - Races are 2 laps instead of 3 - DFBF-07DF - - - Races are 4 laps instead of 3 - D7BF-07DF - - - Races are 5 laps instead of 3 - D0BF-07DF - - - Races are 6 laps instead of 3 - D9BF-07DF - - - Races are 7 laps instead of 3 - D1BF-07DF - - - Beginner track has an extra lap - 3CB4-0DAF - - - - Road Runner's Death Valley Rally (USA) - - Protection against most hazards - C2AC-346F+C2C3-1D28 - - - Infinite lives - DDB2-4D64 - - - Infinite time - DDBB-4467 - - - Stay invincible longer after getting hit (Road Runner blinks) - EE8C-C4DD - - - Stay invincible for less time after getting hit (Road Runner blinks) - 0D8C-C4DD - - - Stay invincible after getting hit until you fall and die (Road Runner blinks) - C2C5-C7AF - - - Stay invincible after getting hit until you fall and die (Road Runner does not blink) - 6DC5-C70F - - - Eating birdseed restores turbo speed meter to maximum - 7D26-3404 - - - Eating birdseed does nothing - DD26-3404 - - - Using turbo speed does not use up bird seed - DDC6-3D67 - - - Hearts worth nothing - C229-C707 - - - 1-up worth nothing - DD33-4DDD - - - 1-up worth 2 - D433-4DDD - - - 1-up worth 3 - D733-4DDD - - - 1-up worth 4 - D033-4DDD - - - 1-up worth 5 - D933-4DDD - - - Bogus jump - 7D83-47DD - - - Better jump - FD83-47DD - - - Super-jump - DC83-47DD - - - Mega-jump - D983-47DD - - - Start with more birdseed on the turbo speed meter - 7DBD-44D7 - - - Start with less birdseed on the turbo speed meter - FDBD-44D7 - - - Start timer at 3:00 instead of 5:00 - D7B0-346F - - - Start timer at 7:00 - D5B0-346F - - - Start timer at 9:00 - DBB0-346F - - - Start with 2 lives - DFBC-3FD4 - - - Start with 4 lives - D7BC-3FD4 - - - Start with 6 lives - D9BC-3FD4 - - - Start with 8 lives - D5BC-3FD4 - - - Start with 10 lives - DBBC-3FD4 - - - Start with 21 lives - 4DBC-3FD4 - - - Start with 51 lives - 9DBC-3FD4 - - - Start with 76 lives - 59BC-3FD4 - - - Start with 100 lives - BBBC-3FD4 - - - Start on level 1, sub-level 2 - F3BB-3FA4+3FBB-3F64+DFBB-3FD4 - - - Start on level 1, sub-level 3 - F3BB-3FA4+3FBB-3F64+D4BB-3FD4 - - - Start on level 1, sub-level 4 - F3BB-3FA4+3FBB-3F64+D7BB-3FD4 - - - Start on level 2, sub-level 1 - F3BB-3FA4+3FBB-3F64+D0BB-3FD4 - - - Start on level 2, sub-level 2 - F3BB-3FA4+3FBB-3F64+D9BB-3FD4 - - - Start on level 2, sub-level 3 - F3BB-3FA4+3FBB-3F64+D1BB-3FD4 - - - Start on level 2, sub-level 4 - F3BB-3FA4+3FBB-3F64+D5BB-3FD4 - - - Start on level 3, sub-level 1 - F3BB-3FA4+3FBB-3F64+D6BB-3FD4 - - - Start on level 3, sub-level 2 - F3BB-3FA4+3FBB-3F64+DBBB-3FD4 - - - Start on level 3, sub-level 3 - F3BB-3FA4+3FBB-3F64+DCBB-3FD4 - - - Start on level 3, sub-level 4 - F3BB-3FA4+3FBB-3F64+D8BB-3FD4 - - - Start on level 4, sub-level 1 - F3BB-3FA4+3FBB-3F64+DABB-3FD4 - - - Start on level 4, sub-level 2 - F3BB-3FA4+3FBB-3F64+D2BB-3FD4 - - - Start on level 4, sub-level 3 - F3BB-3FA4+3FBB-3F64+D3BB-3FD4 - - - Start on level 4, sub-level 4 - F3BB-3FA4+3FBB-3F64+DEBB-3FD4 - - - Start on level 5, sub-level 1 - F3BB-3FA4+3FBB-3F64+FDBB-3FD4 - - - Start on level 5, sub-level 2 - F3BB-3FA4+3FBB-3F64+FFBB-3FD4 - - - Start on level 5, sub-level 3 - F3BB-3FA4+3FBB-3F64+F4BB-3FD4 - - - Start on level 5, sub-level 4 - F3BB-3FA4+3FBB-3F64+F7BB-3FD4 - - - - RoboCop versus The Terminator (USA) - - Infinite lives - DDBE-0D05 - - - Super-jump - DD37-C4D7 - - - Rockets do more damage - DE63-C460 - - - Normal pistol does more damage - DE60-4460 - - - Plasma Rifle does massive damage - 7D66-1F00 - - - Only 10 Terminators to kill on the 3-D Stage - FD64-446F - - - Only 30 Terminators to kill on the 3-D Stage - 7D64-446F - - - Start with 1 life - DFB3-CD0D - - - Start with 9 lives - DBB3-CD0D - - - Start with 15 lives (ignore counter) - DEB3-CD0D - - - Infinite health - 7E10C5:0A - - - Infinite lives (alt) - 019DF1:00 - - - Super-jump (alt) - 80EE38:00 - - - Normal pistol does more damage (alt) - 81804A:0F - - - - RoboCop 3 (USA) - - Infinite lives - 4A6E-6FDD - - - Slower timer - 5D69-6D0F - - - Faster timer - FE69-6D0F - - - Infinite ammo (except flame thrower) - DDC7-A7A4 - - - Ammo pick-ups worth more - DFEC-DD67+D4EC-DFD7 - - - Ammo pick-ups worth less - 7DEC-DD07+DDEC-DFD7+7DEC-DDA7 - - - Faster Robocop - except on stages 3 and 5 - D4C7-64DD+E3C9-6DAD - - - Start with 1 life - DD62-D7DD - - - Start with 6 lives - D962-D7DD - - - Start on stage 2 - DF37-64A4 - - - Start on stage 3 - D437-64A4 - - - Start on stage 4 - D737-64A4 - - - Start on stage 5 - D037-64A4 - - - Infinite health - 7E0477:38 - - - Infinite lives (alt) - 7E1854:05 - - - Infinite ammo - 7E1848:99 - - - Infinite time - 7E030C:12+7E030D:04 - - - Have all weapons - 7E046F:04 - - - - Robotrek (USA) - - Infinite battle bonus time - 3CAA-3DFF - - - Infinite robot points - 6DCE-3D43 - - - Infinite vanish time - C234-3F3E - - - Everything is free - C23C-CDC7 - - - Get 9900 gold when you look into the robot book - BBB9-4D7D - - - More energy for robot energy - BDE6-1DC2 - - - Mean robot - CBEB-1FB9+BBEB-1F29+DDEB-14F9+3CEB-1499 - - - One-hit kills - CBE2-C74A - - - Start at level 3 - CB34-3D47+D734-3D17 - - - Start at level 10 - CB34-3D47+DC34-3D17 - - - Start at level 20 - CB34-3D47+F034-3D17 - - - Start at level 50 - CB34-3D47+7434-3D17 - - - Start at level 50 (alt) - 88EF20:A9+88EF21:32 - - - Infinite GP - 7E06E6:99+7E06E7:99+7E06E8:09 - - - Max Program Points - 7E0688:73+7E0689:05 - - - Max HP - First Robot - 7E068A:FF - - - - Rock n' Roll Racing (USA) - - Infinite forward weapons - C2BF-476F - - - Infinite power charges - C2BF-1FA4 - - - No damage from hitting other cars - 3CE5-CD67 - - - No damage from most mines - DD26-34D7 - - - No points needed to advance to any level - BACB-C465 - - - Buy items for free if you have enough money - C28C-CF69+C28B-C4A9 - - - More damage from mines - D126-34D7 - - - Red Cross packages worth nothing - DD36-4F0D - - - Red Cross packages can blow up - FD36-4F0D - - - Start with $50,000 - D9CF-CDD5 - - - Start with $100,000 - FDCF-CDD5 - - - Start with $500,000 - 9DCF-CDD5 - - - Start with $990,000 - BBCF-CDD5 - - - Start with $5,020,000 - D9CF-CD05 - - - - Rocketeer, The (USA) - - Protection against guns (only partly against grenades) (only in hangar) - C988-0FAD - - - Protection against Armored Flying Tank - C98C-DD0F - - - Protection against enemy rocketmen on the Zeppelin - C9A0-A40F - - - Invincibility in the skies - C964-6FDD - - - Infinite Super Shots on pick-up - C961-A767 - - - Infinite chances - 8260-0FA7 - - - Automatically win first race at Bigelow - DD62-67AF - - - Automatically win second race at Bigelow - DD63-6DDF - - - Automatically win third race at Bigelow - DD63-6D0F - - - First race at Bigelow is 1 lap instead of 10 - DF62-67AF - - - First race at Bigelow is 5 laps - D962-67AF - - - First race at Bigelow is 15 laps - DE62-67AF - - - First race at Bigelow is 25 laps - FB62-67AF - - - First race at Bigelow is 50 laps - 7462-67AF - - - First race at Bigelow is 99 laps - 1762-67AF - - - Second race at Bigelow is 1 lap - DF63-6DDF - - - Second race at Bigelow is 5 laps - D963-6DDF - - - Second race at Bigelow is 10 laps - DC63-6DDF - - - Second race at Bigelow is 25 laps - FB63-6DDF - - - Second race at Bigelow is 50 laps - 7463-6DDF - - - Second race at Bigelow is 99 laps - 1763-6DDF - - - Third race at Bigelow is 1 lap instead of 10 - DF63-6D0F - - - Third race at Bigelow is 5 laps - D963-6D0F - - - Third race at Bigelow is 25 laps - FB63-6D0F - - - Third race at Bigelow is 50 laps - 7463-6D0F - - - Third race at Bigelow is 99 laps - 1763-6D0F - - - Cliff starts with 2/3 normal energy in hangar - 0C6D-A4DF - - - Cliff starts with 1/3 normal energy in hangar - 496D-A4DF - - - Enemies start with 2/3 normal energy in hangar - 0C6D-A7AF - - - Enemies start with 1/3 normal energy in hangar - 496D-A7AF - - - Super Shots worth nothing on pick-up instead of 3 - DD6B-D76F - - - Super Shots worth 6 on pick-up (cannot gain over 29) - D16B-D76F - - - Super Shots worth 9 on pick-up (cannot gain over 29) - DB6B-D76F - - - Super Shots worth 12 on pick-up (cannot gain over 29) - DA6B-D76F - - - Easily defeat enemy rocketmen on the Zeppelin - 10A8-DFDF - - - Start with 1 chance instead of 3 - DF6C-07AF - - - Start with 2 chances - D46C-07AF - - - Start with 4 chances - D06C-07AF - - - Start with 5 chances - D96C-07AF - - - Start with 6 chances - D16C-07AF - - - Start with 7 chances - D56C-07AF - - - Start with 8 chances - D66C-07AF - - - Start with 9 chances - DB6C-07AF - - - - Rockman & Forte (Japan) - - Invincibility against enemies - 1808-5FA2 - - - Invincibility against fire - 187F-7D09 - - - Invincibility against pits - 1D48-74D5 - - - Invincibility against spikes - 1873-E400 - - - One hit kills - 4006-5F02 - - - Multi-jump - Megaman - 1DFB-7F05+5EFB-7F65+4D51-EDD5+E251-ED05+7C51-ED65+4D51-EDA5+3B51-EFD5+7F51-EF05+1D51-EF65 - - - Multi-jump - Bass - E241-8D69 - - - Invincibility - 7E0C30:30 - - - Infinite health - 7E0C2F:1C - - - Infinite sliding time - 7E0C54:01 - - - Infinite Beat - 7E0B94:9C - - - Infinite Eddie - 7E0B96:9C - - - Infinite Bolts - 7E0B9C:E7+7E0B9D:03 - - - Infinite Mines - 7E0B86:9F - - - Infinite T. Blade - 7E0B8E:9F - - - Infinite Ice Wall - 7E0B8C:9F - - - Infinite W. Burner - 7E0B88:9F - - - Infinite S. Drill - 7E0B82:9F - - - Infinite L. Bolt - 7E0B84:9F - - - Infinite C. Vision - 7E0B90:9F - - - Infinite M. Cards - 7E0B8A:9F - - - Infinite Gospel Booster/Rush Search - 7E0B92:9F - - - Have all items - 7E0B97:FF+7E0B98:FF+7E0B99:FF - - - Have CD Sparkle info - 7E0B98:FF - - - Have first 5 Units - 7E0B97:FF - - - Have all CDs - 306045:FF+306046:FF+306047:FF+306048:FF+306049:FF+30604A:FF+30604B:FF+30604C:1F+306040:FE+306041:FF+306042:FF+306043:FF+306044:FF - - - One hit kills (alt) - 7E1A2F:01 - - - Last area open - 7E0B79:FF - - - Last area, last level - 7E0B7B:03 - - - - Rocky Rodent (USA) - - Infinite lives - 3CAD-4DA7 - - - Keep hairdo after you die - C2C3-3DD5 - - - Start with red hairdo - D4A8-17D4 - - - Start with purple hairdo - D0A8-17D4 - - - Start with corkscrew hairdo - D1A8-17D4 - - - Start with green ponytail hairdo - D6A8-17D4 - - - Start with birdnest hairdo - DCA8-17D4 - - - Invincibility - 7E0054:72 - - - - Roger Clemens' MVP Baseball (USA) (Rev 1) - - Batter never walks - C22D-6FAD - - - Batter never strikes out - C227-6D6D - - - 1 ball per walk - DF2D-676D - - - 2 balls per walk - D42D-676D - - - 3 balls per walk - D72D-676D - - - 5 balls per walk - D92D-676D - - - 6 balls per walk - D12D-676D - - - 7 balls per walk - D52D-676D - - - 1 strike per out - DF27-640D - - - 2 strikes per out - D427-640D - - - 4 strikes per out - D027-640D - - - 5 strikes per out - D927-640D - - - Each run counts as 2 - 7665-0FD1+7669-0F01 - - - 1 out per inning per team - DFBF-07DF - - - 2 outs per inning per team - D4BF-07DF - - - - Romance of the Three Kingdoms II (USA) - - Scenario 1 - Start with 30,000 gold pieces - 7DE7-A465+59E7-A4A5 - - - Scenario 1 - Start with 30,000 rice - 7DE7-A765+59E7-A705 - - - Scenario 1 - Start with 30,000 population - 7DE7-A765+59E7-A7A5 - - - Scenario 2 - Start with 30,000 gold pieces - 7D67-A406+596D-A466 - - - Scenario 2 - Start with 30,000 rice - 7D67-A4A6+596D-A7D6 - - - Scenario 2 - Start with 30,000 population - 7D67-A706+596D-A766 - - - Scenario 3 - Start with 30,000 gold pieces - 7D67-A7DB+5967-A70B - - - Scenario 3 - Start with 30,000 rice - 7D67-A76B+5967-A7AB - - - Scenario 3 - Start with 30,000 population - 7D60-ADDB+5960-AD0B - - - Scenario 4 - Start with 30,000 gold pieces - 7D67-A70C+5967-A76C - - - Scenario 4 - Start with 30,000 rice - 7D67-A7AC+5960-ADDC - - - Scenario 4 - Start with 30,000 population - 7D60-AD0C+5960-AD6C - - - Scenario 5 - Start with 30,000 gold pieces - 7DBB-D7D6+59BB-D706 - - - Scenario 5 - Start with 30,000 rice - 7DBB-D766+59BB-D7A6 - - - Scenario 5 - Start with 30,000 population - 7DBC-DDD6+59BC-DD06 - - - Scenario 6 - Start with 30,000 gold pieces - 7DB9-6766+59B9-67A6 - - - Scenario 6 - Start with 30,000 rice - 7DB1-6DD6+59B1-6D06 - - - Scenario 6 - Start with 30,000 population - 7DB1-6D66+59B1-6DA6 - - - - Run Saber (USA) - - Almost invincible - P1 (disable if you fall into a pit) - C2B9-CDA4 - - - Almost invincible - P2 (disable if you fall into a pit) - C2B1-C4A4 - - - Almost invincible - both players (disable if you fall into a pit) - 18B0-C4A4 - - - Infinite lives - P1 - DD21-1F6F - - - Infinite lives - P2 - DD26-1F6F - - - Infinite Super Bombs - P1 - DDE4-39E3 - - - Infinite Super Bombs - P2 - DDEF-3073 - - - Infinite continues - C2E7-4572 - - - Level select and 9 lives selectable on the option menu - DF3A-6454 - - - Hit anywhere - male character - 6DE5-4728+F9E6-4DF8 - - - Bomb power-ups give no Super Bombs - DDE1-44B5 - - - Bomb power-ups give 2 Super Bombs - D4E1-44B5 - - - Start with no Super Bombs - DD29-0474 - - - Start with 1 Super Bomb - DF29-0474 - - - Start with 5 Super Bombs - D929-0474 - - - Start with 9 Super Bombs - DB29-0474 - - - Start with 1 health - DF25-0D84 - - - Start with 4 health - D025-0D84+D039-0454 - - - Start with 5 health - D925-0D84+D939-0454 - - - Start with 8 health - D625-0D84+D639-0454 - - - Start with no continues - DF83-AD84 - - - Start with 1 continue - D483-AD84 - - - Start with 5 continues - D183-AD84 - - - Start with 9 continues - DC83-AD84 - - - - Rushing Beat Shura (Japan) - - Invincibility - C22A-1DD7 - - - One hit kills - 1028-CDD3 - - - - Sailormoon (France) - - Infinite HP - P2 - 7E07C0:50 - - - Infinite Bombs - 7E0759:09 - - - Full charge meter - 7E0756:20 - - - - Samurai Shodown (USA) - - Hit anywhere - both players - DD03-8FDD - - - Max POW meter after one hit - DFE1-876D - - - Start with 1/2 health - 0D94-7401 - - - Start with 1/4 health - 4D94-7401 - - - Start with 33 seconds - 4F53-74A4 - - - Infinite health - P1 - 7E6214:80 - - - Infinite health - P2 - 7E6614:80 - - - Infinite time - 7EBE9B:63 - - - Max POW meter - P1 - 7E623D:20 - - - Max POW meter - P2 - 7E663D:20 - - - One hit kills - P1 - 7E6614:01 - - - One hit kills - P2 - 7E6214:01 - - - - Sanrio World Smash Ball! (Japan) - - Always have Strong Smash - P1 - 7E0070:A0 - - - Always have Strong Smash - P2 - 7E0086:A0 - - - Never have Strong Smash - P1 - 7E0070:00 - - - Never have Strong Smash - P2 - 7E0086:00 - - - - Saturday Night Slam Masters (USA) - - Able to pick the same characters - 1D79-EFD4+1D77-E404 - - - Stingray becomes Biff - DDC1-CF6F - - - Stingray becomes Gunloc - DFC1-CF6F - - - Stingray becomes Oni - D4C1-CF6F - - - Stingray becomes Titan - D7C1-CF6F - - - Stingray becomes Haggar - D9C1-CF6F - - - Stingray becomes Grater - D1C1-CF6F - - - Stingray becomes Rasta - D5C1-CF6F - - - Stingray becomes Jumbo - D6C1-CF6F - - - Stingray becomes Scorpion - DBC1-CF6F - - - Biff becomes Gunloc - DFC1-CD6F - - - Biff becomes Oni - D4C1-CD6F - - - Biff becomes Titan - D7C1-CD6F - - - Biff becomes Stingray - D0C1-CD6F - - - Biff becomes Haggar - D9C1-CD6F - - - Biff becomes Grater - D1C1-CD6F - - - Biff becomes Rasta - D5C1-CD6F - - - Biff becomes Jumbo - D6C1-CD6F - - - Biff becomes Scorpion - DBC1-CD6F - - - 14-second count outside ring - D3DB-5D01 - - - 10-second count outside ring - DCDB-5D01 - - - 9-second count for pin - DBD6-5DD1 - - - 6-second count for pin - D1D6-5DD1 - - - 1-second count for pin - DFD6-5DD1 - - - Faster timer - F31F-8F0D - - - Slower timer - 1D1F-8F0D - - - Stingray has faster jalepeno comet - D12D-5765+EB2F-5F05 - - - Quicker 'pattycake slap' for Grater - 0C83-17D7+D78E-1F67 - - - Quicker 'sonic fist' for Gunloc - 0C83-1FA7+D78E-1D07 - - - Quicker 'sonic fist' for Biff - 0C83-1F67+D78E-1D07 - - - Quicker 'jungle fever' for Rasta - 0C83-1707+D48E-1FA7 - - - Infinite time - 7E1A70:01 - - - - Scooby-Doo Mystery (USA) - - Infinite health - DDED-3F01 - - - Infinite lives - C2BF-3DAD - - - Most enemies are more frightening - EEED-3F01 - - - Scooby snacks do nothing - C26D-1FD5 - - - Scooby snacks reduce more fright - EE64-1DD5 - - - Start with 1 life - DD60-1467 - - - Start with 5 lives - D060-1467 - - - Start with 7 lives - D160-1467 - - - Start with 10 lives - DB60-1467 - - - - SD Kidou Senshi Gundam - V Sakusen Shidou (Japan) - - Invincibility - 1D68-6FA0+1D6F-A7D0 - - - - SD The Great Battle - Aratanaru Chousen (Japan) - - Invincibility - 1DC5-A7D7+C9C1-0FD4 - - - Infinite lives - C968-67AF - - - - SeaQuest DSV (USA) - - Infinite weapons / items - 8ECC-3F9D+8EC8-44FF - - - Start with 99 Darwin's Aqua Lungs - 17EC-C400 - - - Start with 99 HR Probes - 17E8-CD00 - - - Start with 99 Sea Trucks - 17EC-C7A0 - - - Start with 99 Sea Speeders - 17EC-C4A0 - - - Start with 99 Crabs - 17EC-CFA0 - - - Start with 99 Stingers - 17EC-C700 - - - - Secret of Evermore (USA) - - Everyone is invincible, including enemies - C2A0-CD5A+826B-41DF+D261-400F - - - Infinite Alchemy ingredients - 8EA4-C905+8EAE-11D5 - - - Alchemy levels up on every use - DDA9-15D5 - - - View Boy's stats to get 131,074 Talons (don't use if you already have more than that) - CBC4-3DE0+D4C4-3F70+DDC4-3F50+62C4-3470 - - - Your dog starts with 99 HP - 17BF-1FEF - - - Your dog starts with 255 HP - EEBF-1FEF - - - Start with 99 attack points - 95B9-34ED - - - Start with a lot of attack points - EEB9-34ED - - - Start with 99 defense points - 17B5-C75D - - - Start with a lot of defense points - EEB5-C75D - - - Start with 99 magic defense points - 17B7-445F - - - Start with a lot of magic defense points - EEB7-445F - - - Start with 50 evade % points - 7464-CFE7 - - - Start with 99 evade % points - 1764-CFE7 - - - Start with 50 hit % points - 746D-3F57 - - - Start with 99 hit % points - 176D-3F57 - - - Start with 99 HP - 1786-CFEB+17BB-17ED - - - Start with 255 HP - EE86-CFEB+EEBB-17ED - - - Have all weapons - 7E22DA:FF+7E22DB:FF - - - - Secret of Mana (USA) - - Protection from most hits (disable to kill enemies) - 8208-776D - - - Enemies die instantly - CD7E-7D67+DD7E-7DA7+DD7E-7FD7 - - - Hit anywhere - 40A7-6765+402C-0F60 - - - Level 99 after first enemy - B606-7F6F+DD78-5F64 - - - Max weapon damage - BA0A-5404+CB0A-54D4 - - - Change screens to max out Strength, Agility, Constitution, Intelligence and Wisdom - DD03-ED04 - - - Weapon bar never decreases - 82A0-6466+82E0-0FD4 - - - Walk through walls - DD85-A7D1+DD85-64A1 - - - Strength for level 16 is 90 - 9C06-81AD - - - Agility for level 16 is 90 - 9C06-85DD - - - Constitution for level 16 is 90 - 9C06-850D - - - Intelligence for level 16 is 90 - 9C06-856D - - - Wisdom for level 16 is 90 - 9C06-85AD - - - Chest in elder's basement in Potos gives you 65360 GP - EE6B-8738 - - - Staying at the inn in Potos is free if you have enough money - C274-8764+C277-8DA4 - - - Items in the shop at Potos are free if you have enough money - CE5F-5767 - - - Candy costs nothing - DDEB-E544 - - - Overalls costs nothing - DDE3-E044 - - - Bandanna costs nothing - DDE8-E9C4 - - - Cup Of Wishes costs nothing - DDEC-E9C4 - - - Medical Herb costs nothing - DDEC-E944 - - - Wristband costs nothing - DDE7-7047 - - - Hair Ribbon costs nothing - DDE8-E144 - - - Rabite Cap costs nothing - DDE8-E1C4 - - - Faerie Walnut costs nothing - DDEC-E0C4+DDEC-E034 - - - Royal Jam costs nothing - DDEC-E044 - - - Chocolate costs nothing - DDEB-E5C4 - - - Staying at Neko's costs nothing instead of 30 - DDAB-E715 - - - Start with 255 GP - EE28-EDAF - - - Start with 32,768 GP - 6D28-EFDF - - - Start with 65,280 GP - EE28-EFDF - - - Start at Level 16 - 6F09-8707 - - - - Shadow, The (USA) (Proto) (Alt 1) - - Infinite health - 7E1E31:FF - - - Infinite dash - 7E1876:FF - - - Infinite time - 7E1B76:09 - - - Enemy 1 has 0 health - 7E1B4A:00 - - - Enemy 2 has 0 health - 7E1B4B:00 - - - Enemy 3 has 0 health - 7E1B4C:00 - - - Start on level 2 - Empire State - 7E1E28:01 - - - Start on level 3 - Amusement Park - 7E1E28:02 - - - Start on level 4 - The Museum - 7E1E28:03 - - - Start on level 5 - The Federal Buildings - 7E1E28:04 - - - Start on level 6 - The Bike Chase - 7E1E28:05 - - - Start on level 7 - Maritech Labs - 7E1E28:06 - - - Start on level 8 - China Town - 7E1E28:07 - - - Start on level 9 - Hotel Monolith - 7E1E28:08 - - - - Shadow, The (USA) (Proto) - - Infinite health - 7E1E31:FF - - - Infinite dash - 7E1876:FF - - - Infinite time - 7E1B76:09 - - - Enemy 1 has 0 health - 7E1B4A:00 - - - Enemy 2 has 0 health - 7E1B4B:00 - - - Enemy 3 has 0 health - 7E1B4C:00 - - - Start on level 2 - Empire State - 7E1E28:01 - - - Start on level 3 - Amusement Park - 7E1E28:02 - - - Start on level 4 - The Museum - 7E1E28:03 - - - Start on level 5 - The Federal Buildings - 7E1E28:04 - - - Start on level 6 - The Bike Chase - 7E1E28:05 - - - Start on level 7 - Maritech Labs - 7E1E28:06 - - - Start on level 8 - China Town - 7E1E28:07 - - - Start on level 9 - Hotel Monolith - 7E1E28:08 - - - - Shadowrun (USA) - - Everything is free - 6DAE-4FA7+FFAE-44D7 - - - Don't subtract karma for spells/skills (must have enough to advance) - CEEF-4DDD - - - Don't subtract karma for shooting people (ignore message saying you lost karma) - CE6D-47A4 - - - Don't subtract spell points (works for all spell casters) (casting spells you aren't allowed to raises your spell points) - 8E69-3DA4 - - - Going up 1 body point adds 20 stamina instead of 10 - F0E1-1FDD - - - Going up 1 body point adds 30 stamina instead of 10 - F3E1-1FDD - - - Add 65,000 nuyen (if less than 65,000) - DFBC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add about 131,000 nuyen (if less than 65,000) - D4BC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add about 524,000 nuyen (if less than 65,000) - D6BC-17AF+DEB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set stamina to 100 - 10BC-17AF+DDB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set stamina to 200 - A6BC-17AF+DDB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set magic total possible to 10 (and spell points to 100) - DCBC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set total possible magic to 20 (and spell points to 200) - F0BC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set total possible magic to 25 (and spell points to 250) - FBBC-17AF+EAB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set strength to 6 - D1BC-17AF+E2B8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set charisma to 6 - D1BC-17AF+EEB8-1D0F+78B8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set karma to 10 (if karma is less than 32) - 9DBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set karma to 20 (if karma is less than 32) - CDBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Set karma to 31 (if karma is less than 32) - EEBC-17AF+FFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add 32 karma (if karma is less than 32) - DFBC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add 64 karma (if karma is less than 32) - D4BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add 96 karma (if karma is less than 32) - D7BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Add 192 karma (if karma is less than 32) - D1BC-17AF+F4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn powerball spell, level 6 - D1BC-17AF+D5B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn heal spell, level 6 - D1BC-17AF+D6B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn invisibility spell, level 6 - D1BC-17AF+DBB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn armor spell, level 6 - D1BC-17AF+DCB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn summon spirit spell, level 6 - D1BC-17AF+D8B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn freeze spell, level 6 - D1BC-17AF+DAB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn firearms skill, level 5 - D9BC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn firearms skill, level 10 - DCBC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn firearms skill, level 15 - DEBC-17AF+DFB8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn computer skill, level 6 - D1BC-17AF+D0B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn leadership skill, level 6 - D1BC-17AF+D9B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn armed combat skill, level 6 - D1BC-17AF+D7B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn unarmed combat skill, level 6 - D1BC-17AF+D4B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Learn negotiation skill, level 6 - D1BC-17AF+D1B8-1D0F+7AB8-1D6F+6EB8-1DDF+53B8-1DAF - - - Start with computer, firearms skills at level 2 - D4BE-4DA4 - - - Start with computer, firearms skills at level 3 - D7BE-4DA4 - - - Start with computer, firearms skills at level 4 - D0BE-4DA4 - - - Start with computer, firearms skills at level 5 - D9BE-4DA4 - - - Start with computer, firearms skills at level 6 - D1BE-4DA4 - - - Start with 2 strength and charisma - D4BC-4404 - - - Start with 4 strength and charisma - D0BC-4404 - - - Start with 5 strength and charisma - D9BC-4404 - - - Start with 6 strength and charisma - D1BC-4404 - - - Start with 50 stamina - 74B8-4DA4 - - - Start with 100 stamina - 10B8-4DA4 - - - - Shaq-Fu (USA) - - Invincibility - P1 - 0D8B-8DDD+2D8B-8D6D+3D86-87AD+4D8B-8D0D - - - Hit anywhere - P1 - 0D85-87DD+3D85-84AD+4D85-870D+DD86-8D6D+FA86-8D0D - - - Infinite continues - Duel Mode - C269-EF0D - - - Blood enabled - DDB6-57AF+DDB3-746F - - - Start with no continues - DDA6-5D07 - - - Start with 1 continues - DFA6-5D07 - - - Start with 5 continues - D9A6-5D07 - - - Start with 9 continues - DBA6-5D07 - - - Start with 15 continues - DEA6-5D07 - - - - Shin Kidou Senki Gundam W - Endless Duel (Japan) - - Hit anywhere - P1 - 05B2-6FF4+ADB2-6DF4+DDB2-6D94+DDB2-6DB4 - - - - Shin Nekketsu Kouha - Kunio-tachi no Banka (Japan) - - Invincibility - C22B-1466 - - - Invincibility (alt) - 7E1202:02 - - - Infinite health - Kunio - 7E0094:FF - - - Infinite health - Riki - 7E0096:FF - - - Infinite health - Misako - 7E0098:FF - - - Infinite health - Kyouko - 7E009A:FF - - - One hit kills - 7E009C:00+7E009E:00+7E00A0:00+7E00A2:00 - - - Play as Kunio - Jail Outfit (Safe To Use) - 7E11DC:00 - - - Play as Riki - Jail Outfit (Safe To Use) - 7E11DC:01 - - - Play as Takayama - 7E11DC:03 - - - Play as Cop - 7E11DC:04 - - - Play as Gouji - 7E11DC:05 - - - Play as Tooru - 7E11DC:06 - - - Play as Gouji Henchman - 7E11DC:07 - - - Play as Kunio - School Outfit (Safe To Use) - 7E11DC:08 - - - Play as Riki - School Outfit (Safe To Use) - 7E11DC:09 - - - Play as Misako (Safe To Use) - 7E11DC:0A - - - Play as Kyouko (Safe To Use) - 7E11DC:0B - - - Play as Daiki Stage 2, Ryuuta Stage 3 - 7E11DC:0C - - - Play as Henchman Stage 2 + - 7E11DC:0E+7E11DC:11+7E11DC:14 - - - Play as Shingi Henchman - 7E11DC:17 - - - Play as Shingi - 7E11DC:1A - - - Play as Lisa - 7E11DC:1B - - - Play as Sabu - 7E11DC:1E - - - Play as Kinji - 7E11DC:1F - - - Play as Ken - 7E11DC:20 - - - Play as Misuzu - 7E11DC:21 - - - Play as Yakuza 1 - 7E11DC:23 - - - Play as Yakuza 2 - 7E11DC:25 - - - Play as Joe - 7E11DC:2C - - - Character color becomes White - 7E0084:00 - - - Character color becomes Blue - 7E0084:01 - - - Character color becomes Green - 7E0084:02 - - - Character color becomes Light Blue - 7E0084:03 - - - - Sid Meier's Civilization (USA) - - Get a new skill every turn - DD30-74A4 - - - Have 42.0 moves until you specify no orders - CB28-5DA4+5328-5FD4 - - - Start with more money - BB04-EF74+BB04-EF54 - - - Start with a lot more money - EE04-EF74+EE04-EF54 - - - Infinite time - 7E75D7:00 - - - Max income - 7E7630:FF - - - - Side Pocket (USA) - - Infinite shots - 7E1094:0A - - - Infinite shots (alt) - 7E1094:10 - - - Gain lots of bonus shots for every ball you get in - 7E1097:03 - - - Always advance to the next level - 7E10A2:E7+7E10A3:03 - - - - SimAnt - The Electronic Ant Colony (USA) - - Always have maximum energy - DD88-0D0A - - - Yellow ant always wins - DDA7-6402 - - - - SimCity (USA) - - Money doesn't decrease for most types of spending - C28A-AD61 - - - Time goes faster - DD67-DFAA - - - Time goes slower - DE67-DFAA - - - Start easy game with $40,000 - 0DAB-6D02+BAAB-6D62 - - - Start easy game with $60,000 - 1DAB-6D02+3CAB-6D62 - - - Start easy game with $3,000 - 86AB-6D02+D8AB-6D62 - - - Cheat menu at game exit - 0188E7:A9+0188E8:80+0188E9:F0 - - - - SimCity 2000 - The Ultimate City Simulator (USA) - - Start with $99,999,999 on all the maps except the Land Of Freedom - EEF3-8700+3DF3-8760+E9FE-8D60+D9FE-8DA0 - - - Start with $99,999,999 on the Land Of Freedom - EEF3-8D00+3DF3-8D60+E9F3-8F60+D9F3-8FA0 - - - - SimEarth - The Living Planet (USA) - - Infinite Omega energy - DDB2-F35E - - - - Simpsons, The - Bart's Nightmare (USA) - - Infinite lives (Bartman and Itchy and Scratchy sub-games) - C2BE-60EA - - - Infinite Z's (main game) - C2C3-6925+C2C3-61B5 - - - Start with 2 bubbles - D46A-D521 - - - Start with 9 bubbles - DB6A-D521 - - - Infinite life - 7E0938:0A - - - Infinite hits - 7E0514:0B - - - Infinite 99 Watermelon Seeds left - 7E0137:63 - - - Infinite 99 Gum left - 7E013D:63 - - - Infinite Bubbles and Seeds - 89CB-D9B5 - - - All Pages - 7E013F:08 - - - No Pages - 7E013F:00 - - - - Sink or Swim (USA) - - Infinite lives - 7E0972:09 - - - 0 left - 7E164A:00 - - - 0 to rescue - 7E1650:00 - - - 9 saved - 7E164C:09 - - - - Skuljagger - Revolt of the Westicans (USA) - - Invincibility - 1DCC-A4D4 - - - Infinite Red Jemeralds - D4CB-A7D4 - - - Don't lose Green Jemeralds when you fall and die - C2BB-6FA1 - - - Infinite time - DD6B-DF07 - - - Infinite lives - DDCA-AD04+DDBB-6D61 - - - Die when touched (regardless of Jemeralds) - 6DCB-A404+6DCC-A4D4 - - - No enemies or Jemeralds (good for exploring, disable to advance) - 8BAB-6DD9 - - - Red jemeralds set to 10 after being hit (must have at least 1) - FFCB-A7D4 - - - Slower timer - 5D66-DFA7 - - - Faster timer - F366-DFA7 - - - Time goes by 2x as fast - D46B-DF07 - - - Time goes by 4x as fast - D06B-DF07 - - - Green Jemeralds worth 3 - D7C2-6704 - - - Green Jemeralds worth 9 - DBC2-6704 - - - Green Jemeralds worth 19 - FBC2-6704 - - - Green Jemeralds worth 25 (extra life on each one) - 49C2-6704 - - - 10 Green Jemeralds gives an extra life - FDC3-6DA4 - - - 50 Green Jemeralds gives an extra life - 9DC3-6DA4 - - - 1 Green Jemerald gives an extra life - DDC3-6F04 - - - Start with 1 life instead of 5 - DF83-D765 - - - Start with 3 lives - D783-D765 - - - Start with 9 lives - DB83-D765 - - - Start with 19 lives - FB83-D765 - - - Start with 50 lives - 9D83-D765 - - - Start with 99 lives - BB83-D765 - - - Invincibility (alt) - 7E1A02:08 - - - Infinite time (alt) - 7E02BE:FF - - - - Skyblazer (USA) - - Invincibility - 7E0065:9E - - - Infinite health - 7EF801:04 - - - Infinite special power - 7E1F0D:08 - - - Infinite Warrior Force - 7E0089:FF - - - Have 99 gems - 7E1F0E:63 - - - Have Aura Attack - 7E1F0B:01 - - - Have Comet Flash - 7E1F0B:02 - - - Have Lightning Strike - 7E1F0B:03 - - - Have Time Stop - 7E1F0B:04 - - - Have Star Fire - 7E1F0B:05 - - - Have Warrior Force - 7E1F0B:06 - - - Have Heal - 7E1F0B:07 - - - Have Fiery Phoenix - 7E1F0B:08 - - - All enemies frozen - 7EFA69:8D+7EFA6A:8D+7EFA6B:8D+7EFA73:8D+7EFA6C:8D+7EFA74:8D+7EFA6D:8D+7EFA75:8D+7EFA6E:8D+7EFA7D:8D+7EFA76:8D+7EFA6F:8D+7EFA7E:8D+7EFA77:8D+7EFA70:8D+7EFA7F:8D+7EFA78:8D+7EFA71:8D+7EFA79:8D+7EFA72:8D+7EFA7A:8D+7EFA7B:8D+7EFA7C:8D+7EFA60:8D+7EFA61:8D+7EFA62:8D+7EFA63:8D+7EFA64:8D+7EFA65:8D+7EFA66:8D+7EFA67:8D+7EFA68:8D - - - - Smart Ball (USA) - - Infinite lives - C2B9-0F0D - - - Protection from most enemies (lose no hearts) - C2BE-A467 - - - Infinite red balls on pick-up - until continue - C266-04A7 - - - Go to any level - 7762-040D+DE62-0FAD - - - Super-jump - ECC3-DF6D - - - Mega-jump - E1C3-DF6D - - - Start with 1 life instead of 3 - DF6D-676D - - - Start with 5 lives - D96D-676D - - - Start with 10 lives - DC6D-676D - - - Start with 25 lives - FB6D-676D - - - Start with 50 lives - 746D-676D - - - Start with 99 lives - 176D-676D - - - - Soldiers of Fortune (USA) - - Infinite lives - CBC1-E46F - - - Smaller food power-ups heal twice as much - DCE0-87AD - - - Smaller food power-ups heal four times as much - F0E0-87AD - - - Large food power-ups heal twice as much - F3E9-8FDD - - - Large food power-ups heal four times as much - 7AE9-8FDD - - - Only 3 special powers can be stored instead of 6 (handicap) - D0EB-8DDD - - - Special power power-ups are worth 6 (always fill meter) - 6DEB-8D0D - - - Special powers aren't used up - 3CC6-870D - - - Mercenary starts with much more health - 1D4E-5475 - - - Brigand starts with much more health - 1D44-87E5 - - - Gentleman starts with much more health - 1D41-8F85 - - - Navvie starts with much more health - 1D4B-8755 - - - Thug starts with much more health - 1D42-8F75 - - - Scientist starts with much more health - 1D4D-E4E5 - - - Extra lives cost 244 instead of 500 - DDF6-5D50 - - - Skill power-ups cost 44 instead of 300 - DDF6-5DE0 - - - Health power-ups cost 1 instead of 75 - DFF6-5F70 - - - Health power-ups cost 25 instead of 75 - FBF6-5F70 - - - Speed power-ups cost 1 instead of 250 - DFF6-5F80 - - - Speed power-ups cost 100 instead of 250 - 10F6-5F80 - - - Wisdom power-ups cost 1 instead of 80 - DFF6-5470 - - - Wisdom power-ups cost 25 instead of 80 - FBF6-5470 - - - Special powers cost 1 instead of 150 - DFF6-5480 - - - Special powers cost 50 instead of 150 - 74F6-5480 - - - Weapon power-ups cost 1 instead of 250 - DFF6-5780 - - - Weapon power-ups cost 100 instead of 250 - 10F6-5780 - - - ??? (New Special powers costs 44 instead of 300) - DDF6-5750 - - - Brigand starts with Bomb special power - DF40-ED75 - - - Mercenary starts with Bomb special power - DF40-EF75 - - - Gentleman starts with Bomb special power - DF40-E475 - - - Navvie starts with Bomb special power - DF40-E775 - - - Thug starts with Bomb special power - DF49-ED75 - - - Scientist starts with Bomb special power - DF49-EF75 - - - Brigand starts with Shot Burst special power - D440-ED75 - - - Mercenary starts with Shot Burst special power - D440-EF75 - - - Gentleman starts with Shot Burst special power - D440-E475 - - - Navvie starts with Shot Burst special power - D440-E775 - - - Thug starts with Shot Burst special power - D449-ED75 - - - Scientist starts with Shot Burst special power - D449-EF75 - - - Brigand starts with Map special power (must still destroy nodes special power) - D740-ED75 - - - Mercenary starts with Map special power (must still destroy nodes special power) - D740-EF75 - - - Gentleman starts with Map special power (must still destroy nodes special power) - D740-E475 - - - Navvie starts with Map special power (must still destroy nodes special power) - D740-E775 - - - Thug starts with Map special power (must still destroy nodes special power) - D749-ED75 - - - Scientist starts with Map special power (must still destroy nodes special power) - D749-EF75 - - - Brigand starts with Destroy Nodes special power - D040-ED75 - - - Mercenary starts with Destroy Nodes special power - D040-EF75 - - - Gentleman starts with Destroy Nodes special power - D040-E475 - - - Navvie starts with Destroy Nodes special power - D040-E775 - - - Thug starts with Destroy Nodes special power - D049-ED75 - - - Scientist starts with Destroy Nodes special power - D049-EF75 - - - Brigand starts with Repel Monster special power - D940-ED75 - - - Mercenary starts with Repel Monster special power - D940-EF75 - - - Gentleman starts with Repel Monster special power - D940-E475 - - - Navvie starts with Repel Monster special power - D940-E775 - - - Thug starts with Repel Monster special power - D949-ED75 - - - Scientist starts with Repel Monster special power - D949-EF75 - - - Brigand starts with First Aid special power - D140-ED75 - - - Mercenary starts with First Aid special power - D140-EF75 - - - Gentleman starts with First Aid special power - D140-E475 - - - Navvie starts with First Aid special power - D140-E775 - - - Thug starts with First Aid special power - D149-ED75 - - - Scientist starts with First Aid special power - D149-EF75 - - - Brigand starts with Freeze Monster special power - D540-ED75 - - - Mercenary starts with Freeze Monster special power - D540-EF75 - - - Gentleman starts with Freeze Monster special power - D540-E475 - - - Navvie starts with Freeze Monster special power - D540-E775 - - - Thug starts with Freeze Monster special power - D549-ED75 - - - Scientist starts with Freeze Monster special power - D549-EF75 - - - Brigand starts with Shield special power - D640-ED75 - - - Mercenary starts with Shield special power - D640-EF75 - - - Gentleman starts with Shield special power - D640-E475 - - - Navvie starts with Shield special power - D640-E775 - - - Thug starts with Shield special power - D649-ED75 - - - Scientists starts with Shield special power - D649-EF75 - - - Brigand starts with Party Power special power - DB40-ED75 - - - Mercenary starts with Party Power special power - DB40-EF75 - - - Gentleman starts with Party Power special power - DB40-E475 - - - Navvie starts with Party Power special power - DB40-E775 - - - Thug starts with Party Power special power - DB49-ED75 - - - Scientist starts with Party Power special power - DB49-EF75 - - - Brigand starts with Air Burst special power - DC40-ED75 - - - Mercenary starts with Air Burst special power - DC40-EF75 - - - Gentleman starts with Air Burst special power - DC40-E475 - - - Navvie starts with Air Burst special power - DC40-E775 - - - Thug starts with Air Burst special power - DC49-ED75 - - - Scientist starts with Air Burst special power - DC49-EF75 - - - Brigand starts with Distract Monster special power - D840-ED75 - - - Mercenary starts with Distract Monster special power - D840-EF75 - - - Gentleman starts with Distract Monster special power - D840-E475 - - - Navvie starts with Distract Monster special power - D840-E775 - - - Thug starts with Distract Monster special power - D849-ED75 - - - Scientist starts with Distract Monster special power - D849-EF75 - - - Brigand starts with Molotov special power - DA40-ED75 - - - Mercenary starts with Molotov special power - DA40-EF75 - - - Gentleman starts with Molotov special power - DA40-E475 - - - Navvie starts with Molotov special power - DA40-E775 - - - Thug starts with Molotov special power - DA49-ED75 - - - Scientist starts with Molotov special power - DA49-EF75 - - - Brigand starts with Ground Mine special power - D240-ED75 - - - Mercenary starts with Ground Mine special power - D240-EF75 - - - Gentleman starts with Ground Mine special power - D240-E475 - - - Navvie starts with Ground Mine special power - D240-E775 - - - Thug starts with Ground Mine special power - D249-ED75 - - - Scientist starts with Ground Mine special power - D249-EF75 - - - Brigand starts with Dynamite special power - D340-ED75 - - - Mercenary starts with Dynamite special power - D340-EF75 - - - Gentleman starts with Dynamite special power - D340-E475 - - - Navvie starts with Dynamite special power - D340-E775 - - - Thug starts with Dynamite special power - D349-ED75 - - - Scientist starts with Dynamite special power - D349-EF75 - - - Brigand gets Party Power as a 4th special power - DB40-EDE5 - - - Mercenary gets Party Power as a 4th special power - DB40-EFE5 - - - Navvie gets Party Power as a 3rd special power - DB40-E785 - - - Thug gets Party Power as a 3rd special power - DB49-ED85 - - - Infinite health - P1 - 7E40F0:64 - - - Infinite health - P2 or computer partner - 7E4165:64 - - - Infinite lives - P1 - 7E0090:04 - - - Infinite lives - P2 or computer partner - 7E0092:04 - - - Infinite special attacks - P1 - 7E40FF:06 - - - Infinite special attacks - P2 or computer partner - 7E4174:06 - - - - Sonic Blast Man (USA) - - Invincibility - 2DC2-07A7 - - - Infinite health - C2A9-04AD - - - Infinite health against most enemy hits - C2A9-04AD - - - Infinite health against hits on the head when you're being held - C2C3-0DAD - - - Infinite special - C2C3-0464 - - - Infinite Dynamite Punches - C2C3-0464 - - - Infinite lives - DDA5-6F60 - - - Infinite lives (alt) - C2A5-64D0 - - - Infinite credits - C2AC-A4A4 - - - Hit anywhere - 47A6-07AD+6DA6-076D - - - Super glove worth nothing - C2A9-0F6F - - - Hamburger worth nothing - DDA4-070F - - - Hamburger fully restores health - 9DA4-070F - - - Apple worth nothing - DDAF-040F - - - Apple fully restores health - 9DAF-040F - - - Continue with 3/4 health - 7AB5-A407 - - - Continue with 1/2 health - 46B5-A407 - - - Continue with 1/4 health - F0B5-A407 - - - Start with 11 lives - D76B-D46D - - - Start with 0 dynamite punches - DDAD-ADDF - - - Start with 5 dynamite punches - D9AD-ADDF - - - Start with 7 dynamite punches - D5AD-ADDF - - - Start with 9 dynamite punches - DBAD-ADDF - - - Start with 3/4 health - 7AB9-0DD7 - - - Start with 1/2 health - 46B9-0DD7 - - - Start with 1/4 health - F0B9-0DD7 - - - Start on stage 2 - 33BC-0F0F - - - Start on stage 3 - CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D4BC-0DAF - - - Start on stage 4 - CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D7BC-0DAF - - - Start on stage 5 - CBBC-0D6F+3CBC-0FDF+62BC-0F0F+D0BC-0DAF - - - - Sonic Blast Man II (USA) - - Invincibility - C206-5F64 - - - Infinite health - C20B-EFA7 - - - Infinite lives - C295-7F6F - - - Infinite health - P1 - 7E0DA5:FF - - - Infinite health - P2 - 7E1DA7:FF - - - Infinite Specials - P1 - 7E0DAD:63 - - - Infinite Specials - P2 - 7E1DAF:63 - - - Infinite lives - P1 - 7E0DA9:32 - - - Infinite lives - P2 - 7E0DAB:32 - - - One hit kills on most enemies and bosses - 7E1377:00+7E1393:00+7E1395:00+7E1391:00+7E138F:00 - - - Play as Sonic Blast Man - P1 - 7E0D8D:00 - - - Play as Sonic Blast Man - P2 - 7E0D8F:00 - - - Play as Sonia - P1 - 7E0D8D:01 - - - Play as Sonia - P2 - 7E0D8F:01 - - - Play as Captain Choyear - P1 - 7E0D8D:02 - - - Play as Captain Choyear - P2 - 7E0D8F:02 - - - - Soul Blazer (USA) - - Invincibility - C26E-6DA7+C223-0D07 - - - Have all spirits after obtaining the first one - FEC3-A7D2 - - - Get max level - DDEB-649F - - - Gems set to 999,999 every time one is obtained - DDE8-64BF - - - 10 EXP required instead of 100 for level 2 - FDE8-A761+DDE8-A7A1 - - - 180 EXP required instead of 280 for level 3 - DFEA-ADA1 - - - 380 EXP required instead of 580 for level 4 - D7EA-AFA1 - - - 600 EXP required instead of 1,000 for level 5 - D1EA-A4A1 - - - 1,200 EXP required instead of 2,000 for level 6 - F4EA-A7A1 - - - 2,400 EXP required instead of 3,200 for level 7 - 40E2-ADA1 - - - 3,500 EXP required instead of 4,500 for level 8 - 79E2-AFA1 - - - 4,800 EXP required instead of 5,800 for level 9 - 06E2-A4A1 - - - 6,600 EXP required instead of 7,600 for level 10 - 11E2-A7A1 - - - 8,600 EXP required instead of 9,600 for level 11 - 61E3-ADA1 - - - 10,000 EXP required instead of 12,400 for level 12 - DDE3-AFA1 - - - 13,000 EXP required instead of 15,000 for level 13 - 7DE3-A4A1 - - - 15,000 EXP required instead of 19,000 for level 14 - 9DE3-A7A1 - - - Start with 4 HP - D0E6-0FB4 - - - Start with 15 HP - DEE6-0FB4 - - - Start with 25 HP - FBE6-0FB4 - - - Start with 50 HP - 74E6-0FB4 - - - Start with 75 HP - 08E6-0FB4 - - - Start with 100 HP - 10E6-0FB4 - - - Start with 127 HP - 5EE6-0FB4 - - - Infinite and max HP - 7E1B88:64+7E1B8A:64 - - - Level up more quickly - 7E1B78:FF - - - - Space Football - One on One (USA) - - Infinite energy - C2B9-D7AF - - - Instant acceleration - 1B26-A7D7 - - - No pushback on firing - C2C9-D46F - - - Push forward on firing - 1BC9-DFAF - - - - Space Invaders (USA) - - Infinite lives - CB6F-37A9 - - - Enemies never move - 7E03D5:00 - - - Infinite credits - 7E03BF:02 - - - - Space Megaforce (USA) - - Protection against enemy hits, and weapon level goes to 2 when hit - CB68-D4AC+D168-D7DC - - - Protection against enemy hits, and weapon level goes to 6 when hit - CB68-D4AC+D168-D7DC+D16A-D4DC - - - Infinite bombs - DD65-AFAB - - - Infinite ships - DD6D-07AC - - - Hit anywhere - 1DCD-6D01+2DCD-6DA1+4ACD-6FD1+C2CD-6DD1+D2CD-6D61 - - - Power shots (weapon type 6) last until you pick up another weapon or get hit - 828E-AF6B - - - Weapon capsules give you weapon type 1 - CBC4-0F06+DDC4-0F66 - - - Weapon capsules give you weapon type 2 - CBC4-0F06+DFC4-0F66 - - - Weapon capsules give you weapon type 3 - CBC4-0F06+D4C4-0F66 - - - Weapon capsules give you weapon type 4 - CBC4-0F06+D7C4-0F66 - - - Weapon capsules give you weapon type 5 - CBC4-0F06+D0C4-0F66 - - - Weapon capsules give you weapon type 6 - CBC4-0F06+D9C4-0F66 - - - Bomb capsules worth 0 - DDCE-D4D6 - - - Bomb capsules worth 2 - D4CE-D4D6 - - - Bomb capsules worth 4 - D0CE-D4D6 - - - Bomb capsules worth 6 - D1CE-D4D6 - - - Start with 0 bombs instead of 3 - DDC9-DD06 - - - Start with 7 bombs - D5C9-DD06 - - - Start with 10 bombs - FDC9-DD06 - - - Start with 25 bombs - 49C9-DD06 - - - Start with 50 bombs - 9DC9-DD06 - - - Start with 99 bombs - BBC9-DD06 - - - Start with 2 ships - DFBE-A4A8 - - - Start with 8 ships - D5BE-A4A8 - - - Start with 11 ships - FDBE-A4A8 - - - Start with 26 ships - 49BE-A4A8 - - - Start with 51 ships - 9DBE-A4A8 - - - Start with 76 ships - 59BE-A4A8 - - - Start with 100 ships - BBBE-A4A8 - - - Start in area 2 - CB6A-0D0D+D46A-0D6D - - - Start in area 3 - CB6A-0D0D+D76A-0D6D - - - Start in area 4 - CB6A-0D0D+D06A-0D6D - - - Start in area 5 - CB6A-0D0D+D96A-0D6D - - - Start in area 6 - CB6A-0D0D+D16A-0D6D - - - Start in area 7 - CB6A-0D0D+D56A-0D6D - - - Start in area 8 - CB6A-0D0D+D66A-0D6D - - - Start in area 9 - CB6A-0D0D+DB6A-0D6D - - - Start in area 10 - CB6A-0D0D+DC6A-0D6D - - - Start in area 11 - CB6A-0D0D+D86A-0D6D - - - Start in area 12 - CB6A-0D0D+DA6A-0D6D - - - - Spanky's Quest (USA) - - Infinite lives - 40AC-DF08 - - - Start with 1 life - DD31-AFAD - - - Start with 6 lives - D931-AFAD - - - Start with 10 lives - DB31-AFAD - - - Start with 1 key in all areas after 1-1 - CB3F-0FDF+DF3F-0F0F - - - Start on area 2-1 - CB35-A7AD+DF36-ADDD - - - Start on area 3-1 - CB35-A7AD+D436-ADDD - - - Start on area 4-1 - CB35-A7AD+D736-ADDD - - - Start on area 5-1 - CB35-A7AD+D036-ADDD - - - - Sparkster (USA) - - Invincibility - DD27-CFD6 - - - Invincibility (blinking) - CB27-CDA6+D027-CFD6 - - - Infinite health - 3C3E-17A8+3C2E-14D6 - - - Infinite health (alt) - 7E0691:0E - - - Infinite lives (alt) - 7E0168:09 - - - Hit anywhere - 6D30-346D+C96A-C79D+DD34-3F0D - - - 1 Jewel needed for 1-up - 7E016A:63 - - - - Spawn - The Video Game (USA) - - Invincibility after one hit (invisible) - C203-84D1 - - - Almost invincible (blinking) - 3C03-8F61 - - - Infinite health - C208-87D1 - - - Hit anywhere - 40F8-84B0 - - - Don't blink after getting hit - FDDB-5FB9 - - - Falling doesn't use life points - C2F4-7FD1 - - - Special moves don't use life points - C27D-8701 - - - Some bullets do 2x damage - D6D7-8F20 - - - Some bullets do no damage - DDD7-8F20 - - - Some bullets kill you - EED7-8F20 - - - Some enemy punches electrocute you - DB78-84B0 - - - Some enemy punches do no damage - DD78-84B0 - - - Some enemy punches kill you - EE78-84B0 - - - Guys with pipes do 2x damage - DBB0-EFA3+DBCF-8763 - - - Guys with pipes do no damage - DDB0-EFA3+DDCF-8763 - - - Guys with pipes kill - EEB0-EFA3+EECF-8763 - - - Flaming bottles do 2x damage - DB4B-7DF1+DB43-E4F9 - - - Flaming bottles do no damage - DD4B-7DF1+DD43-E4F9 - - - Flaming bottles kill - EE4B-7DF1+EE43-E4F9 - - - Start with 1/4 health - FDB0-E4DB - - - Start with 1/2 health - 4CB0-E4DB - - - Start with 3/4 health - 73B0-E4DB - - - Invincibility - 7E1F56:1F - - - Infinite health (alt) - 7E1F00:63 - - - - Spectre (USA) - - Infinite ammo - C2C8-D4DD - - - Infinite lives - E08F-D40D - - - Infinite health - E0C1-6707 - - - Infinite hyperspace - C2C0-DDDF - - - Freeze bonus timer - C232-ADA4 - - - Infinite custom shield - 7E1B42:0A - - - Infinite custom speed - 7E1B44:0A - - - Infinite custom ammo - 7E1B46:0A - - - - Speedy Gonzales - Los Gatos Bandidos (USA) (Rev 1) - - Infinite health - C2B4-CFAD - - - Infinite time - 3CA9-C76D - - - Infinite continues - C266-44A1 - - - Start with 99 lives - 176C-44DD - - - Invincibility after first hit - 7E099E:FF - - - Infinite health (alt) - 7E08CC:05 - - - Infinite lives - 7E0935:03 - - - Infinite time - 7E0934:00 - - - Have 5 hearts - 7E08CE:05 - - - Hyper Speedy Gonzalez - 7E0052:00 - - - Keep Speedy Shoes until end of stage on pick-up - 7E08B0:FF - - - Start on Sleepy Rock Part 1 - 7E0098:00 - - - Start on Ancient Keep Part 1 - 7E0098:02 - - - Start on Snowy Cabins Part 1 - 7E0098:04 - - - Start on Galactical Galazies Part 1 - 7E0098:06 - - - Start on Surely Wood Part 1 - 7E0098:08 - - - Start on Snowy Cabins Part 2 - 7E0098:0A - - - Start on Fiesta City Part 1 - 7E0098:0C - - - Start on Ye Olde Bounty Part 1 - 7E0098:0E - - - Start on Fiesta City Part 2 - 7E0098:10 - - - Start on Ancient Keep Part 2 - 7E0098:12 - - - Start on Ye Olde Bounty Part 2 - 7E0098:14 - - - Start on Ye Olde Bounty Part 3 - 7E0098:16 - - - Start on Surely Wood Part 2 - 7E0098:18 - - - Start on Sleepy Rock Part 2 - 7E0098:1A - - - Start on Surely Wood Part 3 - 7E0098:1C - - - Start on Surely Wood? Cat Boss - 7E0098:1E - - - Start on Ship Cat Boss - 7E0098:20 - - - Start on Galactical Galazies? Cat Boss - 7E0098:22 - - - Start on Galactical Galazies Part 2 - 7E0098:24 - - - Start on Ye Olde Bounty Part 5 - 7E0098:26 - - - - Speedy Gonzales - Los Gatos Bandidos (USA) - - Invincibility after first hit - 7E099E:FF - - - Infinite health - 7E08CC:05 - - - Infinite lives - 7E0935:03 - - - Infinite time - 7E0934:00 - - - Have 5 hearts - 7E08CE:05 - - - Hyper Speedy Gonzalez - 7E0052:00 - - - Keep Speedy Shoes until end of stage on pick-up - 7E08B0:FF - - - Start on Sleepy Rock Part 1 - 7E0098:00 - - - Start on Ancient Keep Part 1 - 7E0098:02 - - - Start on Snowy Cabins Part 1 - 7E0098:04 - - - Start on Galactical Galazies Part 1 - 7E0098:06 - - - Start on Surely Wood Part 1 - 7E0098:08 - - - Start on Snowy Cabins Part 2 - 7E0098:0A - - - Start on Fiesta City Part 1 - 7E0098:0C - - - Start on Ye Olde Bounty Part 1 - 7E0098:0E - - - Start on Fiesta City Part 2 - 7E0098:10 - - - Start on Ancient Keep Part 2 - 7E0098:12 - - - Start on Ye Olde Bounty Part 2 - 7E0098:14 - - - Start on Ye Olde Bounty Part 3 - 7E0098:16 - - - Start on Surely Wood Part 2 - 7E0098:18 - - - Start on Sleepy Rock Part 2 - 7E0098:1A - - - Start on Surely Wood Part 3 - 7E0098:1C - - - Start on Surely Wood? Cat Boss - 7E0098:1E - - - Start on Ship Cat Boss - 7E0098:20 - - - Start on Galactical Galazies? Cat Boss - 7E0098:22 - - - Start on Galactical Galazies Part 2 - 7E0098:24 - - - Start on Ye Olde Bounty Part 5 - 7E0098:26 - - - - SpellCraft - Aspects of Valor (USA) (Proto) - - Infinite health - 7E018D:99 - - - Quick enemy death - 7E0193:00 - - - Fast level up - 7E00FD:FF - - - Infinite Stones - 7E0296:09 - - - Infinite Jewels - 7E0298:09 - - - Infinite Candles - 7E029A:09 - - - Infinite Powders - 7E029C:09 - - - - Spider-Man (USA) - - Stay invincible after death - C2CF-C70D - - - Infinite health - C9BB-3DD8 - - - Infinite lives - C2B1-3468 - - - Infinite webbing - C3CA-1F6F+C2CC-44A7+C3CC-1FAF+C2CF-4707 - - - Gain webbing instead of losing it - 33CA-1F6F+33CC-44A7+33CC-1FAF+33CF-4707 - - - Hit anywhere - 6D39-4FA7+6D3D-4767+DD30-47A7+DD30-4F67 - - - Increase diagnol webbing with R button - 33CA-1F6F - - - Increase straight webbing with X button - 33CC-44A7 - - - - Spider-Man-Venom - Maximum Carnage (USA) - - Invincibility - C264-CFD0 - - - Infinite health - C2A1-1F01 - - - Infinite lives - C2BB-1D61 - - - Infinite hero icons on pick-up - 8220-47AB - - - Jump higher - 7D80-3F61 - - - Hit anywhere - DD62-3DA0 - - - One hit kills - 6DA6-4760 - - - Get health pick-up from anywhere - 6DA3-1768+77A3-17A8 - - - Super punch - DBA6-17F5 - - - Power hit lasts longer - D06A-4F09 - - - Start with 2x health - 1DCC-C460 - - - Start with 3x health - BDCC-C460 - - - Start with 1 life - DFC8-CDD0 - - - Start with 6 lives - D1C8-CDD0 - - - Start with 9 lives - DBC8-CDD0 - - - Start with 9 continues - DBC8-CF60 - - - Start with 6 continues - D1C8-CF60 - - - Infinite health (alt) - 7E0B7C:2C - - - Infinite lives (alt) - 7E0990:05 - - - Infinite accuracy - 7E1CCA:58 - - - Have 7 Black Cats with infinite usage - 7E0B18:07 - - - Have 7 Cloaks with infinite usage - 7E0B1A:07 - - - Have 7 Dagger with infinite usage - 7E0B1C:07 - - - Have 7 Morbius with infinite usage - 7E0B1E:07 - - - Have 7 Firestar with infinite usage - 7E0B20:07 - - - Have 7 Captain Americas with infinite usage - 7E0B22:07 - - - Have 7 Iron Fist with infinite usage - 7E0B24:07 - - - Have 7 Deathlok with infinite usage - 7E0B26:07 - - - Have 7 Venom With Sonic Gun with infinite usage - 7E0B28:07 - - - - Spider-Man-X-Men - Arcade's Revenge (USA) - - Invincibility after first hit (blinking) - Spider-Man - C261-A044 - - - Infinite health against most hits - Spider-Man - DDCB-6144 - - - Protects Spider-Man from ground hazard (looks like silver weeds) - C2CC-A917 - - - Infinite lives - Spider-Man - C266-D51D - - - Infinite lives - Gambit - C26D-090A - - - Infinite lives - Wolverine, Cyclops, Storm - C2C2-D767 - - - Spider-Man jumps higher (if you jump too high in some places you die) - CB69-0937+E669-0147 - - - Start with 1 life instead of 3 - DD68-646D - - - Start with 5 lives - D068-646D - - - Start with 7 lives - D168-646D - - - Start with 10 lives - DB68-646D - - - Start with 26 lives - FB68-646D - - - Start with 51 lives - 7468-646D - - - Start with 100 lives - 1768-646D - - - Invincibility - Spider-Man - 7E10F6:FF - - - Infinite health - Spider-Man - 7E10F8:FF - - - Infinite health - Wolverine, Cyclops, Storm - 7E0B29:64 - - - Infinite health - Gambit - 7E119E:96 - - - Infinite lives - Everyone - 7E0100:09 - - - Infinite multibolt - Storm - 7E14F2:01 - - - 99 stars - Gambit - 7E11AA:63 - - - Infinite cards - Gambit - 7E11A0:32 - - - Infinite joker wild cards - Gambit - 7E11A2:09 - - - Stop giant spiked wheel in first stage - Gambit - 7E11F9:FF - - - - Spindizzy Worlds (USA) - - Faster G.E.R.A.L.D. - D46F-6FDD - - - Slower timer - D0BD-64DF - - - More fuel lost from falling off landscape - 4D6C-DFD7 - - - Less fuel lost from falling off landscape - D96C-DFD7 - - - Almost zero fuel lost from falling off landscape - DD6C-DFD7 - - - Don't lose fuel from anything - 4AEC-DDA4 - - - - Spirou (Europe) (En,Fr,De,Es) - - Infinite lives - 7E064C:03 - - - - Star Fox (USA) - - Infinite Shield - 79DB-2286 - - - Infinite Shield (alt) - 46DB-2286 - - - Infinite Shield - Slippy - 0DFC-FA8C - - - Infinite Shield - Falco - 0DFC-FA5C - - - Infinite Shield - Peppy - 0DFC-FA7C - - - Infinite Bombs - D9FC-9EEB - - - Infinite lives - DBF3-BE8B - - - Have Double Blaster - F4F2-F38B+DFF2-F35B - - - Infinite Shield (alt 2) - 7E0396:35 - - - Infinite Bombs (alt) - 7E15AF:05 - - - Infinite lives (alt) - 7E16EE:0A - - - Have Double Blaster (alt) - 7E14DA:12 - - - Have Double Blaster B and infinite Shield - 7E14D9:03 - - - - Star Fox - Super Weekend (USA) - - Infinite Shield - 7E0396:28 - - - Infinite Bombs - 7E15AF:04 - - - Infinite time (minutes) - 7EF0DA:09 - - - Infinite time (seconds tens) - 7EF0DC:09 - - - Infinite time (seconds ones) - 7EF0DB:09 - - - Have Double Blaster - 7E14D9:01 - - - - Star Fox (USA) (Rev 2) - - Infinite Shield - 79DB-2286 - - - Infinite Shield (alt) - 46DB-2286 - - - Infinite Shield - Slippy - 0DFC-FA8C - - - Infinite Shield - Falco - 0DFC-FA5C - - - Infinite Shield - Peppy - 0DFC-FA7C - - - Infinite Shield (alt 2) - 7E0396:35 - - - - Star Ocean (Japan) - - No random battles - 6D5D-7F66 - - - Fight one battle for max level / EXP - DD1E-E4D5 - - - Fight one battle for max Fol - DD1F-E465 - - - View status screen for max strength, constitution, agility and stamina (These affect the base stat, making it savable. Stamina won't appear updated until you turn the codes off and re-enter that character's status screen) - DD48-54CF+9843-774D+1F47-5F3D+1243-5DCD+2C4A-5F3D - - - Infinite items when using item creation skills - 8E23-87C6 - - - - Star Trek - Deep Space Nine - Crossroads of Time (USA) - - Invincibility - 3C3E-0915+3C3E-09C5 - - - Invincibility after first hit - C23E-0935 - - - Infinite energy - C23C-6545 - - - Sisko looks like O'brien - D0BF-0D6F - - - Start with 1/4 energy - FDBF-0F04+FDBF-076F - - - Start with 1/2 energy - F2BF-0F04+F2BF-076F - - - Start with 3/4 energy - 45BF-0F04+45BF-076F - - - - Star Trek - The Next Generation - Future's Past (USA) - - Away Team - Medical packs aren't used up - DD81-47DB+DD88-4DDB - - - Away Team - Start each away mission with 1 medical pack - DF2A-1DD7 - - - Away Team - Start each away mission with 2 medical packs - D42A-1DD7 - - - Away Team - Start each away mission with 4 medical packs (only 3 shown) - D02A-1DD7 - - - Away Team - Start each away mission with 5 medical packs (only 3 shown) - D92A-1DD7 - - - Away Team - Phaser power doesn't go down - DDAF-446C - - - Away Team - Start away missions with phasers at 1/2 power - F62A-1467 - - - Away Team - Start away missions with phasers at 3/4 power - 402A-1467 - - - Away Team - Start away missions with phasers at 1/4 power - DA2A-1467 - - - Away Team - Medical packs heal more - 6D86-4FAB - - - Away Team - Medical packs heal twice as much - D486-44DB - - - Away Team - Medical packs heal completely - D786-44DB - - - Away Team - Crew members are immune to enemy fire - 8EA4-4FD6 - - - Space Combat - Forward torpedoes reload much faster - DFB2-1DF7 - - - Space Combat - Forward torpedoes reload faster - D4B2-1DF7 - - - Space Combat - Aft torpedoes reload much faster - DFB8-1FF7 - - - Space Combat - Aft torpedoes reload faster - D4B8-1FF7 - - - Space Combat - Forward torpedoes don't require recharging - C26C-3FFD - - - Space Combat - Aft torpedoes don't require recharging - C267-342D - - - Space Combat - Enemy shields regenerate at half speed - D6B4-1F27 - - - Space Combat - Enemy shields regenerate at 1/4 speed - D0B4-1F27 - - - Space Combat - Enemy shields don't regenerate - DDB4-1F27 - - - Space Combat - Enemy shields regenerate faster - F6B4-1F27 - - - Space Combat - Forward phasers never lose power - 3C6A-14FF - - - Space Combat - Forward phasers don't recharge - C2B3-4DB7 - - - Space Combat - Aft phasers never lose power - 3C69-17BF - - - Space Combat - Aft phasers don't recharge - C2BE-44F7 - - - Space Combat - Torpedoes do half damage - D764-1D24 - - - Space Combat - Torpedoes do less damage - D064-1D24 - - - Space Combat - Torpedoes do slightly more damage - D564-1D24 - - - Space Combat - Torpedoes do more damage - D664-1D24 - - - Space Combat - Torpedoes do much more damage - DB64-1D24 - - - Space Combat - Torpedoes do double damage - DA64-1D24 - - - - Steel Talons (USA) - - Infinite Rockets - 7E025C:09 - - - Infinite fuel and no damage - 7E0262:50 - - - Always finish mission in 10 seconds - 7E0258:0A - - - - Stone Protectors (USA) - - Invincibility (blinking) - CBB6-0F07+D9B6-0F67+B2B6-0FA7+4022-D764 - - - Don't lose health from special moves - 8281-0D67 - - - Infinite lives - P1 - C281-D467 - - - Infinite health - P1 - 7E13CC:B2 - - - - Street Fighter Alpha 2 (USA) - - Invincibility (except throws and Akuma's special moves) - 3CC6-5DDD+3DC6-5D0D+6DC6-5D6D+DBC6-5DAD+3D80-7F6D+DD80-7FAD+D580-74DD - - - Hit anywhere (except projectiles) - P1 - 3DC7-8D0D+6DC7-8D6D+BDC7-8FDD+DBC7-8DAD - - - - Street Fighter II (USA) - - Invincibility (except against throws) - P1 - 6D27-6704+DF27-6764+4039-670D - - - Win 1 bout to win the match instead of 2 out of 3 (disable before fighting M. Bison) - DF80-AD64 - - - Hit anywhere (except projectiles) - P1 - 3D29-A4A7+8D29-A767+DD29-A7D7+D329-A707 - - - Dizziness wears off very quickly - EDBE-0F09 - - - Dizziness lasts longer (on harder levels, won't work on computer) - C9BE-0DA9 - - - Championship mode on - 4DC6-6493 - - - Advance to next level when you continue (disable before you continue on M. Bison's stage) - 6DCF-D764+FFCF-D7A4 - - - High throw and grab damage - 3CA4-DD67+FEA4-DFD7 - - - Minimum throw and grab damage - 3CA4-DD67+EEA4-DFD7 - - - Die after 2 hits - both players - 503E-04DF - - - Round number does not advance (can't fight to a draw) - C2CC-A7DF - - - 1 draw ends fight in VS. battle - DF81-A704 - - - Most punches and kicks do no damage - 893E-04DF - - - Players move faster - 1C65-DF00 - - - Some special moves are faster - D965-DF00 - - - Can do special moves in the air - both players - DD61-6DA9 - - - Dragon punch does not go as high - 73A5-DF60 - - - Dragon punch goes higher - 2AA5-DF60 - - - Some special moves are easier to perform (E Honda's Sumo Head Butt, Blanka's Rolling Attack, Guile's Flash Kick and Sonic Boom, Chun Li's Whirlwind Kick) - DD84-DD01 - - - No pause after throwing a Fireball - DFA0-DDA0+ADA0-DFD0 - - - Players can hit each other no matter where they are - 6D25-A467+6F25-A4A7 - - - Do special moves by just pressing buttons (may make Fireballs lower) - DAB8-A761 - - - Fireballs are lower to the ground - DDB8-ADF3 - - - Fireballs are higher off the ground - 1DB8-ADF3 - - - Fireballs, Sonic Booms and Yoga Fires always go to the right (thrown to the left, they go backwards) - DDE3-DF01 - - - Light Fireballs, Sonic Booms and Yoga Fires are slower - EEB8-A793 - - - Light Fireballs, Sonic Booms and Yoga Fires are faster - EBB8-A793 - - - Light Fireballs, Sonic Booms and Yoga Fires are super fast - EDB8-A793 - - - Medium Fireballs, Sonic Booms and Yoga Fires are slower - EEB8-A723 - - - Medium Fireballs, Sonic Booms and Yoga Fires are faster - EBB8-A723 - - - Medium Fireballs, Sonic Booms and Yoga Fires are super fast - EDB8-A723 - - - Hard Fireballs, Sonic Booms and Yoga Fires are slower - EEBA-AD93 - - - Hard Fireballs, Sonic Booms and Yoga Fires are faster - EBBA-AD93 - - - Hard Fireballs, Sonic Booms and Yoga Fires are super fast - EDBA-AD93 - - - Light Sumo Head Butts and Rolling Attacks are slower - DDB1-D4F3+EEB1-D7B3 - - - Light Sumo Head Butts and Rolling Attacks are faster - DBB1-D4F3+EBB1-D7B3 - - - Light Sumo Head Butts and Rolling Attacks are super fast - F9B1-D4F3+EDB1-D7B3 - - - Medium Sumo Head Butts and Rolling Attacks are slower - DDB1-D4B3+EEB5-DDF3 - - - Medium Sumo Head Butts and Rolling Attacks are faster - DCB1-D4B3+E5B5-DDF3 - - - Medium Sumo Head Butts and Rolling Attacks are super fast - F1B1-D4B3+33B5-DDF3 - - - Hard Sumo Head Butts and Rolling Attacks are slower - DDB1-D7F3+EEB5-DDB3 - - - Hard Sumo Head Butts and Rolling Attacks are faster - D8B1-D7F3+E9B5-DDB3 - - - Hard Sumo Head Butts and Rolling Attacks are super fast - F5B1-D7F3+32B5-DDB3 - - - Most special moves disabled (computer can still do them, Zangief can still do Spinning Clothesline) - 6DA4-6707 - - - Invisible Fireballs, Sonic Booms, Yoga Fires and Yoga Flames - CB61-07A4 - - - No Fireballs, Sonic Booms or Yoga Fires, makes Yoga Flame invisible - 1868-0D6C - - - Always fight Ryu - CBA0-AF64+EEA0-AFA4 - - - Always fight Honda - CBA0-AF64+DDA0-AFA4 - - - Always fight Blanka - CBA0-AF64+DFA0-AFA4 - - - Always fight Guile - CBA0-AF64+D4A0-AFA4 - - - Always fight Ken - CBA0-AF64+D7A0-AFA4 - - - Always fight Chun-Li - CBA0-AF64+D0A0-AFA4 - - - Always fight Zangief - CBA0-AF64+D9A0-AFA4 - - - Always fight Dhalsim - CBA0-AF64+D1A0-AFA4 - - - Always fight Balrog - CBA0-AF64+DBA0-AFA4 - - - Always fight Vega - CBA0-AF64+DCA0-AFA4 - - - Always fight Sagat - CBA0-AF64+D6A0-AFA4 - - - Fight M. Bison - B9A0-AF04 - - - Always fight on bonus stage 1 - DDA4-A404+6DA4-A764 - - - Always fight on bonus stage 2 - DDA7-AF04+DDA7-A4A4 - - - 90 seconds per round instead of 99 - BD62-672A - - - 80 seconds per round - 6D62-672A - - - 70 seconds per round - 5D62-672A - - - 60 seconds per round - 1D62-672A - - - 50 seconds per round - 9D62-672A - - - 40 seconds per round - 0D62-672A - - - 30 seconds per round - 7D62-672A - - - 20 seconds per round - 4D62-672A - - - 10 seconds per round - FD62-672A - - - 99 seconds in 1st bonus round instead of 40 - BB63-6D2A - - - 90 seconds in 1st bonus round - BD63-6D2A - - - 80 seconds in 1st bonus round - 6D63-6D2A - - - 70 seconds in 1st bonus round - 5D63-6D2A - - - 60 seconds in 1st bonus round - 1D63-6D2A - - - 50 seconds in 1st bonus round - 9D63-6D2A - - - 30 seconds in 1st bonus round - 7D63-6D2A - - - 20 seconds in 1st bonus round - 4D63-6D2A - - - 10 seconds in 1st bonus round - FD63-6D2A - - - Start with no health - both players - DDAC-AFD4 - - - Start with no health - P1 - DDAC-AF64 - - - Start with 3/4 health (1/4 damage) - both players - 60AC-AFD4 - - - Start with 1/2 health (1/2 damage) - both players - 96AC-AFD4 - - - Start with 1/4 health (3/4 damage) - both players - 4AAC-AFD4 - - - - Street Fighter II Turbo (USA) - - Invincibility (except against throws) - P1 - 6D93-54DF+DF93-540F+CB99-5767+DD99-57A7+DB91-5DD7+4091-5D07+3C91-5DA7 - - - Infinite time - DD05-7F04 - - - Hit anywhere (except projectiles) - P1 - 3D98-8704+8D9A-8DD4+DD98-8764+D598-87A4 - - - Some special moves can be performed in the air (Don't perform Vega's wall leap) - DDF1-7D60 - - - Most attacks do no damage (throws still work) - 891F-84AD - - - Throws do no damage - C734-7405 - - - 1st throws do more damage (if you have enough health), others do less damage - F034-7405 - - - Players can walk through each other - DD3F-EFAD - - - 1st hit of any kind defeats opponent - DD18-570D - - - Winner of 2nd round wins the battle - DF04-5DAF - - - Enable 10 star turbo mode - ADFC-E40D+F9FC-E46D - - - No charging required for special moves (except Balrog's turn punch power) - D071-E460 - - - Hard special moves become light - DD75-8460 - - - Hard special moves become medium - D475-8461 - - - Hard special moves become disabled - D675-8462 - - - Invisible players - 8ED2-87A9 - - - Most special moves go nowhere - C933-7DA9 - - - Fireballs go nowhere - C9B8-77A5 - - - Hard Hurricane Kicks go faster and farther (to the right only) - D039-14AD - - - Ryu's hard Dragon Punch doesn't go as far - DF30-1DAD - - - Ryu's hard Dragon Punch goes farther - D630-1DAD - - - Ryu's medium Dragon Punch doesn't go as far - DF30-1D0D - - - Ryu's medium Dragon Punch goes farther - D630-1D0D - - - Ryu's light Dragon Punch goes farther - D637-17AD - - - Ryu jumps backward farther - D526-1DAF - - - Ryu jumps forward farther - E525-14AF - - - Ken jumps backward farther - D52D-CDAF - - - Ken jumps forward farther - E52E-14AF - - - Ken's hard Dragon Punch doesn't go as far - DF30-17AD - - - Ken's hard Dragon Punch goes farther - D330-17AD - - - Ken's medium Dragon Punch doesn't go as far - DF30-170D - - - Ken's medium Dragon Punch goes farther - D830-170D - - - Ken's light Dragon Punch goes farther - D630-14AD - - - Hard projectiles go faster (except tiger shots) - 3E31-37AD - - - Hard projectiles go slower (except tiger shots) - EE31-37AD - - - Medium projectiles go faster (except tiger shots) - 3E31-370D - - - Medium projectiles go slower (except tiger shots) - EE31-370D - - - Light projectiles go faster (except tiger shots) - 3E31-34AD - - - Light projectiles go slower (except tiger shots) - EE31-34AD - - - Edmond Honda's hard Sumo Head Butts are faster - DE35-1FAD - - - Edmond Honda's hard Sumo Head Butts are slower - DF35-1FAD - - - Edmond Honda's medium Sumo Head Butts are faster - DE35-1F0D - - - Edmond Honda's medium Sumo Head Butts are slower - DF35-1F0D - - - Edmond Honda's light Sumo Head Butts are faster - DE35-1DAD - - - Edmond Honda's light Sumo Head Butts are slower - DF35-1DAD - - - Edmond Honda's hard Sumo Smashes are faster - F436-1DDD - - - Edmond Honda's medium Sumo Smashes are faster - F435-176D - - - Edmond Honda's light Sumo Smashes are faster - F435-17DD - - - Sagat's hard Tiger Uppercut goes farther - D63B-C70D - - - Sagat's medium Tiger Uppercut goes farther - D63B-C4AD - - - Sagat's light Tiger Uppercut goes farther - D63B-C40D - - - Sagat's high Tiger Shots are disabled (you can still do the move but no projectile comes out) - D439-340D - - - Sagat's hard Tiger Knee goes farther - D838-CF0D - - - Sagat's medium Tiger Knee goes farther - D83C-C70D - - - Sagat's light Tiger Knee goes farther - D83C-CF0D - - - M. Bison's hard Psycho Crusher goes slower - DF39-C40D - - - M. Bison's hard Psycho Crusher goes faster - DC39-C40D - - - M. Bison's medium Psycho Crusher goes slower - DF39-CFAD - - - M. Bison's medium Psycho Crusher goes faster - DC39-CFAD - - - M. Bison's light Psycho Crusher goes slower - DF39-CF0D - - - M. Bison's light Psycho Crusher goes faster - DC39-CF0D - - - M. Bison's hard Scissor Kick goes slower (not in normal mode) - DF31-CD6D - - - M. Bison's hard Scissor Kick goes faster (not in normal mode) - DC31-CD6D - - - M. Bison's medium Scissor Kick goes slower (not in normal mode) - DF31-CDDD - - - M. Bison's medium Scissor Kick goes faster (not in normal mode) - DC31-CDDD - - - M. Bison's light Scissor Kick goes slower (not in normal mode) - DF39-C76D - - - M. Bison's light Scissor Kick goes faster (not in normal mode) - DC39-C76D - - - Balrog's first Dash Punch goes slower - DF69-7DD1 - - - Balrog's first Dash Punch goes faster - D869-7DD1 - - - Balrog's first Turn Punch goes slower (and a little backward) - D432-CF0D - - - Balrog's first Turn Punch goes faster - DC32-CF0D - - - Chun Li's hard Whirlwind Kick goes farther - DC38-1F6D - - - Chun Li's medium Whirlwind Kick doesn't go as far - DF38-1FDD - - - Chun Li's medium Whirlwind Kick goes farther - DC38-1FDD - - - Chun Li's light Whirlwind Kick doesn't go as far - DF38-1D6D - - - Chun Li's light Whirlwind Kick goes farther - DC38-1D6D - - - Blanka's hard Rolling Attack goes slower - DF3B-14DD - - - Blanka's hard Rolling Attack goes faster - DC3B-14DD - - - Blanka's medium Rolling Attack goes slower - DF3B-1F6D - - - Blanka's medium Rolling Attack goes faster - DC3B-1F6D - - - Blanka's light Rolling Attack goes slower - DF3B-1FDD - - - Blanka's light Rolling Attack goes faster - DC3B-1FDD - - - Blanka's hard Vertical Rolling Attack doesn't go as far - DF3C-1D0D - - - Blanka's hard Vertical Rolling Attack goes out farther - DA3C-1D0D - - - Blanka's medium Vertical Rolling Attack doesn't go as far - DF3B-17AD - - - Blanka's medium Vertical Rolling Attack goes out farther - DA3B-17AD - - - Blanka's light Vertical Rolling Attack doesn't go as far - DF3B-170D - - - Blanka's light Vertical Rolling Attack goes out farther - DA3B-170D - - - Start with 90 seconds - BDA3-176D - - - Start with 70 seconds - 5DA3-176D - - - Start with 50 seconds - 9DA3-176D - - - Start with 30 seconds - 7DA3-176D - - - Start with 10 seconds - FDA3-176D - - - Start with 3/4 health - 6091-E76D - - - Start with 1/2 health - 9691-E76D - - - Start with 1/4 health - 4A91-E76D - - - 1st bonus round is 99 seconds - BBAE-1DDD - - - 1st bonus round is 80 seconds - 6DAE-1DDD - - - 1st bonus round is 60 seconds - 1DAE-1DDD - - - 1st bonus round is 20 seconds - 4DAE-1DDD - - - 2nd bonus round is 99 seconds - BBAE-1D6D - - - 2nd bonus round is 80 seconds - 6DAE-1D6D - - - 2nd bonus round is 60 seconds - 1DAE-1D6D - - - 2nd bonus round is 20 seconds - 4DAE-1D6D - - - Infinite health - P1 - 7E0530:63 - - - No health (disable during match) - P2 - 7E0730:00 - - - Infinite time (alt) - 7E18F3:99 - - - Select same character - both players - 7E1848:20 - - - Enable 10 star turbo mode (alt) - 7E1C87:32 - - - Dizzy from every knockdown - P1 - 7E05B3:01 - - - Dizzy from every knockdown - P2 - 7E07B3:01 - - - - Strike Gunner S.T.G (USA) - - Infinite lives - P1 - C2B4-076F - - - Infinite lives - P2 - C2B8-046F - - - Infinite continues - C262-D9E6 - - - Infinite special weapon energy - P1 - C2EA-D46D - - - Infinite special weapon energy - P2 - C2E4-0DAD - - - Hit anywhere - main weapon - 4021-D46F+4021-D7AF+403E-A4AF+6D33-A4DF+6D33-ADDF - - - Start on stage 2 - CB69-D40D+DF69-D46D+3C69-D4AD - - - Start on stage 3 - CB69-D40D+D469-D46D+3C69-D4AD - - - Start on stage 4 - CB69-D40D+D769-D46D+3C69-D4AD - - - Start on stage 5 - CB69-D40D+D069-D46D+3C69-D4AD - - - Start on stage 6 - CB69-D40D+D969-D46D+3C69-D4AD - - - Invincibility after first life - P1 - 7E024E:05 - - - Invincibility after first life - P2 - 7E024F:05 - - - - Stunt Race FX (USA) (Rev 1) - - Always first - 182E-07FE - - - Choose any car - 2DAE-AD42 - - - Infinite lives - 7E0DF8:09 - - - Infinite boost - P1 - 7E0E05:48+7E0E06:48 - - - Infinte time - minutes - 7E0E66:00 - - - Infinite time - seconds - 7E0E64:00 - - - Infinite time extended - 7E19EE:99 - - - Have all stars collected - 7E19EC:64 - - - Remove car body - 7E2005:5C - - - - Sunset Riders (USA) - - Invincibility - 3366-CD69 - - - Infinite lives - 8232-3D0F - - - - Super Adventure Island (USA) - - Infinite lives - C2B3-D46D - - - Infinite credits - C2CD-0F0D - - - Fruit restores full time - CBBE-DF94+FDBE-DFB4 - - - Super-jump (don't use the game's super-jump feature) - 798C-DF0D - - - Mega-jump (don't use the game's super-jump feature) - 408C-DF0D - - - Hit anywhere - 2D83-64A2+6D83-6462+C983-6402+DD21-0D0D+F383-67D2 - - - Multi-jump - 4D8C-640D+E28C-646D+C2E4-0DD7+E6E4-0D07+D8E4-0D67+06E4-0DA7+DCE4-0FD7+FDE4-0F07+D9E4-0F67+CBE4-0FA7+DDE4-04D7+ECE4-0407+B9E4-0467+FCE4-04A7+16E4-07D7+1DE4-0707+4D8C-64DD - - - Don't lose all weapon power when you die (may give you unusual weapons) - 79C0-A7DD+79C6-A4DD - - - Start with 1 life instead of 3 - DD6A-646F - - - Start with 5 lives - D06A-646F - - - Start with 10 lives - DB6A-646F - - - Start with 15 lives - D36A-646F - - - Start with 25 lives - F66A-646F - - - Start with 50 lives - 7F6A-646F - - - Start with 99 lives - 146A-646F - - - Start with 1 credit - DD6A-67AF - - - Start with 6 credits - D96A-67AF - - - Start in area 1, stage 2 - D766-0FD7 - - - Start in area 1 bonus round - D966-0FD7 - - - Start in area 1, stage 3 - D566-0FD7 - - - Start in area 2, stage 1 - DC66-0FD7 - - - Start in area 2, stage 2 - DA66-0FD7 - - - Start in area 2 bonus round - D366-0FD7 - - - Start in area 2, stage 3 - FF66-0FD7 - - - Start in area 3, stage 1 - F066-0FD7 - - - Start in area 3, stage 2 - F666-0FD7 - - - Start in area 3, stage 3 - FC66-0FD7 - - - Start in area 4, stage 1 - F266-0FD7 - - - Start in area 4, stage 2 - FE66-0FD7 - - - Start in area 4 bonus round - 4D66-0FD7 - - - Start in area 4, stage 3 - 4066-0FD7 - - - Start in area 5, stage 1 - 4566-0FD7 - - - Start in area 5, stage 2 - 4B66-0FD7 - - - Start in area 5, stage 3 - 4866-0FD7 - - - Start in area 5, bonus round - 4266-0FD7 - - - Invincibility and Infinite time - 7E0D6B:FF - - - Invincibility and always have Skateboard (disable at end of level) - 7E0D6F:01 - - - Infinite time (disable at end of level) - 7E0D6C:11 - - - Infinite lives (alt) - 7E030D:03 - - - Have Boomerang after obtaining any weapon icon - 7E0D75:01 - - - Have Fireball after obtaining any weapon icon - 7E0D75:02 - - - Have Boomerang Fireball after obtaining any weapon icon - 7E0D75:03 - - - Have Hammer after obtaining any weapon icon - 7E0D75:04 - - - Start on last boss - 008D84:30 - - - - Super Adventure Island II (USA) - - Infinite health - C29B-EF0F - - - Almost invincible after one hit - C2D6-8FAB - - - Stacks of cash - CB45-ED6D - - - Small potions don't restore health - C2B4-7D8E - - - Fall slowly - DFF1-770B - - - Don't fall at all (disable to touch the ground again) - DDF1-770B - - - Have no Weapon - 7E044D:01 - - - Have Silver Sword - 7E044E:01 - - - Have Fire Sword - 7E044F:01 - - - Have Ice Sword - 7E0450:01 - - - Have Thunder Sword - 7E0451:01 - - - Have Crystal Sword - 7E0452:01 - - - Have Power Sword - 7E0453:01 - - - Have Light Sword - 7E0454:01 - - - Have Dagger - 7E0455:01 - - - Have Fireballs - 7E0456:01 - - - Have Boomerang - 7E0457:01 - - - Have Ax - 7E0458:01 - - - Have Shovel - 7E0459:01 - - - Have no Armor - 7E045A:01 - - - Have Fire Armor - 7E045B:01 - - - Have Ice Armor - 7E045C:01 - - - Have Aqua Armor - 7E045D:01 - - - Have Light Armor - 7E045E:01 - - - Have no Shield - 7E045F:01 - - - Have Fire Shield - 7E0460:01 - - - Have Ice Shield - 7E0461:01 - - - Have Aqua Shield - 7E0462:01 - - - Have Light Shield - 7E0463:01 - - - Have no Equipment - 7E0465:01 - - - Have Magic Wand - 7E0464:01 - - - Have Ice Bell - 7E0466:01 - - - Have Sun Ring - 7E0467:01 - - - Have Power Fan - 7E0468:01 - - - Have Elven Flute - 7E0469:01 - - - Have Sky Bell - 7E046A:01 - - - Have Light Stone - 7E046B:01 - - - Have Sun Stone - 7E046C:01 - - - Have Star Stone - 7E046D:01 - - - Have Aqua Stone - 7E046E:01 - - - Have Moon Stone - 7E046F:01 - - - Have Thunder Spell - 7E0470:01 - - - Have Star Spell - 7E0471:01 - - - Have Sun Spell - 7E0472:01 - - - Have Aqua Spell - 7E0473:01 - - - Have Moon Spell - 7E0474:01 - - - Have Shove - 7E047D:01 - - - Have Up Jab - 7E047E:01 - - - Have Down Jab - 7E047F:01 - - - Light Gate down - 7E0131:01 - - - Sun Gate down - 7E0132:01 - - - Star Gate down - 7E0133:01 - - - Aqua Gate down - 7E0134:01 - - - Moon Gate down - 7E0135:01 - - - - Super Alfred Chicken (USA) - - Infinite time - C2C4-4DA5 - - - Infinite lives - C2BC-3FD5 - - - Infinite lives (alt) - 7E0012:04 - - - Infinite time (alt) - 7E0017:09 - - - Infinite balloons - C2C3-4D09 - - - - Super Back to the Future Part II (Japan) - - Invincibility - 7E1401:FF - - - Infinite health - 7E009A:03 - - - - Super Baseball Simulator 1.000 (USA) - - Infinite added points - DDCD-646C - - - Fewer "HR" points to distribute - standard game - 783E-DF6C - - - Fewer "R" points to distribute - standard game - 9D3E-D4DC - - - Fewer "F" points to distribute - standard game - F03E-D46C - - - More "AV" points to distribute - moderate game - DB3F-070C - - - More "HR" points to distribute - moderate game - DF3F-07AC+BD3F-076C - - - More "R" points to distribute - moderate game - 1634-0DDC+DF34-0D0C - - - More "F" points to distribute - moderate game - 1034-0D6C - - - - Super Bases Loaded (USA) - - Game lasts 1 inning - DDA1-A46D+DFA0-A76D+DFE0-6F6D - - - Game lasts 2 innings - D4A1-A46D+D7A0-A76D+D7E0-6F6D - - - Game lasts 3 innings - D0A1-A46D+D9A0-A76D+D9E0-6F6D - - - Game lasts 5 innings - D6A1-A46D+DBA0-A76D+DBE0-6F6D - - - Game lasts 7 innings - DAA1-A46D+D2A0-A76D+D2E0-6F6D - - - 1 strike and batter is out - DFAF-6F67+DDA2-07D7 - - - 2 strikes and batter is out - D4AF-6F67+DFA2-07D7 - - - 4 strikes and batter is out - D0AF-6F67+D7A2-07D7 - - - 5 strikes and batter is out - D9AF-6F67+D0A2-07D7 - - - 7 strikes and batter is out - D5AF-6F67+D1A2-07D7 - - - 9 strikes and batter is out - DBAF-6F67+D6A2-07D7 - - - Batter never strikes out - C2E8-DF0D - - - Batter walks on 1 ball - DFA5-6F07+DDA7-6767 - - - Batter walks on 2 balls - D4A5-6F07+DFA7-6767 - - - Batter walks on 3 balls - D7A5-6F07+D4A7-6767 - - - Batter walks on 5 balls - D9A5-6F07+D0A7-6767 - - - Batter walks on 6 balls - D1A5-6F07+D9A7-6767 - - - Batter walks on 9 balls - DBA5-6F07+D6A7-6767 - - - Batter never walks - C2EA-D40D - - - 1 out per inning - DDE7-07AD - - - 2 outs per inning - DFE7-07AD - - - 4 outs per inning - D7E7-07AD - - - 5 outs per inning - D0E7-07AD - - - 7 outs per inning - D1E7-07AD - - - 9 outs per inning - D6E7-07AD - - - - Super Bases Loaded 3 - License to Steal (USA) - - No strikes - C26E-4D01 - - - One strike to strike out - DF6E-44D1 - - - Ten strikes to strike out - DC6E-44D1 - - - Infinite strikes gives P1 a homerun - 556E-4D61 - - - Infinite strikes gives opponent a homerun - 566E-4D61 - - - Walk on one ball - DF6F-C461 - - - Walk on ten balls - DC6F-C461 - - - Infinite balls gives P1 a homerun - 556F-CFD1 - - - Infinite balls gives opponent a homerun - 566F-CFD1 - - - - Super Batter Up (USA) - - Batter never walks - C2B2-0D6A - - - Batter never strikes out - C2BD-64DA - - - 1 ball per walk - DFB2-040A - - - 2 balls per walk - D4B2-040A - - - 3 balls per walk - D7B2-040A - - - 5 balls per walk - D9B2-040A - - - 6 balls per walk - D1B2-040A - - - 7 balls per walk - D5B2-040A - - - 1 strike per out - DFBD-67AA - - - 2 strikes per out - D4BD-67AA - - - 4 strikes per out - D0BD-67AA - - - 5 strikes per out - D9BD-67AA - - - - Super Battletank - War in the Gulf (USA) (Rev 1) - - Infinite health against most enemies and mines - C9AC-0D67 - - - Infinite weapon ammo (except Smoke Screens and Machine Gun) - 4ABD-DDA4 - - - More Machine Gun ammo on stages 1-4 - EE2E-D4D4 - - - Less Machine Gun ammo on stages 1-4 - 482E-D4D4 - - - More Cannon ammo on each mission - 1022-D7D4 - - - Less Cannon ammo on each mission - FB22-D7D4 - - - More Laser Shells on each mission - D923-DF04 - - - No Laser Shells on each mission - DD23-DF04 - - - More Smoke Screens on each mission - D923-D7A4 - - - No Smoke Screens on each mission - DD23-D7A4 - - - Infinite health against most enemies and mines (alt) - 00CDA2:A5 - - - Infinite Fuel - 7E05C4:FF - - - Infinite 120mm Cannon - 7E049E:42 - - - Infinite Laser Missiles - 7E04A0:01 - - - Infinite Smoke Screens - 7E04A1:01 - - - Infinite 7.62mm Machine Gun - 7E04A2:96 - - - - Super Battletank - War in the Gulf (USA) - - Infinite health against most enemies and mines - C9AC-0D67 - - - Infinite weapon ammo (except Smoke Screens and Machine Gun) - 4ABD-DDA4 - - - More Machine Gun ammo on stages 1-4 - EE2E-D4D4 - - - Less Machine Gun ammo on stages 1-4 - 482E-D4D4 - - - More Cannon ammo on each mission - 1022-D7D4 - - - Less Cannon ammo on each mission - FB22-D7D4 - - - More Laser Shells on each mission - D923-DF04 - - - No Laser Shells on each mission - DD23-DF04 - - - More Smoke Screens on each mission - D923-D7A4 - - - No Smoke Screens on each mission - DD23-D7A4 - - - Infinite health against most enemies and mines (alt) - 00CDA2:A5 - - - Infinite Fuel - 7E05C4:FF - - - Infinite 120mm Cannon - 7E049E:42 - - - Infinite Laser Missiles - 7E04A0:01 - - - Infinite Smoke Screens - 7E04A1:01 - - - Infinite 7.62mm Machine Gun - 7E04A2:96 - - - - Super Battletank 2 (USA) - - Infinite hits - 7E00AD:00 - - - Infinite health in 3rd person mode - 7E0A2A:00 - - - Infinite 120mm bullets - 7E10E3:09 - - - Infinite 120mm bullets in 3rd person mmode - 7E0A10:09 - - - Infinite 7.62mm bullets - 7E10E7:09 - - - Infinite 7.62mm bullets in 3rd person mode - 7E0A0E:09 - - - Infinite Phalanx - 7E10E8:09 - - - Infinite Scope - 7E10E9:09 - - - Infinite Smoke - 7E10E6:09 - - - Infinite LGM - 7E10E5:09 - - - Infinite Patriot - 7E10E4:09 - - - - Super Bomberman (USA) - - Invincibility (normal game) - 89FC-77FF - - - Infinite lives (normal game) - 89FE-57B4 - - - Invincibility - P1 - 7E0D79:80 - - - Invincibility - P2 - 7E0DB9:80 - - - Invincibility - P3 - 7E0DF9:80 - - - Invincibility - P4 - 7E0E39:80 - - - Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P1 - 7E0D79:E3 - - - Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P2 - 7E0DB9:E3 - - - Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P3 - 7E0DF9:E3 - - - Invincibility, Kick Bomb, Punch Glove, Bomb Walk, Brick Walk - P4 - 7E0E39:E3 - - - Infinite time - 7E0D3B:FF - - - Infinite lives - P1 - 7E0D7D:09 - - - Infinite lives - P2 - 7E0DBD:09 - - - Hit anywhere - 0DDD-7728+11DD-7428+C2DD-74B8+D2DD-77F8 - - - Remove all blocks - DFFC-849C - - - Max bomb power - P1 - 7E0D71:09 - - - Max bomb power - P2 - 7E0DB1:09 - - - Max bomb power - P3 - 7E0DF1:09 - - - Max bomb power - P4 - 7E0E31:09 - - - Max bomb quantity - P1 - 7E0D70:09 - - - Max bomb quantity - P2 - 7E0DB0:09 - - - Max bomb quantity - P3 - 7E0DF0:09 - - - Max bomb quantity - P4 - 7E0E30:09 - - - Max speed - P1 - 7E0D72:09 - - - Max speed - P2 - 7E0DB2:09 - - - Max speed - P3 - 7E0DF2:09 - - - Max speed - P4 - 7E0E32:09 - - - Have Detonator - P1 - 7E0D73:09 - - - Have Detonator - P2 - 7E0DB3:09 - - - Have Detonator - P3 - 7E0DF3:09 - - - Have Detonator - P4 - 7E0E33:09 - - - Have red bombs - P1 - 7E0D78:09 - - - Have red bombs - P2 - 7E0DB8:09 - - - Have red bombs - P3 - 7E0DF8:09 - - - Have red bombs - P4 - 7E0E38:09 - - - Have 9,000,000 points - P1 - 7E0D5B:09 - - - Have 9,000,000 points - P2 - 7E0D9B:09 - - - - Super Bomberman 2 (USA) - - Invincibility - P1 - 7E80EF:01 - - - Invincibility - P2 - 7E81EF:01 - - - Invincibility - P3 - 7E82EF:01 - - - Invincibility - P4 - 7E83EF:01 - - - Infinite time - 7E5E12:3B - - - Infinite lives - 7E1C6C:09 - - - Hit anywhere - 0D92-7FD0+2D92-7F60+4B92-7DA0+A092-7DD0+C99A-77A0 - - - Walk through chests - B58E-EFDD - - - Move fast - 7E80F0:02 - - - Move faster - 7E80F0:03 - - - Move fastest - 7E80F0:04 - - - Max bomb power - P1 - 7E80F2:09 - - - Max bomb power - P2 - 7E81F2:09 - - - Max bomb power - P3 - 7E82F2:09 - - - Max bomb power - P4 - 7E83F2:09 - - - Max bomb quantity - P1 - 7E80F1:09 - - - Max bomb quantity - P2 - 7E81F1:09 - - - Max bomb quantity - P3 - 7E82F1:09 - - - Max bomb quantity - P4 - 7E83F1:09 - - - Max speed - P1 - 7E80F0:06 - - - Max speed - P2 - 7E81F0:06 - - - Max speed - P3 - 7E82F0:06 - - - Max speed - P4 - 7E83F0:06 - - - Have Detonator - P1 - 7E80F3:01 - - - Have Detonator - P2 - 7E81F3:01 - - - Have Detonator - P3 - 7E82F3:01 - - - Have Detonator - P4 - 7E83F3:01 - - - Have Power Bombs - P1 - 7E80F3:02 - - - Have Power Bombs - P2 - 7E81F3:02 - - - Have Power Bombs - P3 - 7E82F3:02 - - - Have Power Bombs - P4 - 7E83F3:02 - - - Have Super Bombs - P1 - 7E80F3:04 - - - Have Super Bombs - P2 - 7E81F3:04 - - - Have Super Bombs - P3 - 7E82F3:04 - - - Have Super Bombs - P4 - 7E83F3:04 - - - Have Gel Bombs - P1 - 7E80F3:08 - - - Have Gel Bombs - P2 - 7E81F3:08 - - - Have Gel Bombs - P3 - 7E82F3:08 - - - Have Gel Bombs - P4 - 7E83F3:08 - - - Have Punch Glove - P1 - 7E80FE:01 - - - Have Punch Glove - P2 - 7E81FE:01 - - - Have Punch Glove - P3 - 7E82FE:01 - - - Have Punch Glove - P4 - 7E83FE:01 - - - Have Kick Bomb - P1 - 7E80FF:01 - - - Have Kick Bomb - P2 - 7E81FF:01 - - - Have Kick Bomb - P3 - 7E82FF:01 - - - Have Kick Bomb - P4 - 7E83FF:01 - - - Have Bomb Walk - P1 - 7E80FA:01 - - - Have Bomb Walk - P2 - 7E81FA:01 - - - Have Bomb Walk - P3 - 7E82FA:01 - - - Have Bomb Walk - P4 - 7E83FA:01 - - - Have Brick Walk - P1 - 7E80FB:01 - - - Have Brick Walk - P2 - 7E81FB:01 - - - Have Brick Walk - P3 - 7E82FB:01 - - - Have Brick Walk - P4 - 7E83FB:01 - - - Have Poison Status - P1 - 7E80F5:01 - - - Have Poison Status - P2 - 7E81F5:01 - - - Have Poison Status - P3 - 7E82F5:01 - - - Have Poison Status - P4 - 7E83F5:01 - - - Have 4,000,000 points - P1 - 7E5DEF:A7 - - - Have 9,000,000 points - P2 - 7E0D9B:09 - - - Jump ability in battle-mode - all players - 7E1C00:02+EFFF04:32 - - - - Super Bonk (USA) - - Invincibility - 1DAC-37A6+6DB5-34D0+6DB9-3DA0 - - - Infinite lives - C2E4-47AC - - - Infinite max life - 7E101C:1E - - - Max life - 7E101D:1E - - - Always have 99 lives - 7E101E:63 - - - Always have 99 Smileys - 7E1022:63 - - - Press up to fly on any level - CB31-4F08+3C31-4FA8 - - - Hit anywhere - 6DB3-1760+DDC6-141F - - - - Super Bowling (USA) - - No spin on ball - 4ACA-0464 - - - Faster spin meter - D1C5-DDAD - - - Slower spin meter - D4C5-DDAD - - - Really slow spin meter - DFC5-DDAD - - - Faster power meter - D1C5-D4DD - - - Slower power meter - D4C5-D4DD - - - Really slow power meter - DFC5-D4DD - - - - Super Buster Bros. (USA) (Rev 1) - - Extra credit after 2 food items instead of 10 - D42B-A7D0 - - - Extra credit after 4 food items - D02B-A7D0 - - - Extra credit after 6 food items - D12B-A7D0 - - - Extra credit after 8 food items - D62B-A7D0 - - - Food items never earn extra credit - 3C2B-A460 - - - Invincibility - 7E0100:05 - - - Shield always on - 7E0134:02 - - - Normal shot - 7E0131:00 - - - Double shot - 7E0131:02 - - - Grappling shot - 7E0131:04 - - - Gun shot - 7E0131:06 - - - - Super Buster Bros. (USA) - - Infinite lives - DDB2-07A4 - - - Infinite credits - C9B9-6D04 - - - Clock runs faster - FB83-0D64 - - - Clock runs slower - 1083-0D64 - - - Clock runs much slower - A683-0D64 - - - Clock is frozen (no time limit) - DD83-0704 - - - Food items never earn extra credit - 3C2B-A460 - - - Double harpoon pick-up gives you machine gun - D184-ADA8 - - - Retain weapon after dying or advancing thru stages - C96E-6FD6 - - - Panic mode has 2 levels instead of 99 - D780-DDD4+D781-DF04 - - - Panic mode has 5 levels - D180-DDD4+D181-DF04 - - - Panic mode has 10 levels - D880-DDD4+D881-DF04 - - - Panic mode has 20 levels - F980-DDD4+F981-DF04 - - - Extra credit after 2 food items instead of 10 - D42B-A7D0 - - - Extra credit after 4 food items - D02B-A7D0 - - - Extra credit after 6 food items - D12B-A7D0 - - - Extra credit after 8 food items - D62B-A7D0 - - - 1 credit - DD61-0D0A - - - 2 credits - DF61-0D0A - - - 3 credits - D461-0D0A - - - 4 credits - D761-0D0A - - - 6 credits - D961-0D0A - - - 8 credits - D561-0D0A - - - No credits - EE61-0D0A - - - Start with 2 lives - DF61-0DDA - - - Start with 3 lives - D461-0DDA - - - Start with 5 lives - D061-0DDA - - - Start with 6 lives - D961-0DDA - - - Start with 8 lives - D561-0DDA - - - Start with 10 lives - DB61-0DDA - - - Start with 1 life - DD61-0DDA - - - Invincibility - 7E0100:05 - - - Shield always on - 7E0134:02 - - - Normal shot - 7E0131:00 - - - Double shot - 7E0131:02 - - - Grappling shot - 7E0131:04 - - - Gun shot - 7E0131:06 - - - - Super Caesars Palace (USA) - - Infinite 999 gold chips - 7E188E:E7+7E188F:03 - - - Access all high roller areas - 7E0C30:0F - - - - Super Castlevania IV (USA) - - Invincibility - 2D2B-6764+2DCD-D764 - - - Invincibility (blinking) - 608E-D7FB+C92C-6DD4 - - - Infinite health - C22F-07D7 - - - Infinite health against most enemies - D22F-07D7 - - - Infinite lives (disable to get password) - DD6C-DD66 - - - Infinite time - 6D6D-DF06 - - - Infinite lives - C96C-DFD6 - - - Infinite shots for most weapons - A689-0FD7 - - - Hit anywhere (cannot use whip to grab onto things, press Y to moon jump instead) - B428-AFA4+C728-A4D4+DD2C-A764+6D20-A7A4+6D21-AF64 - - - Fully powered whip with first power-up - DD24-AFD7 - - - Increase heart capacity 2.5 times - EE2B-6DA7+FC25-64D7+EE26-6767 - - - Max hearts on pick-up - DD2B-6D07 - - - Double Shot gives you a Triple Shot - EE2B-A767 - - - Slower timer - 5E6D-DDA6 - - - Faster timer - FE6D-DDA6 - - - Super-jump - FDC5-04D4 - - - Mega-jump - 4DC5-04D4 - - - Multi-jump - C72B-6FA4+DD2B-64D4+3C2B-6404+186D-DDD6+C28A-A46F+18CF-6D0D+462B-6D04+DC2B-6D64+BD2B-6DA4+D02B-6FD4+442B-6F04+B42B-6F64 - - - Start with and always keep Dagger - CBAA-6DAF+DFAA-6FDF+69AA-6F6F - - - Start with and always keep Axe - CBAA-6DAF+D4AA-6FDF+69AA-6F6F - - - Start with and always keep Holy Water - CBAA-6DAF+D7AA-6FDF+69AA-6F6F - - - Start with and always keep Boomerang - CBAA-6DAF+D0AA-6FDF+69AA-6F6F - - - Start with and always keep Stopwatch - CBAA-6DAF+D9AA-6FDF+69AA-6F6F - - - Start with 99 hearts - first life only - BBB3-D40F - - - Start with 50 hearts - first life only - 9DB3-D40F - - - Start with 10 lives - first game only - FDB2-D4AF - - - Start with 1 life - first game only - DFB2-D4AF - - - Invincibility (blinking) (alt) - 7E00BC:0A - - - Infinite health (alt) - 7E13F4:10 - - - Infinite time (alt) - 7E13F0:99 - - - Infinite hearts - 7E13F2:99 - - - Have best whip - 7E0092:02 - - - Have Dagger - 7E008E:01 - - - Have Axe - 7E008E:02 - - - Have Cross - 7E008E:04 - - - Have Dagger - 7E008E:01 - - - Have Holy Water - 7E008E:03 - - - Have Stopwatch - 7E008E:05 - - - Have Triple Shot - 7E0090:02 - - - Start on second playthrough difficulty level - 7E0088:01 - - - - Super Chase H.Q. (USA) - - Infinite health - 7E127C:FF - - - Infinite nitro - 7E1267:03 - - - Infinite time - 7E127B:89 - - - - Super Donkey Kong 2 - Dixie & Diddy (Japan) - - Invincibility - 4022-431D - - - - Super Double Dragon (USA) - - Invincibility - both players - 1D6F-0766 - - - Invincibility - P1 - C267-0DD6 - - - Infinite lives - P1 - C286-6F05 - - - Infinite lives - P1 (alt) - 4A86-6F05 - - - Dragon power increases faster - DDB3-A7F1 - - - Prolonged maximum dragon power - D7B2-A7B5 - - - 1 extra credit - 2P game A - DF8C-070B - - - 9 lives - 1P game - DB86-070B - - - 6 lives - 1P game - D186-070B - - - 1 life - 1P game - DF86-070B - - - 9 lives - 2P game A - DB88-0D6B - - - 6 lives - 2P game A - D188-0D6B - - - 1 life - 2P game A - DF88-0D6B - - - Start on Mission 2 (enable on Mode Seclect screen, then disable) - 7E001C:14 - - - Start on Mission 3 (enable on Mode Seclect screen, then disable) - 7E001C:17 - - - Start on Mission 4 (enable on Mode Seclect screen, then disable) - 7E001C:1C - - - Start on Mission 5 (enable on Mode Seclect screen, then disable) - 7E001C:1D - - - Start on Mission 6 (enable on Mode Seclect screen, then disable) - 7E001C:1F - - - Start on Mission 7 (enable on Mode Seclect screen, then disable) - 7E001C:20 - - - - Super Ghouls'n Ghosts (USA) - - Invincibility (disable at end of first two stages of level 3, so you can trigger the hidden end of stage marker) - D4D5-B286 - - - Invincibility (alt) - DD21-0FD0 - - - Never lose Armor - DFD0-F38B+DFF8-F38B - - - Infinite time - A286-0F01 - - - Infinite lives - A2C1-AD01 - - - Infinite double-jumps - C2A5-A4A5 - - - Infinite shield hits - 6DE7-A468 - - - Infinite continues - DDB6-67FF - - - Hit anywhere - 1DEF-0708+C2E5-D708+C2EA-A40C - - - Very few Zombies appear - C9BB-A460 - - - Most Zombies carry a basket - DF65-DFA8+CBBD-AF98 - - - Slower timer - 9386-0D01 - - - Faster timer - FE86-0D01 - - - Start with 9 minutes - DBC3-0465 - - - Start with 1 continue - DFC0-A401 - - - Start with 9 continues - DBC0-A401 - - - Invincibility (alt 2) - 7E0276:02 - - - Never lose Armor (alt) - 7E044A:01+7E14BA:01 - - - Infinite time (alt) - 7E02A9:01 - - - Infinite lives (alt) - 7E02A4:02 - - - Infinite double-jumps (alt) - 7E14BC:00 - - - Super-jump - 7E0458:0F - - - Run faster - 7E0453:02 - - - 900,000 points - 7E0295:09 - - - Have no Armor - 7E14BA:00 - - - Have regular Armor - 7E14BA:01 - - - Have Green Armor - 7E14BA:02 - - - Have Gold Armor - 7E14BA:04 - - - Have Javelin - 7E14D3:00 - - - Have Blue Fire Javelin - 7E14D3:01 - - - Have Quick Dagger - 7E14D3:02 - - - Have Laser Dagger - 7E14D3:03 - - - Have Crossbow - 7E14D3:04 - - - Have Crossbow with Homing Arrows - 7E14D3:05 - - - Have Scythe - 7E14D3:06 - - - Have Scythe level 2 - 7E14D3:07 - - - Have Torch - 7E14D3:08 - - - Have Torch level 2 - 7E14D3:09 - - - Have Axe - 7E14D3:0A - - - Have Double Edge Axe - 7E14D3:0B - - - Have Dagger with L-shaped path - 7E14D3:0C - - - Have Shuriken with L-shaped path - 7E14D3:0D - - - Have Goddess Ring - 7E14D3:0E - - - - Super James Pond (USA) - - Infinite health - 7EB130:03 - - - Infinite lives - 7EB12E:03 - - - - Super Mario All-Stars (USA) - - SMB - Invincibility (Starman effect) - 292B-67DE - - - SMB - Invincibility does not last as long - D62F-6DAE - - - SMB - Invincibility lasts longer - 9D2F-6DAE - - - SMB - Infinite lives (alt) - C2C1-D4AA - - - SMB - Infinite time - 6D84-DF03 - - - SMB - Multi-jump - 2D8E-D7D2 - - - SMB - Run without holding the dash button - DD8E-D702 - - - SMB - Start File A game with 2 lives - DFDF-FAAD - - - SMB - Start File A game with 10 lives - DBDF-FAAD - - - SMB - Start File A game with 50 lives - 7FDF-FAAD - - - SMB - Start File A game with 100 lives - 17DF-FAAD - - - SMB - 1-up worth nothing - C26B-0FBF - - - SMB - Allows you to select any world for File A - D5DF-FADD - - - SMB - Jump lower (disable if you get stuck) - CB81-0D02+E281-0D62+3C81-0DA2 - - - SMB - Super-jump - CB81-0D02+EC81-0D62+3C81-0DA2 - - - SMB - Mega-jump - CB81-0D02+E681-0D62+3C81-0DA2 - - - LL - Start File A game with 2 lives - DFDF-FEDD - - - LL - Start File A game with 10 lives - DBDF-FEDD - - - LL - Start File A game with 50 lives - 7FDF-FEDD - - - LL - Start File A game with 100 lives - 17DF-FEDD - - - LL - Infinite lives - C2B6-A455 - - - LL - Infinite time - 6D82-0F79 - - - LL - Allows you to select any world or level for File A - DADF-F30D+D7DF-F36D - - - LL - Infinite lives - C2B6-A455 - - - LL - Multi-jump - DD86-6F80 - - - SMB2 - Multi-jump - all characters - D966-6166 - - - SMB2 - Float - all characters - 6267-A5A6 - - - SMB2 - 1 life after continue - DF61-05D0 - - - SMB2 - 9 lives after continue - DB61-05D0 - - - SMB2 - 25 lives after continue - FB61-05D0 - - - SMB2 - 50 lives after continue - 7461-05D0 - - - SMB2 - 99 lives after continue - 1761-05D0 - - - SMB2 - Infinite lives - C26E-D5A6 - - - SMB2 - Continue with 3 hearts instead of 2 - DF6B-A9A1 - - - SMB2 - Continue with 4 hearts - D46B-A9A1 - - - SMB2 - Infinite hearts - DD32-6966 - - - SMB2 - Jumping in place charges super jump - 7A60-A966 - - - SMB2 - Allows you to select any world for File A - D1D4-FA0D - - - SMB3 - Infinite lives - 82BB-0C6D - - - SMB3 - Infinite time - 6D3D-6619 - - - SMB3 - Infinite flying time - EEA4-AB63 - - - SMB3 - Multi-jump - 40AA-6803 - - - SMB3 - Fly at any time (run meter always full) - DDAF-A8A3 - - - SMB3 - Fireballs hit anywhere - 4083-D8F3+408D-08F3 - - - SMB3 - Tail hits anywhere - 40C4-6C22 - - - SMB3 - Fireballs can kill most enemies - 4084-0BB3 - - - SMB3 - Change to Big Mario whenever you go to the map - CB69-AC07+DF69-AC67 - - - SMB3 - Change to Fire Mario whenever you go to the map - CB69-AC07+D469-AC67 - - - SMB3 - Change to Raccoon Mario whenever you go to the map - CB69-AC07+D769-AC67 - - - SMB3 - Change to Frog Mario whenever you go to the map - CB69-AC07+D069-AC67 - - - SMB3 - Change to Tanooki Mario whenever you go to the map - CB69-AC07+D969-AC67 - - - SMB3 - Change to Sledgehammer Mario when you go to the map - CB69-AC07+D169-AC67 - - - SMB3 - All power-ups turn you into Shoe Mario - D0A1-6C0A+E1A3-D60A - - - SMB3 - Collisions turn you into Big Mario - D4A8-6CAA - - - SMB3 - Collisions turn you into Fire Mario - D7A8-6CAA - - - SMB3 - Collisions turn you into Raccoon Mario - D0A8-6CAA - - - SMB3 - Collisions turn you into Frog Mario - D9A8-6CAA - - - SMB3 - Collisions turn you into Tanooki Mario - D1A8-6CAA - - - SMB3 - Collisions turn you into Sledgehammer Mario - D5A8-6CAA - - - SMB3 - After getting star, invincible until end of level (may have to disable to jump) - C23B-680D - - - SMB3 - 1 life after continue - DFBB-DBAF - - - SMB3 - 10 lives after continue - DBBB-DBAF - - - SMB3 - 26 lives after continue - FBBB-DBAF - - - SMB3 - 51 lives after continue - 74BB-DBAF - - - SMB3 - 100 lives after continue - 17BB-DBAF - - - SMB3 - Gain lots of lives with each 5 coins - D93E-6C49 - - - SMB3 - 5 coins needed for an extra life - D93E-6819 - - - SMB3 - 10 coins needed for an extra life - DC3E-6819 - - - SMB3 - 25 coins needed for an extra life - FB3E-6819 - - - SMB3 - 50 coins needed for an extra life - 743E-6819 - - - SMB3 - Power-jump - AD3E-6801 - - - SMB3 - Super-jump - 863E-6801 - - - SMB3 - Mega-jump - 8D3E-6801 - - - SMB3 - Ultra power-jump - C63E-6801 - - - SMB3 - Mega power-jump - DDA9-A603 - - - SMB3 - Select any world for File A game - D5D4-F36D - - - SMB3 - Re-enter already beaten levels - DD63-D6A5 - - - SMB3 - Re-enter already beaten fortresses - 1D63-D665 - - - SMB3 - Re-enter already beaten mushroom houses and special levels - 0D63-D605 - - - SMB3 - Start and continue as Big Mario - E1A3-D60A - - - SMB - Invincibility (Starman) - 7E07AF:0F - - - SMB - Infinite lives - 7E075A:05 - - - SMB2 - Invincibility - 7E0085:3B - - - SMB2 - Always big - 7E04C3:1F - - - SMB2 - Always small - 7E04C3:0F - - - SMB2 - Infinite float time - all characters - 7E04CA:FF - - - SMB3 - Enable debug mode (in game) - 7E0160:80 - - - SMB3 - Invincibility - 7E0552:80 - - - SMB3 - Invincibility (Starman) - 7E0553:FF - - - SMB3 - Always Small Mario - 7E00BB:00 - - - SMB3 - Always Big Mario - 7E00BB:01 - - - SMB3 - Always Fire Mario - 7E00BB:02 - - - SMB3 - Always Raccoon Mario - 7E00BB:03 - - - SMB3 - Always Frog Mario - 7E00BB:04 - - - SMB3 - Always Tanooki Mario - 7E00BB:05 - - - SMB3 - Always Hammer Bros. Mario - 7E00BB:06 - - - SMB3 - Have Magic Whistle - 7E1D80:0C - - - SMB3 - Raccoon and Tanooki have P-Wing - 7E056E:FF - - - SMB3 - Fly for an unlimited amount of time - 23CB26:FF - - - - Super Mario All-Stars + Super Mario World (USA) - - SMB - Invincibility (Starman effect) - 292B-67DE - - - SMB - Invincibility - 62E7-A7D2+2DE7-A7A2 - - - SMB - Always Fiery Mario after first hit - CB29-AF0E+D429-AF6E+CB8B-676A+DD8B-67AA - - - SMB - Fireballs hit anywhere - 4028-D4DE - - - SMB - Multi-jump - 2D8E-D7D2 - - - SMB - Run without holding the dash button - DD8E-D702 - - - LL - Infinite lives - C2B6-A455 - - - LL - Multi-jump - DD86-6F80 - - - SMB2 - Infinite lives - C26E-D5A6 - - - SMB2 - Infinite hearts - DD32-6966 - - - SMB2 - Hit anywhere - 0720-A0D8+3D27-A508+DD27-A568 - - - SMB2 - Multi-jump - all characters - D966-6166 - - - SMB2 - Float - all characters - 6267-A5A6 - - - SMB3 - Fireballs hit anywhere - 4083-D8F3+408D-08F3 - - - SMB3 - Tail hits anywhere - 40C4-6C22 - - - SMB3 - Fireballs can kill most enemies - 4084-0BB3 - - - SMB3 - Re-enter already beaten levels - DD63-D6A5 - - - SMB3 - Re-enter already beaten fortresses - 1D63-D665 - - - SMB3 - Re-enter already beaten mushroom houses and special levels - 0D63-D605 - - - SMW - Nintendo's debug - DDA6-DF07 - - - SMW - Infinite flying time for Yoshi - C2EC-0700 - - - SMB - Invincibility (Starman) - 7E07AF:0F - - - SMB - Infinite lives - 7E075A:05 - - - SMB2 - Invincibility - 7E0085:3B - - - SMB2 - Infinite float time - all characters - 7E04CA:FF - - - SMB3 - Enable debug mode (in game) - 7E0160:80 - - - SMB3 - Infinite lives - 20919A:BD - - - SMB3 - Invincibility - 7E0552:80 - - - SMB3 - Invincibility (Starman) - 7E0553:FF - - - SMB3 - Always Small Mario - 7E00BB:00 - - - SMB3 - Always Big Mario - 7E00BB:01 - - - SMB3 - Always Fire Mario - 7E00BB:02 - - - SMB3 - Always Raccoon Mario - 7E00BB:03 - - - SMB3 - Always Frog Mario - 7E00BB:04 - - - SMB3 - Always Tanooki Mario - 7E00BB:05 - - - SMB3 - Always Hammer Bros Mario - 7E00BB:06 - - - SMB3 - Infinite flying time - 23CB26:FF - - - SMB3 - Have Magic Whistle - 7E1D80:0C - - - SMB3 - Raccoon and Tanooki have P-Wing - 7E056E:FF - - - SMW - Invincibility - 7E1497:FF - - - SMW - Invincible (Starman) - 7E1490:FF - - - SMW - Always Small Mario - 7E0019:00 - - - SMW - Always Big Mario - 7E0019:01 - - - SMW - Always Caped Mario - 7E0019:02 - - - SMW - Always Fire Mario - 7E0019:03 - - - SMW - Infinite time - 7E0F31:09+7E0F32:09+7E0F33:09 - - - SMW - Infinite P-Balloon time - 7E1891:FF - - - SMW - Always have Yoshi - 7E0DC1:01 - - - SMW - Jump to automatically fly - 7E13E4:70 - - - SMW - Multi-jump and float down (disable in water and to get on Yoshi) - 7E1471:01 - - - SMW - Activate yellow blocks (deactivate before entering the Yellow Switch Palace) - 7E1F28:01 - - - SMW - Activate blue blocks (deactivate before entering the Blue Switch Palace) - 7E1F29:01 - - - SMW - Activate red blocks (deactivate before entering the Red Switch Palace) - 7E1F2A:01 - - - SMW - 8000 points for each enemy stomped - 7E1697:06 - - - - Super Mario Kart (USA) - - Invincibility - 1A3E-CDA4 - - - All karts except yours do not move - 9980-44DD - - - Drive through walls - 4FEB-CDA4 - - - Drive through opponents - 97A6-CDAD - - - Invincibility and have a Red Shell - 7E0D70:28 - - - Always have Red Shell - 7E0D70:05 - - - Always have item - 7E0D71:C0 - - - Drive anywhere - 80FA93:20 - - - Mud and other land doesn't effect driving - 759DC8:B4 - - - Special Cup enabled (1P time trial and 2P match race) - 7E1D29:03 - - - - Super Mario RPG - Legend of the Seven Stars (USA) - - Infinite tries in action sequences - A98E-7707 - - - Infinite HP - Character 1 - 7EFA91:FF - - - Infinite HP - Character 2 - 7EFB11:FF - - - Infinite HP - Character 3 - 7EFB91:FF - - - Max HP - Character 1 - 7EFA93:FF - - - Max HP - Character 2 - 7EFB13:FF - - - Max HP - Character 3 - 7EFB93:FF - - - Max Flower Points - 7EFA0D:63 - - - Infinite Flower Points (In Battle) - 7EFA0D:63+7EFA0C:63 - - - Infinite Coins - 7FF8AF:E7+7FF8B0:03 - - - Infinite Frog Coins - 7FF8B3:E7+7FF8B4:03 - - - 255 EXP per battle (disable before going to the World Map or using the menu button) - 7EFA02:FF - - - Always Mario's turn - 7E0702:00 - - - Mario consecutive super jumps modifier - 7FF8C0:64 - - - Mario - Level 30 - 7FF800:1E - - - Mario - 999 HP - 7FF801:E7+7FF802:03 - - - Mario - 999 Max HP - 7FF803:E7+7FF804:03 - - - Mario - Max Speed - 7FF805:FF - - - Mario - Max Attack - 7FF806:FF - - - Mario - Max Defense - 7FF807:FF - - - Mario - Max Magic Attack - 7FF808:FF - - - Mario - Max Magic Defense - 7FF809:FF - - - Mario - Max Experience - 7FF80A:0F+7FF80B:27 - - - Mario - Equipped Weapon - 7FF80C:1C - - - Mario - Equipped Armor - 7FF80D:46 - - - Mario - Equipped Accessory - 7FF80E:5E - - - Mario - Has all 'Correct' Spells - 7FF810:3F - - - Mallow - Level 30 - 7FF850:1E - - - Mallow - 999 HP - 7FF851:E7+7FF852:03 - - - Mallow - 999 Max HP - 7FF853:E7+7FF854:03 - - - Mallow - Max Speed - 7FF855:FF - - - Mallow - Max Attack - 7FF856:FF - - - Mallow - Max Defense - 7FF857:FF - - - Mallow - Max Magic Attack - 7FF858:FF - - - Mallow - Max Magic Defense - 7FF859:FF - - - Mallow - Max Experience - 7FF85A:0F+7FF85B:27 - - - Mallow - Equipped Weapon - 7FF85C:20 - - - Mallow - Equipped Armor - 7FF85D:46 - - - Mallow - Equipped Accessory - 7FF85E:5E - - - Mallow - has all 'correct' spells - 7FF862:E0+7FF863:07 - - - Geno - Level 30 - 7FF83C:1E - - - Geno - 999 HP - 7FF83D:E7+7FF83E:03 - - - Geno - 999 Max HP - 7FF83F:E7+7FF840:03 - - - Geno - Max Speed - 7FF841:FF - - - Geno - Max Attack - 7FF842:FF - - - Geno - Max Defense - 7FF843:FF - - - Geno - Max Magic Attack - 7FF844:FF - - - Geno - Max Magic Defense - 7FF845:FF - - - Geno - Max Experience - 7FF846:0F+7FF847:27 - - - Geno - Equipped Weapon - 7FF848:1F - - - Geno - Equipped Armor - 7FF849:46 - - - Geno - Equipped Accessory - 7FF84A:5E - - - Geno - Has all 'correct' spells - 7FF84E:1F - - - Bowser - Level 30 - 7FF828:1E - - - Bowser - 999 HP - 7FF829:E7+7FF82A:03 - - - Bowser - 999 Max HP - 7FF82B:E7+7FF82C:03 - - - Bowser - Max Speed - 7FF82D:FF - - - Bowser - Max Attack - 7FF82E:FF - - - Bowser - Max Defense - 7FF82F:FF - - - Bowser - Max Magic Attack - 7FF830:FF - - - Bowser - Max Magic Defense - 7FF831:FF - - - Bowser - Max Experience - 7FF832:0F+7FF833:27 - - - Bowser - Equipped Weapon - 7FF834:1E - - - Bowser - Equipped Armor - 7FF835:46 - - - Bowser - Equipped Accessory - 7FF836:5E - - - Bowser - Has all 'correct' spells - 7FF839:F0 - - - Princess - Level 30 - 7FF814:1E - - - Princess - 999 HP - 7FF815:E7+7FF816:03 - - - Princess - 999 Max HP - 7FF817:E7+7FF818:03 - - - Princess - Max Speed - 7FF819:FF - - - Princess - Max Attack - 7FF81A:FF - - - Princess - Max Defense - 7FF81B:FF - - - Princess - Max Magic Attack - 7FF81C:FF - - - Princess - Max Magic Defense - 7FF81D:FF - - - Princess - Max Experience - 7FF81E:0F+7FF81F:27 - - - Princess - Equipped Weapon - 7FF820:22 - - - Princess - Equipped Armor - 7FF821:46 - - - Princess - Equipped Accessory - 7FF822:5E - - - Princess - Has all 'correct' spells - 7FF824:C0+7FF825:0F - - - - Super Mario World (USA) - - Start and stay invincible most of the time - DD32-6DAD - - - Invincibility for Yoshi - 89E4-AFD9+89C6-D4DB - - - Infinite flying time for Yoshi - C2EC-0700 - - - Infinite time (disable for puzzles that use the timer) - C264-64D7 - - - Infinite lives - C222-D4DD - - - Cape hits anywhere - 40BE-AD66 - - - Fireballs hit anywhere - 40C2-D7A6 - - - Fireballs shoot straight - DDEA-6F07+DDB2-AFD8 - - - Fireballs turn most enemies into Flowers - 59C4-0466 - - - Fireballs turn most enemies into 1-Up Mushrooms - 56C4-0466 - - - Fireballs turn most enemies into Starmen - 51C4-0466 - - - Multi-jump - 6D2E-0FDF - - - Spin jump in mid air (hold for float down) - F53F-6767+DD3F-67A7 - - - Press R to scroll through items in the items box - D2AF-6407+D2AF-6DD7+DFAF-6F67+17AF-6FD7+1DAF-6467+62AF-6FA7+A4AD-67A7+A4AD-67D7+A4AF-64D7+CBAF-6F07+D1AF-6D67+D2AD-6707 - - - Low jump - D02C-AF6F - - - Super-jump - D42C-AF6F - - - Mega-jump - DF2C-AF6F - - - Little Yoshi grows after eating 1 enemy instead of 5 - DFCE-64A0 - - - Little Yoshi grows after eating 2 enemies - D4CE-64A0 - - - Little Yoshi grows after eating 3 enemies - D7CE-64A0 - - - Little Yoshi grows after eating 4 enemies - D0CE-64A0 - - - Nintendo's Debug - DDC1-64DD+DDC5-6DAD - - - Nintendo's Debug 2 - DDA6-DF07 - - - 1-Up at 5 coins instead of 100 - D964-A7D7+D967-AFA7 - - - 1-Up at 10 coins - DC64-A7D7+DC67-AFA7 - - - 1-Up at 20 coins - F064-A7D7+F067-AFA7 - - - 1-Up at 50 coins - 7464-A7D7+7467-AFA7 - - - 1-Up at 1 dragon coin instead of 5 - D2E5-A7AD - - - Start as Super Mario - 31B7-6F07 - - - Start as Cape Mario - CBB7-6D67+D4B7-6DA7+3CB7-6FD7+69B7-6F07 - - - Start as Fire Mario - CBB7-6D67+D7B7-6DA7+3CB7-6FD7+69B7-6F07 - - - Start with 1 life instead of 5 - DDB4-6F07 - - - Start with 9 lives - D6B4-6F07 - - - Start with 15 lives - D3B4-6F07 - - - Start with 25 lives - F6B4-6F07 - - - Start with 50 lives - 7FB4-6F07 - - - Start with 99 lives - 14B4-6F07 - - - Invincibility - 7E1497:FF - - - Invincibility (Starman) - 7E1490:FF - - - Infinite P-Balloon time - 7E1891:FF - - - Always Small Mario - 7E0019:00 - - - Always Big Mario - 7E0019:01 - - - Always Caped Mario - 7E0019:02 - - - Always Fiery Mario - 7E0019:03 - - - Always have Yoshi - 7E0DC1:01 - - - Multi-jump and float down (disable in water and to get on Yoshi) - 7E1471:01 - - - Activate green blocks (disable before entering the Green Switch Palace) - 7E1F27:01 - - - Activate yellow blocks (disable before entering the Yellow Switch Palace) - 7E1F28:01 - - - Activate red blocks (disable before entering the Red Switch Palace) - 7E1F2A:01 - - - Activate blue blocks (disable before entering the Blue Switch Palace) - 7E1F29:01 - - - 8000 points for each enemy stomped - 7E1697:06 - - - Reznor already defeated in all four fortresses - 7E1520:01+7E1521:01+7E1522:01+7E1523:01 - - - - Super Mario World 2 - Yoshi's Island (USA) (Rev 1) - - Infinite lives - C2EE-649F - - - All levels are completed with 100 points - CB69-006D+3069-00AD - - - Always score 100 points - CB8A-64D5+108A-6405+3C8A-6465 - - - Power-ups don't get used up - 1D26-AFA1 - - - Mario's crying disabled - 44A0-672B - - - Horizontal one-way pinball doors open from both sides - 6DB6-6F55 - - - Infinite lives/Start at Middle Ring (when you die) - C2EE-64BF - - - After using the magnifying glass, red coins and hidden items are always revealed - C2C8-A465 - - - Red switches stay on for over twice as long - D98A-AF7B - - - Red switches stay on for over four times as long - DB8A-AF7B - - - Red switches stay on for a very, very long time - 5E8A-AF7B - - - Disable autoscroll - C220-D4D3 - - - Don't get crushed - 18CB-D727 - - - Multi-jump - D921-D496+C421-D4B6+E821-D426+6321-D7F6+C821-D796+1D21-D7B6+5421-DD26+1D21-DFF6+4B21-DF96+DD21-DFB6+6D21-DF26+ED21-D4F6 - - - Star timer doesn't decrease when hit - 7E0391:01+7E0392:00 - - - Mario's crying disabled (alt) - 06C64F:22 - - - Infinite red switch time - 7E0CEC:66 - - - Hold B to float - 7E0945:00 - - - Unlock items in boss fights - 7E0B48:00 - - - Have Stars +10 - 7E0357:01 - - - Have Stars +20 - 7E0358:02 - - - Have POW Block - 7E0359:03 - - - Have full Eggs - 7E035A:04 - - - Have Magnifying Glass - 7E035B:05 - - - Have Winged Cloud - 7E035C:06 - - - Have Green Watermelon - 7E035D:07 - - - Have Blue Watermelon - 7E035E:08 - - - Have Red Watermelon - 7E035F:09 - - - Have Pink Yoshi - 7E0383:01 - - - Have Orange Yoshi - 7E0383:02 - - - Have Light Blue Yoshi - 7E0383:03 - - - Have Purple Yoshi - 7E0383:04 - - - Have Brown Yoshi - 7E0383:05 - - - Have Red Yoshi - 7E0383:06 - - - Have Dark Blue Yoshi - 7E0383:07 - - - Have Glow Red Yoshi - 7E0383:08 - - - Have Shadow Yoshi - 7E0383:09 - - - - Super Mario World 2 - Yoshi's Island (USA) - - Infinite lives - C2EE-649F - - - Infinite lives and start at middle ring when you die - C2EE-64BF - - - All levels are completed with 100 points - CB69-006D+3069-00AD - - - Always score 100 points - CB8A-64D5+108A-6405+3C8A-6465 - - - Power-ups don't get used up - 1D26-AFA1 - - - Mario's crying disabled - 44A0-672B - - - Horizontal one-way pinball doors open from both sides - 6DB6-6F55 - - - After using the magnifying glass, red coins and hidden items are always revealed - C2C8-A465 - - - Red switches stay on for over twice as long - D98A-AF7B - - - Red switches stay on for over four times as long - DB8A-AF7B - - - Disable autoscroll - C220-D4D3 - - - Don't get crushed - 18CB-D727 - - - Multi-jump - D921-D496+C421-D4B6+E821-D426+6321-D7F6+C821-D796+1D21-D7B6+5421-DD26+1D21-DFF6+4B21-DF96+DD21-DFB6+6D21-DF26+ED21-D4F6 - - - Continue with 5 lives - DC36-010D - - - Continue with 10 lives - FB36-010D - - - Continue with 25 lives - 7436-010D - - - Continue with 50 lives - 1736-010D - - - Continue with 99 lives - 1736-010D - - - Start with 5 lives - D9B7-0023 - - - Start with 10 lives - DCB7-0023 - - - Start with 25 lives - FBB7-0023 - - - Start with 50 lives - 74B7-0023 - - - Start with 99 lives - 17B7-0023 - - - Star timer doesn't decrease when hit - 7E0391:01+7E0392:00 - - - Hold B to float - 7E0945:00 - - - Unlock items in boss fights - 7E0B48:00 - - - Infinite red switch time - 7E0CEC:66 - - - Mario's crying disabled (alt) - 06C64F:22 - - - Have Stars +10 - 7E0357:01 - - - Have Stars +20 - 7E0358:02 - - - Have POW Block - 7E0359:03 - - - Have full Eggs - 7E035A:04 - - - Have Magnifying Glass - 7E035B:05 - - - Have Winged Cloud - 7E035C:06 - - - Have Green Watermelon - 7E035D:07 - - - Have Blue Watermelon - 7E035E:08 - - - Have Red Watermelon - 7E035F:09 - - - Have Pink Yoshi - 7E0383:01 - - - Have Orange Yoshi - 7E0383:02 - - - Have Light Blue Yoshi - 7E0383:03 - - - Have Purple Yoshi - 7E0383:04 - - - Have Brown Yoshi - 7E0383:05 - - - Have Red Yoshi - 7E0383:06 - - - Have Dark Blue Yoshi - 7E0383:07 - - - Have Glow Red Yoshi - 7E0383:08 - - - Have Shadow Yoshi - 7E0383:09 - - - - Super Metroid (Japan, USA) (En,Ja) - - Invincibility (except for acid and when bosses grab you) - DFFC-F37C - - - Infinite energy (except for acid) - C225-3005 - - - Infinite Missiles - C288-C5A7 - - - Infinite Super Missiles - C28A-C9D7 - - - Infinite Power Bombs - 3CA4-450D - - - Infinite Power Bombs (alt) - 17DA-9E8C - - - Hit anywhere - 40C8-18DD+6DB1-3C6F+6DC2-1BDD - - - Super-jumps don't drain energy - C22A-456D - - - Enemies die on contact (Speed Booster effect) - 6DC8-4CDF+6DCC-4BDF - - - Skip intro and start on Planet Zebes on new game - DD38-C4A8 - - - Select area when loading saved game A (press right on map screen) - DDCF-4461+6DCC-47A1 - - - Switching areas fills the map - CE6B-1FAF+D76B-146F - - - Automatically collect secret and/or special items in current room (Missiles, Energy Tanks, ect) - 402B-3DB7+402E-3FF7 - - - Can access Tourain from sunken statues room - AF24-FA7C+FE24-FA5C - - - Full movement in Maridia sand - 6D8F-14FF+DDBF-4504 - - - Multi-jump (when using button A) - C933-C9A7+6333-C1D7+DC33-C107+BD33-C167+D033-C1A7+4433-C5D7+8A33-C507+B633-C567+BD33-C5A7 - - - Multi-jump (when using button B) - C933-C9A7+6E33-C1D7+DC33-C107+BD33-C167+D033-C1A7+4433-C5D7+8A33-C507+B633-C567+BD33-C5A7 - - - Metroids can be killed without being frozen first - 403F-38DE+6D34-3BAE - - - 0 hours played - DDD0-FE6D - - - Brinstar mapped - EE2D-935C - - - Crateria mapped - EE2D-937C - - - Maridia mapped - EE2D-9E7C - - - Norfair mapped - EE2D-938C - - - Tourain mapped - EE2D-9E5C - - - Wrecked Ship mapped - EE2D-93EC - - - Maximum 99 Power Bombs - 17D2-9A7C - - - Maximum 99 Super Missiles - 17DA-9E7C - - - Maximum Missiles=10 - DCD7-F26D - - - Maximum Missiles=100 - 10D7-F26D - - - Maximum Missiles=125 - 52D7-F26D - - - Maximum Missiles=150 - B1D7-F26D - - - Maximum Missiles=175 - CED7-F26D - - - Maximum Missiles=200 - A6D7-F26D - - - Maximum Missiles=25 - FBD7-F26D - - - Maximum Missiles=50 - 74D7-F26D - - - Maximum Missiles=75 - 08D7-F26D - - - Maximum Power Bombs=10 - DCD7-FE6D - - - Maximum Power Bombs=25 - FBD7-FE6D - - - Maximum Power Bombs=5 - D9D7-FE6D - - - Maximum Power Bombs=50 - 74D7-FE6D - - - Maximum Super Missiles=10 - DCD7-F36D - - - Maximum Super Missiles=25 - FBD7-F36D - - - Maximum Super Missiles=5 - D9D7-F36D - - - Maximum Super Missiles=50 - 74D7-F36D - - - Start with about 500 Energy Tanks on saved game A - E7D7-FAAD+DFD7-FA6D - - - Start with about 700 Energy Tanks on saved game A - 88D7-FAAD+D4D7-FA6D - - - Start with about 1000 Energy Tanks on saved game A - 35D7-FAAD+D7D7-FA6D - - - Start with about 1200 Energy Tanks on saved game A - CED7-FAAD+D0D7-FA6D - - - Start with about 1500 Energy Tanks on saved game A - 28D7-FAAD+D9D7-FA6D - - - Invincibility (except for acid and when bosses grab you) (alt) - 7E18A8:4C - - - Infinite energy (can combine with invincibility code) - 7E09C2:63 - - - Kill most enemies on contact - 7E0A6E:0F - - - Infinite Missiles (alt) - 7E09C6:E7 - - - Infinite Missiles (alt 2) - 7E09C6:E7+7E09C7:03 - - - Maximum 999 Missiles - 7E09C8:E7+7E09C9:03 - - - Infinite Super Missiles (alt) - 7E09CA:50 - - - Infinite Power Bombs (alt) - 7E09CE:50 - - - Have all Guns except Charge Beam - 7E09A8:FF - - - Have Charge Beam - 7E09A9:FF - - - Have all suits and misc items (except Bombs) - 7E09A4:FF - - - Have all boots and regular Bombs - 7E09A5:FF - - - Have Missiles and Power Bombs - 7E09CE:50 - - - Infinite time to escape ship - 7E0945:00+7E0946:00+7E0947:01 - - - Full movement in Maridia sand (alt) - 84B518:80+90981D:00 - - - Moon-jump - 7E0B2D:44+7E0B2E:01 - - - 0 hours played (alt) - 7E09E0:00 - - - Brinstar mapped (alt) - 7ED909:FF - - - Crateria mapped (alt) - 7ED908:FF - - - Maridia mapped (alt) - 7ED90C:FF - - - Norfair mapped (alt) - EED9-936D - - - Tourian mapped (alt) - 7ED90D:FF - - - Wrecked Ship mapped (alt) - 7ED90B:FF - - - Start with Missiles - 7E09C8:01 - - - Start with Super Missiles - 7E09CC:01 - - - Start with Power Bombs - 7E09D0:01 - - - - Super Ninja Boy (USA) - - Protection from most hazards (makes some side-view enemies invincible) - 822E-07B0 - - - Don't subtract money (must have enough to buy) - 1DAF-D4D6 - - - All stats are 20 (attack, defense, energy, max HP, max NP) - CB2F-A70C+3C2F-A7AC+F02F-A76C - - - All stats for every level are 50 - CB2F-A70C+3C2F-A7AC+742F-A76C - - - All stats for every level are 100 - CB2F-A70C+3C2F-A7AC+102F-A76C - - - All stats for every level are 255 - CB2F-A70C+3C2F-A7AC+EE2F-A76C - - - 1 experience point required for level 2 - DF24-A4AC - - - 1 experience point required for level 3 - DF24-A76C - - - 1 experience point required for level 4 - DF27-AD0C - - - 1 experience point required for level 5 - DF27-AFDC - - - Don't subtract M's for ninja cyclone attack - DD61-D725 - - - Don't subtract M's for mighty balls attack - DDA5-0421 - - - Skulls subtract 2 M's - D437-6420 - - - Skulls don't subtract an M - DD37-6420 - - - M power-ups worth nothing (handicap) - DD30-6720 - - - M power-ups worth 2 - D430-6720 - - - M power-ups worth 3 - D730-6720 - - - M power-ups worth 4 - D030-6720 - - - M power-ups worth 5 - D930-6720 - - - M power-ups set to 15 - F930-6720 - - - Start with 250 cash - EC81-AF69 - - - Start with 40,960 cash - 6981-A4D9 - - - - Super Nova (USA) - - Invincibility - 0A84-C4A7+7984-C7D7+8384-C707 - - - Infinite lives - A268-4716 - - - Hit anywhere - 6DA9-1DA7+DD87-1D41+DDA5-4FD7 - - - Keep main weapon after dying - C26C-4446 - - - Start with strongest main weapon - 62C4-1F46 - - - - Super Off Road (USA) - - Infinite nitros - D4B7-07AF+22B0-0FDF - - - Infinite cash - P1 - 2BCA-6707 - - - Infinite cash - P2 - 2B84-DDDD - - - Start with $500,000 - D987-6D0F - - - Start with $900,000 - DB87-6D0F - - - - Super Off Road - The Baja (USA) - - Infinite nitros - 3CA0-CD6F - - - Indestructible engine - C283-34D7 - - - Indestructible shocks - C28A-3D67 - - - Indestructible tires - C28C-3DD7 - - - Vehicle can take only about 60% damage - 1D81-37D7 - - - Vehicle can take only about 35% damage - 7D81-37D7 - - - $9,000 for brakes - DBB6-1FDF - - - $2,000 for brakes - D4B6-1FDF - - - $9,000 for tires - DBB6-1F6F - - - $2,000 for tires - D4B6-1F6F - - - $2,000 for shocks - D4B6-14DF - - - $9,000 for shocks - DBB6-14DF - - - $2,000 for lights - D4B6-146F - - - $9,000 for lights - DBB6-146F - - - $2,000 for engine - D4B6-17DF - - - $4,000 for engine - D0B6-17DF - - - - Super Play Action Football (USA) - - One timeout each team - DFB7-D4D7 - - - No timeouts - P1 - 10B7-D407 - - - No timeouts - P2 - 10B7-D4A7 - - - Infinite time to select play - 4067-6FDD - - - Less time to select play - F367-6D0D - - - More time to select play - 5D67-6D0D - - - - Super Punch-Out!! (USA) - - Infinite health against most punches - C2A4-DFD4 - - - Gain max health after connecting a hit - both players - D9AD-DDA4 - - - Infinite time - C9E3-64DD - - - Opponent has no health - BAEC-D46D - - - Most opponents stay down for the count - DFAB-AFDD - - - Opponent does almost nothing - 6D61-DFD0 - - - Some special attacks don't damage as much - C2AB-DFDF - - - Super Punch anytime - DDA1-A767 - - - Max power after one hit - CB34-AD07+F834-AD67+3C34-ADA7 - - - Infinite rematches - C2B8-64A5 - - - No rematches - DDB7-0704 - - - Fix game genied world circuit - CB84-DDA7+DD84-DFD7 - - - Start with 5 rematches - D1B7-0704 - - - Start with 8 rematches - DBB7-0704 - - - Start with half health - both players - 49BC-6F6F - - - Start with very little health - both players - DFBC-6F6F - - - Start on world circuit - DB8A-D4A1+D48A-D7D1+3C8A-D701 - - - Infinite health - 7E088F:50+7E089F:50 - - - Infinite time (alt) - 7E0B27:03 - - - Infinite health (alt) - 7E088F:50+7E089F:50 - - - Opponent has no health (alt) - 7E099F:01 - - - Always cause dizziness - 7E0938:8F - - - All hits cause super dizziness - 7E092B:B0 - - - Max power (Super and Rapid Punch) - 7E0899:00+7E089A:00+7E089B:00+7E089C:1B - - - TKO after only one knockdown - 7E099D:03 - - - - Super R-Type (USA) - - Start with Invincibility (blinking) - 82C2-DF61 - - - Infinite lives - C2C7-6D0F - - - Infinite FORCE once obtained - C267-A4D9 - - - One hit kills - 6DBF-6F07 - - - Hit anywhere - 40B1-0467+40B5-04D7+40B5-07A7+40B5-0D07+40B6-0F67 - - - Always fire charged shots (hold B) - 7287-0FD1+DD87-0D61 - - - Spiral motion gun takes less time to power up - 6D80-6DD1+DD80-6D01 - - - Spiral motion gun takes much less time to power up - DD80-6DA1 - - - Spiral motion gun can't get over-charged - 6D84-6F01 - - - All FORCE satellites have 1 unit of power (but can't exceed 1 unit) - DD68-6DDB+CB6C-67AB+7D68-6D6B - - - All FORCE satellites have 2 units of power (but can't exceed 2 units) - DF68-6DDB+CB6C-67AB+7D68-6D6B - - - All FORCE satellites have 3 units of power - D468-6DDB+CB6C-67AB+7D68-6D6B - - - Start with 1 life instead of 3 - DF66-0F00+CB66-0FD0+DD66-0F60 - - - Start with 2 lives - D466-0F00+CB66-0FD0+DD66-0F60 - - - Start with 4 lives - D066-0F00+CB66-0FD0+DD66-0F60 - - - Start with 5 lives - D966-0F00+CB66-0FD0+DD66-0F60 - - - Start with 7 lives - D566-0F00+CB66-0FD0+DD66-0F60 - - - Start with 9 lives - DB66-0F00+CB66-0FD0+DD66-0F60 - - - Continue with 1 life instead of 3 - DF6C-A709+CB6C-A7D9+DD6C-A769 - - - Continue with 2 lives - D46C-A709+CB6C-A7D9+DD6C-A769 - - - Continue with 4 lives - D06C-A709+CB6C-A7D9+DD6C-A769 - - - Continue with 5 lives - D96C-A709+CB6C-A7D9+DD6C-A769 - - - Continue with 7 lives - D56C-A709+CB6C-A7D9+DD6C-A769 - - - Continue with 9 lives - DB6C-A709+CB6C-A7D9+DD6C-A769 - - - Start with Invincibility (blinking) (alt) - 7E15BD:00 - - - - Super Scope 6 (USA) - - Add 1 bullets at a time (Blastris A) - DFC6-05D4 - - - Add 3 bullets at a time (Blastris A) - D7C6-05D4 - - - Add 5 bullets at a time (Blastris A) - D9C6-05D4 - - - Add 7 bullets at a time (Blastris A) - D5C6-05D4 - - - Add 9 bullets at a time (Blastris A) - DBC6-05D4 - - - Infinite bullets (Blastris A) - C9C2-D16F - - - Clear 1 line instead of 5 to advance to next level (Blastris A) - DFC9-056F - - - Clear 2 lines to advance to next level (Blastris A) - D4C9-056F - - - Clear 3 lines to advance to next level (Blastris A) - D7C9-056F - - - Clear 4 lines to advance to next level (Blastris A) - D0C9-056F - - - Select low mode to start on level 5 (Blastris B, Type B) - D968-D100 - - - Select low mode to start on level 15 (Blastris B, Type B) - DE68-D100 - - - Select low mode to start on level 25 (Blastris B, Type B) - FB68-D100 - - - Select low mode to start on level 30 (Blastris B, Type B) - F368-D100 - - - Select low mode to start on level 35 (Blastris B, Type B) - 4768-D100 - - - Select low mode to start on level 40 (Blastris B, Type B) - 4668-D100 - - - Clear stage after 1 Molian is hit (Mole Patrol, Stage Mode) - BAA6-01DD - - - Take no damage (LazerBlazer, Type A) - 8262-64A1 - - - Take no damage (LazerBlazer Game, Type B) - 3CB0-670B - - - Take no damage (LazerBlazer Game, Type C) - C269-67DE - - - - Super Shadow of the Beast (USA) (Proto) - - Invincibility - C26F-0FA4+626E-DDA4+2D6D-0D64 - - - Infinite health - A964-0D04 - - - Infinite lives - C964-0D04 - - - Infinite credits - A965-046D - - - Moon-jump - C2B0-6D67+C26B-6FA7 - - - - Super Smash T.V. (USA) - - Invincibility on mobile force field pick-up - 6D65-6403+DF65-6463 - - - Weapons gauge doesn't lose power until you die (don't combine with don't lose weapon power code) - 8283-67D7 - - - Don't lose weapon power after death (don't combine with weapons gauge doesn't lose power code) - 6DB8-D404+DFB8-D464 - - - Infinite credits (if continue timer runs out and player starts, a credit gets used) - C223-D78B - - - Infinite lives - 82BB-DD04 - - - Bonus life worth nothing - 8284-AF03 - - - Join in with 2 lives - P1 - EEBF-D7A4 - - - Join in with 3 lives - P1 - DDBF-D7A4 - - - Join in with 4 lives - P1 - DFBF-D7A4 - - - Join in with 5 lives - P1 - D4BF-D7A4 - - - Join in with 7 lives - P1 - D0BF-D7A4 - - - Join in with 8 lives - P1 - D9BF-D7A4 - - - Join in with 9 lives - P1 - D1BF-D7A4 - - - 2 lives after continue - P1 - EEB1-D7A4 - - - 3 lives after continue - P1 - DDB1-D7A4 - - - 4 lives after continue - P1 - DFB1-D7A4 - - - 5 lives after continue - P1 - D4B1-D7A4 - - - 7 lives after continue - P1 - D0B1-D7A4 - - - 8 lives after continue - P1 - D9B1-D7A4 - - - 9 lives after continue - P1 - D1B1-D7A4 - - - 10 lives after continue - P1 - D5B1-D7A4 - - - 2 lives after continue - P2 - EEB0-DDA4 - - - 3 lives after continue - P2 - DDB0-DDA4 - - - 4 lives after continue - P2 - DFB0-DDA4 - - - 5 lives after continue - P2 - D4B0-DDA4 - - - 7 lives after continue - P2 - D0B0-DDA4 - - - 8 lives after continue - P2 - D9B0-DDA4 - - - 9 lives after continue - P2 - D1B0-DDA4 - - - 10 lives after continue - P2 - D5B0-DDA4 - - - Start with 0 continues - DD62-0F0D - - - Start with 1 continue - DF62-0F0D - - - Start with 2 continues - D462-0F0D - - - Start with 3 continues - D762-0F0D - - - Start with 5 continues - D962-0F0D - - - Start with 6 continues - D162-0F0D - - - Start with 7 continues - D562-0F0D - - - Start with 8 continues - D662-0F0D - - - Start with 9 continues - DB62-0F0D - - - Start with 3 lives - DD62-076D - - - Start with 4 lives - DF62-076D - - - Start with 5 lives - D462-076D - - - Start with 7 lives - D062-076D - - - Start with 8 lives - D962-076D - - - Start with 9 lives - D162-076D - - - Start with 10 lives - D562-076D - - - Invincibility - P1 - 7E18A5:00 - - - Invincibility - P2 - 7E18A6:00 - - - Infinite Shield - P1 - 7E18A9:01 - - - Infinite Shield - P2 - 7E18AA:01 - - - Infinite lives - P1 - 7E0531:09 - - - Infinite lives - P2 - 7E0532:09 - - - Max weapon gauge - P1 - 7E1899:06 - - - Max weapon gauge - P2 - 7E189A:06 - - - Have Rapid Fire - P1 - 7E18B0:04 - - - Have Rapid Fire - P2 - 7E18B1:04 - - - Have normal weapon - P1 - 7E1897:00 - - - Have normal weapon - P2 - 7E1898:00 - - - Have Spread weapon - P1 - 7E1897:01 - - - Have Spread weapon - P2 - 7E1898:01 - - - Have Rockets - P1 - 7E1897:02 - - - Have Rockets - P2 - 7E1898:02 - - - Have Grenade Launcher - P1 - 7E1897:03 - - - Have Grenade Launcher - P2 - 7E1898:03 - - - Have Grenade Lobber (glitchy) - P1 - 7E1897:04 - - - Have Grenade Lobber (glitchy) - P2 - 7E1898:04 - - - Have Speed Shoes - P1 - 7E18AD:FF - - - Have Speed Shoes - P2 - 7E18AE:FA - - - Have 10 Keys - 7E05B1:0A - - - Turbo mode on - 7E052E:01 - - - Circuit warp on - 7E020E:01 - - - Infinite credits (alt) - 7E0533:09 - - - - Super Soccer (USA) - - Each goal worth 2 - P1 - FC2A-0F65+3C2A-0FA5 - - - Each goal worth 3 - P1 - FC2A-0F65+FC2A-0FA5 - - - Each goal worth 4 - P1 - 1B2A-0F65+D72A-0FA5 - - - Each goal worth 5 - P1 - 1B2A-0F65+D02A-0FA5 - - - Each goal worth 6 - P1 - 1B2A-0F65+D92A-0FA5 - - - Each goal worth 7 - P1 - 1B2A-0F65+D12A-0FA5 - - - Each goal worth 8 - P1 - 1B2A-0F65+D52A-0FA5 - - - Each goal worth 9 - P1 - 1B2A-0F65+D62A-0FA5 - - - Each goal worth 2 - P2 - FC22-0465+3C22-04A5 - - - Each goal worth 3 - P2 - FC22-0465+FC22-04A5 - - - Each goal worth 4 - P2 - 1B22-0465+D722-04A5 - - - Each goal worth 5 - P2 - 1B22-0465+D022-04A5 - - - Each goal worth 6 - P2 - 1B22-0465+D922-04A5 - - - Each goal worth 7 - P2 - 1B22-0465+D122-04A5 - - - Each goal worth 8 - P2 - 1B22-0465+D522-04A5 - - - Each goal worth 9 - P2 - 1B22-0465+D622-04A5 - - - Timer continues to count when it is normally stopped (pause can still stop time) - DDA6-0DD1 - - - - Super Soccer Champ (USA) - - Faster timer - F32B-D400 - - - Slower timer - 5D2B-D400 - - - Faster Brazil strikers - D4E7-6DEF - - - Faster USA strikers - D4E0-6DEF - - - Faster England strikers - D4ED-6DEF - - - Faster Germany strikers - D4E3-0DEF - - - Faster Italy strikers - D4EF-6DEF - - - Faster Holland strikers - D4E4-6DEF - - - Faster Argentina strikers - D4EE-0DEF - - - Faster France strikers - D4E9-6DEF - - - - Super Solitaire (USA) (En,Fr,De,Es,It) - - Move cards to any pile - Klondike - 6D8C-476F+DD8A-34AD+DD88-3D0D - - - Move cards to any pile - Free Cell - 6D8F-44A4 - - - - Super Soukoban (Japan) - - Infinite steps - C2CC-64AB - - - Walk through walls - DD88-D4A6+DD88-D706 - - - - Super Star Wars (USA) (Rev 1) - - Protection against most damage - 1D34-C704 - - - Infinite lives - C232-14D4+CB6C-3767 - - - Infinite continues - 4A21-14D5 - - - Blaster power-ups remain after dying - 553A-1764 - - - Hit anywhere - Side-scrolling levels - 1D89-1407+2D89-14D7+AD89-1F07+DD81-1DA7+DD89-1F67+DD89-1FA7 - - - Invincibility + hit anywhere - 3DCC-1DAF+7DCC-1F6F+DDCC-1F0F+F2CC-1FDF - - - Only 1 Jawa needed to pass landspeeder levels - DF67-4FAF+DF60-4D6F - - - Only 5 Jawas needed to pass landspeeder levels - D967-4FAF+D960-4D6F - - - Only 10 Jawas needed to pass landspeeder levels - DC67-4FAF+DC60-4D6F - - - 25 Jawas needed to pass landspeeder levels - FB67-4FAF+FB60-4D6F - - - 50 Jawas needed to pass landspeeder levels - 7467-4FAF+7460-4D6F - - - No fuel maximum for fuel power-ups - 6DA5-4D04 - - - Fuel power-ups completely refill the landspeeder - 40A1-47D4 - - - Small hearts restore 1/2 health (easy level) - D43B-CF00 - - - Small hearts restore 1/2 health (brave level) - DF3B-CFA0 - - - Small hearts restore 1/2 health (Jedi level) - DF3B-C400 - - - Small hearts restore 2x health (easy level) - D13B-CF00 - - - Small hearts restore 2x health (brave level) - D03B-CFA0 - - - Small hearts restore 2x health (Jedi level) - D03B-C400 - - - Small hearts restore 4x health (easy level) - DA3B-CF00 - - - Small hearts restore 4x health (brave level) - D63B-CFA0 - - - Small hearts restore 4x health (Jedi level) - D63B-C400 - - - Han Solo and Chewbacca start with a blaster - DD88-37A5 - - - Han Solo and Chewbacca start with a seeker gun - D488-37A5 - - - Han Solo and Chewbacca start with a rapid ion gun - D788-37A5 - - - Han Solo and Chewbacca start with a plasma gun - D088-37A5 - - - Have character select menu on a new game - DDB9-CF67 - - - Have Lightsaber on a new game - DDB0-C767 - - - Start with 1/2 fuel on landspeeder levels - F467-4D0F - - - Start with 2x fuel on landspeeder levels - 0667-4D0F - - - Start with 2 lives - DF35-CDA0 - - - Start with 6 lives - D935-CDA0 - - - Start with 8 lives - D535-CDA0 - - - Start with 11 lives - DC35-CDA0 - - - Start with 16 lives - DE35-CDA0 - - - Start with 26 lives - FB35-CDA0 - - - Start with 51 lives - 7435-CDA0 - - - Start with 100 lives - 1735-CDA0 - - - Start with no continues - DD3B-C760 - - - Start with 5 continues - D93B-C760 - - - Start with 7 continues - D53B-C760 - - - Start with 10 continues - DC3B-C760 - - - Start with 15 continues - DE3B-C760 - - - Start with 25 continues - FB3B-C760 - - - Start with 50 continues - 743B-C760 - - - Start with 99 continues - 173B-C760 - - - Start with 1/2 health (easy level) - F435-CFA0 - - - Start with 1/2 health (brave level) - FD35-C400 - - - Start with 1/2 health (Jedi level) - D335-C4A0 - - - Start with 2x health (easy level) - 0635-CFA0 - - - Start with 2x health (brave level) - 0D35-C400 - - - Start with 2x health (Jedi level) - 7635-C4A0 - - - Infinite health - 7E0A79:FF - - - Infinite time - 7E096F:0F - - - Infinite Shields - 7E0988:01 - - - Infinite lives - 7E08FB:03 - - - Infinite Thermal Detonators - 7E0978:06 - - - Infinite Fighter Life - 7E0876:64 - - - Infinite Torpedoes - 7E0878:63 - - - Always have Plasma Gun - 7E0985:04 - - - Always have Rapid Ion - 7E0985:03 - - - Always have Seeker Gun - 7E0985:02 - - - Have Lightsaber and character select menu on a new game - 7E0110:C0 - - - - Super Star Wars (USA) - - Hit anywhere - Side-scrolling levels - 1D8B-1467+2D8B-1407+AD8B-1F67+DD8B-14D7+DD8B-1FA7+DD8C-1FD7 - - - Infinite health - 7E0A79:FF - - - Infinite time - 7E096F:0F - - - Infinite Shields - 7E0988:01 - - - Infinite lives - 7E08FB:03 - - - Infinite Thermal Detonators - 7E0978:06 - - - Infinite Fighter Life - 7E0876:64 - - - Infinite Torpedoes - 7E0878:63 - - - Always have Plasma Gun - 7E0985:04 - - - Always have Rapid Ion - 7E0985:03 - - - Always have Seeker Gun - 7E0985:02 - - - Have Lightsaber and character select menu on a new game - 7E0110:C0 - - - - Super Star Wars - Return of the Jedi (USA) (Rev 1) - - Infinite lives - C230-CF0F - - - Infinite Force power when you use the Force Saber - C234-34AA - - - Always have shield - CB6E-4704 - - - Once you have thermal detonator you keep it (disable to use force power) - C222-3769 - - - Infinite Force power when you use the Freeze Force - C281-3DB9 - - - Finish the first level almost instantly - 1BBD-C703+EEBD-C763+EEBD-C7A3 - - - Start with 1 life - DD82-C7B1 - - - Start with 5 lives - D082-C7B1 - - - Start with 10 lives - DB82-C7B1 - - - Start with 25 lives - F682-C7B1 - - - Start with very little health - CB8E-3D21+DF8E-3FF1+DD8E-3F91 - - - Start with about 1/4 health - CB8E-3D21+DE8E-3FF1+DD8E-3F91 - - - Start with about 1/2 health - CB8E-3D21+FD8E-3FF1+DD8E-3F91 - - - Start with about 3/4 health - CB8E-3D21+FE8E-3FF1+DD8E-3F91 - - - - Super Star Wars - The Empire Strikes Back (USA) (Rev 1) - - Almost invincible - except spikes (works for enemy too) - 483F-376F - - - Infinite lives - C238-C70F - - - Infinite continues - C229-4DD1 - - - Infinite thermal detonators - 6DE9-47AF - - - Elevation and Freeze don't drain force bar - C229-14F9 - - - Saber control doesn't drain force bar - DDCC-1DDA - - - Mind control, Slow, Deflect and Invisible don't drain force bar - C22F-C7F9 - - - Keep gun power-ups after dying - C238-CD6F - - - Shield power-ups don't last as long - DD81-3DD4 - - - Shield power-ups last longer - D481-3DD4 - - - Shield power-ups last much longer - D781-3DD4 - - - Shield power-ups last a very long time - DE81-3DD4 - - - Health sword power-ups add 1/2 as much - D484-37A4 - - - Health sword power-ups add 2x as much - D684-37A4 - - - Health sword power-ups add 4x as much - FD84-37A4 - - - Force orbs add 1/2 as much - F68B-3764 - - - Force orbs add 2x as much - 1D8B-3764 - - - Force orbs fill force bar - EE8B-3764 - - - Small hearts heal less on Easy - DF2B-C465 - - - Small hearts heal 2x as much on Easy - D12B-C465 - - - Small hearts heal 4x as much on Easy - DA2B-C465 - - - Small hearts heal very much on Easy - 4D2B-C465 - - - Small hearts heal completely on Easy - 002B-C465 - - - Small hearts heal less on Brave level - DF2B-C7D5 - - - Small hearts heal 2x as much on Brave - D02B-C7D5 - - - Small hearts heal 4x as much on Brave - D62B-C7D5 - - - Small hearts heal very much on Brave - 4D2B-C7D5 - - - Small hearts heal completely on Brave - 002B-C7D5 - - - Small hearts heal less on Jedi level - DF2B-C765 - - - Small hearts heal 2x as much on Jedi - D02B-C765 - - - Small hearts heal 4x as much on Jedi - D62B-C765 - - - Small hearts heal very much on Jedi - 4D2B-C765 - - - Small hearts heal completely on Jedi - 002B-C765 - - - Big hearts heal 1/2 your health instead of 1/4 - 3C8D-3D04 - - - Big hearts heal completely - DC8D-3D04 - - - Continue with 2 lives on Easy - DF21-C465 - - - Continue with 6 lives on Easy - D921-C465 - - - Continue with 21 lives on Easy - F021-C465 - - - Continue with 51 lives on Easy - 7421-C465 - - - Continue with 2 lives on Jedi - DF21-C765 - - - Continue with 6 lives on Jedi - D921-C765 - - - Continue with 21 lives on Jedi - F021-C765 - - - Continue with 100 lives on Jedi - 1721-C765 - - - Tauntaun starts with 1/2 usual health - 4D20-CF2F - - - Tauntaun starts with 3/4 usual health - 7D20-CF2F - - - Tauntaun starts with a little more health than usual - 0020-CF2F - - - Start with all force abilities - 6D23-47F9 - - - Start with Flame gun - 1st life only - 622C-47D0 - - - Start with 2 lives on Brave - DF21-C7D5 - - - Start with 6 lives on Brave - D921-C7D5 - - - Start with 21 lives on Brave - F021-C7D5 - - - Start with 100 lives on Brave - 1721-C7D5 - - - Start with 1 continue - DF2C-CDA5 - - - Start with 5 continues - D92C-CDA5 - - - Start with 9 continues - DB2C-CDA5 - - - Start with 1/2 as much health on Easy - F425-CDD5 - - - Start with 3/4 as much health on Easy - F625-CDD5 - - - Start with more health on Easy - 4C25-CDD5 - - - Start with much more health on Easy - 7D25-CDD5 - - - Start with maximum health on Easy - 0025-CDD5 - - - Start with 1/2 as much health on Brave - FD25-CD65 - - - Start with 3/4 as much health on Brave - F625-CD65 - - - Start with more health on Brave - 4C25-CD65 - - - Start with much more health on Brave - 7D25-CD65 - - - Start with maximum health on Brave - 0025-CD65 - - - Start with half as much health on Jedi - D325-CFD5 - - - Start with 3/4 as much health on Jedi - F925-CFD5 - - - Start with no continues - DD2C-CDA5 - - - Start on level 1-2 - D469-1707 - - - Start on level 1-3 - D169-1707 - - - Start on level 1-4 - D769-1707 - - - Start on level 1-5 - D969-1707 - - - Start on level 1-6 - D069-1707 - - - Start on level 1-7 - DB69-1707 - - - Start on level 1-8 - F969-1707 - - - Start on level 1-10 - D569-1707 - - - Start on Hoth 3D level - D369-17D7+DC69-1707 - - - Start on level 1-11 - D669-1707 - - - Start on Asteroids level - F469-17D7+DD69-1707 - - - Start on level 3-1 - DA69-1707 - - - Start on level 3-2 - D269-1707 - - - Start on level 3-3 - D369-1707 - - - Start on Cloud City 3D level - D369-17D7+FC69-1707 - - - Start on level 4-2 - DE69-1707 - - - Start on level 4-3 - F769-1707 - - - Start on level 4-4 - F469-1707 - - - Start on level 4-5 - FD69-1707 - - - Start on level 4-6 - F569-1707 - - - Start on level 4-7 - F669-1707 - - - Start on Darth Vader level - F169-1707 - - - - Super Street Fighter II (USA) - - Invincibility (except against throws, projectiles don't work) - P1 - 6D9C-8D67+DF9C-8DA7+6DA1-8FD5+D4A1-8F05+6DAF-7405+D4AF-7465 - - - Infinite health - P1 - CB96-7DDD+8D96-7D0D+6296-7D6D+7F96-7DAD+D996-7FDD - - - Don't take damage except from throws or grabs - both players - 3C10-7467+3C10-74A7 - - - Hit anywhere (except projectiles) - P1 - 3D1D-5DDF+8D1D-5DAF+0D1D-5D0F+D51D-5D6F - - - 1st normal hit wins - except throws or grabs - DD10-7707 - - - No charging required for some special moves - D002-EDD5 - - - Some special moves can be done in the air - DD47-8DD1 - - - Dizziness doesn't last - 1077-7F61 - - - Every hit sets opponent on fire - CB17-8FAD+7D17-84DD - - - Every hit sets the opponent on fire and knocks him down - CB17-8FAD+F617-84DD - - - Every hit zaps the opponent and knocks him down - CB17-8FAD+FC17-84DD - - - Every hit knocks the opponent down - CB17-8FAD+FA17-84DD - - - Every hit is a "hard hit" - opponent almost never gets knocked down - CB17-8FAD+DC17-84DD - - - Players jump slower (not functional for CPU) - CB79-EF61+D579-EFA1 - - - Players jump faster (not functional for CPU) - CB79-EF61+D879-EFA1 - - - Each battle lasts only 1 round - DF81-E404 - - - Speed up timer - FE0C-7FDD - - - Slow down timer - 9C0C-7FDD - - - P2 starts right in front of P1 - F122-E760 - - - Start with 1/4 health - both players - 4A9C-7FDF - - - Start with 1/2 health - both players - 969C-7FDF - - - Start with 3/4 health - both players - 609C-7FDF - - - Balrog - Fierce charging punch, does heavy damage - 6E6A-EF90 - - - Balrog - Roundhouse charging uppercut, does heavy damage - 6E62-E790 - - - Balrog - Fierce shoulder butt, does heavy damage - 6E69-5799 - - - Balrog - Faster turn punch - roundhouse - D18C-74D5 - - - Balrog - Superfast turn punch - roundhouse - DB8C-74D5 - - - Blanka - Fierce forward ball, does heavy damage - 6E1C-E720 - - - Blanka - Beast leap, does heavy damage - 6E1B-7D29 - - - Blanka - Jab zap, does heavy damage - 6E15-ED20 - - - Cammy - Fierce spin knuckle, does heavy damage - 6EB3-5F20 - - - Cammy - Roundhouse front kick, does heavy damage - 6EBB-5720 - - - Cammy - Roundhouse cannon drill, from far away, does heavy damage - 6EBF-5420 - - - Cammy - Erratic cannon drill - D1BE-E7A0 - - - Cammy - Superfast cannon drill - DDBE-E760 - - - Cammy - Superfast front kick - fierce - D620-17FA - - - Cammy - Superfast front kick - strong - D620-149A - - - Cammy - Superfast front kick - jab - D620-14FA - - - Chun-Li - Fierce fireball, does heavy damage - 6E5D-7D20 - - - Chun-Li - Down step, does heavy damage - DE10-5425 - - - Chun-Li - Short lightning kick, does heavy damage - 6E11-8425 - - - Chun Li - Faster whirlwind kick - roundhouse - D15E-8F60 - - - Chun Li - Superfast whirlwind kick - roundhouse - DB5E-8F60 - - - Dee Jay - Fierce hyper fist (1st hit), does heavy damage - 6EC5-EF99 - - - Dee Jay - Fierce Max Out, does heavy damage - 6ECF-7D91 - - - Dee Jay - Roundhouse dread kick, does heavy damage - 6EC3-8F99 - - - Dee Jay - Dread kick is faster - fierce - DB23-179A - - - Dee Jay - Dread kick is faster - strong - DB23-1F9A - - - Dhalsim - Yoga spear, does heavy damage - DE5E-8729 - - - Dhalsim - Strong yoga flame (solid hit), does heavy damage - 6E5E-E429 - - - Dhalsim - Fierce yoga fire, does heavy damage - 6E58-E729 - - - E Honda - Jab hundred-hand slap, does heavy damage - 6E99-8795 - - - E Honda - Fierce torpedo, does heavy damage - 6E96-E495 - - - E Honda - Fierce sumo splash, does heavy damage - 6E92-E795 - - - Fei Long - Fierce slide punch (1st hit), does heavy damage - 6EC7-5F20 - - - Fei Long - Fierce slide punch (2nd hit), does heavy damage - 6EC0-5D20 - - - Fei Long - Fierce slide punch (3rd hit), does heavy damage - 6EC0-5720 - - - Fei Long - Roundhouse dragon kick, does heavy damage - 6ECE-7420 - - - Fei Long - Superfast rekka-ken - strong - D528-1D2A - - - Fei Long - Superfast rekka-ken - fierce - D627-1F2A - - - Guile - Fierce sonic boom, does heavy damage - 6E16-5491 - - - Guile - Roundhouse sonic kick, extremely close range, does heavy damage - 6E1E-7491 - - - Hawk - The Hawk, does heavy damage - 6EB3-5F91 - - - Ken - Fierce dragon punch, close to opponent, does heavy damage - 6E96-8721 - - - Ken - Fierce fireballs, close to opponent, does heavy damage - 6E92-8F21 - - - Ken - Roundhouse hurricane kick while on the ground, does heavy damage - 6E9A-5721 - - - Ken - No delay after throwing fireball - 3169-57A5 - - - Ken - Hurricane kicks rise higher when done in mid-air - 1060-E405 - - - Ken - Faster hurricane kicks - roundhouse - D1A9-1DBA - - - Ken - Super fast hurricane kicks - roundhouse - DBA9-1DBA - - - M. Bison - Super fast psycho crusher - fierce - DB2F-CD9A - - - M. Bison - Psycho crusher in one place - fierce - 1086-5D00 - - - Ryu - Jab dragon punch, close to opponent, does heavy damage - 6E9D-8729 - - - Ryu - Fierce red fireballs from far away, does heavy damage - 6E9B-E429 - - - Ryu - Roundhouse hurricane kick in the air, does heavy damage - 6E9D-E429 - - - Ryu - No delay after throwing fireball - 3169-57A5 - - - Ryu - Hurricane kicks rise higher when done in mid-air - 1060-E405 - - - Ryu - Faster hurricane kicks - roundhouse - D1A9-1DBA - - - Ryu - Super fast hurricane kicks - roundhouse - DBA9-1DBA - - - Sagat - Roundhouse low tiger, from far away, does heavy damage - 6E64-5F20 - - - Sagat - Fierce high tiger, from far away, does heavy damage - 6E62-7720 - - - Sagat - Short tiger knee, does heavy damage - 6E53-ED25 - - - Sagat - Jab projectiles move slower for everyone but Sagat, does heavy damage - EE27-479E - - - Sagat - Jab projectiles move slower for Sagat, does heavy damage - EE20-4D2E - - - Sagat - Fierce projectiles move faster for everyone but Sagat, does heavy damage - EC20-4D9E - - - Sagat - Fierce projectiles move faster for Sagat, does heavy damage - E520-4F2E - - - Vega - Fierce claw dive, does heavy damage - AE6A-8491 - - - Vega - Rolling claw attack, does heavy damage - 6E62-8F91 - - - Vega - Claw thrust, does heavy damage - 6E6E-EF91 - - - Vega - Superfast claw roll - D553-5F00 - - - Vega - Claw roll in one place - 1053-5760 - - - Zangief - Double spinning lariat (only certain hits), does heavy damage - 6E51-EF90 - - - Zangief - Spinning clothesline, does heavy damage - 6E5F-ED90 - - - Infinite health - P1 (alt) - 7E0531:B0 - - - Instant win - P1 - 7E0771:FF - - - Infinite time - 7E1929:99 - - - - Super Strike Eagle (USA) - - Infinite fuel - C9BD-47A4 - - - Infinite ammo - air-to-air mode - DD2A-3D64 - - - Infinite Maverick Missiles - 82CD-3FD7 - - - Infinite Sidewinder Missiles - C92F-44A7 - - - Infinite Chaff - 3C2A-4707 - - - Infinite Flares - 3C26-4FD7 - - - Use up ammo faster - air-to-air mode - DC2A-3D64 - - - Start with 0 Chaff instead of 12 - DD3F-0F61 - - - Start with 6 Chaff - D13F-0F61 - - - Start with 50 Chaff - 743F-0F61 - - - Start with 99 Chaff - 173F-0F61 - - - Start with 0 Flares instead of 12 - DD3F-04A1 - - - Start with 6 Flares - D13F-04A1 - - - Start with 50 Flares - 743F-04A1 - - - Start with 99 Flares - 173F-04A1 - - - Start with 2 Sidewinder missiles instead of 12 - D437-0401 - - - Start with 25 Sidewinder Missiles - FB37-0401 - - - Start with 50 Sidewinder Missiles - 7437-0401 - - - Start with 99 Sidewinder Missiles - 1737-0401 - - - Start with less fuel - 0D3D-0701 - - - - Super Tennis (USA) - - Super speed - Matt - D060-AFAF+D761-AFAF+DD24-07A5 - - - Super speed - Amy - D060-AFAF+D761-AFAF+DD24-A7A5 - - - Super speed - Brian - D060-AFAF+D761-AFAF+DD27-07A5 - - - Super speed - Ki - D060-AFAF+D761-AFAF+DD27-A7A5 - - - Super speed - Phil - D060-AFAF+D761-AFAF+DD20-07A5 - - - Super speed - Lisa - D060-AFAF+D761-AFAF+DD20-A7A5 - - - Super speed - John - D060-AFAF+D761-AFAF+DD29-07A5 - - - Super speed - Erin - D060-AFAF+D761-AFAF+DD29-A7A5 - - - Super speed - Meyer - D060-AFAF+D761-AFAF+DD21-07A5 - - - Super speed - Donna - D060-AFAF+D761-AFAF+DD21-A7A5 - - - Super speed - Rich - D060-AFAF+D761-AFAF+DD25-07A5 - - - Super speed - Debbie - D060-AFAF+D761-AFAF+DD25-A7A5 - - - Super speed - Hiro - D060-AFAF+D761-AFAF+DD26-07A5 - - - Super speed - Colette - D060-AFAF+D761-AFAF+DD26-A7A5 - - - Super speed - Steve - D060-AFAF+D761-AFAF+DD2B-07A5 - - - Super speed - Nancy - D060-AFAF+D761-AFAF+DD2B-A7A5 - - - Super speed - Rob - D060-AFAF+D761-AFAF+DD2C-07A5 - - - Super speed - Yuka - D060-AFAF+D761-AFAF+DD2C-A7A5 - - - Super speed - Mar - D060-AFAF+D761-AFAF+DD28-07A5 - - - Super speed - Barb - D060-AFAF+D761-AFAF+DD28-A7A5 - - - - Super Troll Islands (USA) - - Infinite health (except spikes) - 7E215A:04 - - - Max score - 7E2009:99+7E200A:99+7E200B:99+7E200C:09 - - - Infinite whirlwinds - 7E2074:09 - - - Infinite cupcakes - 7E20F7:99 - - - Die after one hit - 7E215A:00 - - - - Super Turrican (USA) - - Invincibility - C226-DDD4 - - - Infinite time - 6D28-ADDF - - - Infinite lives - C22D-ADDF - - - Infinite continues - C266-DD6F - - - Infinite wheel time - C22D-0404 - - - Infinite Smart Lines - C226-D704 - - - Hit anywhere - 568C-0704+6D8C-07D4+C280-67D4 - - - Don't decrease weapon power after dying - 6D22-640F+F122-646F - - - Never change weapon type - 4A82-AF0D - - - Start with blue weapon - DF83-6D0D - - - Start with yellow weapon - D483-6D0D - - - Start with all weapons at maximum power (4 power-ups) - D083-6D0D+BA83-67DD - - - Start with 1 life - Normal/Hard only - DD61-6D0D - - - Start with 2 lives - Normal/Hard only - DF61-6D0D - - - Start with 5 lives - Normal/Hard only - D061-6D0D - - - Start with 10 lives - Normal/Hard only - DB61-6D0D - - - Start with 25 lives - Normal/Hard only - F661-6D0D - - - Start with 50 lives - Normal/Hard only - 7F61-6D0D - - - Start with 99 lives - Normal/Hard only - 1461-6D0D - - - Start with 1 continue - Easy/Normal only - DF6F-6DDD - - - Start with 2 continues - Easy/Normal only - D46F-6DDD - - - Start with 5 continues - Easy/Normal only - D96F-6DDD - - - Start with 10 continues - Easy/Normal only - DC6F-6DDD - - - Start with 25 continues - Easy/Normal only - FB6F-6DDD - - - Start with 50 continues - Easy/Normal only - 746F-6DDD - - - Start with 99 continues - Easy/Normal only - 176F-6DDD - - - Start with no Smart Lines - DD8E-6DDD - - - Start with 1 Smart Line - DF8E-6DDD - - - Start with 2 Smart Lines - D48E-6DDD - - - Start with 4 Smart Lines - only 3 shown at once - D08E-6DDD - - - Start with 5 Smart Lines - only 3 shown at once - D98E-6DDD - - - Start with 10 Smart Lines - only 3 shown at once - DC8E-6DDD - - - Start with 25 Smart Lines - only 3 shown at once - FB8E-6DDD - - - Start with 50 Smart Lines - only 3 shown at once - 748E-6DDD - - - Start with 99 Smart Lines - only 3 shown at once - 178E-6DDD - - - Start on level 2 - D46D-64DD - - - Start on level 3 - D76D-64DD - - - Start on level 4 - D06D-64DD - - - Start on level 5 - D96D-64DD - - - Start on level 6 - D16D-64DD - - - Start on level 7 - D56D-64DD - - - Start on level 8 - D66D-64DD - - - Start on level 9 - DB6D-64DD - - - Start on level 10 - DC6D-64DD - - - Start on level 11 - D86D-64DD - - - Start on level 12 - DA6D-64DD - - - Start on level 13 - 7E049E:0D - - - Infinite health - 7E04FF:0C - - - Infinite time (alt) - 7E056C:23 - - - Infinite Bombs - 7E050A:04 - - - - Super Turrican 2 (USA) - - Infinite time - 7E0AEA:03+7E0AEB:55 - - - Infinite lives - 7E0AF2:02 - - - Infinite Bombs - 7E0AF4:03 - - - Have Missile sub-weapon - 7E034A:01 - - - Max Spread Shot level - 7E033C:04 - - - Max Rebound level - 7E033E:04 - - - Max Laser level - 7E0340:04 - - - Max Flamethrower level - 7E0342:04 - - - Start with Spread Shot - 7E0336:00 - - - Start with Rebound - 7E0336:10 - - - Start with Laser - 7E0336:16 - - - Start with Flamethrower - 7E0336:02 - - - Start on level 2 - 7E007E:02 - - - Start on level 3 - 7E007E:03 - - - Start on level 4 - 7E007E:04 - - - Start on level 5 - 7E007E:05 - - - Start on level 6 - 7E007E:06 - - - Start on level 7 - 7E007E:07 - - - Start on level 8 - 7E007E:08 - - - Start on level 9 - 7E007E:09 - - - Start on level 10 - 7E007E:0A - - - Start on level 11 - 7E007E:0B - - - Start on level 12 - 7E007E:0C - - - Start on level 13 - 7E007E:0E - - - Start on level 14 - 7E007E:0F - - - Start on level 15 - 7E007E:10 - - - Start on level 16 - 7E007E:11 - - - Start on level 17 - 7E007E:12 - - - - Super Valis IV (USA) - - Allows you to select easy mode on the options screen - 042C-ADD7 - - - Infinite usage for all special attacks - DD66-A7A7 - - - Protection from most enemy attacks - C2AA-0DAF - - - Infinite hits on armor - C2AA-0FAF - - - Hit anywhere - DD8D-DD0D+DDAB-D4DF - - - Get items from anywhere - 6D8A-AF67 - - - Heart worth more - F684-0F0D - - - Heart worth much more - 4684-0F0D - - - Selecting an item does not remove it from the menu of available items - 826F-A467 - - - Enables level select - 3CAC-6407 - - - Get any score for maximum score - DDCB-D7A7 - - - Item is always search - CB62-6767+D762-67A7 - - - Item is always three-way beam - CB62-6767+DF62-67A7 - - - Item is always bomber - CB62-6767+D462-67A7 - - - Item is always homing - CB62-6767+D062-67A7 - - - Item is always heart - CB62-6767+D962-67A7 - - - Item is always armor - CB62-6767+D162-67A7 - - - Infinite max health - 7E0FB5:40 - - - Highest max health - 7E0FB6:40 - - - Infinite item use - 7E0FAE:09 - - - Have all items - 7E0FA7:01+7E0FA8:02+7E0FA9:03+7E0FAA:04+7E0FAB:05+7E0FAC:06 - - - - Super Widget (USA) - - Invincibility - DDB9-0F0D - - - Infinite lives - C268-AFDD - - - Infinite time - C26B-6D6D - - - 1 W gives 1 life - D7BA-D4D7 - - - - SWAT Kats - The Radical Squadron (USA) - - Invincibility after first hit - 829F-EDAD - - - Invincible while flying the jet - 18EB-5FD9+18E2-5FA9+18ED-84A9 - - - Almost infinite health - 70A9-7467 - - - Gain levels quickly - 1B71-5DD5 - - - World 5 - Dark Kat always enabled - D932-7F67 - - - - Syndicate (USA) - - Start with Mega-cash - 7DC3-1FDD+7DC3-1F0D - - - All agents have infinite ammo for pistols - CBAB-CD01 - - - - T2 - The Arcade Game (USA) - - Infinite health (alt) - P1 - 6D33-47D6 - - - Infinite health (alt) - P2 - 6D3F-1DA6 - - - Infinite gunpower - P1 - C9B7-1407 - - - Infinite gunpower - P2 - C9B9-17D7 - - - Infinite missiles - P1 - DD2A-476B - - - Infinite missiles - P2 - DD2E-4DDB - - - Shields lasts longer - 5E27-44A7 - - - Plasma Pulse Energizer lasts longer - P1 - D62B-4F67 - - - Plasma Pulse Energizer lasts longer - P2 - D628-47D7 - - - Keep P.P.E. for that level once picked up - P1 - C267-47A5 - - - Keep P.P.E. for that level once picked up - P2 - C260-4765 - - - Get 6 missiles for each 1 - P1 - D12D-4707 - - - Get 9 missiles for each 1 - P1 - DB2D-4707 - - - Get 9 missiles for each 1 - P2 - D124-4D67 - - - Get 6 missiles for each 1 - P2 - DB24-4D67 - - - Gunpower replenishes slower - P1 - FDB3-476F - - - Gunpower replenishes slower - P2 - FDB0-1F0F - - - 10 credits - FD3E-C7A3 - - - 15 credits - F93E-C7A3 - - - 20 credits - 4D3E-C7A3 - - - P.P.E. does extra damage - P1 - D12B-44A7 - - - P.P.E. does massive damage - P1 - F42B-44A7 - - - Infinite health - P1 - 7E007F:7F - - - Infinite health - P2 - 7E0081:7F - - - - Taz-Mania (USA) (Rev 1) - - Infinite health - C935-40C0 - - - Infinite time - DD3B-C0C0 - - - Infinite continues (don't combine with start on act codes) - C238-1140 - - - Advance to next level after getting 1 kiwi - 6089-319C - - - Faster timer - D035-C540 - - - 1 minute to complete act 1, level 1 - DF64-41C0 - - - 5 minutes to complete act 1, level 1 - D964-41C0 - - - Kiwi's worth 2 - E389-319C - - - Kiwi's worth 4 - EA89-319C - - - Kiwi's worth 5 - E889-319C - - - Kiwi's worth 7 - EB89-319C - - - Red bird worth 0 seconds instead of 10 - DD30-C910 - - - Red bird worth 20 seconds - D430-C910 - - - Red bird worth 30 seconds - D730-C910 - - - Red bird worth 40 seconds - D030-C910 - - - Red bird worth 50 seconds - D930-C910 - - - Start with 1/4 normal health - D522-3545 - - - Start with 1/2 normal health - DE22-3545 - - - Start with 3/4 normal health - F922-3545 - - - Start with 1 continue (don't combine with start on act codes) - DF3F-15C0 - - - Start with 5 continues (don't combine with start on act codes) - D93F-15C0 - - - Start with 7 continues (don't combine with start on act codes) - D53F-15C0 - - - Start with 9 continues (don't combine with start on act codes) - DB3F-15C0 - - - Start with 50 continues (don't combine with start on act codes) - 743F-15C0 - - - Start with 99 continues (don't combine with start on act codes) - 173F-15C0 - - - Start on act 1, level 2 - 4A36-1140+7D36-1110+DF3F-15C0 - - - Start on act 1, level 3 - 4A36-1140+7D36-1110+D43F-15C0 - - - Start on act 1 bonus level - 4A36-1140+7D36-1110 - - - Start on act 2, level 1 - 4A36-1140+7D36-1110+D03F-15C0 - - - Start on act 2, level 2 - 4A36-1140+7D36-1110+D93F-15C0 - - - Start on act 2, level 3 - 4A36-1140+7D36-1110+D13F-15C0 - - - Start on act 2 bonus level - 4A36-1140+7D36-1110+D53F-15C0 - - - Start on act 3, level 1 - 4A36-1140+7D36-1110+D63F-15C0 - - - Start on act 3, level 2 - 4A36-1140+7D36-1110+DB3F-15C0 - - - Start on act 3, level 3 - 4A36-1140+7D36-1110+DC3F-15C0 - - - Start on act 3 bonus level - 4A36-1140+7D36-1110+D83F-15C0 - - - Start on act 4, level 1 - 4A36-1140+7D36-1110+DA3F-15C0 - - - Start on act 4, level 2 - 4A36-1140+7D36-1110+D23F-15C0 - - - Start on act 4, level 3 - 4A36-1140+7D36-1110+D33F-15C0 - - - Start on act 4 bonus level - 4A36-1140+7D36-1110+DE3F-15C0 - - - Start on act 5, level 1 - 4A36-1140+7D36-1110+FD3F-15C0 - - - Start on act 5, level 2 - 4A36-1140+7D36-1110+FF3F-15C0 - - - Start on act 5, level 3 - 4A36-1140+7D36-1110+F43F-15C0 - - - Infinite health (alt) - 7E0096:1D - - - Infinite time (alt) - 7E0098:99 - - - - Taz-Mania (USA) - - Infinite health - C935-40C0 - - - Infinite time - DD3B-C0C0 - - - Infinite continues (don't combine with start on act codes) - C238-1140 - - - Advance to next level after getting 1 kiwi - 6089-319C - - - Faster timer - D035-C540 - - - 1 minute to complete act 1, level 1 - DF64-41C0 - - - 5 minutes to complete act 1, level 1 - D964-41C0 - - - Kiwi's worth 2 - E389-319C - - - Kiwi's worth 4 - EA89-319C - - - Kiwi's worth 5 - E889-319C - - - Kiwi's worth 7 - EB89-319C - - - Red bird worth 0 seconds instead of 10 - DD30-C910 - - - Red bird worth 20 seconds - D430-C910 - - - Red bird worth 30 seconds - D730-C910 - - - Red bird worth 40 seconds - D030-C910 - - - Red bird worth 50 seconds - D930-C910 - - - Start with 1/4 normal health - D522-3545 - - - Start with 1/2 normal health - DE22-3545 - - - Start with 3/4 normal health - F922-3545 - - - Start with 1 continue (don't combine with start on act codes) - DF3F-15C0 - - - Start with 5 continues (don't combine with start on act codes) - D93F-15C0 - - - Start with 7 continues (don't combine with start on act codes) - D53F-15C0 - - - Start with 9 continues (don't combine with start on act codes) - DB3F-15C0 - - - Start with 50 continues (don't combine with start on act codes) - 743F-15C0 - - - Start with 99 continues (don't combine with start on act codes) - 173F-15C0 - - - Start on act 1, level 2 - 4A36-1140+7D36-1110+DF3F-15C0 - - - Start on act 1, level 3 - 4A36-1140+7D36-1110+D43F-15C0 - - - Start on act 1 bonus level - 4A36-1140+7D36-1110 - - - Start on act 2, level 1 - 4A36-1140+7D36-1110+D03F-15C0 - - - Start on act 2, level 2 - 4A36-1140+7D36-1110+D93F-15C0 - - - Start on act 2, level 3 - 4A36-1140+7D36-1110+D13F-15C0 - - - Start on act 2 bonus level - 4A36-1140+7D36-1110+D53F-15C0 - - - Start on act 3, level 1 - 4A36-1140+7D36-1110+D63F-15C0 - - - Start on act 3, level 2 - 4A36-1140+7D36-1110+DB3F-15C0 - - - Start on act 3, level 3 - 4A36-1140+7D36-1110+DC3F-15C0 - - - Start on act 3 bonus level - 4A36-1140+7D36-1110+D83F-15C0 - - - Start on act 4, level 1 - 4A36-1140+7D36-1110+DA3F-15C0 - - - Start on act 4, level 2 - 4A36-1140+7D36-1110+D23F-15C0 - - - Start on act 4, level 3 - 4A36-1140+7D36-1110+D33F-15C0 - - - Start on act 4 bonus level - 4A36-1140+7D36-1110+DE3F-15C0 - - - Start on act 5, level 1 - 4A36-1140+7D36-1110+FD3F-15C0 - - - Start on act 5, level 2 - 4A36-1140+7D36-1110+FF3F-15C0 - - - Start on act 5, level 3 - 4A36-1140+7D36-1110+F43F-15C0 - - - Infinite health (alt) - 7E0096:1D - - - Infinite time (alt) - 7E0098:99 - - - - Tecmo Super Bowl (USA) - - Always 1st down - C9BA-14DC - - - 1 play to get a 1st down - DFBA-170C - - - 2 plays to get a 1st down - D4BA-170C - - - 3 plays to get a 1st down - D7BA-170C - - - 5 plays to get a 1st down - D9BA-170C - - - 7 plays to get a 1st down - D5BA-170C - - - Extra points worth 0 points - P1 - DD61-34DC - - - Extra points worth 3 points - P1 - D761-34DC - - - Extra points worth 5 points - P1 - D961-34DC - - - Extra points worth 9 points - P1 - DB61-34DC - - - Extra points worth 0 points - P2 - DDB5-34AB - - - Extra points worth 3 points - P2 - D7B5-34AB - - - Extra points worth 5 points - P2 - D9B5-34AB - - - Extra points worth 9 points - P2 - DBB5-34AB - - - Field goals worth 0 points - P1 - DD63-37AB - - - Field goals worth 1 points - P1 - DF63-37AB - - - Field goals worth 5 points - P1 - D963-37AB - - - Field goals worth 9 points - P1 - DB63-37AB - - - Field goals worth 0 points - P2 - DDBD-4DDB - - - Field goals worth 1 points - P2 - DFBD-4DDB - - - Field goals worth 5 points - P2 - D9BD-4DDB - - - Field goals worth 9 points - P2 - DBBD-4DDB - - - Safeties worth 0 points - P1 - DDB0-17AB - - - Safeties worth 1 points - P1 - DFB0-17AB - - - Safeties worth 5 points - P1 - D9B0-17AB - - - Safeties worth 9 points - P1 - DBB0-17AB - - - Safeties worth 0 points - P2 - DD67-17DC - - - Safeties worth 1 points - P2 - DF67-17DC - - - Safeties worth 5 points - P2 - D967-17DC - - - Safeties worth 9 points - P2 - DB67-17DC - - - Touchdowns worth 0 points - P1 - DD66-14AC - - - Touchdowns worth 3 points - P1 - D766-14AC - - - Touchdowns worth 5 points - P1 - D966-14AC - - - Touchdowns worth 8 points - P1 - D666-14AC - - - Touchdowns worth 0 points - P2 - DDCE-34A8+DDBB-176B - - - Touchdowns worth 3 points - P2 - D7CE-34A8+D7BB-176B - - - Touchdowns worth 5 points - P2 - D9CE-34A8+D9BB-176B - - - Touchdowns worth 9 points - P2 - DBCE-34A8+DBBB-176B - - - 0 timeouts for the first half - both players - DDA5-1F2D - - - 2 timeouts for the first half - both players - D4A5-1F2D - - - 7 timeouts for the first half - both players - D5A5-1F2D - - - 9 timeouts for the first half - both players - DBA5-1F2D - - - 0 timeouts for the first half - P1 - 10A5-14FD - - - 0 timeouts for the first half - P2 - 10A5-14BD - - - 0 timeouts for the second half - both players - DDAA-14FD - - - 2 timeouts for the second half - both players - D4AA-14FD - - - 7 timeouts for the second half - both players - D5AA-14FD - - - 9 timeouts for the second half - both players - DBAA-14FD - - - 0 timeouts for the second half - P1 - 10AA-149D - - - 0 timeouts for the second half - P2 - 10AA-142D - - - Timeouts are not reset at half-time - P1 - C9AA-149D - - - Timeouts are not reset at half-time - P2 - C9AA-142D - - - Quarters start at 2 minutes 30 seconds - 7DB3-C705+D4B3-C765 - - - - Tecmo Super Bowl III - Final Edition (USA) - - Infinite ability points in the edit menu - 3C38-C25D - - - - Tecmo Super NBA Basketball (USA) - - Never miss a shot (hold Y and press the shot button) - 7D69-CDE7+C269-CD77+D869-CD57+DC69-CD87+FF69-CF77 - - - - Teenage Mutant Ninja Turtles IV - Turtles in Time (USA) - - Invincibility - 3C86-0764+B98B-0D64+CB86-07A4+D48B-0DD4+DD8B-0D04 - - - Infinite health - 892F-0DD7 - - - Infinite lives - DDAC-6F67 - - - One hit kills (disable during Shredder's first fight) - 6D6C-0F2F - - - Hit anywhere - P1 - EA66-67AA - - - Hit anywhere - P2 - EA6B-67AA - - - Start with 1 life instead of 3 - DD28-67D9 - - - Start with 5 lives - D028-67D9 - - - Start with 10 lives - DB28-67D9 - - - Start with 25 lives - 4028-67D9 - - - Start with 50 lives - 0B28-67D9 - - - Start with 75 lives - 5028-67D9 - - - Start with 100 lives - BB28-67D9 - - - Start on level 2 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+DFB8-A4BF - - - Start on level 4 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D7B8-A4BF - - - Start on level 5 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D0B8-A4BF - - - Start on level 6 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D9B8-A4BF - - - Start on level 7 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D1B8-A4BF - - - Start on level 8 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D5B8-A4BF - - - Start on level 9 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+D6B8-A4BF - - - Start on level 10 - 69B8-A42F+6FB8-A7FF+DDB8-A79F+DBB8-A4BF - - - Infinite health (alt) (enable after level starts) - 7E044A:56 - - - - Teenage Mutant Ninja Turtles - Tournament Fighters (USA) - - Health doesn't decrease over time - DDC1-1D03 - - - Automatic and infinite continues - 82A6-4FA4 - - - Hit anywhere - P1 - 6D69-149F - - - Hit anywhere - P2 - 6D6f-1F9F - - - Leonardo is replaced by Rat King - DCCA-1405 - - - Leonardo is replaced by Karai - D8CA-1405 - - - Raphael is replaced by Rat King - DCCA-14A5 - - - Raphael is replaced by Karai - D8CA-14A5 - - - Donatello is replaced by Rat King - DCCA-1705 - - - Donatello is replaced by Karai - D8CA-1705 - - - Matches are 10 seconds long (leave menu option on 60) - FD86-4F00 - - - Matches are 15 seconds long (leave menu option on 60) - F986-4F00 - - - Matches are 20 seconds long (leave menu option on 60) - 4D86-4F00 - - - Matches are 75 seconds long (leave menu option on 60) - 5986-4F00 - - - Ultimate attack can be done any time - DFCA-44A3 - - - Ultimate attack can be done with about 1/4 health - F0CA-44A3 - - - Ultimate attack can be done with about 1/2 health - 46CA-44A3 - - - Ultimate attack can be done with about 3/4 health - 7ACA-44A3 - - - Health decreases twice as fast - D4C1-1D03 - - - After doing an ultimate attack, health bar goes to about 1/4 - F0C3-4463 - - - After doing an ultimate attack, health bar goes to about 1/2 - 46C3-4463 - - - After doing an ultimate attack, health bar goes to about 3/4 - 7AC3-4463 - - - Start with 1/4 health - both players - F6E9-3D25 - - - Start with 1/2 health - both players - 7DE9-3D25 - - - Start with 3/4 health - both players - 06E9-3D25 - - - Start with no continues (leave menu option on 3) - DDB1-CF60 - - - Start with 1 continue - D4B1-CF60 - - - Start with 3 continues - D0B1-CF60 - - - Start with 5 continues - D1B1-CF60 - - - Start with 7 continues - D6B1-CF60 - - - Infinite health - 7E0EE460 - - - Full power bar - 7E1AC060 - - - Empty power bar - opponent - 7E1B1000 - - - Opponent dizzy after every knockdown - 7E0FC210 - - - Win one round to win match - 7E195002 - - - - Tengai Makyou Zero (Japan) - - No random battles - 7E1659:08 - - - Infinite HP - character 1 - 7E1694:E7+7E1695:03 - - - Infinite HP - character 2 - 7E1696:E7+7E1697:03 - - - Infinite HP - character 3 - 7E1698:E7+7E1699:03 - - - Infinite MP - character 1 - 7E16C8:E7+7E16C9:03 - - - Infinite MP - character 2 - 7E16CA:E7+7E16CB:03 - - - Infinite MP - character 3 - 7E16CC:E7+7E16CD:03 - - - Fast level gain - 7E1950:FF+7E1951:FF - - - - Terminator, The (USA) - - Infinite lives (not on car stages) - C286-17DD - - - Infinite Grenades - 4AA3-0F96 - - - Infinite Missiles - C2A5-0D98 - - - 10 Grenades on pick-up - DCAB-A7FC - - - 2 Grenades on pick-up - D4AB-A7FC - - - Longer invulnerability after being hit - EE81-0D9C - - - Shorter invulnerability after being hit - FE81-0D9C - - - Don't lose Grenades on dying - 4AA9-04F6 - - - Don't lose Missiles on dying - 4AA9-0F96 - - - Get Rapid Fire on dying - D7A9-0D96 - - - Start with Rapid Fire - D767-CFAD - - - Start with 9 lives - DBA2-C4AF - - - Start with 1 life - DFA2-C4AF - - - - Terminator 2 - Judgment Day (USA) - - Infinite energy - 7E1407:C8 - - - Infinite health - John - 7E1452:64 - - - Infinite health - Sarah - 7E149D:64 - - - Infinte ammo - 7E1407:FF - - - - Tetris & Dr. Mario (USA) - - Tetris - Level never increases - 6DB4-1F65 - - - Tetris - After the first level your level increases every line - DFB4-1405 - - - Tetris - The same piece always drops - CBB7-C460+D4B7-C4A0+DDB7-C7D0 - - - Tetris - Always at high speed - CBB2-3DA9+DCB2-3FD9+3CB2-3F09 - - - Dr. Mario - The same piece always drops until you hit the change button - CBC9-4466+DCC9-44A6+3CC9-47D6 - - - Dr. Mario - The same piece always drops - CB67-37DC+DC67-370C+3C67-376C - - - Tetris 2 - Select any round - 1P (at round select meter, keep pressing right) - 9DBD-3DF4 - - - Tetris 2 - Tile speed always at 0 - CBC5-4FDC+DDC5-4F0C+DDC5-4F6C - - - Tetris 2 - Tile speed always at 255 - CBC5-4FDC+EEC5-4F0C+DDC5-4F6C - - - Tetris 2 - More time to place the blocks where you want them, even after they hit the ground (left and right only) - 6DB1-346B - - - - Tetris 2 (USA) (Rev 1) - - Select any round - 9DBD-3DF4 - - - Tile speed always at 0 - CBC5-4FDC+DDC5-4F0C+DDC5-4F6C - - - Tile speed always at 255 - CBC5-4FDC+EEC5-4F0C+DDC5-4F6C - - - More time to place the blocks where you want them - 6DB1-346B - - - - Tetris 2 (USA) - - Select any round - 9DBD-3DF4 - - - Tile speed always at 0 - CBC5-4FDC+DDC5-4F0C+DDC5-4F6C - - - Tile speed always at 255 - CBC5-4FDC+EEC5-4F0C+DDC5-4F6C - - - More time to place the blocks where you want them - 6DB1-346B - - - - Tetsuwan Atom (Japan) - - Invincibility - 2D65-C05D - - - Infinite health - C2CF-4D61 - - - Infinite lives - C2C1-1409 - - - - Thunder Spirits (USA) - - Infinite lives - CBCC-0407 - - - Infinite lives (alt) - C2CC-5407 - - - Infinite credits - 3CAC-67DF - - - Infinite credits (alt) - C2A8-8D0F - - - Hit anywhere - 40C5-6DD7+40C6-6407+40C9-6FA7+40CC-6D67+40CF-6767 - - - Keep captured weapon until game ends (except claw and shield) - C2C8-0407+C2C8-0767 - - - Continue with 1 life - BAAD-ADDF - - - Continue with 2 lives - DDAE-670F+CBAE-67DF - - - Continue with 5 lives - D7AE-670F+CBAE-67DF - - - Continue with 7 lives - D9AE-670F+CBAE-67DF - - - Continue with 9 lives - D5AE-670F+CBAE-67DF - - - Start with 1 credit - C7BF-0DAD - - - Start with 2 credits - 84BF-0DAD - - - Start with 3 credits - B4BF-0DAD - - - Start with 5 credits - BEBF-0DAD - - - Start with 8 credits - 68BF-0D6D+C4BF-0DAD - - - Start with 12 credits - D0BF-0D6D+C3BF-0DAD - - - Start with 1 life - EEB3-DD0D+CBB3-DDDD - - - Start with 2 lives - DDB3-DD0D+CBB3-DDDD - - - Start with 5 lives - D7B3-DD0D+CBB3-DDDD - - - Start with 7 lives - D9B3-DD0D+CBB3-DDDD - - - Start with 9 lives - D5B3-DD0D+CBB3-DDDD - - - Start with 25 lives - F5B3-DD0D+CBB3-DDDD - - - Start with 50 lives - 7DB3-DD0D+CBB3-DDDD - - - Start with 100 lives - 14B3-DD0D+CBB3-DDDD - - - Stage modifier - 7E1A98:?? - - - Start on stage 2 - DF65-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 3 - D465-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 4 - D765-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 5 - D065-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 6 - D965-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 7 - D165-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Start on stage 8 - D565-67D4+CB65-64A4+DD65-6704+3C65-6764 - - - Invincibility - 7E0418:7B - - - Invincibility (alt) - 00AD90:77 - - - - Tick, The (USA) - - Infinite lives - DDC7-1F6F - - - Most kicks are stronger - DA60-1352 - - - Most kicks kill most enemies - FE60-1352 - - - - Time Slip (USA) - - Invincibility - 3CC2-D769 - - - Infinite health - C2B7-6DD0 - - - Infinite lives - C22E-04A7 - - - Infinite ammo - C2C3-AFD0 - - - Infinite TGS meter - C284-A409 - - - Keep gun power-ups after dying - CD24-67A7+CD24-6467 - - - Flash 2x longer when hit - 6DB7-6460 - - - Barely flash at all when hit - FDB7-6460 - - - Fewer enemies - C26F-6FD1+C26C-07A1+C26F-ADD1+C26C-0FA1 - - - Start with all weapons and 9 rounds - DB68-6D0D - - - Start with 16 lives - EE6B-670D - - - Start with 4 health bars - after 1st life - DE2E-0F67 - - - Start with 3 health bars - after 1st life - D52E-0F67 - - - Start with 4 health bars - 1st life - DE6C-6F0D - - - Start with 3 health bars - 1st life - D56C-6F0D - - - Start on stage - Cretaceous - CB24-D707+DD24-D7A7+6227-DDD7+DF24-D767 - - - Start on stage - Egypt - CB24-D707+DD24-D7A7+6227-DDD7+D424-D767 - - - Start on stage - Rome - CB24-D707+DD24-D7A7+6227-DDD7+D724-D767 - - - Start on stage - Invasion 2147 - CB24-D707+DD24-D7A7+6227-DDD7+D024-D767 - - - Start on stage - Tirmat - CB24-D707+DD24-D7A7+6227-DDD7+D924-D767 - - - - Time Trax (USA) - - Infinite health - C2E8-1F60 - - - Infinite lives - C2EF-3FD0 - - - Invincibility - 84E948:FF+8187FF:FF - - - Infinite health (alt) - 7E14B5:06 - - - Infinite Time Stall - 7E14B9:30 - - - - Timecop (USA) - - Invincibility - DDBA-C4D7 - - - Don't flash when invincible - 6DB2-CD07 - - - Infinite health - 7E06F3:99 - - - Infinite Gun - 7E06F5:99 - - - Infinite Bombs - 7E06F7:99 - - - Infinite time - 7E0638:63 - - - - Timon & Pumbaa's Jungle Games (USA) - - Infinite ammo/balls - 7E00DC:09 - - - - Tin Star (USA) - - Infinite health - 7E09C8:A0 - - - Infinite lives - 7E0928:09 - - - Bosses die automatically - 7E0B78:00 - - - Gain money much faster - 7E182A:50+7E182B:C3 - - - Max money - 7E07DD:09+7E07DC:09+7E07DB:09+7E07DA:09+7E07D9:09+7E07D8:09 - - - Have $9,000,000 - 7E07D8:09 - - - - Tinhead (Europe) (Proto) - - Infinite health - C2BD-DDA4 - - - Infinite lives - C26E-AF6F - - - Infinite Bombs - C2BE-ADDF - - - - Tintin - Prisoners of the Sun (Europe) (En,Fr,De,Es) - - Invincibility - 2D67-C7DD+2D6B-1D0B - - - Infinite health - A289-376C - - - Infinite time - CE89-C4A8 - - - Infinite lives - A285-37AC - - - Infinite health (alt) - 7E059B:04 - - - Infinite time (alt) - 7F5B7F:63 - - - - Tintin in Tibet (Europe) (En,Fr,De,Nl) - - Invincibility (after first hit) - 7E050F:2C - - - Infinite health - 7E05C9:04 - - - Infinite lives - 7E05CB:03 - - - Infinite time - 7F59AE:06 - - - - Tiny Toon Adventures - Buster Busts Loose! (USA) - - Infinite health (when hit, a fake empty heart appears) - 3CE9-448A - - - Infinite lives (except football level) - DD34-37D7 - - - Infinite lives (football level) - DDC0-3F07 - - - Infinite dash meter - C927-47AD - - - Five heart maximum on challenge level - D184-C4A1 - - - 1-up gives 2-up (not on mystery weight challenge level, or by collecting stars) - D46B-CFAF - - - Small star worth 2 - D43E-C48E - - - Small star worth 5 - D93E-C48E - - - Small star worth 10 - FD3E-C48E - - - Gold Gogo Dodo Trophy lasts 1/2 as long - DF64-14AA - - - Gold Gogo Dodo Trophy lasts 2x as long - D064-14AA - - - Choose bonus level after completing a level - C9CE-1F0F - - - Passwords work on any difficulty level (not just Children level) - 7036-C001 - - - Continue with 1 life - DFC0-CFAF - - - Continue with 5 lives - D9C0-CFAF - - - Continue with 10 lives - FDC0-CFAF - - - Continue with 25 lives - 49C0-CFAF - - - Continue with 50 lives - 9DC0-CFAF - - - Continue with 99 lives - BBC0-CFAF - - - Start with 1 life - DF6F-14DF - - - Start with 5 lives - D96F-14DF - - - Start with 10 lives - FD6F-14DF - - - Start with 25 lives - 496F-14DF - - - Start with 50 lives - 9D6F-14DF - - - Start with 99 lives - BB6F-14DF - - - Start with no continues on normal level - handicap - DD6D-47D0 - - - Start with 7 continues on normal level - D56D-47D0 - - - Start with 9 continues on normal level - DB6D-47D0 - - - Start with no continues on challenge level - DD6D-4700 - - - Start with 5 continues on challenge level - D96D-4700 - - - Start with 7 continues on challenge level - D56D-4700 - - - Start with 9 continues on challenge level - DB6D-4700 - - - Start with 1 heart on Children or Normal difficulty levels (don't pick challenge level) - DFCD-4FAF - - - Start with 4 hearts on Children or Normal difficulty levels, 2 on Challenge - D0CD-4FAF - - - Start with 5 hearts on Children or Normal difficulty levels, 3 on Challenge - D9CD-4FAF - - - - TKO Super Championship Boxing (USA) - - Infinite punch meters - both players - 4088-AF00 - - - Infinite punch meter - P1 - 40BF-04DD - - - Infinite punch meter - P2 - 40B0-076D - - - 9 minutes per round - DB60-A7D4 - - - 6 minutes per round - D160-A7D4 - - - 1 minute per round - DF60-A7D4 - - - Allowed only 3 punches in punch meter - P1 - D7B4-0D6D+D765-A764 - - - Allowed only 3 punches in punch meter - P2 - D7B9-04DD+D765-A764 - - - - Tom and Jerry (USA) - - Invincibility - 7E14C8:33 - - - Infinite hearts - 7E1242:04 - - - Infinite lives - 7E14FC:09 - - - Infinite time - 7E157A:63 - - - Infinite Cheese Bits - 7E155E:63 - - - - Top Gear (USA) - - Always finish first - F6CE-0D6D - - - Infinite fuel - P1 - C225-6429 - - - Infinite fuel - P2 - C223-6D95 - - - Infinite nitro boosts - P1 - 3C84-6D64 - - - Infinite nitro boosts - P2 - 3C86-64A4 - - - Nitro boost lasts until end of race - P1 - C280-6FA4 - - - Nitro boost lasts until end of race - P2 - C288-6DD4 - - - Race in any country - 6DB7-AFEA - - - Don't slow down offroad - C229-D4F1 - - - Don't slow down against obstacles - DD23-6499 - - - Don't slow down against cars - DD38-D7F9+DD38-DF29 - - - Start with 1/2 fuel - 972B-0F64 - - - Start with 3/4 fuel - 5A2B-0F64 - - - Start with no nitro boosts instead of 3 - DD63-6DDD - - - Start with 1 nitro boost - DF63-6DDD - - - Start with 2 nitro boosts - D463-6DDD - - - Start with 6 nitro boosts - D163-6DDD - - - Start with 9 nitro boosts - DB63-6DDD - - - - Top Gear 2 (USA) - - Infinite nitro - A267-CD07 - - - Infinite nitros - P1 - C267-CD07 - - - Infinite nitros - P2 - C2CB-CF0F - - - Infinite fuel - C2B7-C404 - - - Infinite money - 82C4-49EE - - - Fuel never runs out - C9BD-1F04 - - - Always finish first - 632E-C767 - - - 1st place gives $50,000 instead of $10,000 - 7430-398E - - - 2nd place gives $50,000 instead of $6,000 - 7430-317E - - - 3rd place gives $50,000 instead of $4,000 - 7430-318E - - - 4th place gives $50,000 instead of $3,000 - 7430-357E - - - 5th place gives $50,000 instead of $2,000 - 7430-358E - - - 6th place gives $50,000 instead of $1,000 - 7439-307E - - - 7th place gives $50,000 instead of $0 - 7439-308E - - - 8th place gives $50,000 instead of $0 - 7439-397E - - - 9th place gives $50,000 instead of $0 - 7439-398E - - - 10th place gives $50,000 instead of $0 - 7439-317E - - - 1st place is worth 20 points instead of 10 - F039-355A - - - 2nd place is worth 20 points instead of 6 - F039-35EA - - - 3rd place is worth 20 points instead of 4 - F031-305A - - - 4th place is worth 20 points instead of 3 - F031-30EA - - - 5th place is worth 20 points instead of 2 - F031-395A - - - 6th place is worth 20 points instead of 1 - F031-39EA - - - 7th place is worth 20 points instead of 0 - F031-315A - - - 8th place is worth 20 points instead of 0 - F031-31EA - - - 9th place is worth 20 points instead of 0 - F031-355A - - - 10th place is worth 20 points instead of 0 - F031-35EA - - - Everything is free (must have enough to buy) - 0BC4-49EE+52C3-3083 - - - 2nd engine costs $1K instead of $30K - DFC5-405E - - - 2nd engine costs $15K instead of $30K - DEC5-405E - - - 3rd engine costs $1K instead of $50K - DFC5-40EE - - - 3rd engine costs $25K instead of $50K - FBC5-40EE - - - 4th engine costs $1K instead of $80K - DFC5-495E - - - 4th engine costs $40K instead of $80K - 46C5-495E - - - 2nd wet tires are free - DDC5-415E - - - 3rd wet tires are free - DDC5-41EE - - - 4th wet tires are free - DDC5-455E - - - 2nd dry tires are free - DDC6-405E - - - 3rd dry tires are free - DDC6-40EE - - - 4th dry tires are free - DDC6-495E - - - 2nd gear box costs $1K instead of $10K - DFC6-415E - - - 2nd gear box costs $5K instead of $10K - D9C6-415E - - - 3rd gear box costs $1K instead of $30K - DFC6-41EE - - - 3rd gear box costs $15K instead of $30K - DEC6-41EE - - - 4th gear box costs $1K instead of $50K - DFC6-455E - - - 4th gear box costs $25K instead of $50K - FBC6-455E - - - 2nd nitro costs $1K instead of $5K - DFCB-405E - - - 2nd nitro costs $2K instead of $5K - D4CB-405E - - - 3rd nitro costs $1K instead of $15K - DFCB-40EE - - - 3rd nitro costs $7K instead of $15K - D5CB-40EE - - - 4th nitro costs $1K instead of $30K - DFCB-495E - - - 4th nitro costs $15K instead of $30K - DECB-495E - - - 2nd side armor costs $1K instead of $5K - DFCC-405E - - - 2nd side armor costs $2K instead of $5K - D4CC-405E - - - 3rd side armor costs $1K instead of $10K - DFCC-40EE - - - 3rd side armor costs $5K instead of $10K - D9CC-40EE - - - 4th side armor costs $1K instead of $20K - DFCC-495E - - - 4th side armor costs $10K instead of $20K - DCCC-495E - - - 2nd rear armor costs $1K instead of $5K - DFCC-415E - - - 2nd rear armor costs $2K instead of $5K - D4CC-415E - - - 3rd rear armor costs $1K instead of $10K - DFCC-41EE - - - 3rd rear armor costs $5K instead of $10K - D9CC-41EE - - - 4th rear armor costs $1K instead of $20K - DFCC-455E - - - 4th rear armor costs $10K instead of $20K - DCCC-455E - - - 2nd front armor costs $1K instead of $5K - DFC8-405E - - - 2nd front armor costs $2K instead of $5K - D4C8-405E - - - 3rd front armor costs $1K instead of $10K - DFC8-40EE - - - 3rd front armor costs $5K instead of $10K - D9C8-40EE - - - 4th front armor costs $1K instead of $20K - DFC8-495E - - - 4th front armor costs $10K instead of $20K - DCC8-495E - - - Start with 0 nitros - DD2A-4D6D - - - Start with 2 nitros - D42A-4D6D - - - Start with 4 nitros - D02A-4D6D - - - Start with 8 nitros - D62A-4D6D - - - Start with 10 nitros - DC2A-4D6D - - - - Top Gear 3000 (USA) - - Always finish first - C3EC-1700 - - - Infinite fuel - C936-1D6E - - - Infinite Nitro - A930-3463 - - - Infinite time - 7E005B:00 - - - Infinite money - 7E0390:75+7E038F:30 - - - - Total Carnage (USA) - - Invincibility - 6D27-441E - - - Infinite lives - C932-341E - - - Infinite Time Bombs - 4029-3F12 - - - Shields last longer - D6B3-C764 - - - Shields don't last last as long - DDB3-C764 - - - Weapons don't run out until you die or change weapons - C930-4D4A - - - Join in with 2 lives and 3 Time Bombs - DFBC-47D4 - - - Join in with 10 lives and 9 Time Bombs - DBBC-47D4 - - - Start with 2 lives - DFC3-44D2 - - - Start with 10 lives - DBC3-44D2 - - - Start with 1 Time Bomb - DFCD-1DD2+40B5-1DD4 - - - Start with 9 Time Bombs - DBCD-1DD2 - - - Invincibility (alt) - 8BDC39:80 - - - Infinite Shield - P1 - 7E0463:01 - - - Infinite Shield - P2 - 7E04AB:01 - - - Infinite lives - P1 - 7E0480:09 - - - Infinite lives - P2 - 7E04C8:09 - - - Infinite Time Bombs - P1 - 7E0481:09 - - - Infinite Time Bombs - P2 - 7E04C9:09 - - - Rapid Fire - P1 - 7E0477:03 - - - Rapid Fire - P2 - 7E04BF:03 - - - Always have Speed Shoes - P1 - 7E045E:01+7E0468:01 - - - Always have Speed Shoes - P2 - 7E04A6:01+7E04B0:01 - - - Have normal Gun - P1 - 7E0476:00 - - - Have normal Gun - P2 - 7E04BE:00 - - - Have Gatling Ball Gun - P1 - 7E0476:0F - - - Have Gatling Ball Gun - P2 - 7E04BE:0F - - - Have 3-way Gun - P1 - 7E0476:1E - - - Have 3-way Gun - P2 - 7E04BE:1E - - - Have Rocket Launcher - P1 - 7E0476:2D - - - Have Rocket Launcher - P2 - 7E04BE:2D - - - Have Blue Flame Thrower - P1 - 7E0476:4C - - - Have Blue Flame Thrower - P2 - 7E04BE:4C - - - Have Ball Launcher - P1 - 7E0476:5A - - - Have Ball Launcher - P2 - 7E04BE:5A - - - Have 150 Keys - P1 - 7E0485:96 - - - Have 150 Keys - P2 - 7E04CD:96 - - - Disable hurry up timer - 7E00AF:00+7E00B0:00 - - - - Toy Story (USA) - - Invincibility - C2B7-3914 - - - Infinite lives - CEB9-3914 - - - Start with 5 more lives than usual - D63D-C7BA - - - Start with 10 more lives than usual - DE3D-C7BA - - - Start with 25 more lives than usual - F33D-C7BA - - - Start with 50 more lives than usual - 753D-C7BA - - - Start on level 2 - DFA6-3DC4 - - - Start on level 3 - D4A6-3DC4 - - - Start on level 4 - D7A6-3DC4 - - - Start on level 5 - D0A6-3DC4 - - - Start on level 6 - D9A6-3DC4 - - - Start on level 7 - D1A6-3DC4 - - - Start on level 8 - D5A6-3DC4 - - - Start on level 9 - D6A6-3DC4 - - - Start on level 10 - DBA6-3DC4 - - - Start on level 11 - DCA6-3DC4 - - - Start on level 12 - D8A6-3DC4 - - - Start on level 13 - DAA6-3DC4 - - - Start on level 14 - D2A6-3DC4 - - - Start on level 15 - D3A6-3DC4 - - - Start on level 16 - DEA6-3DC4 - - - Start on level 17 - FDA6-3DC4 - - - - Toys - Let the Toy Wars begin! (USA) - - Infinite lives - C261-3D7B - - - Protection against most hazards - C2B6-3F5C+C2A4-3F8C - - - Fewer toys gained from floor boxes - DC85-4D34 - - - More toys gained from floor boxes - 1EB5-4D34+EEB5-440F - - - Lots more toys gained from floor boxes - 7985-4D34+EEB5-440F - - - Fewer toys gained from carousel - DC69-CF47 - - - More toys gained from carousel - 7969-CF47 - - - Lots more toys gained from carousel - 1E69-CF47 - - - Start with 1 life - DF2D-37AC - - - Start with 9 lives - DB2D-37AC - - - - Troddlers (USA) - - Infinite time - C269-6464 - - - - True Golf Classics - Pebble Beach Golf Links (USA) - - All holes are par 4 - CE65-D763 - - - Course is generally harder (par goes down randomly for some holes) - 8665-D7A3+D728-04DA - - - - True Golf Classics - Waialae Country Club (USA) - - Most holes have new par values - 1C6A-67D9+D081-046A - - - All holes are par 5 - CE6A-64A9 - - - All holes are par 4 - CE6A-64A9+1A6A-67D9 - - - - True Lies (USA) - - Infinite hand gun shells - 7E00A5:0F - - - Infinite big gun shells - 7E00A9:73 - - - Infinite Grenades on pick-up - 7E00AB:03 - - - Infinite lives - 7E1A57:05 - - - - Tuff E Nuff (USA) - - Invincibility - 6D6A-14A0 - - - One hit kills - CB67-1FA9+EE67-1409 - - - Allows you to select same player vs. same player in a 1P vs. 2P game (must select 2nd player using right button) - DDAE-CDA5 - - - Allows you to select any character in a vs. computer game - EEA3-C7A1 - - - Syoh and Zazi's High Fist Thrust does more damage - F62E-46F3 - - - Syoh and Zazi's Sliding Heel Kick does more damage - 4024-3BF3 - - - Syoh and Zazi's Big Head Thrust Punch does more damage - from close up only - 402F-16FE - - - Syoh and Zazi's Big Head Thrust Punch does no damage - DD2F-16FE - - - Syoh and Zazi's Flying Side Kick does more damage - from close up only - 4020-CCBE - - - Syoh and Zazi's Ball of Energy does more damage - 4030-1B9A - - - Syoh and Zazi's Palm Hit Drop does more damage - 4C2E-1B2E - - - Zazi's Blue Thunder Punch and Syoh's Dragon Blade does more damage - 403D-3CFA - - - Kotono's Straight Line Slash does more damage - F322-3617 - - - Kotono's Sweeping Knee Kick does more damage - F623-CC17 - - - Kotono's Flying Swallow Double Drop does more damage - F339-3614 - - - Kotono's Flying Side Kick does more damage - F624-3C37 - - - Kotono's Flying Swallow Point Break does more damage - F332-3B44 - - - Kotono's Drawn Sword Mist Slash does more damage - F33E-1C3F - - - Kotono's Double Edge does more damage - F633-3B14 - - - Kotono's Special Kick does more damage - 403B-364F - - - Vortz's Middle Kick does more damage - 4C3B-4BC9 - - - Vortz's Low Kick does more damage - F630-4B49 - - - Vortz's Low Aerial Drop Kick does more damage - 4C3C-3830 - - - Vortz's Big Double Sledge Hammer does more damage - 4031-CB10 - - - Vortz's Diving Knee Pad does more damage - F33D-3C30 - - - Vortz's Diving Elbow does more damage - 4C3B-CB30 - - - Vortz's Lightning Tackle does more damage - 4C30-18C9 - - - Each round is 80 seconds - 6D65-14D4 - - - Each round is 60 seconds - 1D65-14D4 - - - Each round is 40 seconds - 0D65-14D4 - - - Each round is 20 seconds - 4D65-14D4 - - - Start with 1/4 health - P1 - F1CE-1FD9 - - - Start with 1/2 health - P1 - 4ACE-1FD9 - - - Start with 3/4 health - P1 - 04CE-1FD9 - - - Play stage 2 in story (brings you back to level 1) - D066-446F - - - Play stage 3 in story (brings you back to level 1) - D166-446F - - - Play stage 4 in story (brings you back to level 1) - D666-446F - - - Play stage 5 in story (brings you back to level 1) - DC66-446F - - - Play stage 6 in story (brings you back to level 1) - DA66-446F - - - Play stage 7 in story (brings you back to level 1) - D366-446F - - - Play stage 8 in story (brings you back to level 1) - FD66-446F - - - Play stage 9 in story (brings you back to level 1) - F466-446F - - - Play final stage in story (brings you back to level 1) - F066-446F - - - Infinite health - P1 - 7E0FB7:58 - - - Infinite health - P2 - 7E1010:58 - - - Infinite time - 7E0B27:99 - - - Powered moves - P1 - 7E0FB8:06 - - - Powered moves - P2 - 7E1011:06 - - - - Turbo Toons (Europe) - - Start at Final Tournament (press Select at title screen, then in the topmost menu select the trophy) - 7E1E44:04 - - - Infinite Turbo - Hong Kong Phooey - 7E0C9E:E0 - - - - Turn and Burn - No-Fly Zone (USA) - - Infinite health - 7E10DB:38 - - - Infinite fuel - 7E1AC4:99+7E1AC5:74 - - - Infinite AIM-7 - 7E05E9:FF - - - Infinite AIM-9 - 7E05E7:FF - - - Infinite AIM-54 - 7E05EB:BF - - - Infinite M-61 - 7E05E5:FF - - - - TwinBee - Rainbow Bell Adventure (Japan) - - Invincibility - 7E1994:0A - - - Infinite health - 7E02EC:03 - - - Infinite time - 7E02CE:00 - - - - Twisted Tales of Spike McFang, The (USA) - - Invincibility - CEA5-34DF - - - Infinite money - C260-3766 - - - Infinite HP - 7E4CE0:FF+7E4CE1:4F - - - Infinite money (alt) - 7E0A57:E7+7E0A58:03 - - - Start with max hit level - 7E4DA0:30 - - - - U.F.O. Kamen Yakisoban - Kettler no Kuroi Inbou (Japan) - - Infinite health - 7E0175:28 - - - Infinite lives - 7E0176:07 - - - Infinite time - 7E0AF3:B0 - - - - U.N. Squadron (USA) - - Invincibility - DD37-D76F+6D34-07FF - - - Infinite lives - A923-DDDF+A923-DD6F - - - Infinite continues - AD2C-0D0F - - - Infinite shots for all weapons - 2238-A72F - - - Infinite money - A98E-07D4 - - - Hit anywhere - 1830-A79F+3435-A4AD+343F-ADDD+4D35-A7DD+4D3F-AD0D - - - Shoot without stopping - C931-07BF - - - Max power on first pellet pick-up - DDE5-A794 - - - Start with no money - DD80-0DAD - - - Start with $9,000 - BD80-0DAD - - - Start with 1 life and 1 continue - DF89-040D - - - Start with 5 lives and 5 continues - D989-040D - - - Start with 9 lives and 9 continues - DB89-040D - - - Invincibility (alt) - 7E00F7:01 - - - Infinite health - 7E1008:08 - - - Infinite shots for all weapons (alt) - 04E7BF:DD - - - Infinite money (alt) - 00B9FC:C5 - - - Infinite lives (alt) - 00D4E0:C5+00D4E2:C5 - - - Infinite continues (alt) - 7E00F3:03 - - - Enable all 6 jets selectable for free - 7E00F6:3F - - - Loads of money - P1 - 7E00D9:01 - - - Infinite Conventional Bombs - 7E00DD:31 - - - Infinite Mega Crush Weapons - 7E00DD:02 - - - Infinite Thunder Laser - 7E00DD:14 - - - - Ultima - Runes of Virtue II (USA) - - Infinite energy - makes enemies invincible too (Shamino in easy mode) - C2C3-47A7 - - - Stars never recharge (Shamino in easy mode) - CB3B-1464 - - - Almost infinite stars (Shamino in easy mode) - CB67-3764 - - - Start with a stronger armor (Shamino in easy mode) - CB6C-4D68+4A6C-4DA8 - - - Start with less stars (Shamino in easy mode) - DF69-4FD8 - - - Start with Crossbow instead of the Axe (Shamino in easy mode) - 7760-47D8 - - - Start with Longbow instead of the Axe (Shamino in easy mode) - 7060-47D8 - - - Start with Fireball wand instead of the Axe (Shamino in easy mode) - 7560-47D8 - - - Start with Boomerang instead of the Axe (Shamino in easy mode) - 7660-47D8 - - - Start with Shuriken instead of the Axe (Shamino in easy mode) - 4E60-47D8 - - - Start with 30 intelligence (Shamino in easy mode) - 7D60-4768 - - - Start with 5 intelligence (Shamino in easy mode) - D960-4768 - - - - Ultima - The False Prophet (USA) - - Infinite time - 89C8-D76D - - - Infinite Gold - 7E014B:FF+7E014C:FF - - - Max Karma - 7E014A:64 - - - Infinite Energy (Avatar) - 7E8603:F0 - - - Infinite Energy (Shamino) - 7E8607:F0 - - - Infinite Energy (Iolo) - 7E8609:F0 - - - Infinite Energy (Dupre) - 7E8605:F0 - - - Infinite MP (Avatar) - 7E8C02:3C - - - Infinite MP (Shamino) - 7E8C06:3C - - - Infinite MP (Iolo) - 7E8C08:3C - - - Infinite MP (Dupre) - 7E8C04:3C - - - Infinite Energy (Jaana) - 7E867D:F0 - - - Infinite Energy (Gwenno) - 7E8685:F0 - - - Infinite Energy (Seggal) - 7E8741:F0 - - - Infinite Energy (Katrina) - 7E86C3:F0 - - - Infinite Energy (Sentri) - 7E874D:F0 - - - Infinite Energy (Leodon) - 7E86E3:F0 - - - Infinite Energy (Gorn) - 7E8757:F0 - - - Infinite Energy (Leonna) - 7E86E5:F0 - - - Infinite Energy (Blaine) - 7E870F:F0 - - - Infinite Energy (Beh Lem) - 7E875D:F0 - - - Infinite Energy (Julia) - 7E8687:F0 - - - Infinite MP (Gwenno) - 7E8C84:3C - - - Infinite MP (Jaana) - 7E8C7C:3C - - - Infinite MP (Julia) - 7E8C86:3C - - - Infinite MP (Katrina) - 7E8CC2:3C - - - Infinite MP (Seggal) - 7E8D40:3C - - - Infinite MP (Sentri) - 7E8D4C:3C - - - Infinite MP (Gorn) - 7E8D56:3C - - - Infinite MP (Leodon) - 7E8CE2:3C - - - Infinite MP (Leonna) - 7E8CE4:3C - - - Infinite MP (Blaine) - 7E8D0E:3C - - - Infinite MP (Beh Lem) - 7E8D5C:3C - - - Max Experience (Gwenno) - 7E8884:0F+7E8885:27 - - - Max Experience (Seggal) - 7E8940:0F+7E8941:27 - - - Max Experience (Sentri) - 7E894C:0F+7E894D:27 - - - Max Experience (Julia) - 7E8886:0F+7E8887:27 - - - Max Experience (Katrina) - 7E88C2:0F+7E88C3:27 - - - Max Experience (Jaana) - 7E887C:0F+7E887D:27 - - - Max Experience (Blaine) - 7E890E:0F+7E890F:27 - - - Max Experience (Beh Lem) - 7E895C:0F+7E895D:27 - - - Max Experience (Gorn) - 7E8956:0F+7E8957:27 - - - Max Experience (Leonna) - 7E88E4:0F+7E88E5:27 - - - Max Experience (Leodon) - 7E88E2:0F+7E88E3:27 - - - Max Experience (Avatar) - 7E8802:0F+7E8803:27 - - - Max Experience (Dupre) - 7E8804:0F+7E8805:27 - - - Max Experience (Shamino) - 7E8806:0F+7E8807:27 - - - Max Experience (Iolo) - 7E8808:0F+7E8809:27 - - - - Ultima - The Black Gate (USA) - - Infinite health - 7E1CFA:E4 - - - Infinite Keys - 7E1CFC:63 - - - 65,000 Exp - 7E1D00:E8+7E1D01:FD - - - 65,000 Gold - 7E1CE6:E8+7E1CE7:FD - - - - Ultimate Fighter (USA) - - Invincibility (except projectiles) - P1 - DD84-342B - - - Invincibility (except projectiles) - P2 - DD87-17BB - - - Infinite health - 7E1402:C8 - - - Hit anywhere (except projectiles) - P1 - 6D87-179B - - - Hit anywhere (except projectiles) - P2 - 6D84-34BB - - - Infinite lives - story mode - 7E09C9:63 - - - Start with 60,000 score - 7E09B9:60+7E09BA:EA - - - - Ultimate Mortal Kombat 3 (USA) - - Invincibility (throws damage CPU) - 3D3C-C79F+6D33-3DBF+7D38-CDFF+DF3C-C7BF+E138-CD9F - - - Infinite health - P1 - C172-B27B - - - Infinite health - P2 - C17B-F37C - - - Infinite run - P1 - 7D72-B37B - - - Infinite run - P2 - 7D7B-FE7C - - - Max fatality time - DF73-2A7C - - - Hit anywhere - P1 - 46EB-3FB7+84EB-3497+BD3C-C49F+D4EB-3D97+DDEB-3DB7+D7EB-3FF7+EDEB-3D27+EE3C-C4BF+0AEB-3F97+0AEB-34F7+31EB-34B7+35EB-3F27+3DEB-3DF7 - - - Blank versus screen - EE37-CF02 - - - Scrambled backgrounds - C2B1-1FBF - - - Black background (wait for title screen to appear before proceeding) - C2B6-1FFF - - - First round / one button fatalities - 7E3BE3:01 - - - - Ultraman (USA) - - Infinite health - 4ABA-67DF - - - Infinite health - P1 - 7E07EE:53 - - - No health - P2 - 7E084E:00 - - - Infinite chances - 4024-6FA7 - - - Infinite time (seconds) - 7E00A3:63 - - - Infinite time (minutes) - 7E00A4:09 - - - Quicker health replenishment - DD8F-DF0D - - - Less health replenishment for enemies - 3C80-DDDD - - - Weaker punch - DFAC-D76E - - - Weaker kick - DFA8-DDDE - - - 9 minutes per stage - DBB4-DD6D - - - 6 minutes per stage - D1B4-DD6D - - - 2 minutes per stage - D4B4-DD6D - - - Start with 1 chance - DD6C-0467 - - - Start with 6 chances - D96C-0467 - - - Start with 9 chances - DB6C-0467 - - - Start on stage 1 - Gudis - 7E00F8:00 - - - Start on stage 2 - Bogun - 7E00F8:01 - - - Start on stage 3 - Degola - 7E00F8:02 - - - Start on stage 4 - Barrangas - 7E00F8:03 - - - Start on stage 5 - Gudis II - 7E00F8:04 - - - Start on stage 6 - Zebokon - 7E00F8:05 - - - Start on stage 7 - Majaba - 7E00F8:06 - - - Start on stage 8 - Kodalar - 7E00F8:07 - - - Start on final stage - Kilazee - 7E00F8:08 - - - - Uncharted Waters (USA) - - Start with 65,000 Gold - E2EF-D7D5 - - - - New Horizons (USA) - - Joao starts with 156 Leadership instead of 78 - BA6D-873D - - - Joao starts with 250 Leadership instead of 78 - EC6D-873D - - - Joao starts with 150 Seamanship instead of 75 - B16F-8D4D - - - Joao starts with 250 Seamanship instead of 75 - EC6F-8D4D - - - Joao starts with 146 Knowledge instead of 73 - B46F-8D1D - - - Joao starts with 250 Knowledge instead of 73 - EC6F-8D1D - - - Joao starts with 170 Intuition instead of 85 - CC6F-8DCD - - - Joao starts with 250 Intuition instead of 85 - EC6F-8DCD - - - Joao starts with 164 Courage instead of 82 - C06F-8D3D - - - Joao starts with 250 Courage instead of 82 - EC6F-8D3D - - - Joao starts with 164 Dueling Skill instead of 82 - C06F-8F4D - - - Joao starts with 250 Dueling Skill instead of 82 - EC6F-8F4D - - - Joao starts with 178 Likability (Charm) instead of 89 - 846F-8F1D - - - Joao starts with 250 Likability (Charm) instead of 89 - EC6F-8F1D - - - Catalina starts with 24 Sail Level instead of 8 - F660-841D - - - Catalina starts with 80 Sail Level instead of 8 - 9D60-841D - - - Catalina starts with 30 Battle Level instead of 10 - F360-84CD - - - Catalina starts with 100 Battle Level instead of 10 - 1060-84CD - - - Catalina starts with 160 Leadership instead of 80 - CD60-8D1D - - - Catalina starts with 250 Leadership instead of 80 - EC60-8D1D - - - Catalina starts with 158 Seamanship instead of 79 - B360-8DCD - - - Catalina starts with 250 Seamanship instead of 79 - EC60-8DCD - - - Catalina starts with 130 Knowledge instead of 65 - 6460-8D3D - - - Catalina starts with 250 Knowledge instead of 65 - EC60-8D3D - - - Catalina starts with 104 Intuition instead of 52 - 1660-8F4D - - - Catalina starts with 250 Intuition instead of 52 - EC60-8F4D - - - Catalina starts with 172 Courage instead of 86 - CA60-8F1D - - - Catalina starts with 250 Courage instead of 86 - EC60-8F1D - - - Catalina starts with 184 Dueling Skill instead of 92 - 8660-8FCD - - - Catalina starts with 250 Dueling Skill instead of 92 - EC60-8FCD - - - Catalina starts with 190 Likability instead of 95 - 8360-8F3D - - - Catalina starts with 250 Likability instead of 95 - EC60-8F3D - - - Ali Vezas starts with 160 Leadership (instead of 80) - CD6D-E41D - - - Ali Vezas starts with 250 Leadership (instead of 80) - EC6D-E41D - - - Ali Vezas starts with 172 Seamanship (instead of 86) - CA6D-E4CD - - - Ali Vezas starts with 250 Seamanship (instead of 86) - EC6D-E4CD - - - Ali Vezas starts with 168 Knowledge (instead of 84) - C66D-E43D - - - Ali Vezas starts with 250 Knowledge (instead of 84) - EC6D-E43D - - - Ali Vezas starts with 130 Intuition (instead of 65) - 646D-E74D - - - Ali Vezas starts with 250 Intuition (instead of 65) - EC6D-E74D - - - Ali Vezas starts with 106 Courage (instead of 53) - 1C6D-E71D - - - Ali Vezas starts with 250 Courage (instead of 53) - EC6D-E71D - - - Ali Vezas starts with 84 Dueling Skill (instead of 42) - 906D-E7CD - - - Ali Vezas starts with 250 Dueling Skill (instead of 42) - EC6D-E7CD - - - Ali Vezas starts with 160 Likability (instead of 80) - CD6D-E73D - - - Ali Vezas starts with 250 Likability (instead of 80) - EC6D-E73D - - - Start a new game with $250 Gold - EC63-543D - - - Start a new game with $1,024 Gold - D063-574D - - - Start a new game with $9,984 Gold - 4563-574D - - - Start a new game with $64,000 Gold - EC63-574D - - - Start a new game with $196,608 Gold - D763-571D - - - Start a new game with over one Million Gold - FD63-571D - - - No Storms - 7E201B:80 - - - 1 D.a.s., No Scurvy - 7E415E:00 - - - Joao's Steering Power - 7E2620:FF - - - Joao's Battle Power - 7E2621:FF - - - Ali's Steering Power - 7E271A:FF - - - Ali's Battle Power - 7E271B:FF - - - Pietro's Steering Power - 7E26E8:FF - - - Pietro's Battle Power - 7E26E9:FF - - - Max Adventure For Joao - 7E25A4:50+7E25A5:C3 - - - 100% Popular In Portugal - 7E25A6:C8 - - - 100% Popular In Spain - 7E25A7:C8 - - - 100% Popular In Turkey - 7E25A8:C8 - - - 100% Popular In England - 7E25A9:C8 - - - 100% Popular In Italy - 7E25AA:C8 - - - 100% Popular In Holland - 7E25AB:C8 - - - S.1 Infinite Water - 7E661A:7F - - - S.2 Infinite Water - 7E6638:7F - - - S.3 Infinite Water - 7E6656:7F - - - S.4 Infinite Water - 7E6674:7F - - - S.5 Infinite Water - 7E6692:7F - - - S.6 Infinite Water - 7E66B0:7F - - - S.7 Infinite Water - 7E66CE:7F - - - S.8 Infinite Water - 7E66EC:7F - - - S.9 Infinite Water - 7E670A:7F - - - S.10 Infinite Water - 7E6728:7F - - - S.11 Infinite Water - 7E6746:7F - - - S.12 Infinite Water - 7E6764:7F - - - S.13 Infinite Water - 7E6782:7F - - - S.14 Infinite Water - 7E67A0:7F - - - S.15 Infinite Water - 7E67BE:7F - - - S.16 Infinite Water - 7E67DC:7F - - - S.17 Infinite Water - 7E67FA:7F - - - S.1 Infinite Food - 7E661C:7F - - - S.2 Infinite Food - 7E663A:7F - - - S.3 Infinite Food - 7E6658:7F - - - S.4 Infinite Food - 7E6676:7F - - - S.5 Infinite Food - 7E6694:7F - - - S.6 Infinite Food - 7E66B2:7F - - - S.7 Infinite Food - 7E66D0:7F - - - S.8 Infinite Food - 7E66EE:7F - - - S.9 Infinite Food - 7E670C:7F - - - S.10 Infinite Food - 7E672A:7F - - - S.11 Infinite Food - 7E6748:7F - - - S.12 Infinite Food - 7E6766:7F - - - S.13 Infinite Food - 7E6784:7F - - - S.14 Infinite Food - 7E67A2:7F - - - S.15 Infinite Food - 7E67C0:7F - - - S.16 Infinite Food - 7E67D7:7F - - - S.17 Infinite Food - 7E67FC:7F - - - S.1 Infinite Crew (Ship HP) - 7E41E7:22 - - - S.2 Infinite Crew (Ship HP) - 7E41F0:22 - - - S.3 Infinite Crew (Ship HP) - 7E41F9:22 - - - S.4 Infinite Crew (Ship HP) - 7E4202:22 - - - S.5 Infinite Crew (Ship HP) - 7E420B:22 - - - S.6 Infinite Crew (Ship HP) - 7E4214:22 - - - S.7 Infinite Crew (Ship HP) - 7E421D:22 - - - S.8 Infinite Crew (Ship HP) - 7E4226:22 - - - S.9 Infinite Crew (Ship HP) - 7E422F:22 - - - S.10 Infinite Crew (Ship HP) - 7E4238:22 - - - S.11 Infinite Crew (Ship HP) - 7E4241:22 - - - S.12 Infinite Crew (Ship HP) - 7E424A:22 - - - S.13 Infinite Crew (Ship HP) - 7E4253:22 - - - S.14 Infinite Crew (Ship HP) - 7E425C:22 - - - S.15 Infinite Crew (Ship HP) - 7E4265:22 - - - S.16 Infinite Crew (Ship HP) - 7E426E:22 - - - S.17 Infinite Crew (Ship HP) - 7E4277:22 - - - S.1 Speedy - 7E41EB:FF - - - S.2 Speedy - 7E41F4:FF - - - S.3 Speedy - 7E41FD:FF - - - S.4 Speedy - 7E4206:FF - - - S.5 Speedy - 7E420F:FF - - - S.6 Speedy - 7E4218:FF - - - S.7 Speedy - 7E4221:FF - - - S.8 Speedy - 7E422A:FF - - - S.9 Speedy - 7E4233:FF - - - S.10 Speedy - 7E423C:FF - - - S.11 Speedy - 7E4245:FF - - - S.12 Speedy - 7E424E:FF - - - S.13 Speedy - 7E4257:FF - - - S.14 Speedy - 7E4260:FF - - - S.15 Speedy - 7E4269:FF - - - - Undercover Cops (Japan) - - Infinite health - C266-57D7 - - - Infinite lives - C2E3-77A7 - - - Infinite time - C2D4-8F61 - - - Infinite continues - C203-E4A1 - - - Hit anywhere - 6D2E-770F+732E-776F - - - one hit kils - DD20-546F - - - Infinite health (alt) - 7E0C36:E8+7E0D36:E8 - - - Infinite lives (alt) - 7E0110:0A - - - Infinite time (alt) - 7E016C:64 - - - Infinite continues (alt) - 7E0112:09 - - - - Uniracers (USA) - - No timer in almost every race - 3CA4-3F69 - - - No timer in almost every race (alt) - 81C726:EA - - - - Universal Soldier (USA) (Proto) - - Infinite health - C2E3-0F6F - - - Infinite lines - C26D-0F09 - - - - Untouchables, The (USA) - - Infinite lives - 7E1B86:09 - - - Infinite ammo - 7E1B89:63 - - - - Ushio to Tora (Japan) - - Invincibility - 7E0222:26 - - - Infinite health - 7E021E:40 - - - Infinite lives - 7E0608:63 - - - - Utopia - The Creation of a Nation (USA) - - 1-day buildings - DDBB-6D0F - - - Have 655360000 cash (enable while on map then disable) - CBC3-040F+69C3-07DF+5FC3-070F - - - - Vegas Stakes (USA) - - Only $34,464 needed for highroller status (glitchy) - DDA0-A4AD - - - Only $38,527 needed to win the game instead of $10 million - DDA8-640D - - - Only $5,019,263 needed to win the game - 0AA8-640D - - - Player wins pushes in Blackjack - DD87-04EC - - - Dealer wins pushes in Blackjack - DF87-04EC - - - Start with $488 - P1 - DF81-A4D7 - - - Start with $488 - P2 - DF8B-AF07 - - - Start with $488 - P3 - DF8A-AD67 - - - Start with $488 - P4 - DF83-A7A7 - - - Start with $2280 - P1 - D681-A4D7 - - - Start with $2280 - P2 - D68B-AF07 - - - Start with $2280 - P3 - D68A-AD67 - - - Start with $2280 - P4 - D683-A7A7 - - - Start with $9960 - P1 - 4181-A4D7 - - - Start with $9960 - P2 - 418B-AF07 - - - Start with $9960 - P3 - 418A-AD67 - - - Start with $9960 - P4 - 4183-A7A7 - - - Start with $132,072 (highroller status) - P1 - D481-A707 - - - Start with $132,072 - P2 - D48B-A467 - - - Start with $132,072 - P3 - D48A-AFA7 - - - Start with $132,072 - P4 - D48E-AFD7 - - - - Venom-Spider-Man - Separation Anxiety (USA) - - Infinite health - P1 - 8935-1FD6 - - - Infinite lives - P1 - 5BC9-1FD9 - - - Infinite health - P2 - 7E0A5A:99 - - - Infinite lives - P2 - 7E1A8B:06 - - - Infinite Captain America hero icons - 7E1BC5:05 - - - Infinite Ghost Rider hero icons - 7E1BC7:05 - - - Infinite Daredevil hero icons - 7E1BC9:05 - - - Infinite Hawkeye hero icons - 7E1BCB:05 - - - Infinite Vault Guardsman hero icon - 7E1BCD:05 - - - Use helpers multiple times - 7E1BC4:00 - - - Hard mode enabled - 7E1C3C:FF - - - Stage select enabled - 7E1C40:FF - - - Hit anywhere - 40C4-3F0C - - - One hit kills for most enemies and some bosses - 7E0AD3:00+7E0B4C:00+7E0BC5:00+7E0C3E:00+7E0CB7:00 - - - - Virtual Bart (USA) - - Infinite time - C239-37AF - - - Infinite health and Tomatoes (Baby Bart takes damage when he walks on grass) - 053E-44A4 - - - Infinite continues - C238-44A4 - - - Infinite lives - C23C-4704 - - - - Vortex (USA) (En,Es) - - Infinite health - 7E039A:3D+7E118B:32 - - - Infinite lives - 7E120E:0A - - - Infinite Missiles - 7E1DE4:63 - - - Infinite Rockets - 7E1DE5:63 - - - Infinite Cannon - 7E1DE6:63 - - - Infinite Blasts - 7E121A:63 - - - - Warlock (USA) - - Invincibility - CBBE-A4D7+33CC-DD64 - - - Infinite items on pick-up - 3C65-D46C - - - Enter the password GRKKL to go to the final battle - 7FAC-DD2F - - - Enter the password GRKKL to go to the ending - 74AC-DD2F - - - - Wayne's World (USA) - - Infinite Worthiness - C2BC-D728 - - - Infinite lives - C28F-0704 - - - Worthiness item worth nothing on pick-up - C2B5-04BC - - - Schwing item worth nothing on pick-up - C2B0-04BC - - - Infinite Schwings if you have at least 1 - C269-0DBB - - - Invincibility lasts longer after getting hit - EEB3-DF98 - - - Invincibility does not last as long after getting hit - FDB3-DF98 - - - Invincibility lasts forever after getting hit (Wayne blinks) - 82BB-0FF8 - - - Invincibility (Wayne doesn't blink) - 6DBB-D428 - - - Amp power-up worth nothing on pick-up - DDBB-D4BC - - - Amp power-up gives you Distortion-type chords - D0BB-D4BC - - - Amp power-up gives you Mega-Amp-type chords - D4BB-D4BC - - - Amp power-up gives you Chorus-type chords - D7BB-D4BC - - - Amp power-up gives you Homer-type chords - D9BB-D4BC - - - Distortion power-up worth nothing on pick-up - DDBD-0DFC - - - Distortion power-up gives you Amp-type chords - DFBD-0DFC - - - Distortion power-up gives you Mega-Amp-type chords - D4BD-0DFC - - - Distortion power-up gives you Chorus-type-chords - D7BD-0DFC - - - Distortion power-up gives you Homer-type-chords - D9BD-0DFC - - - Heart item worth nothing - C2BB-079C - - - Start with 1 life - DFAA-A764 - - - Start with 3 lives - D7AA-A764 - - - Start with 7 lives - D5AA-A764 - - - Start with 9 lives - DBAA-A764 - - - Start with 1 Worthiness point - DF87-0764 - - - Start with 3 Worthiness points - D787-0764 - - - Start with 7 Worthiness points - D587-0764 - - - Start with 9 Worthiness points - DB87-0764 - - - - WeaponLord (USA) - - Infinite health - P1 - 5C1A-7B3B - - - Infinite health - both players - C21A-7BCB - - - Infinite time - C204-56C5 - - - Hit anywhere - both players - 6D5A-EBC0+6D5D-7C19+DD5A-E6C0+DD5D-7639 - - - Play as Zarak in story mode - D13C-561B - - - - We're Back! - A Dinosaur's Story (USA) - - Infinite health - C2B2-C54B - - - Infinite lives - C265-41CB - - - Infinite Vorb on pick-up for the rest of the stage - C2C6-C148 - - - Infinite Elsa on pick-up for the rest of the stage - C2C1-301B - - - Infinite Dweebs on pick-up for the rest of the stage - C2C5-4038 - - - Infinite Woog on pick-up - C2C1-194C - - - Super-jump - FEB1-C14C - - - Mega-jump - 4EB1-C14C - - - Less grain to get for tail swipe - D76D-111C - - - Less grain to get for stomp - DB6D-103C - - - Start with less health - D48B-C110+D466-49CC - - - Start with 9 lives - DB8B-C030 - - - Start with 6 lives - D18B-C030 - - - Start with 1 life - DF8B-C030 - - - Start on Manhattan - Zone 2 - CB85-1530+D486-1040+DD86-1010 - - - Start on the Subway - CB85-1530+D786-1040+DD86-1010 - - - Start on Crazy Crane - CB85-1530+D086-1040+DD86-1010 - - - Start on Construction in the City - CB85-1530+D186-1040+DD86-1010 - - - Start on Thanksgiving - Zone 1 - CB85-1530+D586-1040+DD86-1010 - - - Start on Thanksgiving - Zone 2 - CB85-1530+D686-1040+DD86-1010 - - - Start on Balloon Blow-out - CB85-1530+DB86-1040+DD86-1010 - - - Start on Central Park - Zone 1 - CB85-1530+D886-1040+DD86-1010 - - - Start on Central Park - Zone 2 - CB85-1530+DA86-1040+DD86-1010 - - - Start on the Zoo - CB85-1530+D286-1040+DD86-1010 - - - Start on Prehistoric Panic - CB85-1530+D386-1040+DD86-1010 - - - Start on Outside the Circus - CB85-1530+FD86-1040+DD86-1010 - - - Start on Circus - Zone 1 - CB85-1530+FF86-1040+DD86-1010 - - - Start on Circus - Zone 2 - CB85-1530+F486-1040+DD86-1010 - - - Start on Jack in the Box - CB85-1530+F786-1040+DD86-1010 - - - Start on Empire State Building - CB85-1530+F986-1040+DD86-1010 - - - Start on Spaceship - Zone 1 - CB85-1530+F186-1040+DD86-1010 - - - Start on Spaceship - Zone 2 - CB85-1530+F586-1040+DD86-1010 - - - Infinite health (alt) - 9A96DC:AD - - - Infinite lives (alt) - 9A847A:AD - - - Super-jump (alt) - 9A9A68:1F - - - Mega-jump (alt) - 9A9A68:2F - - - - Wheel of Fortune (USA) - - Infinite time to choose - C264-DF0F - - - Don't lose money when landing on bankrupt - C2BE-DFDF - - - 3/4 of normal time to choose - F3B1-DF64 - - - 1/2 of normal time to choose - F0B1-DF64 - - - 1/4 of normal time to choose - DCB1-DF64 - - - Vowels are free is you have at least $250 - DD62-DF07 - - - Vowels cost $50 if you have at least $250 - 7462-DF07 - - - Vowels cost $100 if you have at least $250 - 1062-DF07 - - - Vowels cost $150 if you have at least $250 - B162-DF07 - - - Vowels cost $200 if you have at least $250 - A662-DF07 - - - - Whizz (USA) - - Infinite health - C9CC-1FDD - - - Infinite time - C260-37AF - - - Infinite lives - C2C5-37D4 - - - Infinite time (alt) - 7E03A4:63 - - - - Wild Guns (USA) - - Invincibility - 4061-DFAA - - - Hit anywhere - 40B4-0DDF+40B4-070F+40B7-0FAF+40BD-AD0A+40BF-0F6F+6DBE-DDDF - - - Infinite specials - 7E1FA0:05 - - - Infinite lives - 7E1FB2:04 - - - - Wing Commander (USA) - - Increase front shield on Hornet - 7ABC-3713 - - - Increase rear shield on Hornet - 7AB4-4D1E - - - Increase front armor on Hornet - 0DBB-4F1E - - - Increase rear armor on Hornet - 0DBD-141E - - - Increase left side armor on Hornet - 0DBE-1D1E - - - Increase right side armor on Hornet - 0DB5-171E - - - Increase front shield on Scimitar - 17B8-3D13 - - - Increase rear shield on Scimitar - 17B4-4F1E - - - Increase front armor on Scimitar - 17BB-441E - - - Increase rear armor on Scimitar - 17BD-171E - - - Increase left side armor on Scimitar - 17BE-1F1E - - - Increase right side armor on Scimitar - 17B6-1D1E - - - Mega front shields on Hornet - EEBC-37C3 - - - Mega rear shields on Hornet - EEB4-4DCE - - - Mega front shields on Scimitar - 99B8-3DC3 - - - Mega rear shields on Scimitar - 99B4-4FCE - - - - Wing Commander - The Secret Missions (USA) - - Infinite blaster power - C2A6-4D0D - - - Infinite fuel - C2C8-14AD - - - Infinite missiles - 3C66-C7A1 - - - Start on mission 4 - D068-C402 - - - Start on mission 8 - D668-C402 - - - - Wings 2 - Aces High (USA) - - Infinite lives - all pilots (you can still get fired) - 828A-040B - - - Infinite power-ups - C2C6-DDD8 - - - - Wizard of Oz, The (USA) - - Invincibility - 2D8D-07A5 - - - Infinite health - 823C-AD66 - - - Infinite lives - 223E-DDAF - - - Infinite health - Dorthy - 7E01E5:00 - - - Infinite health - Scarecrow - 7E01E7:00 - - - Infinite health - Tinman - 7E01E9:00 - - - Infinite health - Lion - 7E01EB:00 - - - Infinite Star Shot - Dorthy - 7E01DB:09 - - - Infinite Throwing Rocks - all - 7E01D1:09 - - - Have Flight Shoes - 7E01D3:01 - - - - Wizardry VI - Kindan no Mahitsu (Japan) - - The whole party doesn't take damage from normal enemy attacks (doesn't protect from poison or certain magic spells) - 8288-A491 - - - Create a character and he has a lot of gold - 4DBF-DD27 - - - - Wolfchild (USA) - - Infinite health - 3CA3-DFAF - - - Infinite continues - C2EC-6FAD - - - Infinite lives - C9A6-A4AD - - - Infinite Bombs - C9A3-DD0F - - - Stay in wolf form until next continue - C2AE-A4DD+C2AE-A4AD - - - Start with 254 lives and 255 Bombs - E366-D7A4 - - - Start at final boss - D866-DFA4 - - - - Wolfenstein 3-D (USA) - - Infinite health - C2CC-5D64 - - - Infinite ammo - C28D-7D0F - - - Infinite lives - C228-E7D4 - - - Infinite ammo for special weapon 1 after first life - C289-77DF - - - Infinite ammo for special weapon 2 after first life - C28F-84DF - - - Start with 1 life - DF25-84D4 - - - Start with 6 lives - D125-84D4 - - - Start with 9 lives - DB25-84D4 - - - Start with more ammo - 1729-8704+1728-74D4 - - - Start with chain gun - 622C-7764 - - - Start with machine gun - 622C-74A4 - - - Start with special weapon 1 (super machine gun) and ammo after first life - 622A-7DD4+D02C-7DA4 - - - Start with special weapon 2 (rocket launcher) and ammo after first life - 6228-7704+D92C-7DAF - - - - Wolverine - Adamantium Rage (USA) - - Infinite health - C9ED-3FAF - - - Infinite time - 2DA8-3AA5 - - - No enemies - 69E9-3A1F - - - Hit anywhere + one hit kills - 4060-340D+4060-3D6D+4061-37DD+4061-3DDD+4064-3D6D+4064-376D+4065-37AD+4069-340D+4069-3D6D - - - One hit kills - 4065-37AD - - - Invincibility - 7E00B8:FF - - - Infinite health (alt) - 7E1027:64 - - - - World Heroes (USA) - - Infinite health - P1 - 4008-8FAF - - - Hit anywhere - P1 - 7DFE-776D+ADFE-746D+DDFE-74AD+FDFE-77DD - - - Always win - P1 - 7B86-84A4 - - - Win a draw - P1 - D409-8F04 - - - Win a draw - P2 - D509-8F04 - - - Slow timer down by half - CD07-84AF - - - 3 hits to win round - either player - FB0C-7D64+DD0B-77A4 - - - 2 hits to win round - either player - 7F0C-7D64+DD0B-77A4 - - - 1 hit to win (sudden death) - either player - 1F0C-7D64+DD0B-77A4 - - - Start with more health - P1 - 5349-87D4 - - - Start with 1/2 health - P1 - 7D49-87D4 - - - Start with very little health - P1 - DF49-87D4 - - - Start with more health - P2/CPU - 534A-8F64 - - - Start with half health - P2/CPU - 7D4A-8F64 - - - Start with very little health - P2/CPU - DF4A-8F64 - - - - World Heroes 2 (USA) - - Invincibility - P1 - 1D82-AF6D+1D83-0F64 - - - Invincibility - P2 - 1D82-0D0D+1D84-DD04 - - - Hit anywhere - P1 - 6D8A-07DD+6D8F-D7D4 - - - Hit anywhere - P2 - 6D82-AD0D+6D83-0D04 - - - Infinite health - P1 - 7E0574:80 - - - No health - P2 - 7E0576:00 - - - Infinite time - 7E052C:99 - - - One win wins the match - P1 - 7E0570:02 - - - - World League Soccer (USA) - - Each goal worth 2 - P1 - D4AC-ADA3 - - - Each goal worth 3 - P1 - D7AC-ADA3 - - - Each goal worth 4 - P1 - D0AC-ADA3 - - - Each goal worth 5 - P1 - D9AC-ADA3 - - - Each goal worth 6 - P1 - D1AC-ADA3 - - - Each goal worth 7 - P1 - D5AC-ADA3 - - - Each goal worth 8 - P1 - D6AC-ADA3 - - - Each goal worth 9 - P1 - DBAC-ADA3 - - - Each goal worth 2 - P2 - D4AD-D7DE - - - Each goal worth 3 - P2 - D7AD-D7DE - - - Each goal worth 4 - P2 - D0AD-D7DE - - - Each goal worth 5 - P2 - D9AD-D7DE - - - Each goal worth 6 - P2 - D1AD-D7DE - - - Each goal worth 7 - P2 - D5AD-D7DE - - - Each goal worth 8 - P2 - D6AD-D7DE - - - Each goal worth 9 - P2 - DBAD-D7DE - - - - WWF Raw (USA) - - Start with half health - D7ED-1C7D - - - Nobody gets hurt - C231-36E3 - - - No out of ring timer - C2E3-C653 - - - Infinite health - P1 - 7E0A78:A0 - - - Two punch knockouts - 7E0F44:01 - - - Max grapple meter - P1 - 7E0B44:BE+7E0B45:02+7E0B46:00 - - - - WWF Royal Rumble (USA) - - Max grapple meter - P1 - 7E06DE:FF+7E06DF:02+7E06E0:00 - - - Two punch knockouts - 7E092C:01 - - - - WWF Super WrestleMania (USA) - - Punches and kicks (except flying drop kick) do no damage - DDB1-DF07 - - - Punches and kicks (except flying drop kick) do more damage - D7B1-DF07 - - - Punches and kicks (except flying drop kick) do a lot more damage - D1B1-DF07 - - - Stomps do no damage - DDB0-0FA7 - - - Stomps do more damage - D7B0-0FA7 - - - Stomps do a lot more damage - D1B0-0FA7 - - - Elbow drops do no damage - DDEE-DF91 - - - Elbow drops do more damage - D9EE-DF91 - - - Elbow drops do a lot more damage - D6EE-DF91 - - - Flying elbow drops do no damage - DDEE-DF21 - - - Flying elbow drops do more damage - D5EE-DF21 - - - Flying elbow drops do a lot more damage - DCEE-DF21 - - - Headbutts do no damage - DDBB-0407 - - - Headbutts do more damage - D1BB-0407 - - - Headbutts do a lot more damage - DBBB-0407 - - - Start with 1/4 health - both players - DAC6-6FDD - - - Start with 1/2 health - both players - F6C6-6FDD - - - Start with 3/4 health - both players - 40C6-6FDD - - - - WWF WrestleMania - The Arcade Game (USA) - - Infinite time - 3CF0-7B91 - - - Do mega damage and don't die - C9D2-8FDA - - - Max combo meter - CBF0-84DE+6DF0-84AE - - - Start with 1/4 health - 4DD0-7D0A+4DD2-740A - - - Start with 1/2 health - OED0-7D0A+0ED2-740A - - - Start with 3/4 health - 56D0-7D0A+56D2-740A - - - Start with 1/4 health - opponent - 4DDF-7D6A - - - Start with 1/2 health - opponent - 0EDF-7D6A - - - Start with 3/4 health - opponent - 56DF-7D6A - - - - Xardion (USA) - - Immune to most collisions - 4A25-0FB4 - - - Immune to most bullets - 4A31-6DFD - - - Start characters at level 12 - DDE2-07CD - - - - X-Kaliber 2097 (USA) - - Infinite time - C260-D767 - - - Infinite lives - 3C6C-A76D - - - Soda Cans give 50% life back - 9C63-D56D - - - Infinite health - P1 - 7E0A18:90 - - - Infinite lives - P1 - 7E0A3E:09 - - - Infinite continues - P1 - 7E0A46:09 - - - Infinite time (alt) - 7E0A21:5A - - - - X-Men - Mutant Apocalypse (USA) - - Infinite health - 33DB-E407 - - - Infinite health (alt) - 7E008B:41+7E0C35:41 - - - Infinite lives - training mode - C2D1-8F67 - - - Infinite lives - mission mode - C2D7-5F64 - - - Hit anywhere - 40E3-5766+6DEF-84D6 - - - Easy specials (press X) - 3344-E701 - - - Walk through walls - C247-84D7+89D2-87A9+C240-8F07 - - - Invincibility - 7E0C4C:21 - - - Infinite lives - Wolverine - 7E0B7E:08 - - - Infinite lives - Cyclops - 7E0B7F:08 - - - Infinite lives - Beast - 7E0B82:08 - - - Infinite lives - Psylocke - 7E0B80:08 - - - Infinite lives - Gambit - 7E0B81:08 - - - Use 1 button specials from practice mode in mission mode - 7E0B89:01 - - - Lava stops flowing - 7E1685:DB - - - - Yogi Bear (Japan) - - Infinite health - 7E021E:06 - - - Infinite lives - 7E021C:09 - - - Super-jump - 7E0AB0:00 - - - Start on Snow Business Stage 1 - 7E009F:23 - - - Start on Snow Business Stage 2 - 7E009F:28 - - - Start on Snow Business Stage 3 - 7E009F:2D - - - Start on Snow Business Stage 4 - 7E009F:32 - - - Start on Cave Capers Stage 1 - 7E009F:37 - - - Start on Cave Capers Stage 2 - 7E009F:3C - - - Start on Cave Capers Stage 3 - 7E009F:41 - - - Start on Cave Capers Stage 4 - 7E009F:46 - - - Start on Redwood Rendevous Stage 1 - 7E009F:4B - - - Start on Redwood Rendevous Stage 2 - 7E009F:50 - - - Start on Redwood Rendevous Stage 3 - 7E009F:55 - - - Start on Redwood Rendevous Stage 4 - 7E009F:5A - - - Start on Water Palaver Stage 1 - 7E009F:5F - - - Start on Water Palaver Stage 2 - 7E009F:64 - - - Start on Water Palaver Stage 3 - 7E009F:69 - - - Start on Water Palaver Stage 4 - 7E009F:6E - - - Start on Construction Site Shenanigans Stage 1 - 7E009F:73 - - - Start on Construction Site Shenanigans Stage 2 - 7E009F:78 - - - Start on Construction Site Shenanigans Stage 3 - 7E009F:7D - - - Start on Construction Site Shenanigans Stage 4 - 7E009F:82 - - - - Yogi Bear's Cartoon Capers (Europe) - - Infinite health - 7E021E:06 - - - Infinite lives - 7E021C:09 - - - Start on Snow Business Stage 1 - 7E009F:23 - - - Start on Snow Business Stage 2 - 7E009F:28 - - - Start on Snow Business Stage 3 - 7E009F:2D - - - Start on Snow Business Stage 4 - 7E009F:32 - - - Start on Cave Capers Stage 1 - 7E009F:37 - - - Start on Cave Capers Stage 2 - 7E009F:3C - - - Start on Cave Capers Stage 3 - 7E009F:41 - - - Start on Cave Capers Stage 4 - 7E009F:46 - - - Start on Redwood Rendevous Stage 1 - 7E009F:4B - - - Start on Redwood Rendevous Stage 2 - 7E009F:50 - - - Start on Redwood Rendevous Stage 3 - 7E009F:55 - - - Start on Redwood Rendevous Stage 4 - 7E009F:5A - - - Start on Water Palaver Stage 1 - 7E009F:5F - - - Start on Water Palaver Stage 2 - 7E009F:64 - - - Start on Water Palaver Stage 3 - 7E009F:69 - - - Start on Water Palaver Stage 4 - 7E009F:6E - - - Start on Construction Site Shenanigans Stage 1 - 7E009F:73 - - - Start on Construction Site Shenanigans Stage 2 - 7E009F:78 - - - Start on Construction Site Shenanigans Stage 3 - 7E009F:7D - - - Start on Construction Site Shenanigans Stage 4 - 7E009F:82 - - - - Yoshi's Cookie (USA) - - In action mode, passing a stage advances to the next round - 6D8F-DF3B - - - Immediately complete current Action level whenever effects switch is turned on (keep switch off to play) - D48D-AD36 - - - All 99 Action rounds available without the secret code - 14C6-0436 - - - In VS mode, only 1 win is required instead of 3. P2 always wins the set (2P only) - DF86-A71C - - - In VS mode, the fuses don't count down - C2A0-DF48 - - - In VS mode, play against tougher opponents without the secret code - D685-A766+DD86-AF66 - - - In Puzzle mode, passing a stage advances to the next round - DD3C-6738 - - - Unlimited moves in puzzle mode (turn effects switch off to use up moves if the level becomes impossible) - C2EA-671B - - - - Yoshi's Safari (USA) - - Almost infinite health - C221-116D+C283-4FAE - - - Infinite power - DD6B-1D00+DD26-11AF - - - Infinite time - C2E9-47DE - - - Infinite lives - C228-376D - - - Don't lose coins when you miss a jump - C28F-3D02 - - - 1 minute for stage 1 instead of 4 - DFC9-4F82 - - - 9 minutes for stage 1 - DBC9-4F82 - - - 1 minute for stage 2 instead of 4 - DFC9-4472 - - - 9 minutes for stage 2 - DBC9-4472 - - - Lose power more quickly - DF6B-1D60+DF26-15DF - - - Lose power more slowly - D96B-1D00+D926-11AF - - - Gain power more quickly - DF6C-1460+DF2B-156F - - - Gain power more slowly - 4D6C-1400+4D2B-150F - - - 1-up with every coin after you get 10 - DBEF-1D6E - - - 1-up with every coin after you get 30 - F3EF-1D6E - - - 1-up with every coin after you get 99 - 14EF-1D6E - - - Start with 1 life - DD67-1D50 - - - Start with 5 lives - D067-1D50 - - - Start with 10 lives - DB67-1D50 - - - - Young Merlin (USA) - - Faster Merlin - D9B7-14F9 - - - Slower mine cart - D46B-1030 - - - 2 hearts from rainbow water bottle - D4C0-CD6F - - - 3 hearts from rainbow water bottle - D7C0-CD6F - - - Start with 6 heart containers (new game) - D186-C1D1 - - - Start with 8 heart containers (new game) - D686-C1D1 - - - Infinite health - 7EEDDE:02 - - - - Ys III - Wanderers from Ys (USA) - - Invincibility - D6FE-BE7C - - - Infinite health - C2B3-D092 - - - Infinite Amulet shots - D7F3-2358 - - - Items are free if you have enough money - 6DEB-D46F+DCEB-D4AF - - - One hit kills on bosses (except final boss) - DDF3-2A5B - - - Gain experience quicker - CBBB-A192 - - - Gain experience much quicker - CBBB-A192+79BB-A1B2 - - - Start with 100 hit points instead of 20 - 1082-012E - - - Start with 200 hit points - A682-012E - - - Start with 488 Gold instead of 1,000 - DF8E-00BE - - - Start with 2,024 Gold - D58E-00BE - - - Start with 9,704 Gold - 498E-00BE - - - Start with 20,200 Gold - 038E-00BE - - - Start with 40,168 Gold - BA8E-00BE - - - Start with 65,512 Gold - EE8E-00BE - - - Invincibility (alt) - 7E1AFC:08 - - - Infinite Gold - 7E1297:FF+7E1298:FF - - - 255 Max HP - 7E1295:FF - - - Max Exp - 7E1299:FF+7E129A:FF - - - 255 Ring - 7E1296:FF - - - 255 STR - 7E129D:FF - - - 255 DEF - 7E129E:FF - - - 1 Exp point to gain next level - 7E129B:01 - - - Have all equipment - 7E12B1:FF+7E12B2:FF+7E12A0:FF+7E12A8:FF+7E12A1:FF+7E12A2:FF+7E12A3:FF+7E12A4:FF+7E12A5:FF+7E12A6:FF+7E12A7:FF+7E12A9:FF+7E12AA:FF+7E12AB:FF+7E12B3:FF+7E12AC:FF+7E12AD:FF+7E12AE:FF+7E12AF:FF+7E12B0:FF - - - Have all inventory items - 7E12BF:FF+7E12C0:FF+7E12C1:FF+7E12C2:FF+7E12C3:FF+7E12C4:FF+7E12B9:FF+7E12BA:FF+7E12BB:FF+7E12BC:FF+7E12BD:FF+7E12BE:FF - - - Have all statues - 7E12C5:FF+7E12C6:FF+7E12C7:FF+7E12C8:FF - - - - Ys IV - Mask of the Sun (Japan) - - Infinite HP - 7E0973:FF - - - Infinite GP - 7E0983:FF+7E0984:FF - - - Max EXP - 7E097B:FF+7E097C:FF - - - - Yuu Yuu Hakusho Final - Makai Saikyou Retsuden (Japan) - - Infinite health - 7E0A38:50 - - - Infinite power - 7E0A3C:50 - - - One hit kills - 7E0F38:00 - - - Opponent has no power - 7E0F3C:00 - - - - Zero the Kamikaze Squirrel (USA) - - Jump higher - E060-1D62+E060-CF03 - - - Invincibility - 7E0E2C:02 - - - Infinite health - 7E1674:04 - - - Infinite lives - 7E1672:06 - - - Infinite Shurikens - 7E1676:99 - - - - Zool - Ninja of the 'Nth' Dimension (USA) - - Invincibility (blinking) - 7E1D8B:49 - - - Invincibility - 7E05DC:FF - - - Infinite health - 7E1CF1:FA - - - Infinite lives - 7E020C:63 - - - Infinite time - 7E1CEF:09 - - - Infinite continues - 7E020C:63 - - - - Zombies Ate My Neighbors (USA) - - Invincibility, hit anywhere, get items from anywhere (do not use martian gun) - both players - 6DEC-14D4+DD2F-476D+DD8D-37D7+DD8E-C767 - - - Invincibility - both players - DD2F-476D - - - Infinite health - both players - 3C20-4D0D - - - Infinite weapons - both players - DD30-1FA7 - - - Infinite Keys on pick-up - DD3F-1DD4 - - - Infinite special items (except Keys and random Potions) - DD39-34D4 - - - Infinite lives - both players - 82AA-CF07 - - - Victims are invincible - 18CC-37DA - - - Package of 99 Squirtgun shots worth 999 - DBEC-4704 - - - Package of 20 Soda Pop Cans worth 99 - BBE8-44D4 - - - Package of 20 Tomatoes worth 99 - BBE8-4464 - - - Package of 5 Bazookas worth 999 - BBE8-4FA4 - - - Each First Aid Kit worth 9 on pick-up - DBEF-1F04 - - - Each Key worth 9 on pick-up - DBED-1FA4 - - - Only 1 victim to rescue per level (no bonus for rescuing all victims, game is over if Zombie eats a victim) - DF63-14DF - - - Can advance to next level after getting 1 victim (no bonus for rescuing all victims, game is over if Zombie eats a victim) - BAA1-44A4 - - - Walk through walls - 6D3A-47DF+6D3D-14AF - - - Continue with 1/2 health - D921-1DD4 - - - Start with 1/2 health - D965-4464 - - - Start with 10 lives - DB66-4DD4 - - - Start with 7 lives - D166-4DD4 - - - Start with 1 life - DD66-4DD4 - - - Start with 50 shots in Squirtgun - DD6B-4DA4 - - - Start with 100 shots in Squirtgun - DD6B-4D64 - - - Start with 550 shots in Squirtgun - D96B-4DA4 - - - Start with 950 shots in Squirtgun - DB6B-4DA4 - - - Start with Soda Pop Cans instead of Squirtguns (Press B or Y to get item) - 266B-4704 - - - Start with Bazookas (Press B or Y to get item) - 216B-4704 - - - Start with Tomatoes (Press B or Y to get item) - 2C6B-4704 - - - Start with Fire Extinguishers (Press B or Y to get item) - A36B-4704 - - - Start with Ice Pops (Press B or Y to get item) - 2A6B-4704 - - - Start with Peppers (Press B or Y to get item) - 236B-4704 - - - Start with Martian Bubble Guns (Press B or Y to get item) - 2D6B-4704 - - - Start with Weed-eaters (Press B or Y to get item) - 246B-4704 - - - Start with Ancient Artifacts (Press B or Y to get item) - 206B-4704 - - - Start with Plates (Press B or Y to get item) - 3D6B-4704 - - - Start with Silverware (Press B or Y to get item) - 346B-4704 - - - Start with Footballs (Press B or Y to get item) - 306B-4704 - - - Start with 9 First Aid Kits instead of 1 - DB6B-4F04 - - - Start with Speed Shoes instead of First Aid Kit (Press B or Y to get item) - D36C-4DD4 - - - Start with a Monster Potion (Press B or Y to get item) - FD6C-4DD4 - - - Start with a Ghost Potion (Press B or Y to get item) - F46C-4DD4 - - - Start with a Random Potion (Press B or Y to get item) - F06C-4DD4 - - - Start with a Pandora's box (Press B or Y to get item) - FA6C-4DD4 - - - Start with a Skeleton key (Press B or Y to get item) - F36C-4DD4 - - - Start with a Decoy (Press B or Y to get item) - 4D6C-4DD4 - - - Start on level 2 - D46E-1D0F - - - Start on level 3 - D76E-1D0F - - - Start on level 4 - D06E-1D0F - - - Start on level 5 - D96E-1D0F - - - Start on level 6 - D16E-1D0F - - - Start on level 7 - D56E-1D0F - - - Start on level 8 - D66E-1D0F - - - Start on level 9 - DB6E-1D0F - - - Start on level 10 - DC6E-1D0F - - - Start on level 11 - D86E-1D0F - - - Start on level 12 - DA6E-1D0F - - - Start on level 13 - D26E-1D0F - - - Start on level 14 - D36E-1D0F - - - Start on level 15 - DE6E-1D0F - - - Start on level 16 - FD6E-1D0F - - - Start on level 17 - FF6E-1D0F - - - Start on level 18 - F46E-1D0F - - - Start on level 19 - F76E-1D0F - - - Start on level 20 - F06E-1D0F - - - Start on level 21 - F96E-1D0F - - - Start on level 22 - F16E-1D0F - - - Start on level 23 - F56E-1D0F - - - Start on level 24 - F66E-1D0F - - - Start on level 25 - FB6E-1D0F - - - Start on level 26 - FC6E-1D0F - - - Start on level 27 - F86E-1D0F - - - Start on level 28 - FA6E-1D0F - - - Start on level 29 - F26E-1D0F - - - Start on level 30 - F36E-1D0F - - - Start on level 31 - FE6E-1D0F - - - Start on level 32 - 4D6E-1D0F - - - Start on level 33 - 4F6E-1D0F - - - Start on level 34 - 446E-1D0F - - - Start on level 35 - 476E-1D0F - - - Start on level 36 - 406E-1D0F - - - Start on level 37 - 496E-1D0F - - - Start on level 38 - 416E-1D0F - - - Start on level 39 - 456E-1D0F - - - Start on level 40 - 466E-1D0F - - - Start on level 41 - 4B6E-1D0F - - - Start on level 42 - 4C6E-1D0F - - - Start on level 43 - 486E-1D0F - - - Start on level 44 - 4A6E-1D0F - - - Start on level 45 - 426E-1D0F - - - Start on level 46 - 436E-1D0F - - - Start on level 47 - 4E6E-1D0F - - - Start on level 48 - 7D6E-1D0F - - - Start on bonus level Son of Dr. Tongue - 746E-1D0F - - - Start on bonus level Day of the Tentacle - 776E-1D0F - - - Start on bonus level Someplace Very Warm - 706E-1D0F - - - Start on bonus level Curse of the Pharaohs - 796E-1D0F - - - Start on bonus level Mushroom Men - 716E-1D0F - - - Start on bonus level Cheerleaders vs. the Monsters - 756E-1D0F - - - Start on credit level Monsters Among Us - 7F6E-1D0F - - - Infinite health - P1 - 7E1CB8:0A - - - Infinite health - P2 - 7E1CBA:0A - - - Infinite lives - P1 - 7E1D4C:03 - - - Infinite lives - P2 - 7E1D4E:03 - - - Skip Konami and LucasArts intro screens - 7E0C7C:01 - - - Only 1 victim to rescue to advance - 7E1D52:01 - - - Always have Shoes effect - P1 - 7E0155:FF - - - Always have Shoes effect - P2 - 7E02D5:FF - - - Infinite Bazooka - P1 - 7E1CD6:50 - - - Infinite Bazooka - P2 - 7E1CF6:50 - - - Infinite Berries - P1 - 7E1CDA:50 - - - Infinite Berries - P2 - 7E1CFA:50 - - - Infinite Cold Potion - P1 - 7E1D12:09 - - - Infinite Cold Potion - P2 - 7E1D32:09 - - - Infinite Dummy Clown - P1 - 7E1D20:09 - - - Infinite Dummy Clown - P2 - 7E1D40:09 - - - Infinite Extinguisher - P1 - 7E1CCE:50 - - - Infinite Extinguisher - P2 - 7E1CEE:50 - - - Infinite Flamethrower - P1 - 7E1CE6:50 - - - Infinite Flamethrower - P2 - 7E1D06:50 - - - Infinite Footballs - P1 - 7E1CE4:50 - - - Infinite Footballs - P2 - 7E1D04:50 - - - Infinite Holy Cross - P1 - 7E1CD4:50 - - - Infinite Holy Cross - P2 - 7E1CF4:50 - - - Infinite Keys - P1 - 7E1D0C:09 - - - Infinite Keys - P2 - 7E1D2C:09 - - - Infinite Martian Gun - P1 - 7E1CD0:50 - - - Infinite Martian Gun - P2 - 7E1CF0:50 - - - Infinite Medical Kit - P1 - 7E1D1A:09 - - - Infinite Medical Kit - P2 - 7E1D3A:09 - - - Infinite Monster Potion - P1 - 7E1D10:09 - - - Infinite Monster Potion - P2 - 7E1D30:09 - - - Infinite Pandoras Box - P1 - 7E1D1C:09 - - - Infinite Pandoras Box - P2 - 7E1D3C:09 - - - Infinite Plates - P1 - 7E1CE0:50 - - - Infinite Plates - P2 - 7E1D00:50 - - - Infinite Popsicles - P1 - 7E1CDC:50 - - - Infinite Popsicles - P2 - 7E1CFC:50 - - - Infinite Random A Potion - P1 - 7E1D14:09 - - - Infinite Random A Potion - P2 - 7E1D34:09 - - - Infinite Random B Potion - P1 - 7E1D16:09 - - - Infinite Random B Potion - P2 - 7E1D36:09 - - - Infinite Shoes - P1 - 7E1D0E:09 - - - Infinite Shoes - P2 - 7E1D2E:09 - - - Infinite Silverware - P1 - 7E1CE2:50 - - - Infinite Silverware - P2 - 7E1D02:50 - - - Infinite Skeleton Key - P1 - 7E1D1E:09 - - - Infinite Skeleton Key - P2 - 7E1D3E:09 - - - Infinite Soda Bombs - P1 - 7E1CD8:50 - - - Infinite Soda Bombs - P2 - 7E1CF8:50 - - - Infinite Squirt Gun - P1 - 7E1CCC:50 - - - Infinite Squirt Gun - P2 - 7E1CEC:50 - - - Infinite Weed Wacker - P1 - 7E1CD2:50 - - - Infinite Weed Wacker - P2 - 7E1CF2:50 - - - - Addams Family, The - Pugsley's Scavenger Hunt (USA, Europe) - - Invincibility - C99-15C-3BE - - - Infinite health - BE9-15C-3BE - - - Infinite hearts - 009-11C-E6D - - - Infinite lives - FA4-28F-4C1 - - - Infinite lives (alt) - BE4-27F-19E - - - When game begins, go through any door, enter secret bonus room, disable to exit room - AF3-DEE-7F1+3C3-DFE-916+7D3-E1E-197 - - - Lose 1 heart to become invincible - FAA-DCF-4C1 - - - Start each life with 1 energy heart - 01F-E98-E66 - - - Start each life with 5 energy hearts - 05F-E98-E66 - - - Start with 1 life - 012-17F-F7E - - - Start with 10 lives - 0A2-17F-F7E - - - - Addams Family, The (USA) - - Invincibility - BEA-DAB-4C1+C99-D7F-4C1 - - - Infinite health - BEF-35E-3BE - - - Infinite lives - BED-CEA-3BE - - - Infinite weapon - BE8-688-3BE - - - - Adventure Island (USA, Europe) - - Invincibility - BE6-53E-4C1 - - - Infinite time - BE6-90E-3BE - - - Infinite lives - BEA-C88-3BE - - - Hit anywhere - 000-E1D-3B1+181-02D-4CA - - - - Adventure Island II - Aliens in Paradise (USA, Europe) - - Invincibility - C9A-D8E-4C1 - - - Infinite time - C9E-2CF-4C1 - - - Infinite lives - 006-DDB-E6E - - - Infinite lives (alt) - BE6-DCB-B31 - - - No gradual loss of energy, but can still be drained by obstacles and enemies - 00E-28F-E6E - - - Once you collect any non-throwable object, you can't lose it from menu - 00D-51A-E6E - - - Start with 1 of each power-up - 3C0-37B-5D4 - - - Start with 1 life - 000-6DB-E66 - - - Start with 6 lives - 050-6DB-E66 - - - Start with 9 lives - 080-6DB-E66 - - - Start on level 1-4 - 080-57B-E6E - - - - Adventures of Pinocchio, The (USA) (Proto) - - Invincibility - C94-C0E-6E9 - - - - Adventures of Rocky and Bullwinkle and Friends, The (USA) - - Invincibility - C94-4CE-E69 - - - Invincibility after first hit - FA4-28E-4C1 - - - Infinite energy - FA4-96E-4C1 - - - Die in one hit - 014-53E-08B - - - Start with 1 life - 001-5CA-E62 - - - Start with 10 lives - 091-5CA-E62 - - - Start with 15 lives - 0E1-5CA-E62 - - - Start with 1 mooseberry - 1st life - 001-61A-E66 - - - Start with 5 mooseberries - 1st life - 041-61A-E66 - - - Start with 10 mooseberries - 1st life - 091-61A-E66 - - - Start with 1 mooseberry - 2nd life - 004-BCE-E66 - - - Start with 5 mooseberries - 2nd life - 044-BCE-E66 - - - Start with 10 mooseberries - 2nd life - 094-BCE-E66 - - - - Adventures of Star Saver, The (USA, Europe) - - Invincibility (blinking) - C9B-D9E-4C1 - - - Infinite lives - BE1-A7E-3BE - - - Infinite life ropes - 003-89D-F71 - - - Infinite shields on pick-up - 001-63D-F71+00B-B7E-F71+00B-DBE-F71 - - - 49 life ropes on pick-up - 75C-94E-3BA - - - Start with all power-ups (except shields) - 1st life only - 3C1-7FE-5D4 - - - Start with 2 lives - 021-99E-E66 - - - Start with 4 lives - 041-99E-E66 - - - Start with 6 lives - 061-99E-E66 - - - - Aerostar (USA, Europe) - - Invincibility - 03A-ADD-A21+17A-AED-2AA+F07-07E-192 - - - Infinite lives - F06-F1E-6E9 - - - Infinite jump - BE8-70E-6E9 - - - - Akumajou Dracula - Shikkoku Taru Zensoukyoku - Dark Night Prelude (Japan) (SGB Enhanced) - - Fast walk left - 11D-F3B-F7D - - - Fast walk right - 11D-CCB-F7D - - - Fast jump left - 114-2CA-F7D - - - Fast jump right - 114-0BA-F7D - - - - Aladdin (USA) (SGB Enhanced) - - Infinite health - BED-CAF-A28 - - - Infinite lives - BEC-E5E-19E - - - Infinite Apples - BE1-6DD-19E - - - - Alfred Chicken (USA) - - Invincibility - BE5-46E-6E9 - - - Infinite time - BEB-C2E-D51 - - - Infinite lives - BEB-E9E-A24 - - - - Alien 3 (USA, Europe) - - Almost infinite health - FA7-68E-4C1 - - - Infinite tries - FA6-92E-4C1 - - - Infinite shots per clip on pick-up - 00F-9CD-E65 - - - Infinite magazine clips on pick-up - FAB-45D-4C1 - - - 50 shots per magazine clip - 32A-3CA-19A - - - 75 shots per magazine clip - 4BA-3CA-19A - - - 100 shots per magazine clip - 64A-3CA-19A - - - Start with 1/2 health - 8E4-42D-195 - - - Start with 4 tries - 04B-27E-E66 - - - Start with 6 tries - 06B-27E-E66 - - - Start with 10 tries - 0AB-27E-E66 - - - - Alien Olympics (Europe) - - Meter never decreases - C9D-7DB-800 - - - Hyper velocity - BED-7AB-A24 - - - Freeze time - BEC-6DA-19A - - - - Alien vs Predator - The Last of His Clan (USA) - - Infinite lives - BEF-D4D-3BE - - - Infinite energy - BE4-EFF-19E - - - Infinite HP - BEB-BAC-4C1 - - - - Alleyway (World) - - Infinite lives - BE7-EEF-19E - - - - All-Star Baseball 99 (USA) - - Infinite time - 006-5E9-E6E - - - Computer's 3-pt. shots worth 25 points - 191-1FD-E66 - - - Computer's 3-pt. shots worth 17 points - 111-1FD-E66+111-18D-E6D - - - Computer makes almost all shots - 36E-F7D-191+096-F8D-F7A - - - Computer can't score against you - 341-15D-3B2+001-16D-E6D - - - Shot clock for human player is 9 seconds - 1-on-1 game - 095-FB9-7FA+093-3DD-7FA+095-C49-7FA - - - - Altered Space - A 3-D Alien Adventure (USA) - - Infinite energy (air) - 3A4-F1E-B31 - - - - Amazing Penguin (USA, Europe) - - Infinite lives - BE2-28D-19E - - - Infinite time - BE6-C4E-3BE - - - - Amazing Spider-Man, The (USA, Europe) - - Hit anywhere - 008-EAD-809+008-8CD-7FF - - - - Asteroids (USA, Europe) - - Infinite lives - 003-83F-3BE - - - No extra rocks as you go up levels - 00A-7ED-3BA - - - Rocks go thru you unless you move from the middle - 01C-B4D-F76+003-9CF-3BE - - - Start with 1 life - 013-15F-E66 - - - Start with 5 lives - 053-15F-E66 - - - Start with 9 lives - 093-15F-E66 - - - - Atlantis - The Lost Empire (USA, Europe) - - Infinite energy - FA2-ACA-4C1 - - - Infinite lives - FAC-3AE-4C1 - - - Start with 9 lives - 094-3EC-E66 - - - - Atomic Punk (USA) - - Invincibility and infinite time - 092-5EF-F77+752-5DF-B38+919-76F-195 - - - - Attack of the Killer Tomatoes (USA, Europe) - - Infinite health - 00A-DBF-3BE - - - Infinite lives - FA9-45C-4C1 - - - - Avenging Spirit (USA, Europe) - - Infinite energy except if weapon is used against you - FA5-AFC-4C1+FAE-C2D-4C1 - - - Infinite L energy except against spikes - FAE-B5D-4C1 - - - Start with 1/2 energy - 0A3-2BC-B3A - - - Start with 1/4 energy - 053-2BC-B3A - - - Start with 3/4 energy - 0F3-2BC-B3A - - - Start on level 2 (brings you back to level 2) - 029-B9C-E6E - - - Start on level 4 (brings you back to level 2) - 049-B9C-E6E - - - Start on level 6 (brings you back to level 2) - 069-B9C-E6E - - - - Balloon Kid (USA, Europe) - - Invincibility against fire - 006-04A-C4E - - - - Barbie - Game Girl (USA, Europe) - - Infinite HP - FAA-A5C-4C1 - - - Infinite continues - FAB-959-4C1 - - - 1 continue - 017-ADD-E66 - - - 4 continues - 047-ADD-E66 - - - 8 continues - 087-ADD-E66 - - - Start with 2 HP - 027-7AD-F7E - - - Start with 4 HP - 047-7AD-F7E - - - Start with 8 HP - 087-7AD-F7E - - - - Bart Simpson's Escape from Camp Deadly (USA, Europe) - - Infinite health - FA7-FAF-4C1 - - - - Bases Loaded for Game Boy (USA) - - No walks - 00C-63B-19A - - - 1 ball and you walk - 00C-66B-F7A - - - 2 balls and you walk - 02C-66B-F7A - - - 3 balls and you walk - 03C-66B-F7A - - - 5 balls and you walk - 04C-66B-F7A - - - Outs aren't counted (base runners will still be taken out) - 00C-77B-19A - - - Number of outs to retire the side varies - 003-8F8-E66 - - - Strikes aren't counted - 00C-43B-3BA - - - 1 strike and you're out - 01C-46B-E66 - - - 2 strikes and you're out - 02C-46B-E66 - - - 5 strikes and you're out - 05C-46B-E66 - - - No scoring - disable to score - 008-1FF-E6E+008-11F-E6E - - - - Batman - The Animated Series (USA, Europe) - - Almost invincible - disable if you get stuck - 215-92D-D5D - - - Infinite energy - 005-EFD-3B7 - - - Infinite batarangs - 00B-A3D-3BE - - - One hit kills on most enemies - AF6-15E-A2C - - - Each batarang pick-up is worth 9 - 09A-70B-F7E - - - Most enemies don't die - 006-16E-3B7 - - - Most enemies are harder to kill - 0AF-CDB-E62 - - - Start with 7 batarangs - 004-96D-5D4+FA4-9AD-4C1 - - - Start with very little energy - 014-8ED-F76 - - - Start with about half energy - 044-8ED-F76 - - - Start with about 2x energy - 0E4-8ED-F76 - - - - Batman - Return of the Joker (USA, Europe) - - Invincibile against enemies - 004-ADA-A2E+C64-B2A-7F1 - - - Infinite batarangs on pick-up - 009-96E-19E - - - Infinite continues - 00A-B5D-F75 - - - Select any weapon from menu - 006-BCA-7F1 - - - 5 Batarangs on pick-up - 05D-A0B-C42 - - - 20 Batarangs on pick-up - 14D-A0B-C42 - - - 40 Batarangs on pick-up - 28D-A0B-C42 - - - 1 continue - 022-07F-F7E - - - 9 continues - 0A2-07F-F7E - - - Start with max of 3 HP - O62-01F-C42 - - - Start with max of 8 HP - 102-01F-C42 - - - - Battle Unit Zeoth (USA, Europe) - - Infinite health - F02-33E-6E9 - - - - Battletoads (USA, Europe) - - Invincibility - 047-7DD-E6E+367-7CD-4CA - - - Infinite lives and energy - FAC-CAF-4C1+007-B0E-F71 - - - Infinite continues - 007-C2E-3BE - - - One hit kills - 00E-9AD-B3E - - - Keep axe after dying - FAD-918-4C1 - - - Big arms that hack at you from caves in level 1 do not move - 005-42E-E6E - - - 1 continue - 017-F28-E66 - - - 5 continues - 057-F28-E66 - - - 10 continues - 0A7-F28-E66 - - - Start with 1 life - 007-ED8-E66 - - - Start with 6 lives - O57-ED8-E66 - - - Start with 10 lives - 097-ED8-E66 - - - Start with 2 extra HP - after 1st life - 0EE-388-D5A - - - Start 1st life with 2 extra HP - 0E3-26F-D5A - - - Start 1st life with 1/2 energy - 063-26F-D5A - - - Start with only 1/2 energy - after 1st life - 06E-388-D5A - - - - Battletoads in Ragnarok's World (USA) - - Invincibility - beat'em up levels - EAC-FDD-081 - - - Infinite health - FA8-71F-4C1 - - - Infinite lives - 7EA-31E-3BE - - - - Beast Fighter (Asia) (Unl) - - Invincibility - 007-F6A-C49+008-00A-E69+017-FFA-E6A+3E7-FEA-191 - - - Infinite time - C9D-B6D-C49 - - - One hit kills on bosses - 006-FAB-E62 - - - - Beetlejuice (USA) - - Infinite health - FA7-E4C-4C1 - - - Infinite lives - FA7-EFC-4C1 - - - - Bill Elliott's NASCAR Fast Tracks (USA) - - Start with burst of speed - XX1-069-19A - - - Infinite fuel - 004-65A-3BE - - - Collisons with cars don't affect speed - 00D-46B-3BE - - - Collisions barely affect speed - 003-C5B-3B7+002-3FA-3B7+000-BDA-19E - - - Start with 1 lap - ignore lap timer and counter - 1E7-31B-B37+027-32B-A26 - - - Start with 3 laps - ignore lap timer and counter - 1E7-31B-B37+047-32B-A26 - - - Start with 9 laps - ignore lap timer and counter - 1E7-31B-B37+0A7-32B-A26 - - - - Bionic Commando (USA) - - Infinite energy - FAE-6EB-4C1 - - - Infinite lives - 006-0AE-915 - - - Infinite continues - 004-04E-915 - - - 2 continues - 024-818-E66 - - - 4 continues - 044-818-E66 - - - 6 continues - 064-818-E66 - - - Start with 8 energy - 845-E0E-5D4 - - - Start with 2 lives - 024-0EE-E66 - - - Start with 4 lives - 044-0EE-E66 - - - Start with 6 lives - 064-0EE-E66 - - - - Blades of Steel (USA) - - Set length of game to 1:00 - 011-65B-6EA - - - Set length of game to 3:00 - 031-65B-6EA - - - Set length of game to 9:00 - 091-65B-6EA - - - Opponent's energy doesn't go up again and yours does - 007-938-19A - - - Invincible in fights - FA7-9F8-4C1 - - - 3 penalty shots in shoot-out - 035-B6A-F7E - - - 5 penalty shots in shoot-out - 055-B6A-F7E - - - 9 penalty shots in shoot-out - 095-B6A-F7E - - - - Blues Brothers, The (USA, Europe) - - Infinite energy - 00A-F29-3B7 - - - Infinite encores - FA8-05F-4C1 - - - Start with 3 encores (continues) - 033-7CF-E62 - - - Start with 7 encores - 073-7CF-E62 - - - Start with 9 encores - 093-9CF-E62 - - - Start with 5 lives - 050-15B-E62 - - - Start with 7 lives - 070-15B-E62 - - - Start with 9 lives - 090-15B-E62 - - - - Boggle Plus (USA) - - Infinite time - 005-AFD-E6E - - - 1-minute game - 016-BCD-E66 - - - 5-minute game - 056-BCD-E66 - - - 9-minute game - 096-BCD-E66 - - - Can re-use shaded letters - D48-82A-E61 - - - Can select any letter on the board - letters don't have to be next to each other - 30E-A9A-4CA - - - Boggle - 1 and 2 letter words allowed - 01B-4CA-E66 - - - Boggle - Minimum word length 4 letters - 04B-4CA-E66 - - - Big Boggle - 1 to 3 letter words allowed - 01B-8FA-F7A - - - Big Boggle - Minimum word length 5 letters - 05B-8FA-F7A - - - - Bomb Jack (Europe) - - Infinite lives - F04-79F-6E9 - - - - Bomber Man GB 3 (Japan) (SGB Enhanced) - - Invincibility - 02C-AEB-E6E - - - Infinite lives - 005-17E-19E - - - Freeze timer - 009-E0D-19E - - - Maximum Bombs placable - 185-158-6EA - - - Maximum blast range - 185-238-6EA - - - - Bomberman GB (USA, Europe) (SGB Enhanced) - - Hit anywhere (press B) - 3D3-C08-E6A+3D3-C18-D5D+A13-BF8-E6A+C93-C28-E66+F03-BE8-E6E - - - Bombs can break any block - 006-C28-F7E - - - - Bonk's Adventure (USA) - - Infinite energy - 005-13B-F7D - - - Infinite lives - 007-99D-D5D - - - Start with 3 lives, 1st life as Mad Bonk - 021-AFF-E66+001-B3F-5D4 - - - Start 1st life as Turtle Bonk - 021-AFF-E66+001-B3F-5D4 - - - Start with 8 lives - 071-AFF-E66 - - - Start with 10 lives - 091-AFF-E66 - - - - Bo Jackson - Two Games in One (USA) - - Baseball - 1 ball and you walk - 01F-13C-F7A - - - Baseball - 2 balls and you walk - 02F-13C-F7A - - - Baseball - 5 balls and you walk - 05F-13C-F7A - - - Baseball - Strikes aren't counted - ignore message, you need 4 balls to walk - 00E-C5C-3BA - - - Baseball - Outs aren't counted - 003-E88-3BA - - - Baseball - 1 strike and you're out - 01E-87C-E66 - - - Baseball - 2 strikes and you're out - 02E-87C-E66 - - - Baseball - No scoring - disable to score - 008-3C8-3BA+008-268-3BA - - - Football - Infinite time - F05-6EC-6E9 - - - Football - Infinite timeouts - 000-12A-3BE - - - Football - Always 1st down - F07-D0B-6E9 - - - Football - Start with 1 timeout - 010-68B-E66 - - - Football - Start with 2 timeouts - 020-68B-E66 - - - Football - Start with 10 timeouts - 0A0-68B-E66 - - - - Bram Stoker's Dracula (USA, Europe) - - Invincibility - 006-72F-80E - - - Infinite time - FAD-50D-4C1 - - - Infinite ammo - FA1-21E-4C1 - - - - Bubble Bobble (USA, Europe) - - Hit anywhere - 00D-22E-C4A+18D-29E-08A - - - Hit anywhere - Bosses (except final boss) - 00C-05B-A29+00B-FCB-A29 - - - Get items from anywhere - 00C-02D-A29+00C-0BD-A29+00D-56D-A29+375-8FB-6EE+37D-5FD-A29+C95-90B-91E - - - One hit kill - final boss - AF8-B7B-19E - - - - Bubble Bobble Part 2 (USA, Europe) - - Infinite hearts - FAB-CEE-4C1 - - - Defeat one enemy to go to next level - AFE-33A-19E - - - No big bubbles appear - C97-8AE-E66 - - - Run into 1 enemy and you remain invincible for the rest of the game - FA5-58E-4C1+FAB-46E-4C1+FAB-63E-4C1 - - - Start with 1 heart - 015-5CE-E66 - - - Start with 6 hearts - 065-5CE-E66 - - - Start with 9 hearts - 095-5CE-E66 - - - Start on round 20 - 3E8-39F-081+138-3AF-D5E+008-3BF-E6D - - - Start on round 40 - 3E8-39F-081+278-3AF-D5E+008-3BF-E6D - - - Start on round 60 - 3E8-39F-081+3B8-3AF-D5E+008-3BF-E6D - - - - Bugs Bunny Crazy Castle 2, The (USA) - - Invincibility - C92-899-4C1 - - - Infinite lives - BE6-00E-19E - - - - Bug's Life, A (USA) (SGB Enhanced) - - Infinite lives - 006-2FD-3BE - - - Invincibility (can still drown) - 000-EEE-081 - - - - BurgerTime Deluxe (World) - - Invincibility - C9E-98D-3B2 - - - Infinite lives - FE5-CAE-B31 - - - Infinite weapon - FEB-76D-B31 - - - - Captain America and the Avengers (USA) - - Infinite energy - 005-CCE-3B7 - - - Enemy bullets do very little damage - 017-748-D5A - - - Enemy bullets do more damage - 197-748-D5A - - - Enemy bullets do much more damage - 337-748-D5A - - - Start with energy at 153 - 99A-29F-7FB - - - Start with energy at 255 - FFA-29F-7FB - - - Start with energy at 34 - 22A-29F-7FB - - - Start with 1 lives - 011-DDF-E66 - - - Start with 10 lives - 0A1-DDF-E66 - - - Start on stage 1-2 - 3E3-A8F-912+013-A9F-E6A+E03-AAF-2A9 - - - Start on stage 1-3 - 3E3-A8F-912+023-A9F-E6A+E03-AAF-2A9 - - - Start on stage 1-4 - 3E3-A8F-912+033-A9F-E6A+E03-AAF-2A9 - - - Start on stage 1-5 - 3E3-A8F-912+043-A9F-E6A+E03-AAF-2A9 - - - Start on stage 1-6 - 3E3-A8F-912+053-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-1 - 3E3-A8F-912+063-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-2 - 3E3-A8F-912+073-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-3 - 3E3-A8F-912+083-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-4 - 3E3-A8F-912+093-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-5 - 3E3-A8F-912+0A3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 2-6 - 3E3-A8F-912+0B3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 3-1 - 3E3-A8F-912+0C3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 3-2 - 3E3-A8F-912+0D3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 3-3 - 3E3-A8F-912+0E3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 3-4 - 3E3-A8F-912+0F3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 3-5 - 3E3-A8F-912+103-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-1 - 3E3-A8F-912+113-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-2 - 3E3-A8F-912+123-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-3 - 3E3-A8F-912+133-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-4 - 3E3-A8F-912+143-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-5 - 3E3-A8F-912+153-A9F-E6A+E03-AAF-2A9 - - - Start on stage 4-6 - 3E3-A8F-912+163-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-1 - 3E3-A8F-912+173-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-2 - 3E3-A8F-912+183-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-3 - 3E3-A8F-912+193-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-4 - 3E3-A8F-912+1A3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-5 - 3E3-A8F-912+1B3-A9F-E6A+E03-AAF-2A9 - - - Start on stage 5-6 - 3E3-A8F-912+1C3-A9F-E6A+E03-AAF-2A9 - - - - Castlevania II - Belmont's Revenge (USA, Europe) - - Invincibility - EA5-86B-081 - - - Hit anywhere - 009-36C-C4E - - - Multi-jump - 872-94B-E62+C82-95B-E69+E62-96B-19E+102-97B-C41+202-98B-B39+152-99B-E67+C9D-47F-809 - - - - Castlevania Adventure, The (USA) - - Infinite energy - 00A-F28-3B7 - - - Infinite time - disable at end of stages - 004-07F-3B7 - - - Infinite lives - 006-94F-3B7 - - - Hit anywhere - 002-61D-A22+002-71D-E62 - - - Multi-jump - 007-E3E-80A+180-EBF-195+1A0-E8F-195+230-EAF-195+320-E7F-195+C90-ECF-195+CD0-E6F-195+CD0-E9F-195+E67-E2E-6E6 - - - Slightly improves speed - new games only - FF7-3CE-E69 - - - Don't lose weapon after being hit - 00A-CF8-3B7 - - - Start with 5 lives - 048-5EF-E62 - - - Start with 7 lives - 068-5EF-E62 - - - Start with 2 energy bars - 025-5CF-C42 - - - Start with 4 energy bars - 045-5CF-C42 - - - Start with 6 energy bars - 065-5CF-C42 - - - Start with timer at 2:15 for first stage - 029-B3F-A26 - - - Start with timer at 4:15 for first stage - 049-B3F-A26 - - - Start with timer at 7:15 for first stage - 079-B3F-A26 - - - - Castlevania Legends (USA, Europe) (SGB Enhanced) - - Invincibility - C97-3BA-C45 - - - Infinite lives - DA3-45B-4C1 - - - Infinite time - C9D-85D-6E2 - - - Disable death traps - C94-5CA-D5D - - - Fast walk left - 11C-9DB-F7D - - - Fast walk right - 11C-76B-F7D - - - Fast jump left - 112-D6A-F7D - - - Fast jump right - 112-B5A-F7D - - - Hit anywhere - 4B3-49D-803+C94-5CA-D5D - - - Multi-jump - CD7-34A-F75+FA1-70A-4C1+037-33A-3B6+287-32A-081+517-36A-E62+557-2EA-80A+597-35A-191+677-31A-E69+C97-37A-C49+C9F-E4E-A29+CB7-30A-3B4 - - - - Contra - The Alien Wars (USA) (SGB Enhanced) - - Invincibility - 3EB-81B-4CA - - - Infinite smart bombs - 007-E2C-19E - - - Hit anywhere - 003-77E-B3F+003-7CE-A2B+003-82E-C43+003-87E-F7F+003-C3E-3B2 - - - Get 5 smart bombs after you die - 052-B1B-E6E - - - Get 9 smart bombs after you die - 092-B1B-E6E - - - Don't flash after getting hit - 010-6FB-7FB - - - Longer invincibility after getting hit - FF0-6FB-7FB - - - Start with Flame Thrower - 017-97B-E6A - - - Start with Crush Gun - 077-97B-E6A - - - Start with Homing shot - 087-97B-E6A - - - Start with Spread shot - 097-97B-E6A - - - - Contra (Japan) - - Invincibility - BEB-3AC-191+BEA-A3C-191+BEA-0FE-191 - - - Hit anywhere - 00A-D0C-91A+C3A-EAC-919+C6A-FBC-191 - - - Multi-jump - 005-8CA-B3F+260-E6F-195+460-E9F-195+520-E7F-195+550-EAF-195+C90-EBF-195+CD0-E5F-195+CD0-E8F-195+E55-8BA-F73 - - - - Cyraid (USA) - - Infinite lives - 00D-8CB-E6E - - - 1st nasty on bottom level of stage 1 is removed from the game - 000-729-E6E - - - Collect only 1 energy capsule and all enemy robots are destroyed-can proceed to next room - AFA-4EE-19E - - - Skip to 3rd room after completing 1st - 3EE-8AF-4CA+03E-8BF-F7E - - - Skip to 5rd room after completing 1st - 3EE-8AF-4CA+05E-8BF-F7E - - - Skip to 8rd room after completing 1st - 3EE-8AF-4CA+08E-8BF-F7E - - - Start with 4 lives - 04E-7CE-F7E - - - Start with 6 lives - 06E-7CE-F7E - - - Start with 9 lives - 09E-7CE-F7E - - - - Daedalian Opus (USA) - - Infinite time - 00D-62D-3BA - - - Get password to select any level after completing level 1 - 3E1-9AF-191+0A1-9BF-7FA - - - Start on level 5 or 6 after completing level 1 - 3E1-9CF-2AA+051-9DF-F7E - - - - Daffy Duck (USA) - - Infinite jet pack - AF4-01C-19A - - - Infinite jet pack + hit anywhere - AF4-01C-19A+C3D-F2C-E61+18D-D5C-6EA+FAD-EBC-801+FAE-B2C-801 - - - - Darkman (USA, Europe) - - Infinite energy - BA5-0FF-081 - - - Infinite lives - 014-DDF-E69 - - - Infinite time - 005-97F-E6E - - - Start 1st life with mega-energy - 63F-91C-91A - - - Start 1st life with 1/2 energy - 0AF-91C-91A - - - Start rest of lives with mega-energy - 636-40D-91A - - - Start with 9 minutes - 909-ACA-E6B - - - Start with 1 life - 002-4DF-E66 - - - Start with 8 lives - 072-4DF-E66 - - - - Darkwing Duck (USA) - - Infinite lives - 01A-0BF-C4D - - - Infinite ammo on pick-up - FAD-398-4C1 - - - Invincibility time lasts 4 seconds - AA0-64B-A2B - - - Invincibility time lasts 6 seconds - FF0-64B-A2B - - - 1 touch by an enemy kills you - 010-6FB-A2B - - - Start with 1 pt. of energy and 1 life - 1st game - 011-84F-F7A - - - Start with 5 pts. of energy on 1st life and 5 lives - 1st game - 051-84F-F7A - - - Start with 9 pts. of energy on 1st life and 9 lives - 1st game - 091-84F-F7A - - - Start with 1 pt. of energy after 1st life - 019-F0F-F7A - - - Start with 5 pts. of energy after 1st life - 059-F0F-F7A - - - Start with 9 pts. of energy after 1st life - 099-F0F-F7A - - - - David Crane's The Rescue of Princess Blobette starring A Boy and His Blob (USA) - - Infinite jellybeans - 000-56D-E6E - - - Infinite lives - 00D-4FD-3BE - - - Start with 2 honeys - 02C-0E8-E66 - - - Start with 4 honeys - 04C-0E8-E66 - - - Start with 8 honeys - 08C-0E8-E66 - - - Start with 2 root beers - 02C-0C8-E6A - - - Start with 4 root beers - 04C-0C8-E6A - - - Start with 2 tangerines - 02C-0A8-F72 - - - Start with 4 tangerines - 04C-0A8-F72 - - - Start with 2 vanillas - 02C-088-F7E - - - Start with 4 vanillas - 04C-088-F7E - - - Start with 2 limes - 02C-068-E6A - - - Start with 4 limes - 04C-068-E6A - - - Start with 2 apples - 02C-048-E6E - - - Start with 4 apples - 04C-048-E6E - - - Start with 2 bananas - 02C-028-E6A - - - Start with 4 bananas - 04C-028-E6A - - - Start with 2 colas - 02C-008-E6A - - - Start with 4 colas - 04C-008-E6A - - - Start with 2 coconuts - 02B-FE8-E66 - - - Start with 4 coconuts - 04B-FE8-E66 - - - Start with 2 strawberries - 02B-FC8-E6A - - - Start with 4 strawberries - 04B-FC8-E6A - - - Start with 2 licorices - 02B-FA8-E62 - - - Start with 4 licorices - 04B-FA8-E62 - - - Start with 2 ketchups - 02C-108-E6E - - - Start with 4 ketchups - 04C-108-E6E - - - Start with 2 punches - 02C-128-E6A - - - Start with 4 punches - 04C-128-E6A - - - Start with 2 mints - 02C-148-E6A - - - Start with 4 mints - 04C-148-E6A - - - Start with 2 lives - 02B-CA8-F7E - - - Start with 4 lives - 04B-CA8-F7E - - - Start with 8 lives - 08B-CA8-F7E - - - - Days of Thunder (USA, Europe) - - Infinite time in pits - FAE-7B9-4C1 - - - Infinite fuel - 002-948-2A3 - - - Car takes no damage - 006-9CE-3B7 - - - Tires take no damage - C97-2FD-3BA - - - - Dead Heat Scramble (USA) - - Infinite time - 004-05F-19E - - - Start on stage 2 - 02B-0C8-E6E - - - Start on stage 3 - 03B-0C8-E6E - - - Start on stage 4 - 04B-0C8-E6E - - - Start on stage 5 - 05B-0C8-E6E - - - Start on stage 6 - 06B-0C8-E6E - - - Start on stage 7 - 07B-0C8-E6E - - - Start on stage 8 - 08B-0C8-E6E - - - Start on stage 9 - 09B-0C8-E6E - - - Start on stage 10 - 0AB-0C8-E6E - - - - Deer Hunter (USA) - - Infinite time - 004-1FF-19A - - - - Dig Dug (USA) - - Infinite lives - 008-1BB-19E - - - When Pookas are partially inflated, they don't shrink - 004-50C-3BE - - - 1 pump kills monster instantly - 046-D9C-E6E+043-9ED-E6E+047-8EB-E6E - - - Start with 6 lives - 06B-ACA-E66 - - - Start with 9 lives - 09B-ACA-E66 - - - Start with 2 lives - 02B-ACA-E66 - - - Start on level 4 (display still says level 1) - 3EC-D9A-08A+04C-DAA-E62 - - - Start on level 2 (display still says level 1) - 3EC-D9A-08A+02C-DAA-E62 - - - Start on level 9 (display still says level 1) - 3EC-D9A-O8A+09C-DAA-E62 - - - - Donkey Kong (Japan) (En) (SGB Enhanced) - - Infinite lives - 009-4DF-3BE - - - Infinite time - 00C-34F-E6E - - - Timer is 2x faster - 02C-34F-E6E - - - Practice stage XX - level indicator doesn't work, can't go on to next level - 3E4-F3D-081+XX4-F4D-4CE+004-F5D-C49 - - - Start with 36 lives - 882-64F-F7A - - - - Donkey Kong (World) (Rev A) (SGB Enhanced) - - Invincibility - C93-B4A-3B2+C94-4DA-2A3+C95-46A-3B2 - - - Invincibility (alt) - FA1-F5A-E61 - - - - Donkey Kong Land (USA, Europe) (SGB Enhanced) - - Invincibility - 3E0-81B-4CA - - - Infinite lives - 00D-9DB-3BE+21D-A0B-E61 - - - Multi-jump - CD5-AFA-081+F65-B4A-2AA+005-B5A-D5E+015-AAA-D5A+1F5-ACA-B36+295-B1A-F71+2D5-B2A-191+305-ADA-08A+365-B3A-F72+BD5-B0A-C46+CA5-ABA-F71 - - - Always save game at end of level, regardless if you have KONG letters or not - C30-CBB-C41 - - - Lose all your lives when you die - C3D-A0B-E61 - - - If you get hit you don't change characters until you are back at the map screen - C9D-FDB-4C1 - - - Each banana gives you mega lives (disable when you have enough lives) - 004-C6B-3BE+3E4-C0B-3B2 - - - Change soundtrack - 002-1FB-3BE - - - Start with 1 life - 00E-899-F7E+00E-958-F7E - - - Start with 9 lives - 08E-899-F7E+08E-958-F7E - - - Start with 15 lives - 0EE-899-F7E+0EE-958-F7E - - - Start with 99 lives - 63E-899-F7E+63E-958-F7E - - - - Double Dragon (USA, Europe) - - Infinite health - 012F98C4 - - - Infinite lives - 010499C4 - - - Hit anywhere - 18E-979-6EE+4CE-989-F78 - - - One hit kills (bosses die after three hits) - 00A-DA9-4CA+00B-629-F7A - - - - Double Dragon II (USA, Europe) - - Invincibility - C94-E6C-6EE - - - Hit anywhere - 183-9FC-081+233-A0C-A2B - - - One hit kills - 006-F2A-D5E+007-72A-D5A+007-A3A-F7A+016-F4A-F7A - - - - Double Dragon 3 - The Arcade Game (USA, Europe) - - Infinite lives - 000-0E8-19E - - - Infinite coins - 00F-1BF-E6E - - - Start with 4 lives - 030-9FF-F72 - - - Start with 10 lives - 090-9FF-F72 - - - Start with 13 lives - 0C0-9FF-F72 - - - Start with 5 coins - 049-498-E6E - - - Start with 10 coins - 099-498-E6E - - - Start with 20 coins - 199-498-E6E - - - Start 1st life with 5 energy points - 500-97F-194 - - - Start 1st life with 15 energy points - F00-97F-194 - - - Start with 5 points of energy - after 1st life - 500-138-194 - - - Start with 15 points of energy - after 1st life - F00-138-194 - - - - Double Dribble - 5 on 5 (USA) - - Infinite time - 00B-8CF-E6E - - - No computer scoring - 00D-64F-6E2 - - - Game lasts only 1 quarter, goes straight to 4th quarter - 04C-E2F-E6E - - - When selecting skill level, keep pressing down. Bleeping will continue, and computer will become more and more skillful. - FFA-0BE-E66 - - - - Dragon Warrior III (USA) - - Enemies only attack themselves - 04A-DDA-B3A+F6A-DCA-4CA - - - HP set to approx 198 every move - 7CF-5EA-08F - - - - Druaga no Tou (Japan) - - Reset to see ending - 081-6FF - - - - Extra Bases! (USA) - - Outs aren't counted - 000-0BE-3BA - - - Strikes aren't counted - 000-7AB-3BA - - - Balls aren't counted - 000-8BB-3BA - - - Opponents can't score (disable when you're batting so you can score) - 00B-91A-19A - - - One strike and you're out - 01F-D6F-E66 - - - 2 strikes and you're out - 02F-D6F-E66 - - - 1 out and side is retired - 01F-F0F-E66 - - - 2 outs and side is retired - 02F-F0F-E66 - - - 1 ball and you walk - 01F-C0F-F7A - - - 2 balls and you walk - 02F-C0F-F7A - - - - F-15 Strike Eagle (USA, Europe) - - Infinite bullets - FAA-52D-4C1 - - - Infinite sidewinders - FA8-EEF-4C1 - - - Infinite mavericks - FA8-ABF-4C1 - - - Infinite E.C.M. - FA8-5BF-4C1 - - - Fly very slowly - 013-BCC-E62 - - - Fly at supersonic speed - 093-BCC-E62 - - - Start with 10 sidewinders - 0A3-88C-912 - - - Start with 50 sidewinders - 323-88C-912 - - - Start with 90 sidewinders - 5A3-88C-912 - - - Start with 10 mavericks - 0A3-8DC-D56 - - - Start with 50 mavericks - 323-8DC-D56 - - - Start with 90 mavericks - 5A3-8DC-D56 - - - Start with 10 E.C.M. - 0A3-92C-80A - - - Start with 50 E.C.M. - 323-92C-80A - - - Start with 90 E.C.M. - 5A3-92C-80A - - - Start with 513 bullets - 023-9BC-E66+013-9AC-6EA - - - Start with 2049 bullets - 083-9BC-E66+013-9AC-6EA - - - Start with 4097 bullets - 103-9BC-E66+013-9AC-6EA - - - - Ferrari Grand Prix Challenge (USA, Europe) - - Don't lose speed when touching side of track in qualifying round or race. Hitting sign will slow you down (if you accelerate fully, release A and position car in middle of track, it will steer itself). - 004-58C-19E - - - When you crash with another car, your speed won't drop to 0 - 000-22C-C49 - - - No qualifying timer - 00A-39B-E6E+00A-1AB-E6E - - - - Fighting Simulator 2 in 1 (USA, Europe) - - Infinite energy - 3D7-3CE-19A - - - Infinite lives - 008-D7E-19E - - - Start with 5 lives - 057-24E-E66 - - - Start with 9 lives - 097-24E-E66 - - - Start with 15 lives - 0F7-24E-E66 - - - - Final Fantasy Adventure (USA) - - Most items are free - 406-06A-E6E - - - Start with 255 of each ability - FFE-6B9-E62 - - - Start with 65,330 GP - FFE-CC9 - - - - Final Fantasy Legend, The (USA) - - Human male - Start with 1 strength point - 011-238-C4A - - - Human male - 5 strength points - 051-238-C4A - - - Human male - 2 defense points - 021-248-E6E - - - Human male - 6 defense points - 061-248-E6E - - - Human male - 3 agility points - 031-258-F7A - - - Human male - 7 agility points - 071-258-F7A - - - Human male - 4 mana points - 041-268-E6A - - - Human male - 8 mana points - 081-268-E6A - - - Human male - 1 HP - 012-588-19A - - - Human male - Start with 5 HP - 052-588-19A - - - - Final Fantasy Legend II (USA) - - Infinite HP (don't heal or stay and Inn) - B90-64B-A9E - - - Get extra GP and Meat - C9D-23B-2AA - - - Get tons of GP after every battle - 00D-23B-21A - - - Engage in a fight every second - 37F-C5D-36E - - - All characters start with 15,163 HP (shows only 999) - 005-96F-08B+005-9CF-08B - - - Start with 9 HP - 098-E28-086 - - - Start with 9 defense points - 098-E68-E66 - - - Start with 9 mana points - 098-E78-E66 - - - Start with 9 agility points - 098-E58-F7E - - - Start with 9 strength points - 098-E48-F72 - - - Start with 9 swords (if your character can start with swords) - 09E-818-2A2 - - - - Final Fantasy Legend III (USA) - - Set initial power to mega-power - FFA-928-E6A+FF8-918-2A2+FF8-938-2A2 - - - Always strike first - FFA-A09-343 - - - Able to run from every battle, even bosses - FFA-B4B-AA3 - - - Gain extra EXP and GP - D77-CAA-356 - - - Defeating leftmost or upper-left enemy defeats all enemies on screen - 024-CAA-356 - - - Gain a level after every battle on a new game - Character 1 (Hero - Arthur) - FFA-878-E6E - - - Gain a level after every battle on a new game - Character 2 (Boy - Curtis) - FFA-E78-E6E - - - Gain a level after every battle on a new game - Character 3 (Girl - Gloria) - FFB-478-E6A - - - Gain a level after every battle on a new game - Character 4 (Heroine - Sharon) - FFB-A78-E6A - - - - Fish Dude (USA) - - Infinite lives - 002-A8F-3BE - - - No timer - 215-25F-081 - - - Start with 1 life - 002-3DF-E62 - - - Start with 5 lives - 042-3DF-E62 - - - Start with 9 lives - 082-3DF-E62 - - - Start with 15 lives (ignore counter for first 5 lives) - 0E2-3DF-E62 - - - - Fist of the North Star (USA) - - Almost invincible - 21E-9FF-4C1 - - - No energy loss from weapons thrown - 21F-A5F-4C1 - - - Start on level 5 - 05B-CCE-E6E - - - Start on level 9 - 09B-CCE-E6E - - - Start with 25% energy - 40F-F7E-195 - - - Start with 50% energy - 7F4-F7E-195 - - - Start with 75% energy - C44-F7E-195 - - - - Flash, The (USA, Europe) - - Infinite energy (except against exploding bombs) - 00A-85F-E6D - - - Infinite lives - 003-A8F-E69 - - - Infinite time (disable at end of each stage) - 00D-B6C-3BE - - - Start with 1 life - 015-9CF-E66 - - - Start with 6 lives - 065-9CF-E66 - - - Start with 1/2 surge power - 4C5-A1F-D54 - - - Start with 1/2 energy - 245-A6F-C4B - - - - Foreman for Real (USA, Europe) - - Enable everyone for tournament mode - 00C-9BF-E6E+13C-A0F-D56 - - - - Ganso!! Yancha Maru (Japan) - - Invincibility (the second code kills enemies on contact) - 007-76B-F76+007-7BB-E6E - - - Infinite Shurikens on pick-up - 01B-8DF-E66 - - - 999 coins on pick-up - 00C-5FF-A29 - - - Infinite time - 00B-B9F-3B7 - - - - George Foreman's KO Boxing (USA, Europe) - - Infinite health (display still decreases) - 3E9-CBE-4CA - - - Infinite time - 001-89E-E6E - - - Infinite super punch - 3E7-EEE-08A - - - - Goal! (USA) - - Infinite time - 009-EFE-E6E - - - Select time of up to 99 minutes per half - 633-ECB-5DE - - - No goals scored against you by computer - 00A-DAB-19A - - - Some teammates have a mega-kick - 225-5BA-C46 - - - Player 2 is fastest on the pitch - FF5-5AA-CDE+FF5-5BA-C46+FF5-5CA-CBE - - - - God Medicine - Hukkoku Ban (Japan) (SGB Enhanced) - - Sell an item to get maximum cash - 00F-60A-E66 - - - Gain maximum EXP after each battle - 006-0CB-809 - - - No random battles - C92-94C-C49 - - - Enemies have no HP - AF0-4AB-802+AF0-52B-802 - - - Final boss has no HP - 005-D68-E66 - - - - Golf (World) - - Wind power is 10 mph - 3ED-87E-08A+5ED-88E-C4E - - - - Gradius - The Interstellar Assault (USA) - - Invincibility - C91-18A-081 - - - - Heavyweight Championship Boxing (USA) - - No ring timer - 00B-A4E-E6E - - - No round increase - AF6-E1B-19E - - - Juggle your power - can alter power settings and give full power in all categories - 008-B2E-19E - - - Start with punch, life and speed at 1 - 014-78F-E66 - - - Start with punch, life and speed at 2 - 024-78F-E66 - - - Start with punch, life and speed at 3 - 034-78F-E66 - - - Start with punch, life and speed at 4 - 044-78F-E66 - - - Start with punch, life and speed at 5 - 054-78F-E66 - - - Start with punch, life and speed at 6 - 064-78F-E66 - - - Start with punch, life and speed at 7 - 074-78F-E66 - - - Start with punch, life and speed at 8 - 084-78F-E66 - - - Start with punch, life and speed at 9 - 094-78F-E66 - - - Start with super power - 994-78F-E66 - - - - High Stakes (USA) - - Once you've collected an item from Shady, you can't lose it - blackjack mission 1 only - 00C-ADB-3BE+006-6BA-3BE - - - Betting and cheat tokens cost 0 - 00B-B1E-A22 - - - No limit to how much you can buy of each item from Shady - 3E0-BOB-081+000-B2B-E61 - - - Start with 1/2 money (display will show $50,000) - 628-D8F-E65 - - - Start with over $65,000 (display will show $50,000) - FF8-D8F-E65 - - - - Hit the Ice (USA, Europe) - - Infinite timer - 00A-54E-E6E - - - Faster timer - 02A-54E-E6E - - - Infinite super shots - 002-97D-3BA - - - Only 1 super shot allowed - 012-99D-C42 - - - 5 super shots allowed - 052-99D-C42 - - - 10 super shots allowed - 0A2-99D-C42 - - - 1-minute periods - vs. mode - 011-F6B-F7E - - - 2-minute periods - vs. mode - 021-F6B-F7E - - - 10-minute periods - vs. mode - 0A1-F6B-F7E - - - Neither team can score - 1004-39B-E6E - - - 10 seconds in short race after the first shot of 20 seconds - 0A1-97E-6EA - - - 15 seconds in short race after the first shot of 20 seconds - 0F1-97E-6EA - - - 5 seconds in short race after the first shot of 20 seconds - 051-97E-6EA - - - - Home Alone (USA, Europe) - - Infinite hit points - 00B-5AD-19E - - - No enemies - 214-34F-081 - - - Need 1 treasure to finish level 1 - 013-E5D-7FA - - - Start with 1 hit point - 013-ADD-E66 - - - Start with 6 hit points - 063-ADD-E66 - - - Start with 9 hit points - 093-ADD-E66 - - - - Home Alone 2 - Lost In New York (USA, Europe) - - Infinite lives - 007-82E-19E - - - Infinite hits unless picked up by shoulders - 007-E9E-19E - - - Get 111,111 points instantly - 006-75E-08B - - - Start with 5 lives - 056-6FE-E66 - - - Start with 6 lives - 066-6FE-E66 - - - - Hook (USA) - - Infinite lives - 3DC-FDD-3BE - - - - Humans, The (USA) - - Infinite humans - FA3-E9F-4C1 - - - Infinite time - FA9-B7C-4C1 - - - Start with 6 humans - 06D-609-D5A - - - Start with 9 humans - 09D-609-D5A - - - Start with 15 humans - 0FD-609-D5A - - - - Incredible Crash Dummies, The (USA, Europe) - - Infinite time - 001-3EC-E6E - - - Faster timer - 021-3E6-E6E - - - Don't lose money when you go through fire - 00B-00A-195 - - - More cash for each hit - 851-49C-E64 - - - Start with 2 lives - 022-A9F-F7E - - - Start with 4 lives - 042-A9F-F7E - - - Start with 8 lives - 082-A9F-F7E - - - - In Your Face (USA) - - Computer can't score - when it scores, you get the points - 004-E9E-6E6 - - - Opponents are frozen - 2-on-2 game - C38-AAF-E61 - - - 5-second game - 05A-08E-80F - - - 10-second game - 0AA-08E-80F - - - 20-second game - 20A-08E-80F - - - - Jeep Jamboree (USA) - - Always finish in 1st place - 3EC-62E-E68+01C-63E-19A - - - Mega speed - stay at constant high speed even when off course and hitting rocks - 799-D49-19F+799-D79-19B - - - Race 1 lap shorter - 02B-F0A-E6E - - - Race 2 laps shorter - 03B-F0A-E6E - - - Race 3 laps shorter - 04B-F0A-E6E - - - - Jetsons, The - Robot Panic (USA, Europe) - - Infinite lives - 00F-C7F-E6E - - - Infinite energy - some robots can't be killed (disable to fight them) - 009-088-3B7 - - - Max collectible energy - 09F-1EC-F7E - - - Capped robots on first Elroy stage take 1 hit to kill - 012-A7B-E62 - - - Capped robots on first Elroy stage take 8 hits to kill - 082-A7B-E62 - - - Start with 4 lives - 04F-16C-E66 - - - Start with 7 lives - 07F-16C-E66 - - - Start with 9 lives - 09F-16C-E66 - - - - Joe & Mac (USA) - - Infinite lives - 002-37D-E6E - - - Infinite energy - FAB-E9C-4C1 - - - Take one hit and lose life - AFB-E8C-A2C - - - No extra energy from pick-ups - 00B-D8C-3B7 - - - Start with 1 life - 01A-81F-E66 - - - Start with 6 lives - 06A-81F-E66 - - - Start with 9 lives - 09A-81F-E66 - - - Start on level 3 - 3EA-89F-6E9+02A-8AF-7FD+E0A-8BF-2A9 - - - Start on level 6 - 3EA-89F-6E9+05A-8AF-7FD+E0A-8BF-2A9 - - - Start on level 9 - 3EA-89F-6E9+08A-8AF-7FD+E0A-8BF-2A9 - - - - Jordan vs Bird - One on One (USA, Europe) - - Infinite time of possession-1-on-1 game - 007-06D-E6E - - - 8 seconds of possession-1-on-1 game - 08D-D67-7FA - - - 10 seconds of possession-1-on-1 game - 0AD-E67-7FA - - - 15 seconds of possession-1-on-1 game - 0FD-D67-7FA - - - No timer - 007-48D-E6E - - - 5 points on 3-point shots - 056-72D-E62+056-81D-E62 - - - 8 points on 3-point shots - 086-72D-E62+086-81D-E62 - - - 12 points on 3-point shots - 0C6-72D-E62+0C6-81D-E62 - - - 5 points on 2-point shots - 056-A1D-E6E+056-ADD-E62 - - - 8 points on 2-point shots - 086-A1D-E6E+086-ADD-E62 - - - 12 points on 2-point shots - 0C6-A1D-E6E+0C6-ADD-E62 - - - - Jurassic Park (USA) - - Infinite hearts - 00C-46E-19E - - - Infinite lives - 00C-11E-E6E - - - Remove All Objects (Disable this code to collect eggs, enable it to avoid the dinosaurs) - 9BC-55B-10A+F80-75C-CEF+006-42B-DF0 - - - Only need 1 card to open the gate - AF3-C9B-7F6 - - - Canï¾’t collect any energy - 003-DCB-19A - - - First Aid gives you mega energy - AF3-DCB-19A - - - Get max energy from collecting energy - 3E3-DAB-4CA+033-DBB-F7E - - - Die after one hit - AFC-46E-19E - - - Start with 1 lives - 013-9EF-E66 - - - Start with 5 lives - 053-9EF-E66 - - - Start with 7 lives - 073-9EF-E66 - - - Start with 9 lives - 093-9EF-E66 - - - Start with 1 heart - after 1st life - 01C-06E-F7A - - - Start with 9 hearts - after 1st life - 09C-06E-F7A - - - Start with 1 heart - 1st life - 013-9BF-F7A - - - Start with 9 hearts - 1st life - 093-9BF-F7A - - - - Kid Dracula (USA, Europe) - - Invincibility - 008-13F-367 - - - Infinite lives - FAB-F5A-4C1 - - - Start with 1 energy heart - 015-43F-E66 - - - Start with 5 energy hearts - 055-43F-E66 - - - Start with 1 life - 005-4BF-E62 - - - Start with 5 lives - 045-4BF-E62 - - - Start with 10 lives - 095-4BF-E62 - - - Start on level 3 - 030-CD8-E6E - - - Start on level 5 - 050-CD8-E6E - - - - Kid Icarus - Of Myths and Monsters (USA, Europe) - - Hit anywhere - 008-B8B-5D4 - - - Run into enemies to get Hearts - 185-67B-4CA - - - Collected hammers seem to count towards your enemy kill number - C9A-D18-08F+7AA-B48-E69 - - - Maximum kills after killing first enemy - 00C-CAF-A29 - - - - Killer Instinct (USA, Europe) (SGB Enhanced) - - Infinite health - FA7-B0B-4C1 - - - Infinite time - 002-199-19E - - - Round starts with 10 seconds - 103-1CD-80C - - - Round starts with 30 seconds - 303-1CD-80C - - - Round starts with 50 seconds - 503-1CD-80C - - - Round starts with 75 seconds - 753-1CD-80C - - - Fierce tiger fury does no damage - 00B-428-6E2 - - - Fierce tiger fury does more damage - 88B-428-6E2 - - - Fierce tiger fury kills - FFB-428-6E2 - - - Fierce wind kick does no damage - 00B-698-916 - - - Fierce wind kick does more damage - 88B-698-916 - - - Fierce wind kick kills - FFB-698-916 - - - Fierce laser blade does no damage - 00B-838-91E - - - Fierce laser blade does more damage - 88B-838-91E - - - Fierce laser blade kills - FFB-838-91E - - - Freeze everything except timer - D90-38D-B8A - - - Start with very little energy - 012-EAD-919 - - - Start with 1/4 energy - 4B2-EAD-919 - - - Start with 1/2 energy - 882-EAD-919 - - - Start with 3/4 energy - B42-EAD-919 - - - - Kirby's Dream Land (USA, Europe) - - Infinite lives - FA6-DBB-4C1 - - - Infinite lives and gain points when hit - CA1-DOC-FAB+B1F-F1D-649 - - - Infinite vitality bars except against end of stage boss - FA4-63B-4C1 - - - Hit anywhere - 003-E1B-F7E - - - Inhale from anywhere - 008-53B-08E+008-67B-7FE - - - Start with 2 lives - 021-BBF-F7E - - - Start with 5 lives - 051-BBF-F7E - - - Start with 9 lives - 091-BBF-F7E - - - Start with 2 vitality bars - 021-C0F-F72 - - - Start with 5 vitality bars - 051-C0F-F72 - - - Start with 9 vitality bars - 091-C0F-F72 - - - - Kirby's Dream Land 2 (USA, Europe) (SGB Enhanced) - - Invincibility after one hit - 003-838-19E - - - Don't flash at all after getting hit - 012-BFA-6EB - - - Don't flash as long after getting hit - 202-BFA-6EB - - - Infinite energy - FA7-CBD-4C1 - - - Infinite lives - FA1-C4B-4C1 - - - Hit anywhere - 006-E5D-6EA+187-04D-2AA - - - Inhale from anywhere - 005-BED-19E+005-DFD-91A - - - Get items from anywhere - 18B-898-08A - - - One hit and you die - AFA-9EC-A28 - - - Each star worth an extra life - 01C-DE8-F76 - - - Can't get extra lives from stars - 00C-DC8-19A - - - Each star takes away a life - 01C-DE8-F76+3DC-878-19A - - - Start with 1 life - 00D-589-E62 - - - Start with 5 lives - 04D-589-E62 - - - Start with 7 lives - 06D-589-E62 - - - Start with 10 lives - 09D-589-E62 - - - - Kirby's Pinball Land (USA, Europe) - - Infinite bonus room time - disable to exit - FAF-1AA-4C1 - - - Infinite balls - 005-34B-E69 - - - Infinite M-Tomato - 743-F6B-C49 - - - 30 seconds allowed in Wispy-Woods bonus room - 300-B99-6EB - - - 99 seconds allowed in Wispy-Woods bonus room - 990-B99-6EB - - - Go straight to end of level bosses - 3EE-CF9-2A9+01E-D09-A21 - - - Go straight to bonus games - 3EE-CF9-2A9+02E-D09-A21 - - - DeDeDe takes 1 hit - 01D-1DB-B36 - - - Start with 5 balls - 054-7CF-E66 - - - Start with 1 ball - 014-7CF-E66 - - - Start with 9 balls - 094-7CF-E66 - - - - Krusty's Fun House (USA, Europe) - - Infinite lives - FA3-ACF-4C1 - - - Infinite pies - FA6-EBB-4C1 - - - Start with 2 pies - 022-5DF-C42 - - - Start with 7 pies - 072-5DF-C42 - - - Start with 15 pies (only shows 10) - 0F2-5DF-C42 - - - Start with 2 lives - 022-43F-E66+022-58F-E66 - - - Start with 6 lives - 062-43F-E66+062-58F-E66 - - - Start with 9 lives - 092-43F-E66+092-58F-E66 - - - - Kung-Fu Master (USA, Europe) - - Mostly invincible - 009-FFF-3BE+00A-42F-A28 - - - Freeze timer (disable to complete level) - 00C-8EA-3BE - - - Touch weak enemies to defeat them - 009-E6F-F72 - - - - Lamborghini American Challenge (USA, Europe) - - Infinite money - 002-8AC-910 - - - Infinite turbos - 009-318-3BE - - - Increased money - 99D-1AE-E6A - - - No Loss Of Speed On Collisions - 001-C39-6EB - - - No Loss Of Speed When Off Track - 00A-189-F7A - - - Start With 2 Turbos - 01D-27E-E6E - - - Start With 6 Turbos - 05D-27E-E6E - - - Start With 10 Turbos - 09D-27E-E6E - - - - Last Action Hero (USA, Europe) - - Level select (# = level 1-9 or A for ending credits) - 0#1-88F-E6E - - - - Legend of Zelda, The - Link's Awakening (USA, Europe) - - Infinite health - FAO-999-4C1 - - - Infinite rupees (rupees aren't deducted for purchases you can afford) - FAF-BDA-4C1+FAF-B2A-4C1 - - - All items you get start at max power. When you get an item, you must have a space open (either A or B). - 09C-56B-E6E+09C-74A-E6E - - - Get 5 rupees for each single rupee - 054-EE9-E6E - - - Get 50 rupees for each single rupee - 324-EE9-E6E - - - Get 255 rupees for each single rupee - FF4-EE9-E6E - - - Walk through walls. Can walk past the edge of walls and objects, but not through people. Be careful of entering doors from the wrong side. If you get stuck on the edge of a screen, try diagonal and straight movement in all directions. Works from locations in the water. Doesn't work for underground passages. - AF7-168-3B0 - - - - Legend of Zelda, The - Link's Awakening DX (USA, Europe) (SGB Enhanced) - - Walk through walls. Be careful of entering doors from the wrong side. If you get stuck on the edge of a screen, try diagonal and straight movement in all directions to get yourself unstuck. Allows you to go through walls starting from locations in the water. Doesn't work for underground passages. - AF4-5B8-3B0 - - - - Legend of Zelda, The - Oracle of Ages (USA) - - Defeat 1 enemy for fully grown Gashas/Maple meeting - 002-46F-E69 - - - Infinite Seed/Bomb use on pick-up - 007-D3E-E6E - - - Each Seed/Gasha/Bomb worth 99 - 005-92B-E62 - - - Walk through walls. It's not hard to get stuck, so save where it's safe. - AFD-A5A-802 - - - - Legend of Zelda, The - Oracle of Seasons (USA) - - Defeat 1 enemy for fully grown Gashas/Maple meeting - 002-46F-E69 - - - Infinite Seed/Bomb use on pick-up - 007-ACE-E6E - - - Each Seed/Gasha/Bomb worth 99 - 005-98B-E62 - - - Walk through walls. It's not hard to get stuck, so save where it's safe. - AFC-96A-802 - - - - Lethal Weapon (USA, Europe) - - Infinite weapon energy - FA6-01E-4C1 - - - Infinite life energy (except falling down holes) - FAA-1DD-4C1+FAA-A5D-4C1 - - - No enemies - 004-5BB-195 - - - Start with weapon energy on 1/2 - 1E9-CEE-E6B - - - Start with life energy on 1/2 - 239-C3E-E6B - - - - Little Mermaid, The (USA) - - Infinite energy - C98-22E-3BE - - - Infinite lives - 00C-79F-3BE - - - Start with 2 lives - 017-F1F-E66 - - - Start with 6 lives - 057-F1F-E66 - - - Start with 10 lives - 097-F1F-E66 - - - Start with 1 energy pt - 018-96F-E66 - - - Start with 5 energy pts - 058-96F-E66 - - - Start with 8 energy pts - 088-96F-E66 - - - Start on level 2 - 018-07F-195 - - - Start on level 3 - 028-07F-195 - - - Start on level 4 - 038-07F-195 - - - Start on level 5 - 048-07F-195 - - - Start on level 6 - 058-07F-195 - - - See end of game credits - 068-07F-195 - - - - Madden '95 (USA, Europe) (SGB Enhanced) - - Infinite play clock - 00C-3BE-19E - - - Infinite game time - 00C-62E-19E+F09-33C-6E9 - - - Start on second down - 028-8ED-E6E - - - Start on third down - 038-8ED-E6E - - - Start on fourth down - 048-8ED-E6E - - - Down never increases - 005-DED-19A+FAE-F0C-4C1 - - - - Malibu Beach Volleyball (USA) - - Easier to score - 03D-AAB-F7A - - - Computer can't score a point. If score is 0-0, makes you change court a lot. - 00F-0CA-E6D - - - You always serve - 00D-0EA-E6E+00D-E0A-E6E - - - - Mario's Picross (USA, Europe) (SGB Enhanced) - - Infinite time - 00B-118-19E - - - Mistakes don't decrease time - 00C-8F8-A2C - - - - Maru's Mission (USA) - - Infinite energy - 009-7CC-A2C+009-80C-808 - - - - Mega Man - Dr. Wily's Revenge (USA) - - Invincibility - 005-FAA-E6E+418-3F9-190 - - - Infinite weapons except Flash - 002-09B-A22+FA1-5AA-4C1+FA9-64B-4C1 - - - Hit anywhere - 018-61A-191+15A-3DD-A26+52B-47D-19F+008-1AD-5D4+00B-5AD-6EE+180-D2E-08A+110-D3E-D5A - - - Multi-jump - FAB-249-6EE+3FB-259-C43+E6B-279-193+01B-289-3B4+00B-2B9-3BE+1CC-CE9-3BA+18C-CF9-4CA - - - One hit kills - 00B-62D-E6E+00C-87B-E6E - - - Moon jump - 00B-2A9-D5F+18B-499-A22+18B-4A9-5D4+2CB-4B9-4C1 - - - - Mega Man II (USA) - - Invincibility - C95-CEC-E69 - - - Infinite weapons - 00A-14C-A28 - - - Multi-jump - 012-45E-E6A+CD0-F0F-195+D40-F1F-195+0F0-F2F-195+C90-F3F-195+CD2-26E-081+F02-27E-5D7+002-28E-D55+182-2AE-4CA+002-44E-6EA - - - - Mega Man III (USA) - - Infinite energy - 00C-099-3B7 - - - Infinite weapons - 002-35B-A22+FA4-88A-4C1+FA8-A9A-4C1 - - - One hit kills - 009-6ED-E6E+00F-25F-E6E - - - Laser barriers appear and explode immediately on Sparkman stage - 009-77C-E6E - - - Takes 1 hit to kill Merciless Matt - 019-53C-F76 - - - Takes 15 hits to kill Merciless Matt - 0F9-53C-F76 - - - Multi-jump - FAE-3F9-6EE+3FE-409-C43+E6E-429-193+01E-439-3B4+00E-469-3BE+1C0-028-3BA+180-038-4CA - - - Start with 2 lives - 02B-17F-E66 - - - Start with 6 lives - 06B-17F-E66 - - - Start with 9 lives - 09B-17F-E66 - - - - Mega Man IV (USA) - - Invincibility - 21F-EAA-E61 - - - Infinite energy - 001-CE9-3B7 - - - Infinite lives - 01C-45F-915 - - - Shoot more than 3 shots at a time - 005-67B-A29 - - - Start with 1/4 energy - 269-F6F-808 - - - Start with 1/2 energy - 4B9-F6F-808 - - - Start with 3/4 energy - 709-F6F-808 - - - Start with 1 lives - 01C-AEF-E66 - - - Start with 5 lives - 05C-AEF-E66 - - - Start with 9 lives - 09C-AEF-E66 - - - - Mega Man V (USA) (SGB Enhanced) - - Invincibility - 212-269-E61 - - - Infinite lives - 01B-75F-915 - - - Infinite energy - 004-1D9-3B7 - - - Walk through enemies (can still take damage from projectiles) - 002-CDE - - - Hit anywhere - 111-FAE-D5A+181-F9E-08A+11A-0E8-D5A+18A-0D8-08A - - - Multi-jump - FA6-829-6EE+406-839-A23+E66-859-193+016-869-3B4+006-899-3BE+1C8-719-C4A+1C8-799-3BA - - - One hit kills - 001-85E-E6E+009-0ED-E6E+00A-4E8-E6E - - - Start with 1 lives - 01B-EAF-E66 - - - Start with 5 lives - 05B-EAF-E66 - - - Start with 9 lives - 09B-EAF-E66 - - - Start with about 1/4 energy - 269-44F-808 - - - Start with about 1/2 energy - 4B9-44F-808 - - - Start with about 3/4 energy - 709-44F-808 - - - - Metal Gear Solid (USA) - - Infinite ammo for all weapons - 003-189-19E - - - Enemies don't see you - C94-A88-3B4+C94-E89-081 - - - - Metroid II - Return of Samus (World) - - Invincibility against enemies - C9E-E8D-E69 - - - Infinite energy - 80F-6DD-7F6 - - - Infinite missiles - 00F-36B-E6E - - - Hit anywhere - 0D2-70C-3B2+182-6FC-2AA+182-E3A-2AA - - - Multi-jump - 14D-46F-A26+98D-45F-91C+CDD-44F-E61+FA4-30E-4C1+FA4-61E-4C1 - - - - Mickey's Dangerous Chase (USA) - - Invincibility after first hit - 001-A8E-E6E - - - Infinite health - FAD-A0E-4C1 - - - Infinite lives - FA5-E2F-4C1 - - - Start with 99 lives - 634-B6F-E66 - - - - Milon's Secret Castle (USA, Europe) - - Protection against most hazards - FAD-368-4C1 - - - Infinite money on pick-up - FA7-8F9-4C1 - - - Each $ box is worth 99 - 3E7-138-081+627-148-DC5+007-158-915 - - - Start with and keep double shot and shield - FAC-FD8-4C1+3CC-A8A-5D4 - - - Start with 3 energy bars - 036-EA8-F7E - - - Start with 6 energy bars - 066-EA8-F7E - - - Start with 9 energy bars - 096-EA8-F7E - - - - Miner 2049er (USA) - - Infinite time - 002-239-E6E - - - Infinite lives - 002-3DB-E6E - - - Nasties are invincible - 039-CAF-E6A - - - Start with 2 lives - 026-9ED-E66 - - - Start with 4 lives - 046-9ED-E66 - - - Start with 8 lives - 086-9ED-E66 - - - - Missile Command (USA, Europe) - - Infinite missiles - 002-9AE-19E+002-4BE-19E+20F-FDE-D56 - - - Invincible bases - FF6-BBD-191 - - - New York - 02F-28E-E6A - - - London - 04F-28E-E6A - - - Sydney - 06F-28E-E6A - - - Paris - 08F-28E-E6A - - - Moscow - 0AF-28E-E6A - - - San Francisco - 18F-28E-E6A - - - - Mortal Kombat (USA, Europe) - - Infinite health - P1 - 005-94C-B31 - - - Infinite time - 00C-B5E-3BE - - - Infinite continues - 002-96D-B31 - - - Foot sweep does less damage - 109-C7C-E6F - - - Foot sweep does more damage - FF9-C7C-E6F - - - 1 continue - 010-14B-F72 - - - 5 continues - 050-14B-F72 - - - 10 continues - 0A0-14B-F72 - - - Punches do less damage - 109-AFC-6EE - - - Punches do more damage - FF9-AFC-6EE - - - Knees do less damage - 109-BFC-E6F - - - Knees do more damage - FF9-BFC-E6F - - - Uppercuts do less damage - 109-A7C-E60 - - - Uppercuts do more damage - FF9-A7C-E60 - - - Kicks to stomach do less damage - 109-CFC-E6F - - - Kicks to stomach do more damage - FF9-CFC-E6F - - - Kicks to face do less damage - 109-B7C-6E3 - - - Kicks to face do more damage - FF9-B7C-6E3 - - - Shoulder throws do less damage - 10A-17C-E6F - - - Shoulder throws do more damage - FFA-17C-E6F - - - Sub-Zero's slide does less damage - 10A-07C-A2F - - - Sub-Zero's slide does more damage - FFA-07C-A2F - - - Sonya's leg grab does less damage - 10A-27C-6EF - - - Sonya's leg grab does more damage - FFA-27C-6EF - - - Kano's cannonball does less damage - 10A-1FC-6EF - - - Kano's cannonball does more damage - FFA-1FC-6EF - - - Rayden's lightning does less damage - 10A-5FC-7F5 - - - Rayden's lightning does more damage - FFA-5FC-7F5 - - - - Mortal Kombat II (USA, Europe) - - Infinite health - 009-48B-91D - - - Infinite continues - 00D-ABF-3BE - - - Infinite time - 00C-55B-E6E - - - No continues - 001-57F-F72 - - - 1 continue - 011-57F-F72 - - - 3 continues - 031-57F-F72 - - - 9 continues - 091-57F-F72 - - - 15 continues - 0F1-57F-F72 - - - Much faster timer - 02C-55B-E6E - - - Timer starts at 30 - 2C3-39D-800 - - - Timer starts at 40 - 3C3-39D-800 - - - Timer starts at 50 - 4C3-39D-800 - - - Timer starts at 60 - 5C3-39D-800 - - - Player can't move from floor - 006-2EB-3B7+000-1FA-3B7 - - - Complete round 1 and go to round 3 (disable after end of round) - 3E1-79E-4CA+031-7AE-A2A+E01-7BE-2A9 - - - Complete round 1 and go to round 4 (disable after end of round) - 3E1-79E-4CA+041-7AE-A2A+E01-7BE-2A9 - - - Computer can't move from floor - 003-279-19E+003-249-19E - - - Normal punches do more damage - F40-E89-2AE - - - Uppercuts do less damage - 311-009-3B9 - - - Back throws do less damage - 311-3A9-E69 - - - Special moves (projectiles) do more damage - F41-5A9-E60 - - - - Mortal Kombat 3 (USA) - - Invincibility expect for throws and projectiles - 00A-25E-081+00A-26E-7F5+7DA-27E-E69+14A-29E-D56+C8A-2AE-E69+C9D-57E-C49 - - - - Motocross Maniacs (USA) - - Infinite tires on pick-up - FAD-CDE-4C1 - - - Infinite jet on pick-up - FAD-C7E-4C1 - - - Infinite time - 00D-22D-E6E - - - Faster timer - 02D-22D-E6E - - - Start with 7 nitros - 079-E4F-F7A - - - Super fast bike - FA0-1ED-4C1+009-88E-B30 - - - - Mouse Trap Hotel (USA) - - Infinite lives - FA2-0CD-4C1 - - - Collect cookie for invincibility against balls, etc. - FA6-E9F-4C1+FA6-DAF-4C1 - - - Start with 4 lives - 043-38F-E62 - - - Start with 6 lives - 063-38F-E62 - - - Start with 8 lives - 083-38F-E62 - - - - Mr. Do! (USA) - - Infinite lives - FA7-28C-4C1 - - - Keep 1 map layout thru game (still will progress from map to map, but layout stays the same) - 3E8-2CE-191+098-2DE-C42+188-2EE-6EA - - - Start new game from level you died on - 235-6AC-6E2+214-78D-4C1 - - - Start with 1 life - 015-B2E-E66 - - - Start with 6 lives - 065-B2E-E66 - - - Start with 9 lives - 095-B2E-E66 - - - - Ms. Pac-Man (USA) - - Invincibility - 009-06E-E62 - - - Get fruit from anywhere - 00B-21E-D56 - - - - Mysterium (USA) - - Infinite lives - FA3-98C-4C1 - - - Max energy in battle. Works for enemies, disable to defeat them. - AF8-78C-E68 - - - Start with 1/2 energy - 3AD-B38-E6A - - - Start with 1 life - 01D-008-E66 - - - Start with 5 lives - 05D-008-E66 - - - Start with 9 lives - 09D-008-E66 - - - - Nail'n Scale (USA, Europe) - - Infinite lives - 00B-7EF-E65 - - - Start with 1 life - 004-B5F-F7A - - - Start with 9 lives - 084-B5F-F7A - - - - Nemesis (Europe) - - Hit anywhere - Default weapon - 008-A7D-A29+008-B8D-A29 - - - Hit anywhere - Laser - 009-5FD-A29+009-70D-A29 - - - Hit anywhere - Missiles - 009-CBD-A29+009-DCD-A29 - - - Get items from anywhere - 007-68D-A29 - - - - Nemesis (USA) - - Hit anywhere - normal weapon - 008-A5D-A29+008-94D-A29 - - - Hit anywhere - Laser - 009-5DD-A29+009-4CD-A29 - - - Hit anywhere - Missiles - 009-C9D-A29+009-B8D-A29 - - - Get items from anywhere - 007-55D-A29 - - - - NFL Football (USA) - - No game timer - 009-34A-E6E - - - Computer can't score on its possessions - AF1-EDE-E64 - - - Touchdown worth 1 point - 01F-59F-F72 - - - Touchdown worth 5 points - 05F-59F-F72 - - - Touchdown worth 8 points - 08F-59F-F72 - - - - Ninja Boy (USA, Europe) - - Hit anywhere (can get items from anywhere by punching) - 00E-279-C43 - - - - Nintendo World Cup (USA, Europe) - - Computer can't score - 00E-2D8-19A - - - No timer - 00D-2C8-E6E - - - 1:59 each half - 01C-DD8-E66 - - - 4:59 each half - 04C-DD8-E66 - - - 6:59 each half - 06C-DD8-E66 - - - 9:59 each half - 09C-DD8-E66 - - - - Nobunaga's Ambition (USA) - - Train samurais once and they have 100% skill level (must be Oda Nobunaga) - 3EF-9FB-191 - - - Start with 75 loyalty pts (must be Oda Nobunaga) - 4B1-5AA-2A2 - - - Start with 100 loyalty pts (must be Oda Nobunaga) - 641-5AA-2A2 - - - Start with 50 town value pts (must be Oda Nobunaga) - 321-56A-80E - - - Start with 75 town value pts (must be Oda Nobunaga) - 4B1-56A-80E - - - Start with 100 town value pts (must be Oda Nobunaga) - 641-56A-80E - - - Start with 50 castle defense pts (must be Oda Nobunaga) - 321-5CA-D56 - - - Start with 75 castle defense pts (must be Oda Nobunaga) - 4B1-5CA-D56 - - - Start with 100 castle defense pts (must be Oda Nobunaga) - 641-5CA-D56 - - - Start with flood control level at 75 (must be Oda Nobunaga) - 4B1-5BA-2A2 - - - Start with flood control level at 100 (must be Oda Nobunaga) - 641-5BA-2A2 - - - Start with 2580 rice pts (must be Oda Nobunaga) - 0AE-B6B-B3A+0AE-B9B-E6A - - - Start with 788 rice pts (must be Oda Nobunaga) - 03E-B6B-B3A+03E-B9B-E6A - - - Start with 276 rice pts (must be Oda Nobunaga) - 01E-B6B-B3A+01E-B9B-E6A - - - Start with 999 gold (must be Oda Nobunaga) - 0AE-B6B-D56+0AE-B7B-E6A - - - Attributes for Oda Nobunaga are 100% (will show original values, answer no when asked if this is OK, then attributes will be 100%) - 3E5-7EA-191 - - - - Operation C (USA) - - Invincibility - AFA-BFA-C45+77A-C0A-D53 - - - Hit anywhere - 00A-CAC-91A+C3A-E4C-919+C6A-F5C-191 - - - Multi-jump - 005-C0A-B3F+5A0-E6F-195+520-E7F-195+550-EAF-195+7A0-E9F-195+CD0-E5F-195+CD0-E8F-195+C90-EBF-195+E55-BFA-083 - - - - Out of Gas (USA) - - Infinite lives - FA5-DDF-4C1 - - - Collect only 1 canister to complete each stage - AF8-ECE-191 - - - Start with 2 lives - 021-ACF-E66 - - - Start with 4 lives - 041-ACF-E66 - - - Start with 8 lives - 081-ACF-E66 - - - - Pac-Man (USA) - - Invincibility - C97-7DE-A29 - - - Get fruit from anywhere - 009-22E-E69+009-28E-E69 - - - - Pagemaster, The (USA) (SGB Enhanced) - - Invincibility - 008-36B-19E - - - Infinite Help Books - 00F-348-19E - - - Don't flash at all when you start a new stage - 000-95B-19A - - - Flash longer when you start a new stage - FF0-95B-19A - - - Get a Help Book for every Gold Token - 01F-D1E-912 - - - Get a Help Book for every 2 Gold Tokens - 02F-D1E-912 - - - Get a Help Book for every 10 Gold Tokens - 0AF-D1E-912 - - - Get a Help Book for every 50 Gold Tokens - 32F-D1E-912 - - - Get a Help Book for every 99 Gold Tokens - 63F-D1E-912 - - - Start in the Adventure World with 1 life - 011-BFF-F7E+001-C3F-5D4 - - - Start in the Fantasy World with 2 lives - 021-BFF-F7E+001-C3F-5D4 - - - Start with 1 life - 011-BFF-F7E - - - Start with 3 lives - 031-BFF-F7E - - - Start with 7 lives - 071-BFF-F7E - - - Start with 10 lives - 0A1-BFF-F7E - - - Start with 15 lives - 0F1-BFF-F7E - - - Start with 11,111,111 points - 3C1-CDF-5D4 - - - - Paperboy 2 (USA, Europe) - - Infinite papers - 004-C09-3BE - - - Infinite lives - 006-91B-3BE - - - Go on to next day after completing Monday - 007-0CB-F72 - - - Start with 15 papers - 1st life only - 0FC-C6C-C42 - - - Start with 20 papers - 1st life only - 14C-C6C-C42 - - - Start with 10 lives - Paperboy - 0AA-E6C-F7E - - - Start with 20 lives - Paperboy - 14A-E6C-F7E - - - - Parodius (Europe) - - Infinite lives - FA3-C6C-4C1 - - - Infinite super shields once collected - FAB-5D8-4C1 - - - Start with super shields and triple firing - FFB-D3D-E6A+FFB-D6D-E6A - - - Start with 5 lives - 05A-93D-E66 - - - Start with 8 lives - 08A-93D-E66 - - - Start with 11 lives - 0BA-93D-E66 - - - - Pinball Dreams (USA, Europe) - - Infinite balls - 008-18F-3BA - - - Start with 5x bonus, lose it if you collect any other bonus - 3EB-EDF-4C1+04B-EEF-4C7+00B-EFF-A2D - - - No tilt - shake the table as much as you want - 004-BAC-4CA+004-BBC-B32 - - - Collect 2x bonus and get 6x bonus - 054-C7D-E62 - - - Start with 1 ball - 018-1BF-E66 - - - Start with 4 balls - 048-1BF-E66 - - - Start with 7 balls - 078-1BF-E66 - - - Start with 9 balls - 098-1BF-E66 - - - - Play Action Football (USA) - - Always kick at full power - 3E5-DFC-6EA+405-E0C-4C9+005-E5C-19E - - - Infinite time - 00A-6BD-19E - - - Infinite downs - 013-2A9-E69 - - - Only get 2 downs - 02B-84E-F7A - - - Only need 5 yards for 1st down - 053-419-C42 - - - - Popeye 2 (USA) - - Invincibility after first hit until end of level - 00E-83B-19E - - - Infinite Pows - FA3-C59-4C1 - - - Infinite lives - FA3-AFF-4C1 - - - Infinite time - disable to advance in some areas - 2A2-02B-A22 - - - Infinite continues - 00A-1AA-19E - - - Super code - more lives and power - 88B-68B-E66 - - - Start with 1 Pow after 1st life - 013-A7F-E66 - - - Start with 7 Pows after 1st life - 073-A7F-E66 - - - Start with no continues - 003-F7A-F7E - - - Start with 2 continues - 023-F7A-F7E - - - Start with 9 continues - 093-F7A-F7E - - - - Prophecy - The Viking Child (USA) - - Infinite lives - FAE-04C-4C1 - - - Infinite energy - FAD-F5C-4C1 - - - Each coin gives lots of money - 00D-9BD-19B - - - Start with 25 energy - 1st life - 194-A5F-667 - - - Start with 50 energy - 1st life - 324-A5F-667 - - - Start with 4 lives - 034-A0F-E6E - - - Start with 7 lives - 064-A0F-E6E - - - Start with 10 lives - 094-A0F-E6E - - - - Pyramids of Ra (USA) - - Energy bar doesn't go down when you make a move - FA5-8EB-4C1 - - - Only 1 pt. of energy per move on first attempt at each level (instead of 3) - A2A-C48-6EC+3CA-C68-19B+FAA-C38-4C1 - - - Start on level 100 - 641-AB4-E6E+001-ACF-E6A - - - Start on level 300 - 2C1-ABF-E6E+011-ACF-E6A - - - Start on level 500 - F41-ABF-E6E+011-ACF-E6A - - - - Qix (World) - - Invincibility - AFE-DBC-3B4 - - - - Quarth (USA, Europe) - - Select up to level 5 - 054-9EA-E66 - - - Super turbo ship - 00B-31D-08F - - - Blocks don't drop (push Up to bring blocks down) - AF6-32E-A28 - - - Blocks drop faster - 3E6-2BE-081+506-2CE-2AB+006-2DE-F79 - - - Blocks drop super fast - 3E6-2BE-081+806-2CE-2AB+006-2DE-F79 - - - - Q Billion (USA) - - Pressing Select in Game B once gives you 246 seconds - 00B-9FE-C42 - - - Infinite timer - 007-55E-19E - - - Level select - Game A - 3EB-61F-08A+0DB-62F-B3E+00B-63F-08F - - - - Radar Mission (USA, Europe) - - Game B - Infinite money - 003-33D-3BE - - - Game B - Move in 1 direction only - 003-CCA-3BE - - - Game B - Destroyed fleet disappears from radar screen but game doesn't end - 00C-C6A-3BE - - - Game B - Start with 1 money bag - 011-E0D-E66 - - - Game B - Start with 1 extra money bag - 041-E0D-E66 - - - - Raging Fighter (USA, Europe) - - Infinite energy - 004-E0B-E6D+007-1AE-3B7 - - - Infinite time - 009-1FB-A22 - - - 4th difficulty level - go to options, set difficulty, press Left 3 times (won't show anything), then exit - 3E1-F2A-4CA+041-F3A-E62+771-F4A-3BA - - - Start on level 4 - 1P tournament only - 3EE-5BD-4C1+03E-5CD-4CB+00E-5DD-E61 - - - Start on final level - 1P tournament only - 3EE-5BD-4C1+07E-5CD-4CB+00E-5DD-E61 - - - Start each fight with 10 seconds - 10A-9AA-89C - - - Start with 1/2 time - 50A-9AA-89C - - - Start with 3/4 time - 75A-9AA-89C - - - - Rampart (USA, Europe) - - Infinite time - levels don't end, enable at game play screen, disable after battle mode, enable to rebuild castle, disable to go on - 003-9CF-3BE - - - Infinite lives - 017-0EB-F79 - - - Infinite cannons - 01E-B3B-F79 - - - Have 6 seconds to rebuild castle walls - 3E0-29B-081+090-2AB-7F5+000-2BB-F7D - - - Have 66 seconds to rebuild castle walls - 3E0-29B-081+440-2AB-7F5+000-2BB-F7D - - - Have 118 seconds to rebuild castle walls - 3E0-29B-081+770-2AB-7F5+000-2BB-F7D - - - Levels last 10 seconds - 3E0-40B-081+1A0-41B-B32+000-42B-F71 - - - Levels last 25 seconds - 3E0-40B-081+2A0-41B-B32+000-42B-F71 - - - Levels last 50 seconds - 3E0-40B-081+430-41B-B32+000-42B-F71 - - - - Rayman (USA) (En,Fr,De,Es,It,Nl) - - Get items from anywhere - 00A-ADB-F76+18F-A09-6EA - - - - Ren & Stimpy Show, The - Space Cadet Adventures (USA) - - Infinite lives - F07-54E-6E9 - - - Infinite energy except when you fall into pits - F07-33E-6E9 - - - Start with 2 life - 01D-2EA-E62 - - - Start with 6 lives - 05D-2EA-E62 - - - Start with 9 lives - 08D-2EA-E62 - - - Start with 5 energy - 1st life only - 04D-32A-E66 - - - Start with 6 energy - 1st life only - 05D-32A-E66 - - - Start with 7 energy - 1st life only - 06D-32A-E66 - - - Start with 4 energy - after 1st life - 047-5CE-E66 - - - Start with 5 energy - after 1st life - 057-5CE-E66 - - - Start with 6 energy - after 1st life - 067-5CE-E66 - - - - Resident Evil Gaiden (USA) - - Infinite ammo on pick-up - 004-26B-E65 - - - Infinite Herbs - 004-E88-3BE - - - All Herbs cure poison - 004-908-C49 - - - - Pinball - Revenge of the 'Gator (USA, Europe) - - Infinite supply of balls - 007-E1F-3BE - - - Disable left flipper - 21F-24D-D5D - - - Disable right flipper - C9F-2AD-7F1 - - - Start with 1 ball - 016-EDF-E66 - - - Start with 9 balls - 096-EDF-E66 - - - - RoboCop 2 (USA) - - Infinite health on scrolling levels - C95-9CE-C49 - - - Infinite health on ED-209 (tm) levels - AF4-D9A-3B7 - - - Infinite lives - B60-C2D-3BE - - - Infinite time - except stages 3 and 8 - C95-48E-C49 - - - Start with 2 lives - 02A-E8E-F7A - - - Start with 5 lives - 05A-E8E-F7A - - - - RoboCop vs. The Terminator (USA) - - Infinite energy - FAE-67B-4C1 - - - Start on level 2 - 01D-7DD-E6A - - - Start on level 3 - 02D-7DD-E6A - - - Start on level 4 - 03D-7DD-E6A - - - Start on level 5 - 04D-7DD-E6A - - - Start on level 6 - 05D-7DD-E6A - - - Start with 01010101 points - 01D-5DD-56A - - - Start with very little energy - 1st life - 01D-58D-F76 - - - Start with more energy - 1st life - 15D-58D-F76 - - - Start with very little energy - 2nd life - 01E-E0B-F76 - - - Start with more energy - 2nd life - 15E-E0B-F76 - - - - Roger Clemens' MVP Baseball (USA) - - No walks - 014-68A-F7D - - - No strikeouts - 014-87A-F7D - - - Infinite outs (except strikeouts, base runners will still be taken out) - 016-B4C-F7D - - - No outs are called, except strikeouts - 016-AFC-E66+01B-87C-E66 - - - No scoring - disable to score runs - 009-46B-3B7+009-61B-3B7 - - - - Rolan's Curse (USA) - - Infinite energy - F0C-96C-6E9 - - - Start with 2 energy pts - 025-F5E-F7A - - - Start with 6 energy pts - 065-F5E-F7A - - - - Rolan's Curse II (USA) - - Infinite HP - FOE-86C-6E9 - - - Infinite magic - F0E-01F-6E9 - - - Takes 9 MP to use Electric ball - 094-59A-E6E - - - Takes 2 MP to use Electric ball - 024-59A-E6E - - - Starts you from a new place with power-ups - 3C3-72E-5D4 - - - - R-Type (USA, Europe) - - Invincibility - C9E-07E-081 - - - Hit anywhere - 01B-40D-4C7+18A-DAD-2AA+29A-DBD-4C6+AFB-49D-08F - - - One hit kills - 187-9FF-08A+FA8-C1B-E61 - - - - R-Type II (Europe) - - Invincibility - C9F-3FE-081 - - - - Samurai Shodown (USA, Europe) (SGB Enhanced) - - Computer takes all damage - even when you get hit - 3EB-60D-7F1 - - - Infinite time - FA2-46D-4C1 - - - Start timer at 30 seconds - 3EF-80E-D57+1EF-81E-08F - - - Start timer at 46 seconds - 3EF-80E-D57+2EF-81E-08F - - - Start timer at 62 seconds - 3EF-80E-D57+3EF-81E-08F - - - Start timer at 78 seconds - 3EF-80E-D57+4EF-81E-08F - - - Start timer at 94 seconds - 3EF-80E-D57+5EF-81E-08F - - - Start timer at 110 seconds - 3EF-80E-D57+6EF-81E-08F - - - Start timer at 126 seconds - 3EF-80E-D57+7EF-81E-08F - - - Start timer at 142 seconds - 3EF-80E-D57+8EF-81E-08F - - - Start timer at 158 seconds - 3EF-80E-D57+9EF-81E-08F - - - Both players start with 1/3 energy - 11F-86E-3B6 - - - Both players start with 2/3 energy - 21F-86E-3B6 - - - Both players start with more energy - FFF-86E-3B6 - - - Always fight Genan Shiranui - 3E8-9A9-2AA+008-9B9-D5E+E08-9C9-2A9 - - - Always fight Galford - 3E8-9A9-2AA+018-9B9-D5E+E08-9C9-2A9 - - - Always fight Haohmaru - 3E8-9A9-2AA+028-9B9-D5E+E08-9C9-2A9 - - - Always fight Ukyo Tachibana - 3E8-9A9-2AA+038-9B9-D5E+E08-9C9-2A9 - - - Always fight Charlotte - 3E8-9A9-2AA+048-9B9-D5E+E08-9C9-2A9 - - - Always fight Tam Tam - 3E8-9A9-2AA+058-9B9-D5E+E08-9C9-2A9 - - - Always fight Earthquake - 3E8-9A9-2AA+068-9B9-D5E+E08-9C9-2A9 - - - Always fight Nakoruru - 3E8-9A9-2AA+078-9B9-D5E+E08-9C9-2A9 - - - Always fight Wan Fan - 3E8-9A9-2AA+088-9B9-D5E+E08-9C9-2A9 - - - Always fight Jubei Yagyo - 3E8-9A9-2AA+098-9B9-D5E+E08-9C9-2A9 - - - Always fight Hanzo Hattori - 3E8-9A9-2AA+0A8-9B9-D5E+E08-9C9-2A9 - - - Always fight Kyoshiro Senryo - 3E8-9A9-2AA+0B8-9B9-D5E+E08-9C9-2A9 - - - - SeaQuest DSV (USA, Europe) (SGB Enhanced) - - Invincibility - 00E-04B-19E - - - Infinite lives - 001-EB8-E6E - - - Lose most energy after first hit - AFE-04B-19E - - - Start with super score - 03B-37D-E6A - - - Start with very little hull energy - 011-FCC-C42 - - - Start with 1/2 hull energy - 051-FCC-C42 - - - Start with 3/4 hull energy - 071-FCC-C42 - - - Start with 2 lives - 01B-2DD-F7A - - - Start with 5 lives - 04B-2DD-F7A - - - Start with 10 lives - 09B-2DD-F7A - - - Start with 15 lives - 0EB-2DD-F7A - - - - Serpent (USA) - - Infinite missiles on pick-up - 00F-B0E-E69 - - - Start with 5 missiles - 057-C9D-E6A - - - Start with 8 missiles - 087-C9D-E6A - - - Start with 15 missiles - 0F7-C9D-E6A - - - Start with smaller tail - 157-C6D-4CA - - - Start with longer tail - 407-C6D-4CA - - - - Simpsons, The - Bart & the Beanstalk (USA, Europe) - - Invincibility - C97-2CC-E69 - - - Infinite energy - FA7-42C-4C1 - - - Infinite lives - 002-83E-E6E - - - Infinite fire crackers - 00A-608-19E - - - Start with 1 life - 001-ADF-E66 - - - Start with 5 lives - 041-ADF-E66 - - - Start with 10 lives - 091-ADF-E66 - - - Start with 1/4 energy - 106-37E-917 - - - Start with 1/2 energy - 306-37E-917 - - - Start with 3/4 energy - 456-37E-917 - - - - Simpsons, The - Bart vs. the Juggernauts (USA, Europe) - - Infinite time on all games - 008-A6F-3B7 - - - Always qualify with enough money - 0A6-EB9-4C2 - - - See end sequence - 043-5B9-F76 - - - Start on week 2 - 023-5B9-F76 - - - Start on week 3 - 033-5B9-F76 - - - Capt. Lance Murdock's Skateboard Bash & Crash - Infinite lives - FAF-829-4C1 - - - Capt. Lance Murdock's Skateboard Bash & Crash - Start with 1 life - 01E-A89-F76 - - - Capt. Lance Murdock's Skateboard Bash & Crash - Start with 2 lives - 02E-A89-F76 - - - Springfield Nuclear Power Plant Bop 'till You Drop - No hits against you - FA8-F38-4C1 - - - Herman's Military Minefield Mayhem - Infinite hits - FAB-F28-4C1 - - - Herman's Military Minefield Mayhem - Infinite runs - FA2-848-4C1 - - - Kwik-E-Mart Doggie Dodge - Infinite chances - FA2-279-4C1 - - - Kwik-E-Mart Doggie Dodge - Start with 3 lives - 03D-89A-916 - - - Kwik-E-Mart Doggie Dodge - Start with 6 lives - 06D-89A-916 - - - Kwik-E-Mart Doggie Dodge - Start with 9 lives - 09D-89A-916 - - - - Simpsons Itchy & Scratchy, The - Miniature Golf Madness (USA, Europe) - - Invincibility - 00A-07A-C49 - - - Invincible after getting hit - 00A-24A-3BE - - - Infinite lives - 00A-24D-E6E - - - Always get a hole in one - 009-0E9-E6E - - - Start with 1 life - 000-7D9-CCE - - - Start with 5 lives - 040-7D9-CCE - - - Start with 15 lives - 0E0-7D9-CCE - - - - Snoopy - Magic Show (USA, Europe) - - Start on level 2 - 3E7-3FD-4C1+027-40D-087+007-41D-E65 - - - Start on level 5 - 3E7-3FD-4C1+057-40D-087+007-41D-E65 - - - Start on level 9 - 3E7-3FD-4C1+097-40D-087+007-41D-E65 - - - Start with 22 seconds - 108-49A-E6B - - - Start with 63 seconds - 3F8-49A-E6B - - - Start with 100 seconds - 648-49A-E6B - - - - SolarStriker (World) - - Infinite lives - 00C-D6F-3BE - - - When you pick up a power-up, go straight to max power - 3EF-65E-191+04F-66E-F7E - - - Bullets are mega-powerful, almost invisible, when you pick up a power-up - 3EF-65E-191+0BF-66E-F7E - - - No loss of power-ups on dying - 006-45E-C41 - - - Stay on same level - 00D-EEF-3BA - - - Start with 2 lives - 015-D0F-E62 - - - Start with 6 lives - 055-D0F-E62 - - - Start with 10 lives - 095-D0F-E62 - - - Start on stage 2 - 025-0AF-E6E - - - Start on stage 3 - 035-0AF-E6E - - - Start on stage 4 - 045-0AF-E6E - - - Start on stage 5 - 055-0AF-E6E - - - Start on stage 6 - 065-0AF-E6E - - - - Spanky's Quest (USA) - - Infinite lives - 000-60E-19E - - - Mega ball power-ups - hit it with your head once for full power - 074-1ED-E6A - - - Start with 1 life - 00B-96D-E62 - - - Start with 6 lives - 05B-96D-E62 - - - Start with 9 lives - 08B-96D-E62 - - - Start on tower 1, stage 5 (disable after starting stage) - 3ED-68D-C45+04D-69D-3B6 - - - Start on tower 1, stage 10 (disable after starting stage) - 3ED-68D-C45+09D-69D-3B6 - - - Start on tower 1, last stage (disable after starting stage) - 3ED-68D-C45+0FD-69D-3B6 - - - - Speedball 2 - Brutal Deluxe (USA, Europe) - - Get lots of money - 99D-CDB-F7A - - - Infinite money - FAA-E4C-4C1 - - - No timer - 00E-D99-3BE - - - Opponents can't score any points except from bounced stones - 00C-30F-08B - - - - Speedy Gonzales (USA, Europe) - - Infinite lives - FAC-A9B-4C1 - - - Infinite time - FA9-40B-4C1 - - - Start 1st game with 1 life - 00A-8A8-E66 - - - Start 1st game with 7 lives - 06A-8A8-E66 - - - Start 1st game with 10 lives - 09A-8A8-E66 - - - Start in Forest Zone after entering password 500999 - 024-5A9-F72+004-5B9-A28 - - - Start in Desert Zone after entering password 500999 - 034-5A9-F72+004-5B9-A28 - - - Start in County Zone after entering password 500999 - 044-5A9-F72+004-5B9-A28 - - - Start in Cheese Island Zone after entering password 500999 - 054-5A9-F72+004-5B9-A28 - - - Start continued games with 1 life - 00D-87B-E66 - - - Start continued games with 7 lives - 06D-87B-E66 - - - Start continued games with 10 lives - 09D-87B-E66 - - - Start with 1/2 time - 05E-F6C-C4E - - - Start with 3/4 time - 07E-F6C-C4E - - - - Spider-Man 2 (USA, Europe) - - Infinite lives - FA6-FBE-4C1 - - - Infinite energy - FA6-C4E-4C1 - - - Infinite web power - FAD-F6E-4C1 - - - 1 energy point after life lost - 016-EEE-195 - - - Start with 1 life - 00F-78E-E66 - - - Start with 5 lives - 04F-78E-E66 - - - Start with 10 lives - 09F-78E-E66 - - - Start with 1 energy point - 01F-5BE-195 - - - Start with 4 web points - 1st life only - 04F-73E-B3A - - - Start with 5 web points - 1st life only - 05F-73E-B3A - - - Start with 9 web points - 1st life only - 09F-73E-B3A - - - - Spider-Man 3 - Invasion of the Spider-Slayers (USA, Europe) - - Infinite energy - FA7-ECE-4C1 - - - Infinite lives - FA8-25E-4C1 - - - Need to shoot 1 enemy to clear level 1-1 - 01E-3AD-B3A - - - Start 1st life with 1/2 energy - 723-ABD-195 - - - Start lives after 1st with 1/2 energy - 728-18E-195 - - - Start 1st level with 1/2 time - FA7-6FB-4C1 - - - Start 1st level with 255 seconds on timer - FFE-2DD-B30 - - - - Spot - The Cool Adventure (USA) - - Infinite energy (hearts) except when you fall off screen - FA9-0AC-4C1 - - - Start with 4 lives - 045-76D-F7A - - - Start with 6 lives - 065-76D-F7A - - - Start with 9 lives - 095-76D-F7A - - - Start with 15 lives - 0F5-76D-F7A - - - Start with 25 bonus discs - 255-80D-E6A - - - Start with 59 bonus discs - 505-80D-E6A - - - Start with 5 energy (easy level) - 052-F7B-F7E - - - Start with 8 energy (easy level) - 082-F7B-F7E - - - Start with 10 energy (easy level) - 082-F7B-F7E - - - Start with 5 energy (hard level) - 055-7BD-E66 - - - Start with 8 energy (hard level) - 085-7BD-E66 - - - Start with 10 energy (hard level) - 082-7BD-E66 - - - - Spud's Adventure (USA) - - Infinite lives - 002-67E-19E - - - Begin each new screen with a key-except 1st screen - 007-5FE-5D4 - - - 1 EXP pt. for killing a bad guy - 3E1-D1E-2A9+011-D2E-915 - - - 5 EXP pts. for killing a bad guy - 3E1-D1E-2A9+051-D2E-915 - - - 9 EXP pts. for killing a bad guy - 3E1-D1E-2A9+091-D2E-915 - - - Start with 2 life - 013-C8E-E62 - - - Start with 6 lives - 053-C8E-E62 - - - Start with 10 lives - 093-C8E-E62 - - - - Spy vs Spy - Operation Boobytrap (USA) - - Infinite time - 002-D2A-3BE - - - Both spies start with 4 energy - 046-9EE-C42 - - - Both spies start with 6 energy - 066-9EE-C42 - - - Both spies start with 8 energy - 086-9EE-C42 - - - After death, start with 4 energy - white spy - 04D-84B-C42 - - - After death, start with full energy - white spy - 08D-84B-B42 - - - No loss of energy during fight - both spies - 005-14B-3BE - - - Other spy's punches do not affect your energy - 005-03B-80A - - - Walking over floor flowers doesn't affect your energy - FA0-5CA-4C1 - - - Traps do not affect energy - white spy - 00A-76B-E62 - - - - Square Deal - The Game of Two-Dimensional Poker (USA) - - Infinite time on pause counter - 01D-A0E-F79 - - - Timer starts at 30 - 1EC-83E-10A - - - No time on pause counter - 00C-83E-10A - - - Select up to level 10 in level select - 0A4-D8D-F7E - - - Start with 1 replay - 3E3-AFD-C4E+013-B0D-193 - - - Start with 3 replays - 3E3-AFD-C4E+033-B0D-193 - - - Start with 9 replays - 3E3-AFD-C4E+093-B0D-193 - - - - Stargate (USA, Europe) - - Tile counter doesn't work - 008-22B-E6E - - - Tiles all look blank but aren't - C92-74D-C49 - - - The bottom of the tiles are always tile one - 0E9-7DB-80E+019-7EB-D53 - - - The bottom of the tiles are always tile two - 0E9-7DB-80E+029-7EB-D53 - - - The bottom of the tiles are always tile three - 0E9-7DB-80E+039-7EB-D53 - - - The bottom of the tiles are always tile four - 0E9-7DB-80E+049-7EB-D53 - - - The bottom of the tiles are always tile five - 0E9-7DB-80E+059-7EB-D53 - - - The bottom of the tiles are always tile six - 0E9-7DB-80E+069-7EB-D53 - - - The bottom of the tiles are always tile seven - 0E9-7DB-80E+079-7EB-D53 - - - The bottom of the tiles are always tile eight - 0E9-7DB-80E+089-7EB-D53 - - - The bottom of the tiles are always tile nine - 0E9-7DB-80E+099-7EB-D53 - - - The bottom of the tiles are always tile ten - 0E9-7DB-80E+0A9-7EB-D53 - - - The bottom of the tiles are always tile eleven - 0E9-7DB-80E+0B9-7EB-D53 - - - The bottom of the tiles are always tile twelve - 0E9-7DB-80E+0C9-7EB-D53 - - - The bottom of the tiles are always smart bomb tiles - 0E9-7DB-80E+0D9-7EB-D53 - - - The bottom of the tiles are always digger tiles - 0E9-7DB-80E+0E9-7EB-D53 - - - The bottom of the tiles are always tile wildcard tiles - 0E9-7DB-80E+0F9-7EB-D53 - - - - Star Hawk (Europe) - - Infinite lives - FAA-2CF-4C1 - - - Impenetrable shield - 008-C0F-19E - - - Infinite continues - 006-92F-F7D - - - Keep power-ups when you die - FAF-15F-4C1 - - - Start with 8 lives - 081-C1F-E66 - - - Start with 10 lives - 0A1-C1F-E66 - - - Start with 12 lives - 0C1-C1F-E66 - - - - Star Trek Generations - Beyond the Nexus (USA) (SGB Enhanced) - - Almost infinite phasers and shields - 182-56D-2AA - - - Infinite attempts in sub game - 013-D48-805 - - - Start with very little phasers and shields - 013-F78-7FB - - - Start with 1/4 phasers and shields - 223-F78-7FB - - - Start with 1/2 phasers and shields - 3F3-F78-7FB - - - Start with 3/4 phasers and shields - 4F3-F78-7FB - - - - Star Trek - The Next Generation (USA, Europe) - - Infinite shields - FA4-27D-4C1 - - - Damage isn't repaired - 001-13D-3BA - - - Damage repaired immediately - 001-15D-6E7 - - - Life support starts at 25% power - 19E-169-7FB - - - Life support starts at 50% power - 32E-169-7FB - - - Life support starts at 75% power - 4BE-169-7FB - - - Warp drive starts at 25% power - 19E-1A9-7FB - - - Warp drive starts at 50% power - 32E-1A9-7FB - - - Warp drive starts at 75% power - 4BE-1A9-7FB - - - Impulse drive starts at 25% power - 19E-1E9-7FB - - - Impulse drive starts at 50% power - 32E-1E9-7FB - - - Impulse drive starts at 75% power - 4BE-1E9-7FB - - - Shields start at 25% power - 19E-229-7FB - - - Shields start at 50% power - 32E-229-7FB - - - Shields start at 75% power - 4BE-229-7FB - - - Phasers start at 25% power - 19E-269-7FB - - - Phasers start at 50% power - 32E-269-7FB - - - Phasers start at 75% power - 4BE-269-7FB - - - Photon Torpedoes start at 25% power - 19E-2A9-7FB - - - Photon Torpedoes start at 50% power - 32E-2A9-7FB - - - Photon Torpedoes start at 75% power - 4BE-2A9-7FB - - - Sensors start at 25% power - 19E-2E9-7FB - - - Sensors start at 50% power - 32E-2E9-7FB - - - Sensors start at 75% power - 4BE-2E9-7FB - - - Transporter starts at 25% power - 19E-329-7FB - - - Transporter starts at 50% power - 32E-329-7FB - - - Transporter starts at 75% power - 4BE-329-7FB - - - - Star Wars (USA) - - Infinite energy - C9B-5CC-3BE - - - Infinite lives - 00B-6AC-195 - - - Infinite continues - FA2-F6E-4C1 - - - No continues - 003-A2F-C42 - - - 20 continues - 143-A2F-C42 - - - More energy - 1st life only - 990-B7E-C4A - - - Start with 1/2 energy on all lives except 1st - 04C-12C-C4A - - - Start with 1 life - 013-B7F-E66 - - - Start with 6 lives - 063-B7F-E66 - - - Start with 9 lives - 093-B7F-E66 - - - - Star Wars - The Empire Strikes Back (USA) - - Infinite continues - 00E-A1F-19E - - - Start with all force abilities in inventory - still need to get force power to activate - 011-D7F-E6A+001-CFF-5D4 - - - - Street Fighter II (USA, Europe) (Rev A) (SGB Enhanced) - - Invincibility - 18A-8ED-4CA+18A-9FD-4CA+18A-D2D-4CA - - - Hit anywhere - P1 - 00A-B1D-F7E - - - Hit anywhere - P2 - 00A-8FD-F7E - - - Fireball kills - 885-838-B3E - - - Nobody takes damage from anything but throws/grabs - 009-249-3B7 - - - Opponent can't win any normal rounds - 00B-938-E6D - - - Allows you to select a higher skill level - 093-85A-F72 - - - Fireball doesn't do any damage - 005-838-B3E - - - Fireball does more damage - 405-838-B3E - - - Player one starts with very little energy - 013-F89-2AB - - - Player one starts with 1/4 energy - 1F3-F89-2AB - - - Player one starts with 1/2 energy - 3A3-F89-2AB - - - Player one starts with 3/4 energy - 523-F89-2AB - - - Player one starts with more energy - FF3-F89-2AB - - - Player two starts with very little energy - 013-FF9-2AB - - - Player two starts with 1/4 energy - 1F3-FF9-2AB - - - Player two starts with 1/2 energy - 3A3-FF9-2AB - - - Player two starts with 3/4 energy - 523-FF9-2AB - - - Player two starts with more energy - FF3-FF9-2AB - - - Start with seconds on the timer - 884-619-6E7 - - - Ryu - Foot sweep doesn't do any damage - 005-0B8-A2A - - - Ryu - Foot sweep does more damage - 405-0B8-A2A - - - Ryu - Foot sweep kills - 885-0B8-A2A - - - Ryu - Crouch punch doesn't do any damage - 004-F78-A2A - - - Ryu - Crouch punch does more damage - 404-F78-A2A - - - Ryu - Crouch punch kills - 884-F78-A2A - - - Ryu - Normal upper cut doesn't do any damage - 004-A78-A2A - - - Ryu - Normal upper cut does more damage - 404-A78-A2A - - - Ryu - Normal upper cut kills - 884-A78-A2A - - - Ryu - Straight punch doesn't do any damage - 004-CF8-A3A - - - Ryu - Straight punch does more damage - 404-CF8-A3A - - - Ryu - Straight punch kills - 884-CF8-A3A - - - Ryu - Standong hack kick doesn't do any damage - 004-BB8-C42 - - - Ryu - Standong hack kick does more damage - 404-BB8-C42 - - - Ryu - Standong hack kick kills - 884-BB8-C42 - - - Ryu - Rolling throw doesn't do any damage - 005-B58-A22 - - - Ryu - Rolling throw does more damage - 405-B58-A22 - - - Ryu - Rolling throw kills - 885-B58-A22 - - - Ryu - Jumping straight up and kicking doesn't do any damage - 005-338-A2E - - - Ryu - Jumping straight up and kicking does more damage - 405-338-A2E - - - Ryu - Jumping straight up and kicking kills - 885-338-A2E - - - Ryu - Standing short kick doesn't do any damage - 004-D98-C4A - - - Ryu - Standing short kick does more damage - 404-D98-C4A - - - Ryu - Standing short kick kills - 884-D98-C4A - - - - Sumo Fighter (USA) - - Infinite energy - FAE-C8A-4C1 - - - At easy or hard level screen, press down three times then A for super hard mode (makes display look weird) - 092-06F-F7E - - - Start with 2 energy bars - 02B-AFA-E66 - - - Start with 5 energy bars - 05B-AFA-E66 - - - Start with 8 energy bars - 08B-AFA-E66 - - - Start with 2 lives - 012-0BF-E62 - - - Start with 5 lives - 042-0BF-E62 - - - Start with 8 lives - 072-0BF-E62 - - - - Super Battletank - War in the Gulf (USA) - - Infinite damage - E0B-00C-2A9 - - - Infinite ammo - 005-95C-3BE - - - Infinite fuel - C9D-E1D-2A9 - - - Start with 5 shells - 05E-42D-2A2 - - - Start with 99 shells - 63E-42D-2A2 - - - Start with 5 laser shots - 05E-4DD-E6E - - - Start with 99 laser shots - 63E-4DD-E6E - - - Start with 5 smoke shots - 05E-58D-E6E - - - Start with 99 smoke shots - 63E-58D-E6E - - - Start with 5 bullets - 05E-63D-B30 - - - Start with 99 bullets - 63E-63D-B30 - - - Start with very little fuel - 15E-72D-195 - - - - Super Chase H.Q. (USA, Europe) - - Infinite time - 006-78E-E6E - - - Infinite turbos - 007-67E-19E - - - Turbo boosts last half as long - 777-47E-081 - - - Turbo boosts lasts very short - 157-47E-081 - - - Turbo boosts lasts forever. Disable to fire a turbo boost then enable while turbo boost is going. - 007-14E-F79 - - - Start with lots of points - F59-90B-2A1 - - - Start with 1 turbo boost - 010-E5A-E66+019-08B-E66 - - - Start with 2 turbo boosts - 020-E5A-E66+029-08B-E66 - - - Start with 5 turbo boosts - 050-E5A-E66+059-08B-E66 - - - Start with 9 turbo boosts - 090-E5A-E66+099-08B-E66 - - - - Super Chinese Land (Japan) - - Invincibility (blinking) - 004-BEE-C4D - - - Infinite health - 7C5-0AB-802+125-0BB-3B7 - - - Infinite lives - 475-5AA-C4D - - - - Super Mario Land (World) (Rev A) - - Enable level select - 004-D3F-F7F+C34-AAF-A21 - - - Infinite time - disable at end of stage - 008-60A-E6E - - - Always have superballs - 00A-17B-C49 - - - Multi-jump - 009-C2B-2A1+009-C9B-4C5+009-D8B-80E+009-E4B-C4A+189-AEB-6EA+C9B-75B-809+FA9-E7B-4C1 - - - Disable music - C9C-C39-C49 - - - - Super Mario Land (World) - - Enable level select - 004-D3F-F7F+C34-AAF-A21 - - - Superballs hit anywhere - 000-4BD-5DE+000-48D-A21+E10-49D-5DE+E50-4AD-5DE - - - Multi-jump - 009-C2B-2A1+009-C9B-4C5+009-D8B-80E+009-E4B-C4A+189-AEB-6EA+C9B-75B-809+FA9-E7B-4C1 - - - Disable music - C9D-BD9-C49 - - - - Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev B) - - Infinite time - 00D-8DA-E6E - - - Always have fireballs - 002-CEC-E69 - - - Fireballs hit anywhere - 4E0-4CC-197+640-62C-197 - - - - Super Mario Land 2 - 6 Golden Coins (USA, Europe) (Rev A) - - Infinite lives - 001-40C-E6E - - - Infinite time - 00D-8DA-E6E - - - Timer counts down by 2 - 02D-8DA-E6E - - - Mushroom turns you into Bunny Mario - 024-5BC-E6E - - - Mushroom turns you into Fire Mario - 034-5BC-E6E - - - Stay as Super Mario when hit - FA1-B9C-4C1 - - - Stay as Fire or Bunny Mario when hit - FA1-C8C-4C1 - - - Hearts (extra life) worth nothing - 004-BBC-19A - - - Play 30 coin game of chance for free - 004-5F8-2AA - - - Play 50 coin game of chance for free - 004-288-A2B - - - Play 200 coin game of chance for free - 003-F28-E62 - - - Play 999 coin game of chance for free - 003-BB8-C4E+003-BA8-80C - - - Each coin worth 101 - 01D-92E-E6A+019-2BA-E6A - - - Each coin worth 0 - 009-22A-19A+00D-89E-19A - - - Each defeated enemy worth 2 - 023-218-E6E - - - Each defeated enemy worth 5 - 053-218-E6E - - - Can re-enter boss levels - 181-8DB-4CA - - - Always have fireballs - 002-CBC-E69 - - - Start new game with 1 life instead of 6 - 002-41B-F7E - - - Start new game with 10 lives instead of 6 - 092-41B-F7E - - - Start new game with 25 lives instead of 6 - 242-41B-F7E - - - Start new game with 50 lives instead of 6 - 492-41B-F7E - - - Start new game with 75 lives instead of 6 - 742-41B-F7E - - - Start new game with 100 lives instead of 6 - 992-41B-F7E - - - - Super Mario Land 2 - 6 Golden Coins (USA, Europe) - - Infinite lives - 001-40C-E6E - - - Infinite time - 00D-8DA-E6E - - - Fireballs hit anywhere - 4B0-49C-19B+610-5FC-19B - - - Always have fireballs - 002-CBC-E69 - - - - Super Off Road (USA) - - Infinite money - FAD-A2B-4C1 - - - Infinite tires, nitros, etc. when you buy them - 003-3AD-3BE - - - Start with 2 credits - 02B-87F-E66 - - - Start with 4 credits - 04B-87F-E66 - - - Start with 8 credits - 08B-87F-E66 - - - - Swamp Thing (USA, Europe) - - Invincibility - C92-85E-A28 - - - Infinite lives - FA3-8FF-4C1 - - - Infinite environmental meter - FAF-CF9-4C1 - - - Start with half energy - 205-5AF-E6B - - - Start with 1/2 environmental meter - 105-55F-6EA - - - - Sword of Hope, The (USA) - - Infinite HP - 001-72B-F75 - - - Start with 11 dexterity points - 09A-BFD-F7E - - - 12 stamina points - 09A-C4D-F7E - - - Shaman is free - F04-A0C-6E9 - - - Forest shop is free - F0A-3CC-6E9 - - - - T2 - The Arcade Game (USA, Europe) - - Infinite energy - F0C-9DD-6E9 - - - Infinite lives - F0C-ABD-6E9 - - - Infinite rockets - FA4-B8E-4C1 - - - Infinite continues - FAD-5CE-4C1 - - - Start with 2 lives - 023-46F-F7E - - - Start with 4 lives - 043-46F-F7E - - - Start with 8 lives - 083-46F-F7E - - - - Taz-Mania (USA, Europe) - - Invincibility - 003-658-E69 - - - Infinite spins - FAC-519-4C1 - - - Infinite hearts - FA7-3CC-4C1 - - - Infinite time - FA6-AA8-4C1 - - - Infinite credits - FAA-48D-4C1 - - - Don't flash after getting hit - 00A-969-E68 - - - Don't flash as long after getting hit - 11A-969-E68 - - - Flash longer after getting hit - F1A-969-E68 - - - Start with 1 heart - 1st life - 017-6EF-E66 - - - Start with 5 hearts - 1st life - 057-6EF-E66 - - - Start with 10 hearts - 1st life - 0A7-6EF-E66 - - - Start timer at 58 seconds - 3E8-408-80E+058-418-4C2 - - - Start timer at 1 minute 48 seconds - 3E8-408-80E+0A8-418-4C2 - - - - Taz-Mania 2 (USA) - - Invincibility - 010849DC - - - Infinite health - 010060DB - - - Infinite attack - 0128BAD3 - - - Infinite time - 01387DD3 - - - - Tecmo Bowl (USA) - - Infinite time - 00D-C9A-3BE - - - Have 49 downs - 494-D6B-F7A - - - Have 5 downs - 054-D6B-F7A - - - 8 minutes 30 seconds per quarter - 084-EFB-E6E - - - 6 minutes 30 seconds per quarter - 064-EFB-E6E - - - 1 minutes 30 seconds per quarter - 014-EFB-E6E - - - - Teenage Mutant Ninja Turtles - Fall of the Foot Clan (USA) - - Hit anywhere - B8D-E2C-6EC+B8E-26C-6EC+3ED-DFC-D52+3EE-23C-D52 - - - - Teenage Mutant Ninja Turtles II - Back from the Sewers (USA) - - Invincibility - 186-4CA-2AA+C96-B4A-A29 - - - Hit anywhere - 006-F1A-A29 - - - - Teenage Mutant Ninja Turtles III - Radical Rescue (USA) - - Invincibility - C93-3BD-A29+C98-84B-6EE - - - Hit anywhere - 002-47D-A29+002-64D-A29+002-DED-A29+002-FBD-A29 - - - - Tennis (World) - - Neither player scores points - disable to score - 001-DAD-3BA - - - 1 game needed to win set - 010-9CD-F76 - - - 2 games needed to win set - 020-9CD-F76 - - - 3 games needed to win set - 030-9CD-F76 - - - 4 games needed to win set - 040-9CD-F76 - - - 1st point takes you to 40 points - 011-9AD-E66 - - - 2nd point takes you to 40 points - 021-9AD-E66 - - - Neither player can win game - 000-99D-3BA+E00-74D-6E5+E00-7ED-6E5 - - - - Terminator 2 - Judgment Day (USA, Europe) - - Almost infinite energy - C95-00E-4C1 - - - Infinite time in reprogramming stage - 001-03B-19E - - - 20 shots kill end of level 1 boss - 148-54B-4CA - - - 10 shots kill end of level 1 boss - 0A8-54B-4CA - - - 5 shots kill end of level 1 boss - 058-54B-4CA - - - Start with 1/2 energy - 70E-59D-6E9 - - - - Tetris (World) (Rev A) - - Keep stack displayed while paused - CEC-30E-C45 - - - Keep current and next pieces displayed while paused - D9C-53E-D5D - - - Only piece 1 will appear - 000-63D-6E9+3E0-64D-5D0+000-65D-087 - - - Only piece 2 will appear - 000-63D-6E9+3E0-64D-5D0+040-65D-087 - - - Only piece 3 will appear - 000-63D-6E9+3E0-64D-5D0+080-65D-087 - - - Only piece 4 will appear - 000-63D-6E9+3E0-64D-5D0+0C0-65D-087 - - - Only piece 5 will appear - 000-63D-6E9+3E0-64D-5D0+100-65D-087 - - - Only piece 6 will appear - 000-63D-6E9+3E0-64D-5D0+140-65D-087 - - - Only piece 7 will appear - 000-63D-6E9+3E0-64D-5D0+180-65D-087 - - - - Tetris DX (World) (SGB Enhanced) - - Score increases a lot - 1F3-C9A-F70 - - - Swap over next shape to current shape by pressing A - C37-C5A-081+B67-C6A-E60+587-C7A-5D4 - - - Swap over next shape to current shape by pressing B - C38-1EA-081+B68-1FA-E60+588-20A-5D4 - - - Swap over next shape to current shape by pressing select - 188-76A-081+3E8-77A-F74 - - - - Tetris 2 (USA) - - No next piece screen - C98-E9A-081 - - - Blocks come down fast - 10D-649-F71+00D-629-081+3ED-639-B30 - - - Blocks come down very fast - 70D-649-F71+00D-629-081+3ED-639-B30 - - - Blocks come down super fast - 20D-649-F71+00D-629-081+3ED-639-B30 - - - Can select round above 30 on options screen - 00A-4BA-A29 - - - In versus mode, no blocks added to top of screen - FA8-CB8-4C1 - - - - Tiny Toon Adventures 2 - Montana's Movie Madness (USA, Europe) - - Invincibility - C3C-DAD-E61 - - - Infinite health - 00D-5CD-19E - - - Infinite time - 006-14B-19E - - - Infinite lives - 00A-5ED-E6E - - - One hit and you die - 00D-53D-679 - - - Don't flash as long after getting hit - 3FD-53D-679 - - - Start with 1 heart - 029-66E-F7A - - - Start with 2 hearts - 039-66E-F7A - - - Start with 1 life - 00E-1E9-E62 - - - Start with 5 lives - 04E-1E9-E62 - - - Start with 10 lives - 09E-1E9-E62 - - - Start with mega points - 00E-229-5D4 - - - Start with 100 seconds on the clock - 01E-319-F7E - - - Start with 300 seconds on the clock - 03E-319-F7E - - - Start with 700 seconds on the clock - 07E-319-F7E - - - Start with 900 seconds on the clock - 09E-319-F7E - - - - Tiny Toon Adventures 2 (Japan) - - Invincibility - C3C-DAD-E61 - - - Infinite health - 00D-5CD-19E - - - Infinite time - 006-14B-19E - - - Infinite lives - 00A-5ED-E6E - - - One hit and you die - 00D-53D-679 - - - Don't flash as long after getting hit - 3FD-53D-679 - - - Start with 1 heart - 029-66E-F7A - - - Start with 2 hearts - 039-66E-F7A - - - Start with 1 life - 00E-1E9-E62 - - - Start with 5 lives - 04E-1E9-E62 - - - Start with 10 lives - 09E-1E9-E62 - - - Start with mega points - 00E-229-5D4 - - - Start with 100 seconds on the clock - 01E-319-F7E - - - Start with 300 seconds on the clock - 03E-319-F7E - - - Start with 700 seconds on the clock - 07E-319-F7E - - - Start with 900 seconds on the clock - 09E-319-F7E - - - - Titus the Fox to Marrakech and Back (USA, Europe) - - Infinite energy until level 3 - 00E-7D9-3BE - - - Infinite energy from level 3 on - 002-739-3BE - - - Infinite lives - 009-6A9-3BE - - - Start 1st life with 1 energy unit - 013-D0A-F7E - - - Start 1st life with 9 energy units - 093-D0A-F7E - - - Start with 1 energy unit after 1st life - 011-CFD-F7E - - - Start with 9 energy units after 1st life - 091-CFD-F7E - - - Start 1st level with 100-pt. bonus - 643-DCA-E6A - - - Start 1st level with 250-pt. bonus - FA3-DCA-E6A - - - Start with 1 life - 013-D5A-E66 - - - Start with 6 lives - 063-D5A-E66 - - - Start with 9 lives - 093-D5A-E66 - - - Start on level 1, part 2 - 003-BAF-5D4 - - - - Tom & Jerry (USA, Europe) - - Infinite lives - 008-54D-B3D - - - Infinite balls once collected - FA6-84B-4C1 - - - Infinite energy (may have to die once first) - 00D-47D-3BA - - - Infinite time - FAC-3FE-4C1+FAC-43E-4C1 - - - Every time you collect one cheese you get 11 (can't go over 100) - 110-67B-E6E - - - Start with 1 life - 01F-7BB-E66 - - - Start with 5 lives - 05F-7BB-E66 - - - - Tom and Jerry - Frantic Antics! (USA, Europe) - - Infinite lives - 01E-39E-A25 - - - Infinite lives - 00C-E4B-3BE - - - Infinite time - 001-43C-E6E+001-51C-E6E - - - Don't flash after getting hit - 013-338-08B - - - Flash longer after getting hit - FA3-338-08B - - - Start with 1 life - 019-0CC-E66 - - - Start with 5 lives - 059-0CC-E66 - - - Start with 10 lives - 0A9-0CC-E66 - - - Start with 1 minutes on the timer - 010-DEC-F7E - - - Start with 10 minutes on the timer - 0A0-DEC-F7E - - - Start with 15 minutes on the timer - ignore counter - 0F0-DEC-F7E - - - - Top Gun - Guts & Glory (USA, Europe) - - Infinite missiles - FA4-249-4C1 - - - Infinite lives - 008-599-F79 - - - Start with 1 life (do not alter mission on the first menu screen) - 01B-E4D-E66 - - - Start with 5 lives (do not alter mission on the first menu screen) - 05B-E4D-E66 - - - Start with 10 lives (do not alter mission on the first menu screen) - 0AB-E4D-E66 - - - Start on mission 10 (do not alter mission on the first menu screen) - 004-859-4C1+3E4-869-80C+0A4-879-F7D - - - - Total Carnage (USA, Europe) - - Infinite grenades - FA2-28D-4C1 - - - Infinite lives - 001-ADD-19E - - - Start with very little energy after 1st life - 021-B1D-F72 - - - Start with mega energy after 1st life - 991-B1D-F72 - - - Don't take damage from some enemies after getting hit - 003-55E-19E - - - Start with very little energy-1st life - 020-54B-F72 - - - Start with mega energy-1st life - 990-54B-F72 - - - Start with 1 life - 000-4FB-E66 - - - Start with 9 lives - 080-4FB-E66 - - - Start with 15 lives - 0F0-4FB-E66 - - - Start with 33 grenades - 030-5FB-E6A - - - - Track & Field (USA, Europe) - - Always have 100% power - 3E7-7FD-4CA+007-80D-E6E - - - Max angle on long jump - 45D-999-E68 - - - Max angle on javelin - 45A-1EA-E68 - - - Max angle on triple jump - 454-D1A-E68 - - - - Tumble Pop (USA, Europe) - - Infinite lives - FA5-BCD-4C1 - - - Only have 2 minutes to complete each screen - 028-8AE-E66 - - - Only have 5 minutes to complete each screen - 058-8AE-E66 - - - Only have 10 minutes to complete each screen - 0A8-8AE-E66 - - - Start across river from original position - 058-17E-E6A - - - Start at island castle - FF8-17E-E6A - - - Hold enemies inside gun as long as you want - 00E-68D-3BE - - - Start with 1 life - 008-1CE-E66 - - - Start with 6 lives - 058-1CE-E66 - - - Start with 9 lives - 088-1CE-E66 - - - - Turn and Burn (USA) - - Infinite missiles - 00E-1CD-3BE - - - Gun doesn't overheat - 001-51C-F7A - - - Start with more Aim-54 missiles - 7C2-99E-08F - - - Start with more Aim-9 missiles - 7C2-8BE-08F - - - - Ultima - Runes of Virtue (USA) - - Infinite energy - FA5-F3F-4C1+FA4-00C-4C1 - - - Infinite money - FAB-5BF-4C1 - - - Start with dexterity of 10 - Shamino codes only - can't use with Journey Onward option - 106-2B8-B3E - - - Start with dexterity of 30 - Shamino codes only - can't use with Journey Onward option - 306-2B8-B3E - - - Start with dexterity of 50 - Shamino codes only - can't use with Journey Onward option - 506-2B8-B3E - - - Start with strength of 10 - Shamino codes only - can't use with Journey Onward option - 106-2C8-B3E - - - Start with strength of 30 - Shamino codes only - can't use with Journey Onward option - 306-2C8-B3E - - - Start with strength of 50 - Shamino codes only - can't use with Journey Onward option - 506-2CA-B3E - - - Start with IQ of 10 - Shamino codes only - can't use with Journey Onward option - 106-2F8-B3E - - - Start with IQ of 30 - Shamino codes only - can't use with Journey Onward option - 306-2F8-B3E - - - Start with IQ of 50 - Shamino codes only - can't use with Journey Onward option - 506-2F8-B3E - - - Start with 15 coins - Shamino codes only - can't use with Journey Onward option - 155-658-2AA - - - Start with 40 coins - Shamino codes only - can't use with Journey Onward option - 405-658-2AA - - - Start with 60 coins - Shamino codes only - can't use with Journey Onward option - 605-658-2AA - - - No energy replacement - Shamino codes only - can't use with Journey Onward option - FAC-0AF-4C1 - - - - Universal Soldier (USA, Europe) - - Infinite energy - 008-7AC-3BE - - - Infinite time - 00A-5AF-3BE - - - Infinite lives - C93-EEF-E69 - - - Fewer enemies on each level - 00C-50E-3BA+00C-4BE-3BE - - - Start with 5 lives - 055-D1E-E66 - - - Start with 7 lives - 075-D1E-E66 - - - Start with 9 lives - 095-D1E-E66 - - - Start with 5 power lines - 056-ACE-E66 - - - Start with 7 power lines - 076-ACE-E66 - - - Start with 9 power lines - 096-ACE-E66 - - - - Wario Blast featuring Bomberman! (USA, Europe) (SGB Enhanced) - - Infinite time - 00A-5BF-3B7 - - - Collect up to 8 extra bomb power-ups - 083-F1A-F7A - - - Extra bomb power-ups don't do anything - 003-EFA-3B7 - - - Explosion expanders don't do anything - 003-D7A-3B7 - - - Start with 300 seconds - 03F-87E-E6E - - - Start with 4 extra bomb power-ups - 046-C7D-E6E - - - Start with 4 explosion expander - 046-CBD-E6A - - - Start on round 3-3 - 210-3BB-4C1+000-13B-5D4 - - - Start on round 3-Boss - 210-3BB-4C1+3C0-13B-5D4 - - - - Wario Land - Super Mario Land 3 (World) - - Don't lose current power-up when you get hit or get a new power-up (switchable) - FAD-63F-4C1 - - - Most enemies and obstacles are invisible - 003-AAB-E62+C96-C0C-4C1 - - - Multi-jump - C41-8EA-E61+C41-93A-E61+181-96A-C45+111-97A-F77 - - - Get 10 hearts for killing an enemy - 103-E4F-E6E - - - Get 25 hearts for killing an enemy - 253-E4F-E6E - - - Get 50 hearts for killing an enemy - 503-E4F-E6E - - - Get 99 hearts for killing an enemy - 993-E4F-E6E - - - Start as Small Wario - 00B-7E8-E6E - - - Start as Bull Wario - 02B-7E8-E6E - - - Start as Jet Wario - 03B-7E8-E6E - - - Start as Dragon Wario - 04B-7E8-E6E - - - Start with 10 hearts - 10B-7C8-E6A - - - Start with 25 hearts - 25B-7C8-E6A - - - Start with 50 hearts - 50B-7C8-E6A - - - Start with 99 hearts - 99B-7C8-E6A - - - Start with 10 coins - 10B-7B8-E6A - - - Start with 25 coins - 25B-7B8-E6A - - - Start with 50 coins - 50B-7B8-E6A - - - Start with 99 coins - 99B-7B8-E6A - - - Start with 10 lives - 10B-7D8-F7E - - - Start with 25 lives - 25B-7D8-F7E - - - Start with 50 lives - 50B-7D8-F7E - - - Start with 99 lives - 99B-7D8-F7E - - - Start on course 26 - 01B-7F8-E6A - - - No turbo boost - 002-40E-19A - - - Infinite turbo boost - 002-CAE-19E - - - No lap timer - 003-B7A-6E2 - - - Start with 800cc bike - 3E9-65B-6EA+029-66B-E66+009-67B-5D4 - - - Start with 650cc bike - 3E9-65B-6EA+019-66B-E66+009-67B-5D4 - - - - WCW Main Event (USA, Europe) - - Infinite time - 003-3ED-E6E - - - One hit kills - 186-06E-2AA+AF6-05E-A28 - - - Never regain energy - C95-D9E-3BA - - - Computer does massive damage - 096-3EE-E6E - - - Faster timer - 023-3ED-E6E - - - - Wild Snake (USA) (SGB Enhanced) - - Infinite time in King Cobra mode - FAB-1EF-4C1 - - - All snakes are shorter - 3E2-7ED-2AA+032-7FD-3BD - - - Only plain yellow snakes fall - 3E3-15D-08F+013-16D-7F4 - - - Only zig-zag snakes fall - 3E3-15D-08F+023-16D-7F4 - - - Only dark dotted snakes fall - 3E3-15D-08F+033-16D-7F4 - - - Only light dotted snakes fall - 3E3-15D-08F+043-16D-7F4 - - - Only dark striped snakes fall - 3E3-15D-08F+053-16D-7F4 - - - Only light striped snakes fall - 3E3-15D-08F+063-16D-7F4 - - - Only vertically striped snakes fall - 3E3-15D-08F+073-16D-7F4 - - - Only checkered snake snakes fall - 3E3-15D-08F+083-16D-7F4 - - - Only skeleton snakes fall - 3E3-15D-08F+0A3-16D-7F4 - - - Only temporarily invisible snakes fall - 3E3-15D-08F+0B3-16D-7F4 - - - Only dark snakes fall - 3E3-15D-08F+0C3-16D-7F4 - - - Only wild snakes fall - 3E3-15D-08F+0D3-16D-7F4 - - - Only king cobra snakes fall - 3E3-15D-08F+0E3-16D.-7F4 - - - Collect 1 snake in King Cobra mode and finish level - 3E6-DFD-081+3E6-E1D-C49+306-E2D-19A - - - Snakes fall very fast - 3E5-53B-081+015-54B-C47+005-55B-F71 - - - Snakes fall extremely fast - 3E5-53B-081+005-54B-C47+005-55B-F71 - - - Snakes fall slower - 3E5-53B-081+055-54B-C47+005-55B-F71 - - - Snakes fall very slow - 3E5-53B-081+1F5-54B-C47+005-55B-F71 - - - Snakes fall extremely slow - 3E5-53B-081+AF5-54B-C47+005-55B-F71 - - - - WordZap (USA) - - Infinite hints - 008-70F-3BE - - - Start with only 1 hint - 01B-C9E-F7A - - - Start with 5 hints - 05B-C9E-F7A - - - Start with 9 hints - 09B-C9E-F7A - - - Start with 1 chance - 01B-CEE-E66 - - - Start with 9 chances - 09B-CEE-E66 - - - - World Bowling (USA) - - Always bowl at full power - 3E6-94B-F71+FF6-95B-C4E - - - Get a spare even if you miss - 3E3-44A-08F+0A3-45A-A28 - - - - World Circuit Series (USA) - - No loss of speed on course you take your finger from acceleration button - 00C-A0E-19E - - - No loss of speed when you leave course-except hitting walls - 00A-E2E-3BE - - - No qualifying timer - 003-84F-3BE+C93-85F-E69 - - - - WWF King of the Ring (USA, Europe) - - No out of ring timer - 00C-0FD-E6E - - - - Xenon 2 - Megablast (USA, Europe) - - Infinite energy - FA4-16D-4C1 - - - Infinite lives - FA2-EBF-4C1 - - - Purchases at shop are free - C96-DBC-6EE - - - When you die you get an awesome ship (for a while) - 002-F4F-5D4 - - - Start with very little energy - 013-08F-A22 - - - Start with 1/3 energy - 053-08F-A22 - - - Start with 1/2 energy - 093-08F-A22 - - - Start with 2,222,222 points - 002-04F-5D4 - - - Start with 1 life - 011-75C-F7E - - - Start with 5 lives - 051-75C-F7E - - - Start with 10 lives - 0A1-75C-F7E - - - - Yogi Bear in Yogi Bear's Goldrush (USA) - - Power-up after almost every shot - 007-CB8-4CA - - - - Yoshi (USA) - - At random intervals, 1 block comes down instead of 2 - 003-BBE-193 - - - When setup screen appears, go to level select, push right once to start on level 6 - 3EC-70D-081+06C-71D-2AC+22C-72D-F71 - - - When setup screen appears, go to level select, push right once to start on level 8 - 3EC-70D-081+08C-71D-2AC+22C-72D-F71 - - - No timer for game B - 00C-71B-3BA - - - - Zen - Intergalactic Ninja (USA) - - Infinite lives - FA9-6DE-4C1 - - - Infinite energy against bullets and most enemies - FA3-36B-4C1+FA2-A4B-4C1 - - - Instant staff power-up (hold B) - 01A-3ED-F7E - - - No energy loss against fire - FA1-B1A-4C1 - - - No energy loss against hang-on enemies - FAF-DAD-4C1 - - - Start lives with 1/2 energy - 051-668-C42 - - - Start each life with 7 energy points - 071-668-C42 - - - Start with 1 life - 015-91F-E66 - - - Start with 5 lives - 055-91F-E66 - - - Start with 10 lives - 0A5-91F-E66 - - - diff --git a/higan/emulator/emulator.hpp b/higan/emulator/emulator.hpp index 26c15ccf..c8ec8b69 100755 --- a/higan/emulator/emulator.hpp +++ b/higan/emulator/emulator.hpp @@ -3,7 +3,7 @@ namespace Emulator { static const char Name[] = "higan"; - static const char Version[] = "091.11"; + static const char Version[] = "091.13"; static const char Author[] = "byuu"; static const char License[] = "GPLv3"; } diff --git a/higan/nall/emulation/super-famicom.hpp b/higan/nall/emulation/super-famicom.hpp index 3115d7ea..43be5d7e 100755 --- a/higan/nall/emulation/super-famicom.hpp +++ b/higan/nall/emulation/super-famicom.hpp @@ -119,359 +119,298 @@ SuperFamicomCartridge::SuperFamicomCartridge(const uint8_t *data, unsigned size) if(type == TypeBsx) return; if(type == TypeSufamiTurbo) return; - markup.append("\n"); - const char *range = (rom_size > 0x200000) || (ram_size > 32 * 1024) ? "0000-7fff" : "0000-ffff"; - markup.append("\n"); + markup.append("cartridge region=", region == NTSC ? "NTSC" : "PAL", "\n"); if(type == TypeSuperGameBoy1Bios || type == TypeSuperGameBoy2Bios) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " map id=rom address=00-7f,80-ff:8000-ffff\n" + " icd2 revision=1\n" + " rom name=boot.rom size=0x100\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" ); else if(has_cx4) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " hitachidsp model=HG51B169 frequency=20000000\n" + " rom id=program name=program.rom size=0x", hex(rom_size), "\n" + " rom id=data name=cx4.data.rom size=0xc00\n" + " ram id=data size=0xc00\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" + " map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000\n" + " map id=ram address=70-77:0000-7fff\n" ); else if(has_spc7110) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " spc7110\n" + " rom id=program name=program.rom size=0x100000\n" + " rom id=data name=data.rom size=0x", hex(rom_size - 0x100000), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=io address=00-3f,80-bf:4800-483f\n" + " map id=io address=50:0000-ffff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=c0-ff:0000-ffff\n" + " map id=ram address=00-3f,80-bf:6000-7fff mask=0xe000\n" ); - else if(has_sdd1) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - ); + else if(has_sdd1) { + markup.append( + " sdd1\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + ); + if(ram_size > 0) markup.append( + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=io address=00-3f,80-bf:4800-4807\n" + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000\n" + " map id=ram address=70-7f:0000-7fff\n" + ); + } else if(mapper == LoROM) { markup.append( - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-7f,80-ff:8000-ffff mask=0x8000\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=70-7f,f0-ff:", range, "\n" ); } else if(mapper == HiROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=40-7f,c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=10-3f,90-bf:6000-7fff mask=0xe000\n" ); } else if(mapper == ExLoROM) { markup.append( - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=40-7f:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff\n" + " map id=ram address=70-7f:0000-7fff\n" ); } else if(mapper == ExHiROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + ); + markup.append( + " map id=rom address=00-3f:8000-ffff offset=0x400000\n" + " map id=rom address=40-7f:0000-ffff offset=0x400000\n" + " map id=rom address=80-bf:8000-ffff offset=0x000000\n" + " map id=rom address=c0-ff:0000-ffff offset=0x000000\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=20-3f,a0-bf:6000-7fff mask=0xe000\n" + " map id=ram address=70-7f:", range, "\n" ); } else if(mapper == SuperFXROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " superfx revision=3\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " ram name=save.ram size=0x", hex(ram_size), "\n" ); markup.append( - " \n" + " map id=io address=00-3f,80-bf:3000-32ff\n" + " map id=rom address=00-3f,80-bf:8000-ffff mask=0x8000\n" + " map id=rom address=40-5f,c0-df:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=ram address=00-3f,80-bf:6000-7fff size=0x2000\n" + " map id=ram address=70-71,f0-f1:0000-ffff\n" ); } else if(mapper == SA1ROM) { markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " sa1\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" ); if(ram_size > 0) markup.append( - " \n" - " \n" - " \n" - " \n" + " ram id=bitmap name=save.ram size=0x", hex(ram_size), "\n" ); markup.append( - " \n" + " ram id=internal size=0x800\n" + " map id=io address=00-3f,80-bf:2200-23ff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=c0-ff:0000-ffff\n" + ); + if(ram_size > 0) markup.append( + " map id=bwram address=00-3f,80-bf:6000-7fff\n" + " map id=bwram address=40-4f:0000-ffff\n" + ); + markup.append( + " map id=iram address=00-3f,80-bf:3000-37ff\n" ); } else if(mapper == BSCLoROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=rom address=00-1f:8000-ffff offset=0x000000 mask=0x8000\n" + " map id=rom address=20-3f:8000-ffff offset=0x100000 mask=0x8000\n" + " map id=rom address=80-9f:8000-ffff offset=0x200000 mask=0x8000\n" + " map id=rom address=a0-bf:8000-ffff offset=0x100000 mask=0x8000\n" + " map id=ram address=70-7f,f0-ff:0000-7fff\n" + " bsxslot\n" + " map id=rom address=c0-ef:0000-ffff\n" ); else if(mapper == BSCHiROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram name=save.ram size=0x", hex(ram_size), "\n" + " map id=rom address=00-1f,80-9f:8000-ffff\n" + " map id=rom address=40-5f,c0-df:0000-ffff\n" + " map id=ram address=20-3f,a0-bf:6000-7fff\n" + " bsxslot\n" + " map id=rom address=20-3f,a0-bf:8000-ffff\n" + " map id=rom address=60-7f,e0-ff:0000-ffff\n" ); else if(mapper == BSXROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " bsx\n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " ram id=save name=save.ram size=0x", hex(ram_size), "\n" + " ram id=download name=bsx.ram size=0x40000\n" + " map id=io address=00-3f,80-bf:5000-5fff\n" + " map id=rom address=00-3f,80-bf:8000-ffff\n" + " map id=rom address=40-7f,c0-ff:0000-ffff\n" + " map id=ram address=20-3f:6000-7fff\n" ); else if(mapper == STROM) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " rom name=program.rom size=0x", hex(rom_size), "\n" + " map id=rom address='00-1f,80-9f:8000-ffff mask=0x8000\n" + " sufamiturbo\n" + " slot id=A\n" + " map id=rom address=20-3f,a0-bf:8000-ffff mask=0x8000\n" + " map id=ram address=60-63,e0-e3:8000-ffff\n" + " slot id=B\n" + " map id=rom address=40-5f,c0-df:8000-ffff mask=0x8000\n" + " map id=ram address=70-73,f0-f3:8000-ffff\n" ); if(has_spc7110rtc) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " epsonrtc\n" + " ram name=rtc.ram size=0x10\n" + " map id=io address=00-3f,80-bf:4840-4842\n" ); if(has_srtc) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " sharprtc\n" + " ram name=rtc.ram size=0x10\n" + " map id=io address=00-3f,80-bf:2800-2801\n" ); if(has_obc1) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " obc1\n" + " ram name=save.ram size=0x2000\n" + " map id=io address=00-3f,80-bf:6000-7fff\n" ); if(has_dsp1) { - //91e87d11e1c30d172556bed2211cce2efa94ba595f58c5d264809ef4d363a97b dsp1.rom markup.append( - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp1b.program.rom size=0x1800\n" + " rom id=data name=dsp1b.data.rom size=0x800\n" + " ram id=data size=0x200\n" ); if(dsp1_mapper == DSP1LoROM1MB) markup.append( - " \n" - " \n" - " \n" - " \n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(dsp1_mapper == DSP1LoROM2MB) markup.append( - " \n" - " \n" - " \n" - " \n" + " map id=io address=60-6f,e0-ef:0000-7fff select=0x4000\n" ); if(dsp1_mapper == DSP1HiROM) markup.append( - " \n" - " \n" - " \n" - " \n" - ); - markup.append( - " \n" + " map id=io address=00-1f,80-9f:6000-7fff select=0x1000\n" ); } if(has_dsp2) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp2.program.rom size=0x1800\n" + " rom id=data name=dsp2.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(has_dsp3) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp3.program.rom size=0x1800\n" + " rom id=data name=dsp3.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map id=io address=20-3f,a0-bf:8000-ffff select=0x4000\n" ); if(has_dsp4) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD7725 frequency=8000000\n" + " rom id=program name=dsp4.program.rom size=0x1800\n" + " rom id=data name=dsp4.data.rom size=0x800\n" + " ram id=data size=0x200\n" + " map address=30-3f,b0-bf:8000-ffff select=0x4000\n" ); if(has_st010) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD96050 frequency=11000000\n" + " rom id=program name=st010.program.rom size=0xc000\n" + " rom id=data name=st010.data.rom size=0x1000\n" + " ram id=data name=save.ram size=0x1000\n" + " map id=io address=60-67,e0-e7:0000-3fff select=0x0001\n" + " map id=ram address=68-6f,e8-ef:0000-7fff\n" ); if(has_st011) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" + " necdsp model=uPD96050 frequency=15000000\n" + " rom id=program name=st011.program.rom size=0xc000\n" + " rom id=data name=st011.data.rom size=0x1000\n" + " ram id=data name=save.ram size=0x1000\n" + " map id=io address=60-67,e0-e7:0000-3fff select=0x0001\n" + " map id=ram address=68-6f,e8-ef:0000-7fff\n" ); if(has_st018) markup.append( - " \n" - " \n" - " \n" - " \n" - " \n" + " armdsp frequency=21477272\n" + " rom id=program name=st018.program.rom size=0x20000\n" + " rom id=data name=st018.data.rom size=0x8000\n" + " ram name=save.ram size=0x4000\n" + " map id=io address=00-3f,80-bf:3800-38ff\n" ); - - markup.append("\n"); - markup.transform("'", "\""); } void SuperFamicomCartridge::read_header(const uint8_t *data, unsigned size) { diff --git a/higan/profile/BS-X Satellaview.sfc/manifest.bml b/higan/profile/BS-X Satellaview.sfc/manifest.bml index 1d51a08c..c0126207 100644 --- a/higan/profile/BS-X Satellaview.sfc/manifest.bml +++ b/higan/profile/BS-X Satellaview.sfc/manifest.bml @@ -1,8 +1,8 @@ cartridge region=NTSC bsx rom name=program.rom size=0x100000 - ram name=save.rwm size=0x8000 - psram name=bsx.rwm size=0x40000 + ram id=save name=save.ram size=0x8000 + ram id=download name=bsx.ram size=0x40000 map id=io address=00-3f,80-bf:5000-5fff map id=rom address=00-3f,80-bf:8000-ffff map id=rom address=40-7f,c0-ff:0000-7fff diff --git a/higan/sfc/cartridge/cartridge.hpp b/higan/sfc/cartridge/cartridge.hpp index b7916dc3..6735eb78 100755 --- a/higan/sfc/cartridge/cartridge.hpp +++ b/higan/sfc/cartridge/cartridge.hpp @@ -87,7 +87,7 @@ private: void parse_markup_sa1(Markup::Node); void parse_markup_superfx(Markup::Node); void parse_markup_armdsp(Markup::Node); - void parse_markup_hitachidsp(Markup::Node); + void parse_markup_hitachidsp(Markup::Node, unsigned roms); void parse_markup_necdsp(Markup::Node); void parse_markup_epsonrtc(Markup::Node); void parse_markup_sharprtc(Markup::Node); diff --git a/higan/sfc/cartridge/markup.cpp b/higan/sfc/cartridge/markup.cpp index 076c166c..5fd2be10 100755 --- a/higan/sfc/cartridge/markup.cpp +++ b/higan/sfc/cartridge/markup.cpp @@ -1,7 +1,7 @@ #ifdef CARTRIDGE_CPP void Cartridge::parse_markup(const char *markup) { - auto cartridge = Markup::Document(markup)["release/cartridge"]; + auto cartridge = Markup::Document(markup)["cartridge"]; region = cartridge["region"].data != "PAL" ? Region::NTSC : Region::PAL; mapping.reset(); @@ -15,7 +15,7 @@ void Cartridge::parse_markup(const char *markup) { parse_markup_sa1(cartridge["sa1"]); parse_markup_superfx(cartridge["superfx"]); parse_markup_armdsp(cartridge["armdsp"]); - parse_markup_hitachidsp(cartridge["hitachidsp"]); + parse_markup_hitachidsp(cartridge["hitachidsp"], cartridge["board/type"].data.wildcard("2DC*") ? 2 : 1); parse_markup_necdsp(cartridge["necdsp"]); parse_markup_epsonrtc(cartridge["epsonrtc"]); parse_markup_sharprtc(cartridge["sharprtc"]); @@ -320,7 +320,7 @@ void Cartridge::parse_markup_armdsp(Markup::Node root) { string programROMName = root["rom(id=program)/name"].data; string dataROMName = root["rom(id=data)/name"].data; - string dataRAMName = root["ram/name"].data; + string dataRAMName = root["ram(id=data)/name"].data; interface->loadRequest(ID::ArmDSPPROM, programROMName); interface->loadRequest(ID::ArmDSPDROM, dataROMName); @@ -340,25 +340,27 @@ void Cartridge::parse_markup_armdsp(Markup::Node root) { } } -void Cartridge::parse_markup_hitachidsp(Markup::Node root) { +void Cartridge::parse_markup_hitachidsp(Markup::Node root, unsigned roms) { if(root.exists() == false) return; has_hitachidsp = true; for(auto &n : hitachidsp.dataROM) hitachidsp.dataROM[n] = 0x000000; for(auto &n : hitachidsp.dataRAM) hitachidsp.dataRAM[n] = 0x00; - hitachidsp.frequency = numeral(root["frequency"].data); - if(hitachidsp.frequency == 0) hitachidsp.frequency = 20000000; + hitachidsp.Frequency = numeral(root["frequency"].data); + if(hitachidsp.Frequency == 0) hitachidsp.frequency = 20000000; + hitachidsp.Roms = roms; string dataROMName = root["rom(id=data)/name"].data; - string dataRAMName = root["ram/name"].data; + string dataRAMName = root["ram(id=data)/name"].data; interface->loadRequest(ID::HitachiDSPDROM, dataROMName); if(dataRAMName.empty() == false) { - interface->loadRequest(ID::HitachiDSPRAM, dataRAMName); + interface->loadRequest(ID::HitachiDSPDRAM, dataRAMName); } - parse_markup_memory(hitachidsp.rom, root["rom(id!=data)"], ID::HitachiDSPROM, false); + parse_markup_memory(hitachidsp.rom, root["rom(id=program)"], ID::HitachiDSPROM, false); + parse_markup_memory(hitachidsp.ram, root["ram(id=program)"], ID::HitachiDSPRAM, true); for(auto &node : root) { if(node.name != "map") continue; @@ -375,6 +377,13 @@ void Cartridge::parse_markup_hitachidsp(Markup::Node root) { if(m.size == 0) m.size = hitachidsp.rom.size(); mapping.append(m); } + + if(node["id"].data == "ram") { + Mapping m({&HitachiDSP::ram_read, &hitachidsp}, {&HitachiDSP::ram_write, &hitachidsp}); + parse_markup_map(m, node); + if(m.size == 0) m.size = hitachidsp.ram.size(); + mapping.append(m); + } } } @@ -395,7 +404,7 @@ void Cartridge::parse_markup_necdsp(Markup::Node root) { string programROMName = root["rom(id=program)/name"].data; string dataROMName = root["rom(id=data)/name"].data; - string dataRAMName = root["ram/name"].data; + string dataRAMName = root["ram(id=data)/name"].data; if(necdsp.revision == NECDSP::Revision::uPD7725) { interface->loadRequest(ID::Nec7725DSPPROM, programROMName); @@ -418,20 +427,15 @@ void Cartridge::parse_markup_necdsp(Markup::Node root) { for(auto &node : root) { if(node.name != "map") continue; - if(node["id"].data == "dr") { - Mapping m({&NECDSP::dr_read, &necdsp}, {&NECDSP::dr_write, &necdsp}); - parse_markup_map(m, node); - mapping.append(m); - } - - if(node["id"].data == "sr") { - Mapping m({&NECDSP::sr_read, &necdsp}, {&NECDSP::sr_write, &necdsp}); + if(node["id"].data == "io") { + Mapping m({&NECDSP::read, &necdsp}, {&NECDSP::write, &necdsp}); parse_markup_map(m, node); mapping.append(m); + necdsp.Select = numeral(node["select"].data); } if(node["id"].data == "ram") { - Mapping m({&NECDSP::dp_read, &necdsp}, {&NECDSP::dp_write, &necdsp}); + Mapping m({&NECDSP::ram_read, &necdsp}, {&NECDSP::ram_write, &necdsp}); parse_markup_map(m, node); mapping.append(m); } diff --git a/higan/sfc/chip/hitachidsp/hitachidsp.cpp b/higan/sfc/chip/hitachidsp/hitachidsp.cpp index e895b30c..2a472b00 100755 --- a/higan/sfc/chip/hitachidsp/hitachidsp.cpp +++ b/higan/sfc/chip/hitachidsp/hitachidsp.cpp @@ -38,6 +38,7 @@ void HitachiDSP::load() { void HitachiDSP::unload() { rom.reset(); + ram.reset(); } void HitachiDSP::power() { @@ -57,7 +58,7 @@ void HitachiDSP::power() { } void HitachiDSP::reset() { - create(HitachiDSP::Enter, frequency); + create(HitachiDSP::Enter, Frequency); HG51B::power(); } diff --git a/higan/sfc/chip/hitachidsp/hitachidsp.hpp b/higan/sfc/chip/hitachidsp/hitachidsp.hpp index 408f1a32..06d8f5ff 100755 --- a/higan/sfc/chip/hitachidsp/hitachidsp.hpp +++ b/higan/sfc/chip/hitachidsp/hitachidsp.hpp @@ -1,7 +1,10 @@ struct HitachiDSP : Processor::HG51B, Coprocessor { - MappedRAM rom; + unsigned Frequency; + unsigned Roms; + + MappedRAM rom; + MappedRAM ram; - unsigned frequency; #include "mmio.hpp" static void Enter(); @@ -21,6 +24,10 @@ struct HitachiDSP : Processor::HG51B, Coprocessor { uint8 rom_read(unsigned addr); void rom_write(unsigned addr, uint8 data); + //CPU RAM read/write + uint8 ram_read(unsigned addr); + void ram_write(unsigned addr, uint8 data); + //CPU MMIO read/write uint8 dsp_read(unsigned addr); void dsp_write(unsigned addr, uint8 data); diff --git a/higan/sfc/chip/hitachidsp/memory.cpp b/higan/sfc/chip/hitachidsp/memory.cpp index e4f5b1a9..d4d5003b 100755 --- a/higan/sfc/chip/hitachidsp/memory.cpp +++ b/higan/sfc/chip/hitachidsp/memory.cpp @@ -1,29 +1,39 @@ #ifdef HITACHIDSP_CPP uint8 HitachiDSP::bus_read(uint24 addr) { - if((addr & 0x408000) == 0x008000) return bus.read(addr); + if((addr & 0x408000) == 0x008000) return bus.read(addr); //$00-3f,80-bf:6000-7fff + if((addr & 0xf88000) == 0x700000) return bus.read(addr); //$70-77:0000-7fff return 0x00; } void HitachiDSP::bus_write(uint24 addr, uint8 data) { - if((addr & 0x40e000) == 0x006000) return bus.write(addr, data); + if((addr & 0x40e000) == 0x006000) return bus.write(addr, data); //$00-3f,80-bf:6000-7fff + if((addr & 0xf88000) == 0x700000) return bus.write(addr, data); //$70-77:0000-7fff } uint8 HitachiDSP::rom_read(unsigned addr) { - if(co_active() == cpu.thread) { - if(regs.halt) return rom.read(addr); - if((addr & 0x40ffe0) == 0x00ffe0) return mmio.vector[addr & 0x1f]; - return cpu.regs.mdr; - } - if(co_active() == hitachidsp.thread) { + if(co_active() == hitachidsp.thread || regs.halt) { + addr = bus.mirror(addr, rom.size()); + //if(Roms == 2 && mmio.r1f52 == 1 && addr >= (bit::round(rom.size()) >> 1)) return 0x00; return rom.read(addr); } + if((addr & 0x40ffe0) == 0x00ffe0) return mmio.vector[addr & 0x1f]; return cpu.regs.mdr; } void HitachiDSP::rom_write(unsigned addr, uint8 data) { } +uint8 HitachiDSP::ram_read(unsigned addr) { + if(ram.size() == 0) return 0x00; //not open bus + return ram.read(bus.mirror(addr, ram.size())); +} + +void HitachiDSP::ram_write(unsigned addr, uint8 data) { + if(ram.size() == 0) return; + return ram.write(bus.mirror(addr, ram.size()), data); +} + uint8 HitachiDSP::dsp_read(unsigned addr) { addr &= 0x1fff; diff --git a/higan/sfc/chip/necdsp/necdsp.cpp b/higan/sfc/chip/necdsp/necdsp.cpp index 31e9329c..37c9eb14 100755 --- a/higan/sfc/chip/necdsp/necdsp.cpp +++ b/higan/sfc/chip/necdsp/necdsp.cpp @@ -20,14 +20,33 @@ void NECDSP::enter() { } } -uint8 NECDSP::sr_read(unsigned) { cpu.synchronize_coprocessors(); return uPD96050::sr_read(); } -void NECDSP::sr_write(unsigned, uint8 data) { cpu.synchronize_coprocessors(); return uPD96050::sr_write(data); } +uint8 NECDSP::read(unsigned addr) { + cpu.synchronize_coprocessors(); + if(addr & Select) { + return uPD96050::sr_read(); + } else { + return uPD96050::dr_read(); + } +} -uint8 NECDSP::dr_read(unsigned) { cpu.synchronize_coprocessors(); return uPD96050::dr_read(); } -void NECDSP::dr_write(unsigned, uint8 data) { cpu.synchronize_coprocessors(); return uPD96050::dr_write(data); } +void NECDSP::write(unsigned addr, uint8 data) { + cpu.synchronize_coprocessors(); + if(addr & Select) { + return uPD96050::sr_write(data); + } else { + return uPD96050::dr_write(data); + } +} -uint8 NECDSP::dp_read(unsigned addr) { cpu.synchronize_coprocessors(); return uPD96050::dp_read(addr); } -void NECDSP::dp_write(unsigned addr, uint8 data) { cpu.synchronize_coprocessors(); return uPD96050::dp_write(addr, data); } +uint8 NECDSP::ram_read(unsigned addr) { + cpu.synchronize_coprocessors(); + return uPD96050::dp_read(addr); +} + +void NECDSP::ram_write(unsigned addr, uint8 data) { + cpu.synchronize_coprocessors(); + return uPD96050::dp_write(addr, data); +} void NECDSP::init() { } diff --git a/higan/sfc/chip/necdsp/necdsp.hpp b/higan/sfc/chip/necdsp/necdsp.hpp index f2fff900..5f2ca39d 100755 --- a/higan/sfc/chip/necdsp/necdsp.hpp +++ b/higan/sfc/chip/necdsp/necdsp.hpp @@ -1,15 +1,14 @@ struct NECDSP : Processor::uPD96050, Coprocessor { + unsigned Select; + static void Enter(); void enter(); - uint8 sr_read(unsigned); - void sr_write(unsigned, uint8 data); + uint8 read(unsigned addr); + void write(unsigned addr, uint8 data); - uint8 dr_read(unsigned); - void dr_write(unsigned, uint8 data); - - uint8 dp_read(unsigned addr); - void dp_write(unsigned addr, uint8 data); + uint8 ram_read(unsigned addr); + void ram_write(unsigned addr, uint8 data); void init(); void load(); diff --git a/higan/sfc/interface/interface.cpp b/higan/sfc/interface/interface.cpp index 7df959c7..6e789522 100755 --- a/higan/sfc/interface/interface.cpp +++ b/higan/sfc/interface/interface.cpp @@ -43,8 +43,9 @@ unsigned Interface::group(unsigned id) { case ID::ArmDSPDROM: case ID::ArmDSPRAM: case ID::HitachiDSPROM: - case ID::HitachiDSPDROM: case ID::HitachiDSPRAM: + case ID::HitachiDSPDROM: + case ID::HitachiDSPDRAM: case ID::Nec7725DSPPROM: case ID::Nec7725DSPDROM: case ID::Nec7725DSPRAM: @@ -130,13 +131,12 @@ void Interface::load(unsigned id, const stream &stream, const string &manifest) for(unsigned n = 0; n < 16 * 1024; n++) armdsp.programRAM[n] = stream.read(); } - if(id == ID::HitachiDSPROM) { - hitachidsp.rom.read(stream); - } + if(id == ID::HitachiDSPROM) hitachidsp.rom.read(stream); + if(id == ID::HitachiDSPRAM) hitachidsp.ram.read(stream); if(id == ID::HitachiDSPDROM) { for(unsigned n = 0; n < 1024; n++) hitachidsp.dataROM[n] = stream.readl(3); } - if(id == ID::HitachiDSPRAM) { + if(id == ID::HitachiDSPDRAM) { for(unsigned n = 0; n < 3072; n++) hitachidsp.dataRAM[n] = stream.readl(1); } @@ -215,11 +215,12 @@ void Interface::save(unsigned id, const stream &stream) { for(unsigned n = 0; n < 16 * 1024; n++) stream.write(armdsp.programRAM[n]); } - if(id == ID::HitachiDSPRAM) { + if(id == ID::HitachiDSPRAM) stream.write(hitachidsp.ram.data(), hitachidsp.ram.size()); + if(id == ID::HitachiDSPDRAM) { for(unsigned n = 0; n < 3072; n++) stream.writel(hitachidsp.dataRAM[n], 1); } - if(id == ID::Nec96050DSPRAM) { + if(id == ID::Nec7725DSPRAM) { for(unsigned n = 0; n < 256; n++) stream.writel(necdsp.dataRAM[n], 2); } if(id == ID::Nec96050DSPRAM) { @@ -351,11 +352,11 @@ void Interface::exportMemory() { string pathname = {path(group(ID::ROM)), "debug/"}; directory::create(pathname); - file::write({pathname, "wram.rwm"}, cpu.wram, 128 * 1024); - file::write({pathname, "vram.rwm"}, ppu.vram, 64 * 1024); - file::write({pathname, "oam.rwm"}, ppu.oam, 544); - file::write({pathname, "cgram.rwm"}, ppu.cgram, 512); - file::write({pathname, "apuram.rwm"}, smp.apuram, 64 * 1024); + file::write({pathname, "work.ram"}, cpu.wram, 128 * 1024); + file::write({pathname, "video.ram"}, ppu.vram, 64 * 1024); + file::write({pathname, "sprite.ram"}, ppu.oam, 544); + file::write({pathname, "palette.ram"}, ppu.cgram, 512); + file::write({pathname, "apu.ram"}, smp.apuram, 64 * 1024); } Interface::Interface() { diff --git a/higan/sfc/interface/interface.hpp b/higan/sfc/interface/interface.hpp index 7519f7b4..f75568fc 100755 --- a/higan/sfc/interface/interface.hpp +++ b/higan/sfc/interface/interface.hpp @@ -36,8 +36,9 @@ struct ID { ArmDSPRAM, HitachiDSPROM, - HitachiDSPDROM, HitachiDSPRAM, + HitachiDSPDROM, + HitachiDSPDRAM, Nec7725DSPPROM, Nec7725DSPDROM, diff --git a/higan/target-ethos/Makefile b/higan/target-ethos/Makefile index b1b190ed..6736c99c 100755 --- a/higan/target-ethos/Makefile +++ b/higan/target-ethos/Makefile @@ -1,3 +1,5 @@ +name := higan + processors := arm gsu hg51b lr35902 r6502 r65816 spc700 upd96050 include processor/Makefile @@ -6,7 +8,6 @@ include sfc/Makefile include gb/Makefile include gba/Makefile # include nds/Makefile -name := higan ui_objects := ui-ethos ui-configuration ui-interface ui-utility ui_objects += ui-input ui-window ui-general ui-settings ui-tools @@ -73,7 +74,7 @@ else endif resource: - sourcery $(ui)/resource/resource.xml $(ui)/resource/resource.cpp $(ui)/resource/resource.hpp + sourcery $(ui)/resource/resource.bml $(ui)/resource/resource.cpp $(ui)/resource/resource.hpp install: ifeq ($(USER),root) @@ -86,7 +87,7 @@ else ifeq ($(platform),x) mkdir -p ~/.config/$(name) cp -R profile/* ~/.config/$(name) - cp data/cheats.xml ~/.config/$(name)/cheats.xml + cp data/cheats.bml ~/.config/$(name)/cheats.bml chmod -R 777 ~/.config/$(name) endif diff --git a/higan/target-ethos/resource/resource.bml b/higan/target-ethos/resource/resource.bml new file mode 100644 index 00000000..ad907f33 --- /dev/null +++ b/higan/target-ethos/resource/resource.bml @@ -0,0 +1,6 @@ +resource name=resource + binary id=cabinet name=cabinet.png + binary id=folder name=folder.png + binary id=file name=file.png + binary id=home name=home.png + binary id=up name=up.png diff --git a/higan/target-ethos/resource/resource.xml b/higan/target-ethos/resource/resource.xml deleted file mode 100755 index 0a434a47..00000000 --- a/higan/target-ethos/resource/resource.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/higan/target-ethos/tools/cheat-database.cpp b/higan/target-ethos/tools/cheat-database.cpp index 1aefcd7b..83026fc7 100755 --- a/higan/target-ethos/tools/cheat-database.cpp +++ b/higan/target-ethos/tools/cheat-database.cpp @@ -34,18 +34,16 @@ void CheatDatabase::findCodes() { cheatList.reset(); cheat.reset(); - string data; - data.readfile(application->path("cheats.xml")); - XML::Document document(data); - for(auto &node : document["database"]) { + auto document = Markup::Document(string::read(application->path("cheats.bml"))); + for(auto &node : document) { if(node.name != "cartridge") continue; - if(node["sha256"].data != sha256) continue; + if(node["sha256"].text() != sha256) continue; - setTitle(node["name"].data); + setTitle(node["name"].text()); for(auto &cheat : node) { if(cheat.name != "cheat") continue; - cheatList.append(cheat["description"].data); - this->cheat.append({cheat["code"].data, cheat["description"].data}); + cheatList.append(cheat["description"].text()); + this->cheat.append({cheat["code"].text(), cheat["description"].text()}); } setVisible(); diff --git a/higan/target-ethos/tools/cheat-editor.cpp b/higan/target-ethos/tools/cheat-editor.cpp index 4f6d5494..682244df 100755 --- a/higan/target-ethos/tools/cheat-editor.cpp +++ b/higan/target-ethos/tools/cheat-editor.cpp @@ -125,16 +125,16 @@ void CheatEditor::updateDesc() { } bool CheatEditor::load(const string &filename) { - string data; - if(data.readfile(filename) == false) return false; + string data = string::read(filename); + if(data.empty()) return false; unsigned n = 0; - XML::Document document(data); + auto document = Markup::Document(data); for(auto &node : document["cartridge"]) { if(node.name != "cheat") continue; - cheatList.setChecked(n, node["enable"].data == "true"); - cheat[n].code = node["code"].data; - cheat[n].desc = node["description"].data; + cheatList.setChecked(n, node["enabled"].exists()); + cheat[n].code = node["code"].text(); + cheat[n].desc = node["description"].text(); if(++n >= Codes) break; } @@ -160,15 +160,12 @@ bool CheatEditor::save(const string &filename) { file fp; if(fp.open(filename, file::mode::write) == false) return false; - fp.print("\n"); - fp.print("\n"); + fp.print("cartridge sha256:", system().sha256(), "\n"); for(unsigned n = 0; n <= lastSave; n++) { - fp.print(" \n"); - fp.print(" \n"); - fp.print(" \n"); - fp.print(" \n"); + fp.print(" cheat", cheatList.checked(n) ? " enabled\n" : "\n"); + fp.print(" description:", cheat[n].desc, "\n"); + fp.print(" code:", cheat[n].code, "\n"); } - fp.print("\n"); fp.close(); return true; diff --git a/higan/target-ethos/utility/utility.cpp b/higan/target-ethos/utility/utility.cpp index 521a6ffe..a67a6a3d 100755 --- a/higan/target-ethos/utility/utility.cpp +++ b/higan/target-ethos/utility/utility.cpp @@ -62,7 +62,7 @@ void Utility::loadMedia(Emulator::Interface *emulator, Emulator::Interface::Medi if(this->pathname.size() == 0) this->pathname.append(pathname); presentation->setSystemName(media.name); - load(Markup::Document(manifest)["release/information/title"].text()); + load(Markup::Document(manifest)["information/title"].text()); } //request from emulation core to load non-volatile media folder @@ -118,7 +118,7 @@ void Utility::load(string title) { } presentation->setTitle(title); - cheatEditor->load({pathname[0], "cheats.xml"}); + cheatEditor->load({pathname[0], "cheats.bml"}); stateManager->load({pathname[0], "bsnes/states.bsa"}, 1); system().paletteUpdate(); @@ -133,7 +133,7 @@ void Utility::unload() { if(application->active == nullptr) return; if(tracerEnable) tracerToggle(); - cheatEditor->save({pathname[0], "cheats.xml"}); + cheatEditor->save({pathname[0], "cheats.bml"}); stateManager->save({pathname[0], "bsnes/states.bsa"}, 1); system().unload();