In MIX STA stores the contents of the A register in a given memory location.
I can't see how the behaviour around the sign is covered in TAOCP. How does MIX behave in the following example:
Location 2000 contains: + 5 4 6 2 1
The A register contains: - 7 8 1 3 2
What does STA 2000 (0:1) do?
Is this thought of as taking the values 3 2 from the A register and putting them in the field 0:1 of memory location 2000? If so, is there an implicit conversion of any non-sign value to a +? Or does the 0 in the field specification mean "take the sign of the A register, and any remaining bytes and put those values into the location"?
Interpretation 1: 2000 -> + 2 4 6 2 1
Interpretation 2: 2000 -> - 2 4 6 2 1
Or is there a third option?