get an elf written

This commit is contained in:
Torsten Ruger
2018-03-29 20:37:25 +03:00
parent 3844a738cd
commit efcc33f8a1
3 changed files with 14 additions and 14 deletions

View File

@ -13,5 +13,10 @@ module Vool
statements = self.ruby_to_vool(source)
statements.to_mom(nil)
end
def self.ruby_to_binary(source)
machine = Risc.machine.boot
self.ruby_to_vool(source)
machine.position_all
end
end
end