Stack Machines
Instruction set:
add, sub, mult, div . . . Top of stack (TOS) and TOS+1 are implicit
push A, pop A TOS is implicit operand, one explicit operand
Example: a*b - (a+c*b)
push a
push b
mult
push a
push c
push b
mult
add
sub
9 instructions