HALT (0xFF)


The HALT instruction terminates program execution.

Interpreter Microcode

0x0ff  ALU=0; goto 0xff

Example Program

//---------------------------------------------
// Demonstrate the HALT instruction.
//---------------------------------------------
.main
    HALT
.end-main