reenable now working tests

This commit is contained in:
Torsten Ruger
2018-03-28 13:04:25 +03:00
parent 606e3f8cb3
commit 5eee79719d
4 changed files with 9 additions and 11 deletions

View File

@ -21,7 +21,6 @@ module Risc
instruction.assemble(self)
end
instruction = instruction.next
puts "Next #{instruction.to_s}"
end
end

View File

@ -97,7 +97,7 @@ module Risc
def create_binary
objects.each do |id , method|
next unless method.is_a? Parfait::TypedMethod
puts "Binary for #{method.name}:#{}"
#puts "Binary for #{method.name}:#{}"
writer = BinaryWriter.new(method.binary)
writer.assemble(method.cpu_instructions)
end