f0ba863721
wsa supposed to be clearer, but even to me seems confusing now.
25 lines
600 B
Ruby
25 lines
600 B
Ruby
require_relative "ruby_compiler"
|
|
|
|
module Vool
|
|
class VoolCompiler
|
|
|
|
def self.ruby_to_vool( ruby_source )
|
|
statements = RubyCompiler.compile( ruby_source )
|
|
statements = statements.normalize
|
|
statements.to_mom(nil)
|
|
statements
|
|
end
|
|
def self.ruby_to_mom(source)
|
|
statements = self.ruby_to_vool(source)
|
|
statements.to_mom(nil)
|
|
end
|
|
def self.ruby_to_binary(source , platform = :arm)
|
|
machine = Risc.machine.boot
|
|
self.ruby_to_vool(source)
|
|
machine.translate(platform)
|
|
machine.position_all
|
|
machine.create_binary
|
|
end
|
|
end
|
|
end
|