Home | Forums | What's new | Resources | |
Mega Drive / Genesis controllers on Saturn |
sonik - Jul 8, 2021 |
sonik | Jul 8, 2021 | ||||||
The sega development bulletins says that the saturn is compatible with genesis controllers. Jacques from BlueRetro... tested it in the bios:
I went a step further and tested it with a bunch of games. And to my surprise some of them supported the device!
|
Mr^Burns | Jul 8, 2021 | |||
I wonder what happens if you connect a megadrive/megacd mouse, playing Virtua Cop with that baby size mouse would be fun |
sonik | Jul 8, 2021 | |||
According to Jacques the genesis and saturn mouse are the same device with just different connectors. So support in games are the same. I don't have a mouse to test :/ |
ROS | Jul 8, 2021 | |||
MDPatcher... patches Saturn games in order to make them compatible with Megadrive/Genesis controllers. |
sonik | Jul 9, 2021 | |||
Amazing! |
edde_baby | Oct 25, 2021 | |||||||||||||||||||||||||||||||||||||||||||||||||||
I couldn't find a simple description of how to wire an adapter for this. For anyone else in the same situation - here are the pin numbers to wire an MD/SS controller adapter:
I just tried MD->Saturn in the Saturn bios to check I have the pinout listed correctly - all good. I'll try Saturn Mouse -> MD when I get my hands on a SS mouse. For Mega Drive plugs and ports, either use a MD controller extension cable - or just buy DB9 male connectors, and DB9 connector housings for the port end - a female DB9 connector will not plug in to the Megadrive controller ports properly. Cheap 3rd party Saturn controllers (or just the cables) are the best for SS controller plugs. A Mayflash Sega Saturn USB adapter is probably the cheapest source of good Saturn ports Cable for both consoles should contain 9 wires and therefore be suitable for a MD/SS controller adapter, or get RS232 (Straight-through) cables if you want/need to buy something new. If you are cutting existing MD/SS controller cables - don't forget to note which coloured wire is attached to which numbered pin Sources: Interface Protocol of SEGA MegaDrive's 6-Button-Co... Evolution of SEGA's IO Interface from SG-1000 to S... Sega Saturn Controller Data... |
sonik | Oct 28, 2021 | |||
Saturn mouse is technically an MD mouse. So it should work. But please report back when you test it I tested a mega multitap and the saturn bios detected it. |
sonik | Nov 5, 2021 | |||
You have access to a saturn arcade racer (racing wheel)? It might be compatible with megadrive's Virtua Racing. Look at this promo image for the game: |
edde_baby | Nov 5, 2021 | |||||
I do actually have an Arcade Racer! I just tested it, and unfortunately Virtua Racing on Megadrive does not seem to be compatible with the Arcade Racer. I tested EUROPE, USA, and JAPAN releases on a Mega Everdrive X7, as I have none of the original VR carts - so there is a potential possibility that something about my setup stops it working... |
sonik | Nov 5, 2021 | |||
Nice! Thanks for testing it. |
sonik | May 16, 2022 | |||
I plan on update this sheet as I test more games.
|
RubyRoid | Dec 6, 2022 | |||
Hi, does anybody have any luck running MDPatcher? I tried it on both Windows 7 and 11 with all possible versions of .NET Runtime and the app just freezes when I click File Open. Update: After a couple days of trying to rebuild the app from source and debugging I was finally able to make it work. It needed just a single line of code to properly fix it. A fork of the project with fixes and a cli version of the app as a bonus is available here: https://github.com/konstantin-kelemen/MDPatcher... |
sonik | Dec 7, 2022 | |||
@RubyRoid... The patched games works on real hardware? I had to add a fix for it. By the way I came to share my version then I see that you already found a solution. I shared the app here on the resources page |
RubyRoid | Dec 7, 2022 | ||||||||
Hey, thanks for sharing your fixed version of the app! I tested with Saturn Bomberman and it worked, but I see what you've done there with error_recalc. I didn't have such fix implemented but the drive did successfully correct the error while burning the image:
Code:
I like your approach more so now I'm puzzled on whether or not should I keep my version of code. |
sonik | Dec 7, 2022 | |||||
Interesting! I could not get the games to work with a ODE (Fenrir). Had to fix the ecc data. Your solution for it is more elegant. I had to redo it using winforms. You could add the option to also use error_recalc. The CLI version is interesting for automation. It checks if the exe exists and calls it. Another change (not so important) was to change the "new line" text code from "\n" to "NewLine" that maps to what's used on the current OS (\r\n on windows). I was thinking of porting it to Net Core in the future. And build it for win/linux/mac. |
RubyRoid | Dec 7, 2022 | |||||
Thanks, I'll try to add features you mentioned to the code. I'm not even close a .NET programmer and this was the first time I've ever compiled an exe with mono Buy the way, the CLI version is already working on Windows, Linux, and Mac since it doesn't use forms at all. |