a lot of work to get one more test to pass

This commit is contained in:
Torsten Ruger
2014-07-12 21:59:17 +03:00
parent 842c4e3044
commit dc6cb2bb52
16 changed files with 89 additions and 153 deletions

View File

@ -1,3 +1,7 @@
module Boot
class BootSoace
end
end
module Virtual
# our machine is made up of objects, some of which are code, some data
#
@ -21,6 +25,14 @@ module Virtual
end
return true
end
def self.space
if defined? @@space
@@space
else
@@space = ::Boot::BootSpace.new
end
end
end
class Layout < Object
@ -38,5 +50,7 @@ module Virtual
@super_class = sup
end
end
end
require_relative "integer"
require_relative "reference"