2016-11-27 05:52:45 -08:00
|
|
|
unify/optimize ascii/asciiz/byte/halfword/word into BIN directives
|
|
|
|
|
|
|
|
directive aliases, are these right?
|
|
|
|
DB = 'BYTE',
|
|
|
|
DH = 'HALFWORD',
|
|
|
|
DW = 'WORD',
|
|
|
|
|
2016-05-14 03:47:40 -07:00
|
|
|
add basic command-line interface (patch.lua)
|
|
|
|
|
|
|
|
add macros
|
|
|
|
implement push/pop/jpop as macros
|
|
|
|
be able to point to specific args of push/pop using variables
|
|
|
|
add file-reading directives (e.g. for automatic hook injection macros)
|
|
|
|
allow generation of shared object files (zelda overlays specifically)
|
|
|
|
|
|
|
|
don't require colons for +/- labels (this shouldn't break anything right?)
|
|
|
|
|
2016-10-19 08:21:52 -07:00
|
|
|
write tests for everything (try to focus on code paths and edge cases)
|
|
|
|
test unary tokens in particular
|
|
|
|
|
|
|
|
improve parser terminology
|
|
|
|
|
|
|
|
add a gameshark writer
|
|
|
|
|
|
|
|
improve writer performance (just copypaste what you did in patch.lua)
|
|
|
|
|
|
|
|
long term: add delay slot warnings
|
|
|
|
|
|
|
|
externally document more stuff like syntax
|