A state in a Turing machine is an assignment and a move direction both depending on the current input.
But if we define Turing machines to be a move first and then an assignment both depending on the current input,
would this also be Turing complete?
e.g. instead of:
State X:
if 1 then change to 0 and move Left and goto state Y
if 0 then change to 0 and move right and goto state Z
We had rules such as:
State X:
if 1 then move left and change to 0 and goto state Y
if 0 then move right and change to 1 and goto state Z
Would this also represent a Turing complete system?
Also what about if we had a system like the following where each state always moved in one direction?:
State X:
move Left
if 1 then change to 0 and goto state Y
if 0 then change to 1 and goto state Z