Coverter

Converts a State-transitions Table for the Turing Machine emulator into a series of byte codes to load into the EEPROM memory of the emulator.

Expand the instructions below when using it for the first time.

Step by step instructions

Manually enter or simply paste a State Table into the box below.

The State Table might look like the following

##State  Symbol   Print    Move     Next State
   s1      0        -       -            Halt
   s1      1        0       R            s2
   s2      0        0       R            s3
   s2      1        1       R            s2
   s3      0        1       L            s4
   s3      1        1       R            s3
   s4      0        0       L            s5
   s4      1        1       L            s4
   s5      0        1       R            s1
   s5      1        1       L            s5
Reminder: State Symbol Print Move NextState