Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-14 | wram: find() instead of split() | yenatch | |
2013-05-14 | gbz80disasm: bank 1 was being read as bank 0 | yenatch | |
2013-05-14 | wram.py: bss and constant parsing | yenatch | |
2013-05-14 | transition gbz80disasm to use a bytearray instead of RomStr | yenatch | |
2013-05-14 | remove redundant code from find_label in gbz80disasm | yenatch | |
2013-05-14 | fix bank-checking for labels in gbz80disasm | yenatch | |
bank 1 is not fixed like bank 0 | |||
2013-05-12 | Merge pull request #132 from yenatch/master | Bryan Bishop | |
map groups + gfx.py fix | |||
2013-05-12 | there is no os.touch | yenatch | |
2013-05-12 | Merge pull request #130 from Sanky/master | Bryan Bishop | |
Menu stuff, battle text split & extras. | |||
2013-05-11 | touch graphic files during decmp so make doesnt try to replace them | yenatch | |
2013-05-07 | portraitm_ail -> portraitmail | yenatch | |
2013-05-08 | add extras/parse_consecutive_strings.py | Sanky | |
2013-05-08 | make gbz80disasm understand bank:offset syntax | Sanky | |
2013-05-06 | Merge pull request #126 from yenatch/master | Bryan Bishop | |
map scripts + ai + disabled line ending correction | |||
2013-05-01 | downward triangle character 0xee | yenatch | |
2013-04-30 | Fix PointerLabelToScriptPointer class | yenatch | |
used the current address instead of the parsed address | |||
2013-04-27 | Merge yenatch/master. | Bryan Bishop | |
2013-04-20 | damagecalc is actually damagestats; itemmultiplier is actually damagecalc | yenatch | |
2013-03-29 | make chars consistent with preprocessor | yenatch | |
2013-03-29 | dump move effects | yenatch | |
2013-03-21 | fix docstring formatting everywhere | Bryan Bishop | |
2013-03-20 | Merge pull request #124 from yenatch/master | Bryan Bishop | |
hram labels + png make target | |||
2013-03-18 | fix path handling in png make target | yenatch | |
lz files were being decompressed to the top directory (gfx/) | |||
2013-03-18 | dump tileset pngs in gfx.py | Bryan Bishop | |
2013-03-18 | Fix unused function parse_map_header_by_id | yenatch | |
'Dunno' exception always fired even if parameters were correct | |||
2013-03-07 | Merge pull request #122 from yenatch/master | Bryan Bishop | |
vba config shouldn't need fiddling out of the box | |||
2013-03-07 | vba - generalize project path in config | yenatch | |
2013-03-07 | vba - suppress joypad input message | yenatch | |
2013-03-05 | vba - record/replay button sequences | Bryan Bishop | |
2013-03-04 | vba - keyboard input optimization | Bryan Bishop | |
2013-03-03 | vba - basic cheating infrastructure | Bryan Bishop | |
2013-03-01 | vba - separate config | Bryan Bishop | |
2013-03-01 | vba - run without unit tests | Bryan Bishop | |
2013-03-01 | vba - also install jython | Bryan Bishop | |
2013-03-01 | vba - improve install instructions | Bryan Bishop | |
2013-03-01 | Script commands 0xb2 and 0xcc don't exist | yenatch | |
2013-03-01 | fix bank handling in vba.call | Bryan Bishop | |
2013-03-01 | vba - example unit testing of roms | Bryan Bishop | |
2013-03-01 | vba - call arbitrary functions from jython | Bryan Bishop | |
2013-02-28 | vba - fix off-by-one error in registers | Bryan Bishop | |
2013-02-28 | vba - better way to deal with registers | Bryan Bishop | |
2013-02-28 | vba - get text on screen | Bryan Bishop | |
2013-02-28 | vba - set_registers | Bryan Bishop | |
2013-02-28 | remove code slop | Bryan Bishop | |
2013-02-28 | vba warp function | Bryan Bishop | |
2013-02-27 | disassemble scripting engine commands | Bryan Bishop | |
All commands are in scripting.asm, and there's also a small python script that was written to assist with some of the automation. | |||
2013-02-27 | update gbz80disasm for handling known fall-throughs | Bryan Bishop | |
When disassembling a group of functions, sometimes there are other functions known in advance. By passing in a list called stop_at to gbz80disasm, it is possible to prevent disassembled asm from running on for longer than necessary. | |||
2013-02-27 | update automatic main.asm insertion | Bryan Bishop | |
This updates the automatic parsing of main.asm to catch cases of INCBINs pulling in files that end in .asm, .lz, .1bpp, and .2bpp. This is necessary because otherwise the parser tries to figure out the start and end addresses expressed on the INCBIN line, details not present on these types of lines in the asm. Asm and Asm.insert_all are now back in working condition. | |||
2013-02-27 | include_last_address for disassembler | Bryan Bishop | |
This is an extra option that is on by default for gbz80disasm, which is useful in situations where you may not want the last address to be included (like if the output of the disassembler is going to be sent to to_asm anyway). | |||
2013-02-27 | make to_asm more configurable | Bryan Bishop | |