Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • luppie
    Participant

    There should be an .openMSX folder, it’s a hidden folder.

    in reply to: msx emulator and disks #105943
    luppie
    Participant

    Today I finalized my OpenMSX setup, with some proper key bindings, so games like Metal Gear are playable.

    I’m running rertropie on my Picade Cabinet, that has a Joystick and 10 buttons.
    I’ve created a settingsfile that binds the keys as follows:

    [img]http://www.msxinfo.net/files/openmsxarcade.JPG[/img]

    To install these bindings, you can download the settingsfile:

    cd /home/pi/.openMSX/share/
    mv settings.xml settings.bak
    wget http://www.msxinfo.net/files/settings.xml

    All previous custom changes ar backed up to settings.bak, if you had some settings you can merge these with the settings.xml file.

    luppie
    Participant

    I’ve added OpenMSX as Emulator. It’s way more accurate then the other MSX emulators and also supports disk images and mapping all keyboard keys.

    I made an instruction on how to install it at : OpenMSX howto

    in reply to: msx emulator and disks #105911
    luppie
    Participant

    After some research, I’ve managed to load Disk images in OpenMSX from the EmulationStation GUI.

    The reason why by default Disk Images don’t work is that OpenMSX uses C-Bios. This is an Open Source MSX Bios, that only supports cartridges. It does not have a Disk Bios and Disk-Basic.

    To work arround this, you have to add ‘real’ Machine Rom’s
    My ROM’s of choice are the MSX Turbo-R Rom’s from the Panasonic FS-A1GT

    First you have use this configuration of retropie:
    (If you used my previous instruction remove -cart from the added line)

    Configure Retropie:

    
    sudo su
    nano /opt/retropie/configs/msx/emulators.cfg
    ADD this Line: openmsx=/opt/retropie/emulators/openmsx/bin/openmsx %ROM%
    [CTRL+X]
    Y
    [Enter]

    Download and extract the Bios Files

    cd /home/pi/RetroPie-Setup/tmp/build
    wget http://www.msxinfo.net/files/fsa1gt.zip
    unzip fsa1gt.zip -d /opt/retropie/emulators/openmsx/share/machines/
    

    Then boot OpenMSX using a random cartridg.
    From within OpenMSX open the commandline using F10

    Use the following commands to change the default machine:

    set default_machine Panasonic_FS-A1GT
    save_settings

    Now OpenMSX accepts DiskImages

    in reply to: msx emulator and disks #105873
    luppie
    Participant

    Somehow above instructions didn’t work for me.
    I’m using a clean install of Retropie 3.0 and I got some errors and missing libraries.

    So I decided to figure out how to compile and install OpenMSX myself.

    This is what was working for me:

    DOWNLOAD & Unpack OpenMSX:
    
    sudo su
    cd /home/pi/RetroPie-Setup/tmp/build
    wget http://downloads.sourceforge.net/openmsx/openmsx-0.11.0.tar.gz
    tar -xzvf openmsx-0.11.0.tar.gz
    cd openmsx-0.11.0
    
    Install Dependencies:
    nano /etc/apt/sources.list
    ADD this Line: deb-src http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi
    [CTRL+X]
    Y
    [Enter]
    
    apt-get update && apt-get update && apt-get dist-update
    apt-get build-dep openmsx
    
    Edit Build options:
    nano build/custom.mk
    Change These lines:
    INSTALL_BASE:=/opt/retropie/emulators/openmsx/
    SYMLINK_FOR_BINARY:=false
    [CTRL+X]
    Y
    [Enter]
    
    Make + Install:
    ./configure
    make
    make install
    
    Add MSX Roms:
    CD ..
    wget http://downloads.petrockblock.com/retropiearchives/openmsxroms.zip
    mkdir -p /opt/retropie/emulators/openmsx/share/systemroms/
    unzip openmsxroms.zip -d /opt/retropie/emulators/openmsx/share/systemroms/
    
    Configure Retropie:
    nano /opt/retropie/configs/msx/emulators.cfg
    ADD this Line: openmsx=/opt/retropie/emulators/openmsx/bin/openmsx -cart %ROM%
    [CTRL+X]
    Y
    [Enter]
    
    luppie
    Participant

    I’m also looking for a solution on : C: MSX, I need to assign the function keys to the controller for Metal Gear, where do I go to do this and how?

    I’m running RetroPie on my Picade and even with a keyboard connected I cant use the function keys.

    Any help is welcome.

Viewing 6 posts - 1 through 6 (of 6 total)