Advertisement
arimal

openmsx start.tcl

Apr 4th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1.  
  2. set scanline 0;
  3. set blur 0;
  4. set glow 0;
  5. set auto_enable_reverse off;
  6.  
  7. #new config
  8. #triangle = space
  9. bind "joy1 button0 up" "keymatrixup 7 0x01"
  10. bind "joy1 button0 down" "keymatrixdown 7 0x01"
  11.  
  12. #square = enter
  13. bind "joy1 button3 up" "keymatrixup 7 0x80"
  14. bind "joy1 button3 down" "keymatrixdown 7 0x80"
  15.  
  16. # l1 = f3
  17. bind "joy1 button5 up" "keymatrixup 6 0x80";
  18. bind "joy1 button5 down" "keymatrixdown 6 0x80";
  19.  
  20. # l2 = f2
  21. bind "joy1 button6 up" "keymatrixup 6 0x40";
  22. bind "joy1 button6 down" "keymatrixdown 6 0x40";
  23.  
  24. # r1 = f1
  25. bind "joy1 button4 up" "keymatrixup 6 0x20";
  26. bind "joy1 button4 down" "keymatrixdown 6 0x20";
  27.  
  28. # r2 = f5
  29. bind "joy1 button7 up" "keymatrixup 7 0x02"
  30. bind "joy1 button7 down" "keymatrixdown 7 0x02"
  31.  
  32. # select = f4
  33. bind "joy1 button8 up" "keymatrixup 7 0x01"
  34. bind "joy1 button8 down" "keymatrixdown 7 0x01"
  35. # start = toggle on screen menu
  36. bind "joy1 button9 down" "main_menu_toggle"
  37.  
  38. #r3 = exit tcl and in effect the emulator
  39. bind "joy1 button11 down" "exit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement