Input is 8 bytes stored at 1920 thru 1927 in ram. Input is in this order:
LEFT - $0000011110000000
RIGHT - $0000011110000001
UP - $0000011110000010
DOWN - $0000011110000011
Z - $0000011110000100
X - $0000011110000101
C - $0000011110000110
V - $0000011110000111
refresh inputs using
INP
and then read the input by checking the byte at the address of the input you want to check. It will be 0 if not pressed, 1 if pressed.
There is also a far easier way to do inputs now! You can use the same input order as before, just use the commands
INP,00000001 through INP,00001000. (its the position it is in the list, since LEFT is first it would be 00000001 and so on.