hostile75 Posted May 9, 2017 Share Posted May 9, 2017 Thanks for trying. Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 I forgot to tell you something. As this core is for now an alpha version, you need at first to change the ram allocated. If you dont do this, some game won't start because they lack of ram To do this, you need to boot with "HumanX" and then load "switch" command In the "switch" menu, you can change the ram, at the first line Maybe it did not work because of this. Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 9, 2017 Author Share Posted May 9, 2017 Ok, I semi sort of understand what you are saying but few details would help me out. If you can explain "boot with "HumanX" and then load "switch" command" that would really help me out. I can get into this menu here but I cannot see where to change ram size unless I am missing something. Is this the screen you are talking about ? Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 Its not inside this menu that you can change the ram. The menu you show in the picture can be reached with "F12". To change the ram, you need to boot with a program named "HumanX". Can I put the link in this forum ? Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 9, 2017 Author Share Posted May 9, 2017 Ok, I have made some progress, just not as far as I would like yet. I can load single disk games easily and games that require more RAM. Multi disk games are giving trouble still. Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 9, 2017 Share Posted May 9, 2017 I am happy with Mess, but I always use Retroarch. I want to try the core, put the Bios but the core does not find the games,I can not load any game. Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 Lordmonkus, thanks a lot for the time spent on this. Ciskohansen, what extension are your game ? My games are dim files and the core find them Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 9, 2017 Share Posted May 9, 2017 I use *.dimGames no, only I see these archives Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 You have to create a folder named "keropi", in the System folder of Retroarch. And you put your bioses there (there are 2 bios). I m not sure if the bioses have to be in zip or decrypted, so do both Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 9, 2017 Share Posted May 9, 2017 (edited) that folder and bios are in the correct place. EDIT: I have downloaded again the core and now I see the games Edited May 9, 2017 by ciskohansen Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 I dont get it why its not working Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 Just one last thing : load the core, go to Information, Core information, and look down on Firmwares required : for the 3 necessary bioses, is it said "present" ? Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 9, 2017 Author Share Posted May 9, 2017 Progress has been made on the multi disk with the help of @Zombeaver Basically for multi disk games you need to make a .cmd file which will become your "rom". Make a .txt file which you can edit with notepad and in there put the following example text: px68k "H:\Emulation\Roms\X68000\Akumajou Dracula (1993)(Konami)(Disk 1 of 2).dim" "H:\Emulation\Roms\X68000\Akumajou Dracula (1993)(Konami)(Disk 2 of 2).dim" You will obviously edit the disk name and path to match your disk images and location. After you are finished making the .txt file save it and change the .txt file extension to .cmd 1 Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 9, 2017 Share Posted May 9, 2017 Just one last thing : load the core, go to Information, Core information, and look down on Firmwares required : for the 3 necessary bioses, is it said "present" ? Now I see the games after downloading again the core Enviado desde mi MX5 mediante Tapatalk Quote Link to comment Share on other sites More sharing options...
Zombeaver Posted May 9, 2017 Share Posted May 9, 2017 1 Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 9, 2017 Share Posted May 9, 2017 Working Quote Link to comment Share on other sites More sharing options...
hostile75 Posted May 9, 2017 Share Posted May 9, 2017 Lordmonkus and Zombeaver, thanks a lot for your help. Its working Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 9, 2017 Author Share Posted May 9, 2017 Thanks to Neilk1 on Discord he gave us a way to simplify combining double disk images into a single .cmd file. Make a .bat file and put the following text in it. echo px68k %1 %2 > game.cmd Drag your 2 disk images onto the bat file and it will out a game.cmd file, then rename it to something to distinguish it like Castlevania.cmd for example. You can then import the .cmd file into LB and load it through Retroarch. 2 Quote Link to comment Share on other sites More sharing options...
Lordmonkus Posted May 9, 2017 Author Share Posted May 9, 2017 Neilk1 did some more work and he gets 100% of the credit for this. Here are 2 bat files to convert double disk images to a single .cmd file to be used as your rom. This first one works like the above one, drag and drop 2 disks on to the bat file. @echo off setlocal ENABLEDELAYEDEXPANSION set f2=%1 set raw=%1 set f3=!f2:Disk 1 of 2=Disk 2 of 2! echo px68k %1 %2 > "!raw:~0,-18!.txt" This second one is a more bulk convert method. Drop this bat file into your X68000 disk collection and run it. It will take all the 2 disk image games and generate the appropriate .cmd file for each game. @echo off setlocal ENABLEDELAYEDEXPANSION for /R "." %%f in ("*(Disk 1 of 2).dim") do ( set f2=%%f set raw=%%~nf set f3=!f2:Disk 1 of 2=Disk 2 of 2! echo px68k "%%f" "!f3!" > "!raw:~0,-13!.txt" ) 3 Quote Link to comment Share on other sites More sharing options...
ciskohansen Posted May 10, 2017 Share Posted May 10, 2017 Thanks for all, it is working pefectly Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.