rubyx/lib/virtual/instruction.rb

20 lines
628 B
Ruby
Raw Normal View History

module Virtual
2015-05-06 07:55:14 +02:00
# Instruction is an abstract for all the code of the object-machine.
# Derived classes make up the actual functionality of the machine.
# All functions on the machine are captured as instances of instructions
#
# It is actually the point of the virtual machine layer to express oo functionality in the set of
# instructions, thus defining a minimal set of instructions needed to implement oo.
2015-05-06 07:55:14 +02:00
2015-05-24 15:55:03 +02:00
class Instruction
end
end
2015-05-06 07:55:14 +02:00
require_relative "instructions/halt"
require_relative "instructions/method_call"
require_relative "instructions/method_enter"
require_relative "instructions/method_return"