What's new

TobyRieper

Student
Joined
Jan 29, 2020
Messages
72
Reaction score
28
Location
UK
Hey guys, with your help I managed to convert Final Fight Bootleg to English. I am now trying the same thing with my Japanese Ghouls and Ghosts CPS1 board, is this possible? If so which roms would I have to swap out?
Thank you :)
 
Ok, So altered a script that darksoft posted for strider, a similar process. I tried using the Mame method posted above but nothing worked so if anyone else has issues converting their DAM resale boards to english you just need to combine these 4 files from Ghoulsu.zip dmu_29.10h, dmu_30.10j, dmu_27.9h and dmu_28.9j.

with this here python script.


Code:
out = open("out.bin","wb")
input1 = open("dmu_29.10h","rb")
input2 = open("dmu_30.10j","rb")
input3 = open("dmu_27.9h","rb")
input4 = open("dmu_28.9j","rb")

while True:
  data = input1.read(1)
  if not data: break
  data2 = input2.read(1)
  if not data2: break
  out.write(data2)
  out.write(data)

while True:
  data3 = input3.read(1)
  if not data3: break
  data4 = input4.read(1)
  if not data4: break
  out.write(data4)
  out.write(data3)

out.close()


I spent best part of an entire day trying the MAME , saving rom file method but just cant get it to work, this method worked for me first go. All i need to do is burn a new 23 eprom with the output file. All props goes to Darksoft for the script. I just changed the filenames!
 
Should just be the 4 roms I labeled here. I used a double size eprom so I can select between US and Japan version.
1000013431.jpg
 
Back
Top