copies of the old code to start the new layer

This commit is contained in:
Torsten Ruger
2014-06-25 02:47:59 +03:00
parent 9b39a3a816
commit e41bb8027d
16 changed files with 553 additions and 0 deletions

10
lib/vm/instruction.rb Normal file
View File

@ -0,0 +1,10 @@
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