Semi random code for the next step

This commit is contained in:
Torsten Ruger
2014-04-28 22:08:09 +03:00
parent aaed2ed5a1
commit 874f080ba2
5 changed files with 41 additions and 0 deletions

7
lib/vm/machine.rb Normal file
View File

@ -0,0 +1,7 @@
module Vm
# the vm machine is what does things. The only one that does things
# all things must go through the machine to actually happen
class Machine
end
end

17
lib/vm/values.rb Normal file
View File

@ -0,0 +1,17 @@
module Vm
class Value
end
class Word < Value
end
class Reference < Value
end
class MemoryReference < Reference
end
class ObjectReference < Reference
end
end