moved sod write method to module

This commit is contained in:
Torsten Ruger
2015-06-19 12:29:41 +03:00
parent 1baece99c7
commit 87143091ca
7 changed files with 8 additions and 8 deletions

View File

@ -100,8 +100,8 @@ module Register
begin
code.assemble( stream )
rescue => e
puts "Method error #{method.name}\n#{Sof::Writer.write(method.info.blocks).to_s[0...2000]}"
puts Sof::Writer.write(code)
puts "Method error #{method.name}\n#{Sof.write(method.info.blocks).to_s[0...2000]}"
puts Sof.write(code)
raise e
end
end