This module uses excel spreadsheets for instructions
If you want to use your own instructions, do the following steps:
- Add a new Excel sheet
- Copy and paste header into first line
- Add the sheetname into the beginning of the Python Code
- Add a binary start sequence into the tape variable
instructions = <NAME OF YOUR SHEET>
df = pd.read_excel('instructions.xlsx', header=0,
sheet_name=instructions).astype("string")
tape = list("#<BINARY NUMBERS YOU WANT TO START WITH>#")