I want to make an instruction that calls other Turing Machines. I think C works better for that instruction.
I'm thinking to change the current C instruction to TO or GOTO (i'd prefer TO, it's shorter -> I don't want instructions to be more than two letters, except for HALT).
The syntax would be the same:
? '#' label
HALT
label:
W '$'
TO label
and
? '#' label
HALT
label:
C 'examples/simple-instructions/simple_writing.tm'
TO label
I want to make an instruction that calls other Turing Machines. I think
C
works better for that instruction.I'm thinking to change the current
C
instruction toTO
orGOTO
(i'd preferTO
, it's shorter -> I don't want instructions to be more than two letters, except forHALT
).The syntax would be the same:
and