11 lines
266 B
Ruby
11 lines
266 B
Ruby
|
module Vm
|
||
|
|
||
|
# Instruction is an abstract for all the code of the object-machine. Derived classe make up the actual functionality
|
||
|
# of the machine.
|
||
|
# All functions on the machine are captured as instances of instructions
|
||
|
#
|
||
|
class Instruction
|
||
|
end
|
||
|
|
||
|
end
|