# Assign stick to cursor keys key_up "key 97" key_left "key 99" key_down "key 101" key_right "key 103" key_up "key 98" key_left "key 98" key_up "key 104" key_right "key 104" key_down "key 100" key_left "key 100" key_down "key 102" key_right "key 102" # game specific keys #Modulators (mod1 = L, mod2 = R) mod_1 "key 107" mod_2 "key 108" #Special DOSBOX commands (L+stick = quit, R+stick = pause, L+VOL-/+ = increase/decrease frameskip, R+VOL-/+= increase/decrease CPU cycles) hand_shutdown "key 115 mod1" hand_pause "key 115 mod2" hand_decfskip "key 114 mod1" hand_incfskip "key 113 mod1" hand_cycledown "key 114 mod2" hand_cycleup "key 113 mod2" #Function keys (all with L, use following diagram to hit the F keys) # STICK YABX # # 1 2 3 9 # # 4 5 10 11 # # 6 7 8 12 key_f1 "key 98 mod1" key_f2 "key 97 mod1" key_f3 "key 104 mod1" key_f4 "key 99 mod1" key_f5 "key 103 mod1" key_f6 "key 100 mod1" key_f7 "key 101 mod1" key_f8 "key 102 mod1" key_f9 "key 111 mod1" key_f10 "key 109 mod1" key_f11 "key 110 mod1" key_f12 "key 112 mod1" #Number keys (all with R, same as function keys, but only 1 through 9, and 10 = 0) key_1 "key 98 mod2" key_2 "key 97 mod2" key_3 "key 104 mod2" key_4 "key 99 mod2" key_5 "key 103 mod2" key_6 "key 100 mod2" key_7 "key 101 mod2" key_8 "key 102 mod2" key_9 "key 111 mod2" key_0 "key 109 mod2" #More obvious keys here (R+start=escape, select=space, start=enter, R+select=backspace) key_esc "key 105 mod2" key_enter "key 105" key_space "key 106" key_bspace "key 106 mod2" #Add your own keys here! :) #gp2x button = defaults = key code #Stick N = A = 97 #Stick NW = B = 98 #Stick W = C = 99 #Stick SW = D = 100 #Stick S = E = 101 #Stick SE = F = 102 #Stick E = G = 103 #Stick NE = H = 104 #Start = I = 105 #Select = J = 106 #L = K = 107 #R = L = 108 #A = M = 109 #B = N = 110 #Y = O = 111 #X = P = 112 #Vol+ = Q = 113 #Vol- = R = 114 #Stick In = S = 115