/ bits.txt
bits.txt
 1  00000001 set [1] to value of adress [2]
 2  00000010 read from user 1 bit into [1]
 3  00000011 write [1] 
 4  00000100 set [1] to value of [2]
 5  
 6  # Mathimatical Operations
 7  
 8  00010100 add [2] + [3] and place it in [1]
 9  00011100 multiply [2] * [3] and place it in [1]
10  00011000 subtract [2] - [3] and place it in [1]
11  00011010 divide [2] / [3] and place it in [1]
12  
13  # statements
14  00100001 if [0] == [1] goto [2]
15  00100010 if [0] >= [1] goto [2]
16  00100011 if [0] <= [1] goto [2]
17  00100110 if [0] > [1] goto [2]
18  00100111 if [0] < [1] goto [2]
19  00100101 if [0] != [1] goto [2]
20  
21  # running from memory {to do }
22  00001111 run from memory [1] with args memry[2:]
23  
24  # loading from and into files
25  00001010 load from persistent byte persistant[1] to memory[2]
26  00010101 write to persistent memory memory[1] -> persistent[memory[2]]
27  
28  # threading
29  01011111 thread start at line [0] and end at line [1] and start at time [2] and call it [3]