Dr. Robotnik's Mean Bean Machine (Genesis)
Dr. Robotnik's Mean Bean Machine (Genesis)
Dr. Robotnik's Mean Bean Machine |
---|
Based on: Puyo Puyo This game has unused areas. This game has a notes page This game has a prototype article |
Dr. Robotnik's Mean Bean Machine is a Westernized Puyo Puyo based on the syndicated cartoon Adventures of Sonic the Hedgehog.
To do:
|
Contents
1 Unused Graphics
1.1 Gameplay
1.2 Lesson Mode
1.3 Cutscene Sprites
1.4 Game Over
2 High Score
2.1 Misc Fonts
3 Unused Stages
4 Sound Test
4.1 Unused Music
4.2 Game Genie Codes
5 Checksum Error
6 Unused Tilemaps
7 Sixth Puyo Color
8 Lockout Screen
Unused Graphics
Most of these are leftovers from Puyo Puyo.
Gameplay
Perhaps unsurprisingly, the game still contains unused assets from the arcade Puyo Puyo. The game no longer contains the "Insert Coin" prompt that was buried in the Mega Drive Puyo Puyo's title screen data, but still contains the credit(s) counter in its gameplay sprite data.
8x16 text is used rather than a unique graphic for the PAUSE text. This is the one used in Puyo Puyo.
Graphics used in Puyo Puyo to denote the 1P VS 2P difficulty modes.
While the game only uses numbers from 1 to 5 to mark the difficulty levels, other numbers do exist.
Lesson Mode
The entire Endless/Lesson Mode tileset is still present in the game, but is never used. As this game uses only one graphic pointer for the entirety of Scenario Mode (unlike Puyo Puyo), the leftover Lesson Stages do not actually load this tileset. Note that the palette which should be used for these tiles either has been removed or it's never loaded, so the one from Puyo Puyo is used in the image.
This shadowed block was part of the background in the Endless Mode from Puyo Puyo. While a similar set of tiles is still used as the background of various screens, this one is not.
The flashing square is only used in the first Lesson stage.
This is the tutorial text shown in the first Lesson Stage in Puyo Puyo. Since this is only present in the Endless Mode tileset (which is never loaded during gameplay), the actual object appears scrambled when the stage is accessed in the game.
Cutscene Sprites
Graphics of Arle! They are always loaded initially (and then partially overwritten) during cutscenes due to developer laziness as they contain the dialog box sprites.
Sprites of Harpy exist too for whatever reason; these are probably the forgotten duplicate Harpy sprite data from Puyo Puyo, as these are never even loaded by Mean Bean Machine either.
Game Over
Leftovers from the Game Over screen of Puyo Puyo. Unsurprisingly, they are never loaded in memory too.
More leftovers from Game Over screens, this time from the 1P VS 2P Mode.
High Score
The graphics from High Score screen used in Puyo Puyo were replaced during the conversion, but not completely as they still get loaded in memory.
The High Score screen only uses letters.
This was used to mark the different game modes. Appropriate graphics exist and are used in this game.
Misc Fonts
The original font of Puyo Puyo is only used in the Checksum Error Screen, so most of it is unused, including numbers and their duplicates.
Another leftover from Puyo Puyo. The font used in the demo mode of the original game obviously isn't used here.
While this 8x16 font is used during the cast roll in Puyo Puyo, this game uses a different 8x8 one. This is another of the few graphics to never get loaded.
Unused Stages
The Lesson Stages of Puyo Puyo are still present, and can be accessed via patch code 00BEFE:00?? (where "??" is 00, 01, or 02), although they're a bit glitchy: the tutorial text is scrambled, no music plays, Coconuts stands at odd positions in the stage intros, and Scratch takes the place of Skeleton-T as the challenger. The flashing squares showing which beans can be cleared with the current piece still remain, though. Beating the third Lesson Stage advances the player to the ending scene.
A misplaced Coconuts in Stage 3.
Scrambled tutorial text.
Flashing squares showing which beans can be cleared.
Sound Test
In the Genesis Puyo Puyo, the game was programmed to check the RAM at 00FFFC02 was set to 0000. If this was the case, the Sound Test would not display in the Options. If you beat the Scenario Mode once or use a code at the Title Screen, it would send FFFF to the RAM at 00FFFC02. This would then display the Sound Test in the Options.
In the Korean version of Mean Bean Machine, as well as the prototype (when the hardware region is Japanese), the Sound Test is automatically available upon starting the game. Other versions of the game still retain the code to check if the Sound Test can be displayed in the Options, albeit normally inaccessible.
Code to display the text "SOUND TEST" in "OPTIONS" (USA Version):
0233F8 4A 79 TST.W ($00FFFC02) ; Checks the word in FFFC02.
0233FE 67 14 BEQ #$14 [023414] ; If word is 0000, then jump to 23414.
023402 10 3C MOVE.B #$07,D0 ; Copy byte 07 to D0 (option that is selected).
023406 3A 3C MOVE.W #$0B9E,D5 ; Copy byte 0B9E to D5 (text position).
02340A 43 F9 LEA ($00023416),A1 ; Load 023416 into A1.
023410 61 00 BSR #$FB16 [022F28] ; Jump to 23F28.
023414 4E 75 RTS ; Return to start.
Code for number of options to select in "OPTIONS" (USA Version):
023088 14 3C MOVE.B #$06,D2 ; Copy byte 06 to D2 (Sound Test can't be selected).
02308C 4A 79 TST.W ($00FFFC02) ; Checks the word in FFFC02.
023092 67 06 BEQ #$06 [02309A] ; If word is 0000, then jump to 2309A.
023096 14 3C MOVE.B #$07,D2 ; Copy byte 07 to D2 (Sound Test can be selected).
02309A
Unlike the Genesis Puyo Puyo, the code has been removed so you can't unlock the Sound Test if you beat Scenario Mode or enter a code at the Title Screen. The programmers have added some code that loads before the Title Screen, where FFFF is moved to the RAM at 00FFFC02 (so the Sound Test will display). It then checks the Hardware Version of the Mega Drive. If the Mega Drive is not Japanese, then it reverses the bytes so 0000 is now in the RAM at 00FFFC02 (so the Sound Test will not display).
Code is activated before the Title Screen (USA Version):
00E102 33 FC MOVE.W #$FFFF,($00FFFC02) ; Move FFFF to FFFC02.
00E10A 61 00 BSR #$0BAE [00ECBA] ; Jump to 00ECBA.
00ECBA 10 39 MOVE.B ($00A10001),D0 ; Copy Hardware Version byte (A10001) to D0.
00ECC0 02 00 ANDI.B #$C0,D0 ; Perform a logical AND on C0 and byte in D0 (basically
bits 6 to 0 will always become 0, while bit 8 [Region]
and bit 7 [Display] are kept the same).
00ECC4 67 14 BEQ #$14 [00ECDA] ; If bits 7 & 6 equal 00, then jump to ECDA.
00ECC6 30 39 MOVE.W ($00FFFC02),D0 ; Move word from FFFC02 to D0.
00ECCC 46 40 NOT.W D0 ; Reverse the bits in D0.
00ECCE 33 C0 MOVE.W D0,($00FFFC02) ; Move word from D0 to FFFC02.
00ECD4 4E F9 JMP ($00023536) ; Jump to 23536.
00ECDA 4E 75 RTS ; Return to start.
In the Sonic Classics version, the code to prevent the Sound Test from being displayed has been modified. The code to check the Hardware Version is still there, but the rest of the instructions have been set to no operation (with two instructions not doing anything useful). Then 0000 is moved to the RAM at 00FFFC02 (so the Sound Test will not display).
Code is activated before the SEGA Logo (Sonic Classic - USA/Europe V1.1):
1224F6 10 39 MOVE.B ($00A10001),D0 ; Copy Hardware Version Byte (A10001) to D0.
1224FC 02 00 ANDI.B #$C0,D0 ; Perform a logical AND on C0 and byte in D0 (basically
bits 6 to 0 will always become 0, while bit 8 [Region]
and bit 7 [Display] are kept the same).
122500 04 00 SUBI.B #$00,D0 ; Subtract 0 from D0.
122504 4E 71 NOP ; No operation.
122506 4E 71 NOP ; No operation.
122508 4E 71 NOP ; No operation.
12250A 4E 71 NOP ; No operation.
12250C 13 FC MOVE.B #$00,($00FF0A3A) ; Move 00 to FF0A3A.
122514 4E 75 RTS ; Return to start.
Code is activated before the Title Screen (Sonic Classic - USA/Europe V1.1):
10E10C 33 FC MOVE.W #$0000,($00FFFC02) ; Move 0000 to FFFC02.
10E114 61 00 BSR #$0BAE [10ECC4] ; Jump to 0BAE.
Unused Music
The game has 26 tracks (this includes the "No Music" track)", but the game only allows 19 of them to be selected in the Sound Test. The programmers have added some code that checks the Hardware Version of the Mega Drive. If the Mega Drive is Japanese, then it increases the value so all 26 tracks can be selected instead of 19.
Code to unlock extra sounds if the Hardware Version is Japan (USA Version):
0227FC 1E 39 MOVE.B ($00A10001),D7 ; Copy Hardware Version byte (A10001) to D7.
022802 02 07 ANDI.B #$C0,D7 ; Check bits 7 & 6 from D7 (Region & Display).
022806 66 04 BNE #$04 [02280C] ; If bits 7 & 6 are not 00, then jump to 2280C.
022808 14 3C MOVE.B #$1A,D2 ; Copy byte 1A to D2 (26 tracks can be selected).
02280C
If you go to the following ROM location, you can change the hex byte from 13 to 1A. This will allow you to select all the tracks on any Hardware Version of the Mega Drive.
Number of tracks to select (USA Version):
022839 = Number of "Music Tracks" that can selected in Sound Test.
Present in the Sound Test are 6 unused tracks. These are mostly leftover tracks from the Genesis Puyo Puyo. Some are based from Genesis Puyo Puyo, but have been updated to use different instruments and actual drum samples, rather than the noise-based percussion instruments that were used in the original game.
Song | ID | Description |
---|---|---|
| 01 | Parts of the track sound similar to 02 (used in the intro) and 07 (the song used for Stages 9–12). |
| 0C | The Stage Clear original track from the Genesis Puyo Puyo. |
| 0F | The Brave of Puyopuyo original track from the Genesis Puyo Puyo. A remixed version of this track is used before you play against Dr. Robotnik. |
| 10 | The Theme of Puyopuyo original track from the Genesis Puyo Puyo. A remixed version of this track is used for the Cast Roll. |
| 14 | A faster and slightly altered version of the Stage 13 Battle Theme. |
| 15 | A very weird sound. |
Game Genie Codes
If you have a Game Genie, then use the following cheat codes to unlock the Sound Test and select all the tracks.
Dr. Robotnik's Mean Bean Machine (USA Version):
F2WA-EA8J - Skip the Region Check.
BA4T-EA2R - Disable Checksum.
CHTT-BCAC - Unlock the Sound Test.
DJYA-FEK2 - Listen to the unused music in Sound Test.
Dr. Robotnik's Mean Bean Machine (Europe Version):
F2WA-EA8N - Skip the Region Check.
BA4T-EA2W - Disable Checksum.
CHTT-BCAJ - Unlock the Sound Test.
DJYA-FEK6 - Listen to the unused music in Sound Test.
Sonic Classic (USA/Europe V1.1):
CTDW-TA3C - Disable Checksum.
99TV-B92R - Unlock the Sound Test.
DJYB-FENC - Listen to the unused music in Sound Test.
Sonic Compilation (Europe V1.0):
MJAW-TRCR - Skip the Region Check.
CHTV-BCAR - Unlock the Sound Test.
DJYB-FENC - Listen to the unused music in Sound Test.
Checksum Error
The checksum error screen from the Genesis Puyo Puyo still exists in this game, and is still triggered in the same way, which is of course the ROM checksum failing.
Unused Tilemaps
The game contains tilemaps from the 1P VS 2P and Endless Mode used in Puyo Puyo.
To do: The tilemap is split in many parts. Find all of these. |
Note that while the tileset for Endless Mode still exists, the 1P VS 2P one doesn't.
Sixth Puyo Color
Color ID: 02
Like in Puyo Puyo, code for the sixth colored puyo still exists here and its palette is used properly. As the graphics were overwritten, in the fixed screenshot tiles from the violet puyo are used.
Normal | Fixed |
---|---|
Lockout Screen
US | Korea |
---|---|
The Korean version changed the lockout error message to capital letters, and corrected the "onry" typo to "only".
There exists a code you can enter with player 2's controller to bypass this screen.
A A Up Right Down Left B B Right Down Left Up C C Down Left Up Right Start Start
Do note that you can only attempt to enter this once. Mess up and you'll need to restart your console to try again.
The Sonic the Hedgehog series | |
---|---|
Sega Genesis | Sonic the Hedgehog • Sonic the Hedgehog 2 (Prototypes) • Sonic the Hedgehog 3 • Sonic & Knuckles (Prototypes) • Sonic 3 & Knuckles • Sonic 3D Blast (Prototypes) • Sonic Spinball (Prototype) Dr. Robotnik's Mean Bean Machine (Prototype) • Sonic Classics |
Sega Master System | Sonic the Hedgehog • Sonic the Hedgehog 2 • Sonic Chaos • Sonic Blast • Sonic Spinball Dr. Robotnik's Mean Bean Machine • Sonic's Edusoft |
Game Gear | Sonic the Hedgehog (Prototype) • Sonic the Hedgehog 2 (Prototype) • Sonic Chaos • Sonic Triple Trouble Sonic Spinball (Prototype) • Sonic Drift 2 • Sonic Labyrinth • Sonic Blast (Prototypes) Dr. Robotnik's Mean Bean Machine • Tails' Skypatrol • Tails Adventures |
Arcade | SegaSonic Cosmo Fighter • SegaSonic the Hedgehog (Prototype) • Sonic Championship |
Sega CD | Sonic CD (Prototypes) |
32X | Knuckles' Chaotix (Prototypes) |
Sega Pico | Sonic the Hedgehog's Gameworld • Tails and the Music Maker (Prototypes) |
Windows | Sonic CD (1996, 2011) • Sonic's Schoolhouse • Sonic & Knuckles Collection • Sonic 3D Blast • Sonic R Sonic Heroes • Sonic Riders • Sonic Adventure DX: Director's Cut (2004, 2011) • Sonic Adventure 2 Sonic the Hedgehog 4 - Episode II • Sonic Generations (Demos) • Sonic Lost World • Sonic Mania • Sonic Forces |
Sega Saturn | Sonic X-treme • Sonic 3D Blast (Prototype) • Sonic Jam (Prototype) • Sonic R (Preview) |
Game.com | Sonic Jam |
Dreamcast | Sonic Adventure (Prototypes) • Sonic Adventure 2 (Prototypes) • Sonic Shuffle |
Neo Geo Pocket Color | Sonic the Hedgehog Pocket Adventure (Prototypes) |
Game Boy Advance | Sonic Advance (Prototype) • Sonic Advance 2 • Sonic Advance 3 (Prototype) • Sonic Battle • Sonic the Hedgehog Genesis |
GameCube | Sonic Adventure 2: Battle (Demo) • Sonic Adventure DX: Director's Cut (Prototypes) • Sonic Heroes (Prototypes) Shadow the Hedgehog • Sonic Mega Collection (Prototype) • Sonic Gems Collection • Sonic Riders |
PlayStation 2 | Sonic Heroes • Sonic Riders • Sonic Riders: Zero Gravity • Sonic Unleashed • Sonic Gems Collection |
Xbox | Sonic Heroes • Sonic Riders |
Nintendo DS | Sonic Rush (Demo) • Sonic Chronicles: The Dark Brotherhood Sonic & SEGA All-Stars Racing • Sonic Classic Collection |
PlayStation Portable | Sonic Rivals |
Xbox 360 | Sonic the Hedgehog (Demo) • Sonic Unleashed • Sonic & Sega All-Stars Racing • Sonic Generations (Demos) • Sonic Adventure 2 |
Wii | Sonic Unleashed • Sonic Colors • Mario & Sonic at the Olympic Games (Beijing 2008, London 2012) • Sonic & Sega All-Stars Racing • Sonic and the Black Knight |
PlayStation 3 | Sonic the Hedgehog • Sonic Adventure 2 • Sonic Generations (Demos) |
Nintendo 3DS | Sonic Generations • Sonic & All-Stars Racing Transformed |
Wii U | Sonic Lost World • Sonic Boom: Rise of Lyric |
Nintendo Switch/PlayStation 4/ Xbox One | Sonic Mania |
J2ME | Sonic the Hedgehog Mobile • Sonic Jump |
N-Gage | Sonic N |
iOS/Android | Sonic the Hedgehog • Sonic the Hedgehog 2 • Sonic CD Sonic Jump • Sonic Dash • Sonic Runners |
The Puyo Puyo series | |
---|---|
Famicom Disk System | Puyo Puyo |
NES | Puyo Puyo |
Arcade | Puyo Puyo • Puyo Puyo Tsuu |
Genesis | Puyo Puyo • Dr. Robotnik's Mean Bean Machine • Puyo Puyo Tsuu |
Sega Master System | Dr. Robotnik's Mean Bean Machine |
Game Gear | Dr. Robotnik's Mean Bean Machine • Puyo Puyo • Nazo Puyo: Arle no Roux |
FM Towns | Puyo Puyo |
TurboGrafx-CD | Puyo Puyo CD |
SNES | Super Puyo Puyo • Kirby's Avalanche • Super Puyo Puyo Tsuu (Remix) Super Nazo Puyo • Super Nazo Puyo Tsuu |
Sega Saturn | Puyo Puyo Tsuu • Puyo Puyo Sun |
Nintendo 64 | Puyo Puyo~n Party |
Game Boy (Color) | Puyo Puyo • Pocket Puyo Puyo Tsuu • Pocket Puyo Puyo Sun • Pocket Puyo Puyo~n |
WonderSwan | Puyo Puyo Tsuu |
Neo Geo Pocket Color | Puyo Pop |
Dreamcast | Puyo Puyo~n • Puyo Puyo Fever |
Game Boy Advance | Puyo Pop |
PlayStation 2 | Puyo Pop Fever • Puyo Puyo Fever 2 • Sega Ages 2500 Series Vol. 12: Puyo Puyo Tsuu Perfect Set |
GameCube | Puyo Pop Fever |
Nintendo DS | Puyo Pop Fever • Puyo Puyo! 15th Anniversary |
PlayStation Portable | Puyo Puyo Fever 2 |
Nintendo 3DS | Puyo Puyo Chronicle |
PlayStation Vita | Puyo Puyo Tetris |
Categories:
- Games developed by Compile
- Games developed by Sega
- Games published by Sega
- Genesis games
- Games released in 1993
- Games with unused areas
- Games with unused graphics
- Games with unused music
- Games with regional differences
- Games with revisional differences
- To do
- Sonic the Hedgehog series
- Puyo Puyo series
Cleanup > To do
Games > Games by content > Games with regional differences
Games > Games by content > Games with revisional differences
Games > Games by content > Games with unused areas
Games > Games by content > Games with unused graphics
Games > Games by content > Games with unused music
Games > Games by developer > Games developed by Compile
Games > Games by developer > Games developed by Sega
Games > Games by platform > Genesis games
Games > Games by publisher > Games published by Sega
Games > Games by release date > Games released in 1993
Games > Games by series > Puyo Puyo series
Games > Games by series > Sonic the Hedgehog series
if(window.jQuery)jQuery.ready();if(window.mw){
mw.loader.state({"mw.PopUpMediaTransform":"loading","site":"loading","user":"ready","user.groups":"ready"});
}if(window.mw){
document.write("u003Cscript src="https://tcrf.net/load.php?debug=falseu0026amp;lang=enu0026amp;modules=mw.PopUpMediaTransformu0026amp;only=scriptsu0026amp;skin=vectoru0026amp;*"u003Eu003C/scriptu003E");
}if(window.mw){
mw.loader.load(["mediawiki.toc","mediawiki.action.view.postEdit","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.uls.pt"],null,true);
}if(window.mw){
document.write("u003Cscript src="https://tcrf.net/load.php?debug=falseu0026amp;lang=enu0026amp;modules=siteu0026amp;only=scriptsu0026amp;skin=vectoru0026amp;*"u003Eu003C/scriptu003E");
}
var pkBaseURL = (("https:" == document.location.protocol) ? "https://stats.tcrf.net/" : "http://stats.tcrf.net/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 2);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}
if(window.mw){
mw.config.set({"wgBackendResponseTime":289});
}