MIX
MIX is a hypothetical computer used in Donald Knuth's monograph, The Art of Computer Programming. MIX's model number is 1009, which was derived by combining the model numbers and names of several contemporaneous, commercial machines deemed significant by the author. Also, "MIX" read as a Roman numeral is 1009.
The 1960s-era MIX has since been superseded by a new computer architecture, MMIX, to be incorporated in forthcoming editions of TAOCP. Software implementations for both the MIX and MMIX architectures have been developed by Knuth and made freely available.
Several derivatives of Knuth's MIX/MMIX emulators also exist. GNU MDK is one such software package; it is free and runs on a wide variety of platforms.
Their purpose for education is quite similar to John L. Hennessy's and David A. Patterson's DLX architecture, from Computer Organization and Design - The Hardware Software Interface.
Architecture
MIX is a hybrid binary-decimal computer. When programmed in binary, each byte has 6 bits. In decimal, each byte has 2 decimal digits. Bytes are grouped into words of five bytes plus a sign. Most programs written for MIX will work in either binary or decimal, so long as they do not try to store a value greater than 63 in a single byte.A word has the range −1,073,741,823 to 1,073,741,823 in binary mode, and −9,999,999,999 to 9,999,999,999 in decimal mode. The sign-and-magnitude representation of integers in the MIX architecture distinguishes between “−0” and “+0.” This contrasts with modern computers, whose two's-complement representation of integer quantities includes a single representation for zero, but whose range for a given number of bits includes one more negative integer than the number of representable positive integers.
Registers
There are 9 registers in MIX:- rA: Accumulator.
- rX: Extension.
- rI1, rI2, rI3, rI4, rI5, rI6: Index registers.
- rJ: Jump address.
MIX also records whether the previous operation overflowed, and has a one-trit comparison indicator.
Memory and input/output
The MIX machine has 4000 words of storage, addressed from 0 to 3999. A variety of input and output devices are also included:- Tape units.
- Disk or drum units.
- Card reader.
- Card punch.
- Line printer.
- Typewriter terminal.
- Paper tape.
Instructions
MIX programs frequently use self-modifying code, in particular to return from a subroutine, as MIX lacks an automatic subroutine return stack. Self-modifying code is facilitated by the modification byte, allowing the program to store data to, for example, the address part of the target instruction, leaving the rest of the instruction unmodified.
MIX programs are typically constructed using the MIXAL assembly language; for an example, see the page.
compare with | |
compare with | |
compare with | |
shift to the left/right by bytes shift to the left/right by bytes rotate to the left/right by bytes | |
do nothing; | |
halt execution; | |
read in one block from input unit into onwards; | |
output one block to unit from onwards; | |
send control instruction to i/o unit ; | |