input v:S -> register:R, input joystick -> x:R y:R **Description**: Gets user input. On the left, v can beall_buttons` to get all 16 possible buttons into the register. Or, it can be set to 1 if a single button is pressed. The list of buttons is - A - B - X - Y - Back - Guide - Start - LeftStick - RightStick - LeftShoulder - RightShoulder - DPadUp - DPadDown - DPadLeft - DPadRightIn the case of joysticks, two registers are passed; x and y. The range is from 0 to the max value, with 0 being all the way on the left/bottom.
input A -> r0, input joystick -> r0 r1