From 2736408a147c2234be12ff54268e1af5366889ef Mon Sep 17 00:00:00 2001
From: Safiire <safiire@gmail.com>
Date: Fri, 27 Mar 2015 16:36:11 -0700
Subject: [PATCH] Disabled writing the symbol table to a file, as it is not
 usually nessessary

---
 lib/assembler.rb | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/lib/assembler.rb b/lib/assembler.rb
index 998842f..34eafea 100644
--- a/lib/assembler.rb
+++ b/lib/assembler.rb
@@ -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|