Author: Kevin Kiningham
To create a new program:
p = cesel.Program('Program Name')
p.add8(1, 2, 3) # Add register 2 to register 3 and store in register 1
# etcTo simulate a program:
# Create a new Interpreter with the register file initialized to all ones
s = cesel.Interpreter(program, regfile=1)
# Step the simulation
s.step()
# See the value of the first register
print s.regfile[0]