Instructions: to run code: space (space to stop running) to edit a line: E to change lines: scroll (two fingers) to get savecode: S to load: L C=command, A=address of X, M=memory format: CCCCAAAA MMMMMMMM commands: 0000: stop all 0001: clear screen 0010: pixel at x color A (format of position is XXXXYYYY) 0011: load value from x into A 0100: load A into x 0101: set A to A-x 0110: set A to A+x 0111: jump to x if A=0 1000: jump to x if not A=0 1001: jump to x 1010: load the VALUE OF ADDRESS X (indirect x) to A 1011: load A into indirect x 1100: load K to x Notes Post your programs in the comments! I would love to see what everyone creates! Special prize for anyone who can make pong!!!! Examples: -every other: 10~00~61~FF~42~00~22~02~53~00~83~ -shaded: 10~00~61~FF~42~00~22~01~53~00~85~02~ -if up arrow pressed: 10~00~10~00~42~00~52~FF~C4~00~65~27~54~00~77~09~98~00~69~FF~2A~00~9B~ Largely inspired by https://scratch.mit.edu/projects/876179580/ I wanted to make it with less commands but still functional. All my code and "art"