Openmsx : Différence entre versions

De drev
Aller à : navigation, rechercher
(Bindings)
(Bindings)
Ligne 48 : Ligne 48 :
 
== Bindings ==
 
== Bindings ==
  
commande bind pour associer une touche de la manette a une touche clavier, pour un changement permanant, utiliser la commande bind_default
+
commande bind pour associer une touche de la manette a une touche clavier
  
 
Pour chaque touche on doit binder l'action down et up  
 
Pour chaque touche on doit binder l'action down et up  
Ligne 66 : Ligne 66 :
  
 
<pre>
 
<pre>
bind_default "joy1 button9 up" "keymatrixup 6 0x40"
+
bind "joy1 button9 up" "keymatrixup 6 0x40"
bind_default "joy1 button9 down" "keymatrixdown 6 0x40"
+
bind "joy1 button9 down" "keymatrixdown 6 0x40"
 
</pre>
 
</pre>
  
Ligne 73 : Ligne 73 :
  
 
<pre>
 
<pre>
bind_default "joy1 button6 up" "keymatrixup 6 0x80"
+
bind "joy1 button6 up" "keymatrixup 6 0x80"
bind_default "joy1 button6 down" "keymatrixdown 6 0x80"
+
bind "joy1 button6 down" "keymatrixdown 6 0x80"
 
</pre>
 
</pre>
  
Ligne 80 : Ligne 80 :
  
 
<pre>
 
<pre>
bind_default "joy1 button5 up" "keymatrixup 7 0x01"
+
bind "joy1 button5 up" "keymatrixup 7 0x01"
bind_default "joy1 button5 down" "keymatrixdown 7 0x01"
+
bind "joy1 button5 down" "keymatrixdown 7 0x01"
 
</pre>
 
</pre>
  
  
https://www.msx.org/forum/msx-talk/openmsx/need-a-little-help-binding-joystick-buttons
+
* https://www.msx.org/forum/msx-talk/openmsx/need-a-little-help-binding-joystick-buttons
 +
* https://www.msx.org/forum/msx-talk/emulation/questions-about-openmsx-settings

Version du 25 juin 2021 à 08:28

BIOS

Openmsx est livré avec CBIOS (compatible BIOS) on peut l'utiliser pour jouer mais pas pour sauvegarder sur cassettes (fichiers .wav ou .cas)

Telecharger sysrem roms depuis http://www.msxarchive.nl/pub/msx/emulator/openMSX/

L'archive contient les repertoires extensions/ machines/ misc/

  • Windows

Decompresser sous C:\Users\Administrator\Documents\openMSX\share\systemroms\


  • retropie

Decompresser et deplacer .rom de l'archive vers /home/pi/Retropie/BIOS/openmsx/

Choisir une machine

Avec catapulte

Settings / Edit Configuration

Verifier les systems

Choisir une machine MSX, par exemple la "Panasonic FS-A1"

Avec la console OpenMSX

F10 pour lancer la console puis

machine Panasonic_FS-A1

set default_machine Panasonic_FS-A1

Cassettes

Avec catapulte

  • Bouton record

Avec la console OpenMSX

F10

cassetteplayer new

Bindings

commande bind pour associer une touche de la manette a une touche clavier

Pour chaque touche on doit binder l'action down et up

  • F1: 6 0x20
  • F2: 6 0x40
  • F3: 6 0x80
  • F4: 7 0x01

Select -> F4

bind_default "joy1 button8 up" "keymatrixup 7 0x01"
bind_default "joy1 button8 down" "keymatrixdown 7 0x01"

Right trigger -> F2

bind "joy1 button9 up" "keymatrixup 6 0x40"
bind "joy1 button9 down" "keymatrixdown 6 0x40"

Left trigger -> F3

bind "joy1 button6 up" "keymatrixup 6 0x80"
bind "joy1 button6 down" "keymatrixdown 6 0x80"

Right shoulder -> F4

bind "joy1 button5 up" "keymatrixup 7 0x01"
bind "joy1 button5 down" "keymatrixdown 7 0x01"