juggle into the machine

This commit is contained in:
Torsten Ruger
2014-07-30 21:07:48 +03:00
parent 5d61fd1b37
commit 5add9c42f2
2 changed files with 13 additions and 4 deletions

View File

@ -33,11 +33,22 @@ module Virtual
class Machine
def initialize
@parser = Parser::Salama.new
the_end = Halt.new
@message = Message.new(the_end , the_end , :Object)
end
attr_reader :message
def self.boot
machine = Machine.new
machine.boot
end
def read string
syntax = @parser.parse_with_debug(string)
Parser::Transform.new.apply(syntax)
end
# run the instruction stream given. Instructions are a graph and executing means traversing it.
# If there is no next instruction the machine stops
def run instruction