A simple computer simulator that you can program! You can save stuff to ram, add and subtract things, turn on turn off LEDs read switches and more. TURBO MODE RECOMENDED / TURBOWARP (Preprogramed with a demo led flasher) To see how to program look into credits When running turbo mode change unlimited speed to false and change the speed by changing the cpu speed in hz (409 blocks and still indev) Specs: 4 bytes of ram, 16 bytes of storage 30hz cpu (full 30hz only at turbo mode).
First remix the project and then in the editor edit the program and save, sometimes when in the editor and you run it it lags. NOP = does nothing, small pause DELAY x = waits x number of ms (one ms = 0.001 seconds) LEDON x = turns the led number x on LEDOFF x = turns the led number x off SETRAM1 x = sets the bit x in ram to 1 SETRAM0 x = sets the bit x in ram to 0 SETLEDBYBUTTON x y = sets the led y to the button x's state SETLEDBYRAM x y = sets the led y to the ram's bit x state SETRAMBYLED x y = sets the ram's bit y to the led number x state. SETBUTTONBYLED x y = sets the button y's state to the led number x's state. JUMP x = jumps to the line you want CONDJUMP x y z = jumps if the bit z of ram is 1 to x else to y COPYRAM x y = copy's the number from y to x ADD x y z = adds number x to y and saves the byte from bit number z if the result is over 255 it jumps to 0 SUB x y z = subtracts number y from x and saves the byte from bit number z if the result is under 0 it jumps to 255 COPYRAMTOSTOR x y = replaces bit x of storage with bit y of ram COPYSTORTORAM x y = replaces bit x of ram with bit y of storage SETSTOR1 x = sets bit x to 1 SETSTOR0 x = sets bit x to 0 AND x y z = if x and y is on, saves 1 to bit number z, else saves a 0. OR x y z = if x or y (or both) are on, save 1 to bit number z, else saves a 0. XOR x y z = same as or, but when both are on, it saves a 0. NOT x y = if x is 1, saves a 0 to bit y, else a one. IMPLY x y z = if x is zero, it allways saves a 1 to bit z, if x is 1, and y 0, the output is zero, for one and one result is one too. RANDOM x = gives a random value from 0 - 255 and saves it from bit x until x + 7 (total 8 bits, one byte) BEEP = beep for 0.10 seconds (: Everything made by me please credit me when you remix my project