getting a _start and _exit, just missing the actual code

This commit is contained in:
Torsten Ruger
2014-05-06 00:12:04 +03:00
parent 7d20b5e2df
commit 22b5117c8b
12 changed files with 43 additions and 105 deletions

View File

@@ -1,5 +1,5 @@
require 'arm/nodes'
require 'arm/block'
require 'vm/block'
require 'stream_reader'
require 'stringio'
require "arm/string_literal"
@@ -43,7 +43,7 @@ module Arm
def add_string str
code = @string_table[str]
return code if code
data = Arm::StringLiteral.new(str)
data = Vm::StringLiteral.new(str)
@string_table[str] = data
end