From WiiLi
// Nintendo Controls
` By Keenan (AKA Gamexprt1)
` For the FCE Emulator
*_-= Controls =-_*
// Wiimote:
` Plus = Start
` Minus = Select
` B Button = B Button
` A Button = A Button
` Up = Screenshot
` Down (Hold) = Reset
` Left = Save State 0
` Right = Save State 1
` One = Save
` Two = Load
// Nunchuk:
` Z Button = Turbo B
` C Button = Turbo A
` Analog-Stick = D-Pad
` D-Pad
Right = (Wiimote.Nunchuk.JoyX >= .5)
Left = (Wiimote.Nunchuk.JoyX <= -.5)
Up = (Wiimote.Nunchuk.JoyY <= -.5)
Down = (Wiimote.Nunchuk.JoyY >= .5)
` Buttons
RightShift = Wiimote.Minus // Select
Enter = Wiimote.Plus // Start
Z = Wiimote.B // B Button
X = Wiimote.A // A Button
(Alt + Printscreen) = Wiimote.Up // Screenschot
F10 = KeepDown(Wiimote.Down, 1s) // Reset
Zero = Wiimote.Left // Go to Save State 0
One = Wiimote.Right // Go to Save State 1
F5 = Wiimote.1 // Save Game
F7 = Wiimote.2 // Load Game
A = Wiimote.Nunchuk.ZButton // Turbo B
S = Wiimote.Nunchuk.CButton // Turbo A
` Battery Info
Var.Batt = (Wiimote.Battery / 48)
Debug = "[Battery Level = " + ((100 * 48) * (Var.Batt / 192)) + "%}"
If (Wiimote.Battery <= 10)
Debug = "You may want to change/recharge your batteries"
Endif