2. mixalMIX Assembler.

A MIX assembler is called mixal. The utility assembles its standard input (or a named file), which should be a valid MIXAL program, and writes the resulting object code to the standard output or to another file.

This chapter describes how to use mixal. The examples in this chapter assume that the file ‘hello.mix’ contains the following example program:

 
* ``HELLO, WORLD'' PROGRAM
PRINTER EQU  18
        ORIG 3000
HELLO   OUT  TEXT(PRINTER)
        JBUS *(PRINTER)
        HLT
TEXT    ALF  HELLO
        ALF  , WOR
        ALF  LD
        END  HELLO