From 1b9ee46af9f8baac0d266a54130115a719788377 Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 27 Jan 2014 16:22:41 -0500 Subject: Get rid of globals.asm. Use ::s to export labels between objects. globals.asm was a hack that: - gave rgbasm an extra 100k lines to read - increased reliance on the python preprocessor - made the makefile a mess - gave object creation an extra step - wasn't even necessary This speeds up build time by at least a third. --- preprocessor.py | 1 - 1 file changed, 1 deletion(-) (limited to 'preprocessor.py') diff --git a/preprocessor.py b/preprocessor.py index cb9353af..ee227612 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -280,7 +280,6 @@ def setup_processor(): def main(): processor = setup_processor() output = processor.preprocess() - processor.update_globals() return output if __name__ == '__main__': -- cgit v1.2.3