aboutsummaryrefslogtreecommitdiffstats
path: root/prequeue.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of globals.asm. Use ::s to export labels between objects.yenatch2014-01-271-2/+0
| | | | | | | | | | | 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: say how many files are being preprocessedyenatch2013-12-081-3/+11
|
* prequeue: less wasteful stdout reroutingyenatch2013-12-071-5/+8
|
* handle preprocessing in one python procress; export asm labelsyenatch2013-12-071-0/+29
instead of running a process for each file, one process handles all files rgbasm requires label EXPORT definitions for cross-object compiling. this is handled by globals.asm