summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-03fix interface label for UpdateTimePalsyenatch
2013-09-03split out delay functionsyenatch
2013-09-03split out martsyenatch
2013-09-03split out trainer dvsyenatch
2013-09-03recomment trainer dvsyenatch
2013-09-03decoration namesyenatch
2013-09-03some asm pointer tables in bank 5fyenatch
2013-09-03dump move tutor asm in bank 40yenatch
2013-09-03Merge branch 'master' of github.com:kanzure/pokecrystalyenatch
2013-09-03more bank 4 asmyenatch
this stuff looks like it's related to phone call timing
2013-09-03even more incbinned asm in bank 4yenatch
2013-09-03disassemble more incbins in bank 4yenatch
2013-09-03the rest of TMHMMovesyenatch
2013-09-03more bank 4 functions and CanLearnTMHMMoveyenatch
2013-09-03GetTMHMMove and renamed TechnicalMachines -> TMHMMovesyenatch
2013-09-02formatting in MoveInfoBox and related functionsyenatch
2013-09-02Sine and Cosineyenatch
2013-09-01wram labels for graphics requestsyenatch
2013-09-01split out tileset headers from main into tilesets/tileset_headers.asmyenatch
2013-09-01split tileset palette maps out of main into tilesets/palette_maps.asmyenatch
2013-09-01split tileset data out from main into tilesets/yenatch
2013-09-01random 0s in tileset data was actually lz paddingyenatch
i guess someone liked their filesizes nice and even?
2013-09-01split out blockdata includes from main into maps/yenatch
2013-09-01shorten some overly long music filenamesyenatch
2013-09-01get rid of the last static address in tileset animation arraysyenatch
2013-09-01recomment _AnimateTilesetyenatch
2013-09-01consistent casing for Tileset labelsyenatch
wram labels were using TileSet for some reason
2013-09-01rename DoTileAnimation to AnimateTilesetyenatch
2013-09-01rename graphics request handlers to Serve1bppRequest and Serve2bppRequestyenatch
these had some really dumb names
2013-08-31fix PushOAM references in VBlankyenatch
2013-08-31recomment tileset animation interfaceyenatch
2013-08-31recomment bg map update functionsyenatch
2013-08-31bg map width/height constantsyenatch
2013-08-31Merge pull request #185 from kanzure/preprocessor-performanceBryan Bishop
Preprocessor performance improvements. This recliams 0.4 seconds.
2013-08-31Merge pull request #184 from kanzure/preprocessor-macro-sanity-check-functionBryan Bishop
Move macro sanity check into a separate function.
2013-08-31give preprocessor.py a main()Bryan Bishop
2013-08-31even better performance for read_lineBryan Bishop
2013-08-31better read_line performance in preprocessorBryan Bishop
Jump out of read_line early if the line is an empty string or a newline.
2013-08-31reset stdout in prequeue.py near endBryan Bishop
Other output shouldn't be dumped into items/item_attributes.tx by default.
2013-08-31don't call load_pokecrystal_macros 2000 timesBryan Bishop
Also, don't call make_macro_table 2000 times by only calling it once and passing the result.
2013-08-31move macro sanity check into separate functionBryan Bishop
This moves out from macro_translator the macro/param length sanity check into a function called check_macro_sanity.
2013-08-31Merge pull request #183 from kanzure/preprocessor-macro-functionBryan Bishop
Function to make the preprocessor "macros" list.
2013-08-31Merge branch 'master' into preprocessor-macro-functionBryan Bishop
2013-08-31Merge pull request #182 from kanzure/preprocessor-assertsBryan Bishop
Use PreprocessorException instead of AssertionError in preprocessor
2013-08-31Merge branch 'master' into preprocessor-assertsBryan Bishop
2013-08-31refactor preprocessor macros into a functionBryan Bishop
Remove the "macros" global and instead use a function to construct a list of macros.
2013-08-31Merge pull request #181 from kanzure/remove-globals-from-preprocessorBryan Bishop
Remove globals from preprocessor.
2013-08-31docstring for prequeue.pyBryan Bishop
2013-08-31make a MacroException more verbose in preprocessorBryan Bishop
2013-08-31convert a macro_translator assert in preprocessorBryan Bishop
AssertionError -> PreprocessorException