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. --- prequeue.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'prequeue.py') diff --git a/prequeue.py b/prequeue.py index d9b37e03..85549c37 100644 --- a/prequeue.py +++ b/prequeue.py @@ -23,8 +23,6 @@ def preprocess_queue(filenames=sys.argv[1:]): sys.stdout = open(dest, 'w') processor.preprocess() - processor.update_globals() - sys.stdin = stdin sys.stdout = stdout -- cgit v1.2.3