adds variable, something compliles , but...

This commit is contained in:
Torsten Ruger
2014-05-10 17:55:02 +03:00
parent 5b002c0ff6
commit e600911fe8
6 changed files with 33 additions and 9 deletions

View File

@ -56,7 +56,6 @@ module Vm
def assemble io
@entry.assemble(io)
raise @body.inspect
@body.assemble(io)
@exit.assemble(io)
end

View File

@ -36,7 +36,6 @@ module Vm
end
t
end
end
class Word < Value
@ -60,7 +59,22 @@ module Vm
Machine.instance.signed_plus self , signed
end
end
class Variable < Value
attr_reader :name , :register
def initialize name , register = nil , val = nil
super(val)
@register = register
@name = name
end
def length
@value.length
end
def assemble io
@value.load @register
end
end
# The name really says it all.
# The only interesting thing is storage.
# Currently string are stored "inline" , ie in the code segment.