Add code so that instructions' operands will have types stored before actual operand value.
This will allow for more dynamic execution, e.g. a call instruction will call a function either defined by an atom or by a Functionobject stored in a register.
Add code so that instructions' operands will have types stored before actual operand value.
This will allow for more dynamic execution, e.g. a
call
instruction will call a function either defined by an atom or by aFunction
object stored in a register.