mirror of
https://github.com/safiire/n65.git
synced 2025-01-08 19:29:24 +00:00
Disabled writing the symbol table to a file, as it is not usually nessessary
This commit is contained in:
parent
7e5cf3ca48
commit
2736408a14
@ -36,12 +36,13 @@ module Assembler6502
|
||||
assembler.fulfill_promises
|
||||
puts " Done."
|
||||
|
||||
## Let's export the symbol table to a file
|
||||
print "Writing symbol table to #{outfile}.yaml..."
|
||||
File.open("#{outfile}.yaml", 'w') do |fp|
|
||||
fp.write(assembler.symbol_table.export_to_yaml)
|
||||
end
|
||||
puts "Done."
|
||||
## Let's not export the symbol table to a file anymore
|
||||
## Will add an option for this later.
|
||||
#print "Writing symbol table to #{outfile}.yaml..."
|
||||
#File.open("#{outfile}.yaml", 'w') do |fp|
|
||||
#fp.write(assembler.symbol_table.export_to_yaml)
|
||||
#end
|
||||
#puts "Done."
|
||||
|
||||
## For right now, let's just emit the first prog bank
|
||||
File.open(outfile, 'w') do |fp|
|
||||
|
Loading…
Reference in New Issue
Block a user