aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | No more init.shyenatch2014-02-131-17/+0
| | | | | |
* | | | | | Rewrite the install instructions without init.sh.yenatch2014-02-131-11/+44
| | | | | | | | | | | | | | | | | | | | | | | | Cygwin instructions return.
* | | | | | Readme: Builds both Red and Blue.yenatch2014-02-131-7/+9
| | | | | |
* | | | | | Install: Refer to pokeblue.gbc by its filename.yenatch2014-02-131-1/+1
| |_|_|_|/ |/| | | |
* | | | | Makefile: condense dependency scanning into one loopyenatch2014-01-271-2/+0
| | | | |
* | | | | Split wram.asm from poke{red,blue}.o into wram.oyenatch2014-01-276-12/+18
| | | | | | | | | | | | | | | | | | | | wram.asm still defines some constants. They're moved into constants/wram_constants.asm.
* | | | | Clean up makefile messages and prerequisite handlingyenatch2014-01-271-4/+4
| | | | |
* | | | | Get rid of globals.asm. Use ::s to export labels between objects.yenatch2014-01-27277-4358/+4346
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | added a couple of new moves constantsAdam AKA Coolboyman2014-01-262-10/+12
| | | | |
* | | | | Merge branch 'text' of https://github.com/yenatch/pokeredIIMarckus2014-01-26227-14567/+18274
|\ \ \ \ \
| * | | | | Get rid of more unnecessary labels in text.asmyenatch2014-01-241-10/+0
| | | | | |
| * | | | | Makefile: remove duplicates when consolidating objectsyenatch2014-01-231-0/+1
| | | | | |
| * | | | | Give a : to label def _UnnamedText_ef7dyenatch2014-01-231-1/+1
| | | | | |
| * | | | | Make text.asm an objectyenatch2014-01-233-4/+9
| | | | | |
| * | | | | Bank constants for text.asmyenatch2014-01-231-13/+33
| | | | | |
| * | | | | Move text banks into text.asmyenatch2014-01-232-3196/+3198
| | | | | |
| * | | | | Split out move namesyenatch2014-01-232-166/+168
| | | | | |
| * | | | | Split out the rest of map textyenatch2014-01-2328-840/+871
| | | | | |
| * | | | | Split out route textyenatch2014-01-2328-2885/+2918
| | | | | |
| * | | | | Even more map textyenatch2014-01-2284-4367/+4456
| | | | | |
| * | | | | Silph Co 1f text was actually somewhere elseyenatch2014-01-222-8/+7
| | | | | |
| * | | | | Move city and town map text into text/mapsyenatch2014-01-2210-1187/+1196
| | | | | |
| * | | | | split out a bunch of map textyenatch2014-01-2262-3064/+3146
| | | | | |
| * | | | | split viridian and oaks lab text into text/maps/yenatch2014-01-228-956/+963
| | | | | |
| * | | | | stamp out even more text macros in mainyenatch2014-01-221-68/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: main.asm
| * | | | | rename existing map text files and put them in text/maps/yenatch2014-01-224-3/+3
| | | | | |
| * | | | | Merge branch 'split-audio' into textyenatch2014-01-223-253/+284
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: main.asm
| * | | | | | use 'next' macro in stringsyenatch2014-01-221-95/+132
| | | | | | |
| * | | | | | text macros in pokedex entriesyenatch2014-01-221-906/+1209
| | | | | | |
| * | | | | | rename and add some text macrosyenatch2014-01-226-2600/+2604
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cont replaces next, and next becomes a generic newline. para replaces page (now used for pokedex entries). dex ends a pokedex entry.
| * | | | | | text macros in text/yenatch2014-01-214-104/+144
| | | | | | |
| * | | | | | clean up missed text macros in main.asmyenatch2014-01-211-1069/+1307
| | | | | | |
| * | | | | | use text macros in main.asmyenatch2014-01-211-7078/+9882
| | | | | | |
| * | | | | | Add text macrosyenatch2014-01-211-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before text looked like: _CeladonCityText2: ; a5a4b (29:5a4b) db $0, "Heheh! This GYM", $4f db "is great! It's", $55 db "full of women!", $57 Now it looks like: _CeladonCityText2: ; a5a4b (29:5a4b) text "Heheh! This GYM" line "is great! It's" next "full of women!" done
* | | | | | | Merge branch 'fix-init-sudo' of https://github.com/yenatch/pokeredIIMarckus2014-01-262-5/+5
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | Don't use sudo in init.shyenatch2014-01-222-5/+5
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | Besides being bad practice, permissions are handled differently cross-platform (cygwin).
* | | | | | bump pokemontools for merging the previous bumpyenatch2014-01-221-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | this brings pokemontools up to date, including some map editor fixes
* | | | | | Merge remote-tracking branch 'iimarckus/master' into resplit-audioyenatch2014-01-222-254/+285
|\ \ \ \ \ \ | |_|/ / / / |/| | | | / | | |_|_|/ | |/| | | Conflicts: main.asm
| * | | | Labeled some more hardcoded banks and the OldManItemList.Marcus Huderle2014-01-071-11/+11
| | | | |
| * | | | Labeled lots of hardcoded banks.Marcus Huderle2014-01-071-42/+44
| | | | |
| * | | | Some more arbitrary labeling of unknown things.Marcus Huderle2014-01-061-40/+48
| | | | |
| * | | | wram labels and text/function labels.Marcus Huderle2014-01-061-122/+123
| | | | |
| * | | | Some OT and name WRAM labels.Marcus Huderle2014-01-052-44/+65
| |/ / /
* | | | bump pokemontools to play nice with EQUSyenatch2014-01-211-0/+0
| | | |
* | | | condense MapSongBanksyenatch2014-01-211-496/+248
| | | |
* | | | use music constants everywhereyenatch2014-01-212-281/+281
| | | | | | | | | | | | | | | | some sfx are treated as music, but don't have constants yet
* | | | define music constants instead of running around with ((label-$4000)/3)yenatch2014-01-213-0/+56
| | | |
* | | | rearrange audio.asmyenatch2014-01-091-248/+239
| | | |
* | | | fix some duty labelsyenatch2014-01-093-10/+12
| | | |
* | | | split instrument duty into audio/yenatch2014-01-094-99/+99
| | | |