Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-17 | Don't define addresses for ROM0 sections in home.asm. | yenatch | |
Instead, occupy the space reserved for the rom header so there is no collision. | |||
2014-09-17 | Use a macro to define version constants. | yenatch | |
2014-09-17 | Use move animation constants instead of static values. | yenatch | |
This allows new moves and animations to be added without overlap. | |||
2014-09-17 | Enumerate move constants and add unnamed animation constants. | yenatch | |
2014-09-14 | Commented/labelled misc functions | YamaArashi | |
2014-09-13 | Commented more sprite and map code | YamaArashi | |
2014-09-09 | Labelled and commented mostly sprite-related things | YamaArashi | |
2014-09-08 | Add comments regarding menus and sprites | YamaArashi | |
2014-09-01 | Use a macro for move attributes. | yenatch | |
The formatting was pretty bad, so that's fixed too. | |||
2014-08-30 | Use hram constants for remaining joypad variables. | yenatch | |
2014-08-22 | Use PARTY_LENGTH and related constants in menu and hud code. | yenatch | |
This should allow reducing PARTY_LENGTH to work as intended. Increasing it also works provided space is provided in wram, but breaks pc/saving. | |||
2014-08-12 | Split copy and serial functions out of home.asm. | yenatch | |
2014-08-08 | Labelled many functions/variables | YamaArashi | |
2014-08-07 | Fix static banks passed into GetName. | yenatch | |
This appears to be the only other use of wPredefBank. Chances are there are more uncaught banks. Known cases are marked as "hardcoded" or similar. | |||
2014-07-28 | Commented function | YamaArashi | |
- Named and commented Func_4c70. - Removed gfx/diagonal_lines.png, which is not actually graphics. | |||
2014-07-16 | Add a comment to the "compare" target. | yenatch | |
2014-07-15 | Don't redundantly define sprite dimensions | U-Daniel-PC\Daniel | |
dimensions are defined in the .pic files | |||
2014-07-13 | Combine poke%.gbc build targets into a generalized one. | yenatch | |
Now only one target is needed for all versions. $$* also works instead of %, but in a pattern rule % is probably clearer. | |||
2014-07-12 | Merge pull request #48 from yenatch/master | yenatch | |
Clean up post-split main.asm. Get rid of static wram addresses. Lay out a foundation for Yellow. | |||
2014-07-11 | Add image suffixes to the makefile. | yenatch | |
Explicitly define png dependencies (none). This keeps make from looking for nonexistent dependencies with extensions like ".png.o". This doesn't make it go any faster, but it at least makes debug easier. | |||
2014-07-11 | Remove inline comments in an object recipe. | yenatch | |
2014-07-11 | Reorganize makefile targets for clarity. | yenatch | |
2014-07-11 | Comment the makefile. | yenatch | |
2014-07-08 | Update INSTALL.md | U-Daniel-PC\Daniel | |
- git no longer requires gettext by default (needed for "git submodule init") - Windows doesn't have sudo - pip mysteriously will not install png.py | |||
2014-06-26 | Fix Makefile: .map and .sym | U-Fish-PC\Daniel | |
The Makefile previously made the files '.map' and '.sym' instead of 'poke[red/blue].map' and 'poke[red/blue].sym' | |||
2014-06-25 | S_SPRITEBUFFER0 static address | U-Fish-PC\Daniel | |
2014-06-25 | Use *Coord instead of FuncCoord | U-Fish-PC\Daniel | |
Using 'Coord =' doesn't like using wTileMap So use hlCoord, deCoord, bcCoord, aCoord, Coorda, or dwCoord to avoid static addresses | |||
2014-06-16 | Use macros for predef calls/jumps instead of static ids. | yenatch | |
2014-06-16 | Use macros to define predefs. | yenatch | |
2014-06-16 | Fix a typo in home/vcopy.asm. | yenatch | |
This must have happened when the file got split out of home.asm. Since it was the first character on the line, it was interpreted as a label. | |||
2014-06-16 | Rename predef functions so they aren't excessive in length. | yenatch | |
This is mostly because of an rgbasm bug that prevents macro arguments from exceeding 16 characters, but the names were bad anyway. | |||
2014-06-16 | Remove generated "indirect jump" comments. | yenatch | |
The destination is obvious when using the predef macro. | |||
2014-06-14 | Hall of Fame sram labels and related constants. | yenatch | |
2014-06-14 | Use monster struct macros in wram. Rename related labels for consistency. | yenatch | |
2014-06-10 | Use MAX_LEVEL instead of 100/$64 | U-Fish-PC\Daniel | |
2014-06-10 | Make each pitch/instrument its own macro | U-Fish-PC\Daniel | |
2014-06-10 | More music bank references | U-Fish-PC\Daniel | |
Now the AUDIO constants in audio.asm can be edited freely | |||
2014-06-09 | Clean up white space | U-Fish-PC\Daniel | |
2014-06-09 | Clean up music bank references | U-Fish-PC\Daniel | |
2014-06-09 | Merge branch 'master' of https://github.com/yenatch/pokered | U-Fish-PC\Daniel | |
2014-06-09 | Combine wave files | U-Fish-PC\Daniel | |
2014-06-09 | Improve music command names | U-Fish-PC\Daniel | |
2014-06-06 | Space out monster constants to make gaps clearer. | yenatch | |
2014-06-06 | Comment SGB packets. | yenatch | |
2014-06-06 | Merge remote-tracking branch 'danny/master' | yenatch | |
2014-05-31 | Explicit sections for pics, sprites and misc graphics. | yenatch | |
2014-05-31 | Split out joypad code from main.asm. | yenatch | |
2014-05-31 | Split more code out of home.asm. | yenatch | |
2014-05-31 | Relabel a few missed map scripts and TheEndTextString | U-Fish-PC\Daniel | |
2014-05-31 | Remove duplicated data | U-Fish-PC\Daniel | |