MD+ Wishlist
Page 6 of 7
Page 6 of 7 • 1, 2, 3, 4, 5, 6, 7
Re: MD+ Wishlist
Shadow of the Beast: it had great GFX, almost superior to the original, but really poor music (esp. in comparison to the amiga). A hack with the original amiga mod music or the PC-Engine CD soundtracks would be really nice.
Shadows of the Beast 2 had far better music, but having the amiga or SegaCD soundtrack would be nice as well ;-)
Shadows of the Beast 2 had far better music, but having the amiga or SegaCD soundtrack would be nice as well ;-)
Jue69- Newcomer
- Since : 2024-01-04
Re: MD+ Wishlist
I feel your pain. If only Mesen supported the Megadrive. Your best bet in my opinion is Regen, though it still kinda sucks.Cubear wrote:don't get too excited yet. everything i've tried so far, debugging-wise has been unintuitive to the point of just closing the program and trying another.
Anyways, here's the finished patch for Gain Ground. I've given it a couple test runs but bugs can always still crop up.
https://github.com/Infinest/Gain-Ground-MD-Plus/releases/latest
Relikk's already working on putting together audio packs for it.
infinest- Rope
- Since : 2024-02-11
Re: MD+ Wishlist
Infinest Would it be possible for you to create an MD+ patch for the game Yu Yu Hakusho: Sunset Fighters Tectoy Brasil.
Robertson- Leever
- Since : 2023-06-04
Re: MD+ Wishlist
MD + Gain Ground (PS-2) with PS2 soundtrack, as Pacht author said a few bugs, I tested in Mega Everdrive Pro and it's working all good, I'll leave the link available to download.
Robertson- Leever
- Since : 2023-06-04
Re: MD+ Wishlist
Umm... Yeah. I already did the audio for Gain Ground with infinest, both PS2 and PC Engine CD. They will be posted in due time. Link removed.
Relikk- Since : 2017-02-17
Re: MD+ Wishlist
Sorry but i'm not gonna be the one to do it. The process for making such a patch involves multiple hours of work and therefore i'm only gonna work on stuff that i have an actual interest in and that is available in english.Robertson wrote:Infinest Would it be possible for you to create an MD+ patch for the game Yu Yu Hakusho: Sunset Fighters Tectoy Brasil.
infinest- Rope
- Since : 2024-02-11
Re: MD+ Wishlist
Ok I know how it is, Man Could someone create an MD+ pacht for the game Ultimate Mortal Kombat 3 for Sega Genesis, It would be very interesting because it doesn't exist yet.
Dude, you should create good pachts for MD+ games, I know that each game uses a different sound drive, but you have the capacity to create several pachts, the mega drive has a lot of good games, it just needs more attention in this regard.
Relikk wrote:Umm... Yeah. I already did the audio for Gain Ground with infinest, both PS2 and PC Engine CD. They will be posted in due time. Link removed.
Dude, you should create good pachts for MD+ games, I know that each game uses a different sound drive, but you have the capacity to create several pachts, the mega drive has a lot of good games, it just needs more attention in this regard.
Robertson- Leever
- Since : 2023-06-04
Re: MD+ Wishlist
I don't create patches. I take care of the audio side of things. infinest, ArcadeTV, jvisser, neodev and others... They create patches, and whatever is good to you might not be good to them.
The best thing for you to do would be to learn to code yourself, so you can create patches for these good games.
The best thing for you to do would be to learn to code yourself, so you can create patches for these good games.
Relikk- Since : 2017-02-17
Re: MD+ Wishlist
Relikk wrote:I don't create patches. I take care of the audio side of things. infinest, ArcadeTV, jvisser, neodev and others... They create patches, and whatever is good to you might not be good to them.
The best thing for you to do would be to learn to code yourself, so you can create patches for these good games.
Thanks for the information, I have a friend who is a programmer, I just wanted to know which program to use to create these audio pachts and then I would pass on the information to my friend to make
Robertson- Leever
- Since : 2023-06-04
Re: MD+ Wishlist
The easiest way to get a setup for making patches is to just copy one of my Github repositories. The important thing is the folder structure and the batch files.
Tools you need to put into the TOOLS folder:
For "_build.bat" you will need to have a "patch.asm" file in your root directory. "patch.asm" should contain the actual 68k assembly code you write to modify the game. The source code for my patches except for SoR 2 are all up on my Github so there are plenty of examples available.
You will still need to have a certain degree of knowledge about 68k assembly language and how the Megadrive hardware itself works but with a certain amount of determination and technical predisposition it's not impossible to learn.
Here's are some good resources:
Unfortunately there still aren't any emulators with debugging tools i would deem "good" but your best bet is Regen. Regen itself does not support MD+ however.
Personally I use Regen solely for reverse engineering the original code of the game and debugging my own code.
The actual testing for whether CDDA works as expected I do on Genesis Plus GX via Retroarch.
The actual objective is to reverse engineer the audio driver of the game and find out how exactly it works. Once you have that information you need to replace the code of the game that interacts with the music (Play, Stop, Pause, Resume, Fade out, etc.) and replace it with your own code that implements calls to the MD+ function registers described in the MD+ documentation i linked above.
- Code:
OUTPUT/ => The final patched ROM will be generated here once "_build.bat" is
executed
PATCH/ => After generating a patched ROM in OUTPUT, execute "_make_ips_patch.bat" to generate an IPS patch for it here
ROMS/ => Put the mega drive ROM you want to make a patch for in here and name it in.md
TOOLS/ => All tools used by the batch scripts need to be put in here, you need to gather all of them yourself as i don't add them to my repositories
Tools you need to put into the TOOLS folder:
For "_build.bat" you will need to have a "patch.asm" file in your root directory. "patch.asm" should contain the actual 68k assembly code you write to modify the game. The source code for my patches except for SoR 2 are all up on my Github so there are plenty of examples available.
You will still need to have a certain degree of knowledge about 68k assembly language and how the Megadrive hardware itself works but with a certain amount of determination and technical predisposition it's not impossible to learn.
Here's are some good resources:
- https://plutiedev.com/
- For hacking audio specifically this page: https://plutiedev.com/using-the-z80
- https://info.sonicretro.org/SCHG:68000_ASM-to-Hex_Code_Reference
- https://mrjester.hapisan.com/04_MC68/
- https://segaretro.org/Category:Mega_Drive_technical_information
- The MD+ documentation: https://web.archive.org/web/20230314184450/https://downloads.terraonion.com/public/MegaSD_DEV_Manual.pdf
- vasm assembler documentation: http://sun.hasenbraten.de/vasm/release/vasm.pdf
Unfortunately there still aren't any emulators with debugging tools i would deem "good" but your best bet is Regen. Regen itself does not support MD+ however.
Personally I use Regen solely for reverse engineering the original code of the game and debugging my own code.
The actual testing for whether CDDA works as expected I do on Genesis Plus GX via Retroarch.
The actual objective is to reverse engineer the audio driver of the game and find out how exactly it works. Once you have that information you need to replace the code of the game that interacts with the music (Play, Stop, Pause, Resume, Fade out, etc.) and replace it with your own code that implements calls to the MD+ function registers described in the MD+ documentation i linked above.
infinest- Rope
- Since : 2024-02-11
Re: MD+ Wishlist
New here, but I'd like to second this. However, as the Japanese MD port is the superior version, doing that one with the original Amiga OST would be fantastic.Jue69 wrote:Shadow of the Beast: it had great GFX, almost superior to the original, but really poor music (esp. in comparison to the amiga). A hack with the original amiga mod music or the PC-Engine CD soundtracks would be really nice.
kobrakommander- Newcomer
- Since : 2024-04-01
Re: MD+ Wishlist
Hello, would it be possible to make this patch available? I would love to play the game using the Amiga music of Turrican 3. Or would it be better the other way around, to provide you the music tracks?ArcadeTV wrote:Mega Turrican
Murasame- Newcomer
- Since : 2024-05-04
Re: MD+ Wishlist
Hi, i know I've just created this account today but there are two games that I'd love for them to get the cd sound quality and those are sailor moon for the genesis and fist of the north star (or last battle for the us) and the rest of the sonic games (even tho the air and forever like ports exist) as well as some master system/game gear games to get a high quality sound hack as well like sailor moon s, yu yu hakusho, saint tail, the sonic games for the master syetem or gunstar heroes on the game gear to have the genesis soundtrack and so on but the ones that i really want to see them being made next are sailor moon and fist of the north star
MahmoudEhab2024- Bee
- Since : 2024-05-05
Re: MD+ Wishlist
infinest wrote: Here is Gain Ground (abstract)
A fun request would be the Sega Mega Drive game "Hokuto no Ken - Shin Seikimatsu Kyuuseishu Densetsu" (Japan) now retitled as "First of the North Star" and translated into English in the romhack linked below. All that is left to do is give this game a proper MD+soundtrack:
Link included--->[url=A fun request would be for this version of "Last Battle" now retitled as "First of the North Star" to receive a proper MD+soundtrack!]Fist of the North Star - Mega Drive (aka.Last Battle)[/url]
The game has now been restored to it's classic Manga anime roots, with all the lovely gore returned! (i.e. "You are already dead!"). Music from the movie or even the show would be a great addition and the game doesn't really have that many tracks to begin with.
From the 1986 movie: https://www.youtube.com/watch?v=RRXU0ljdGRk&list=PLnf6ZWoJegTtBPtScSXeWHY6rsY6c3Txu
There are also countless games on PSX, DS, PS3 and PS4 and many more consoles for this game. So many great options if the spirit is with you.
Fingers crossed we will see this someday soon!
P.S. Again, the title is "Hokuto no Ken - Shin Seikimatsu Kyuuseishu Densetsu (Japan)" and the game would have to be the Japanese one, and NOT to be confused with the terrible heavily censored American "Last Battle" for Genesis, i.e.as it lacks the proper dialogue and blood/gore.
And thank you all again for doing God's work here.
pleiades7bluestars- Rope
- Since : 2020-12-02
Re: MD+ Wishlist
pleiades7bluestars wrote:infinest wrote: Here is Gain Ground (abstract)
A fun request would be the Sega Mega Drive game "Hokuto no Ken - Shin Seikimatsu Kyuuseishu Densetsu" (Japan) now retitled as "First of the North Star" and translated into English in the romhack linked below. All that is left to do is give this game a proper MD+soundtrack:
Link included--->[url=A fun request would be for this version of "Last Battle" now retitled as "First of the North Star" to receive a proper MD+soundtrack!]Fist of the North Star - Mega Drive (aka.Last Battle)[/url]
The game has now been restored to it's classic Manga anime roots, with all the lovely gore returned! (i.e. "You are already dead!"). Music from the movie or even the show would be a great addition and the game doesn't really have that many tracks to begin with.
From the 1986 movie: https://www.youtube.com/watch?v=RRXU0ljdGRk&list=PLnf6ZWoJegTtBPtScSXeWHY6rsY6c3Txu
There are also countless games on PSX, DS, PS3 and PS4 and many more consoles for this game. So many great options if the spirit is with you.
Fingers crossed we will see this someday soon!
P.S. Again, the title is "Hokuto no Ken - Shin Seikimatsu Kyuuseishu Densetsu (Japan)" and the game would have to be the Japanese one, and NOT to be confused with the terrible heavily censored American "Last Battle" for Genesis, i.e.as it lacks the proper dialogue and blood/gore.
And thank you all again for doing God's work here.
i can agree, it'd definitely be a great addition to give this game a true fist of the north star fashion track into this and put the first stage's music to have ai wo torimodose
MahmoudEhab2024- Bee
- Since : 2024-05-05
Road Rash 1-3
aorin1 wrote:Dean Harris remade all songs for all 3 Genesis Road Rash games, here are some samples:
Road Rash 1: Redwood
Road Rash 3: Japan
I'll echo the request for Road Rash 1-3 in MD+ form. Since the request above was made, John Linneman from Digital Foundry featured remake-soundtracks in the following video (in perhaps the MSU format?):
It would be great to have them in MD+ instead along with the performance enhancement and SRAM hacks also mentioned in the video. It would be the ultimate version of those 3 games.
ElevenGames- Newcomer
- Since : 2024-07-15
Re: MD+ Wishlist
Could anyone create the ips patch for the game Yu Yu Hakusho Sunset Fighters for mega drive in MD+ format, whoever can create it I'll pay
Robertson- Leever
- Since : 2023-06-04
Re: MD+ Wishlist
Robertson wrote:Could anyone create the ips patch for the game Yu Yu Hakusho Sunset Fighters for mega drive in MD+ format
That's the fourth time you've posted that. If someone is interested they will do it. Don't post about it again. No arguing or smart-arse replies like the one I just deleted, either.
Relikk- Since : 2017-02-17
Re: MD+ Wishlist
ElevenGames wrote:I'll echo the request for Road Rash 1-3 in MD+ form.
It would be great to have them in MD+ instead along with the performance enhancement and SRAM hacks also mentioned in the video. It would be the ultimate version of those 3 games.
I've edited the available Dean Harris tracks and added them to the premade audio pack wishlist thread. Hopefully someone might take up the patch creation with that side of the process mostly already done.
Relikk- Since : 2017-02-17
Re: MD+ Wishlist
Please make Prince of Persia 2 remastered a MSU treatment, pleeeeease!!
diablonet- Rope
- Since : 2022-05-09
Re: MD+ Wishlist
Rheo gamer finished his port for Real About Fatal Fury esp.
Maybe someone can give a shot to a MD+ version. It looks awesome.
Maybe someone can give a shot to a MD+ version. It looks awesome.
jerrymh- Wish Fairy
- Since : 2021-02-11
Re: MD+ Wishlist
There's an "MSU" toggle in the options, so I guess they already have plans to do something with it themselves.
Relikk- Since : 2017-02-17
Re: MD+ Wishlist
I would like to know if there is any program to create a map of music tracks for Sega Genesis games.
Robertson- Leever
- Since : 2023-06-04
Page 6 of 7 • 1, 2, 3, 4, 5, 6, 7
Page 6 of 7
Permissions in this forum:
You cannot reply to topics in this forum