b980def84e
Also make the machine the singleton and space hang off it Many repercussions, not all fixed in this commit
16 lines
373 B
Ruby
16 lines
373 B
Ruby
module Arm
|
|
|
|
# "Boot" the register machine at the function given
|
|
|
|
class MainImplementation
|
|
def run block
|
|
block.codes.dup.each do |code|
|
|
next unless code.is_a? Register::RegisterMain
|
|
call = ArmMachine.b( code.method )
|
|
block.replace(code , call )
|
|
end
|
|
end
|
|
end
|
|
Virtual::Machine.instance.add_pass "Arm::MainImplementation"
|
|
end
|