Commit graph

2274 commits

Author SHA1 Message Date
yenatch 1aefbfa523 Python is no longer used to build. 2018-03-10 19:04:26 -05:00
yenatch f75049feef Use rgbgfx and c tools instead of the submodule. 2018-03-10 18:53:04 -05:00
Daniel Harding 37ded1d150
Merge pull request #171 from xCrystal/master
Misc style fixes
2018-02-05 11:13:02 -06:00
Daniel Harding b8aa9ec80e
Merge pull request #174 from Rangi42/master
Add warp, sign, and warp_to macros for data/mapObjects definitions; use base 10 numbers
2018-02-05 10:57:14 -06:00
Remy Oukaour 819b678909 INCBIN don't start with tabs 2018-01-29 12:05:06 -05:00
Remy Oukaour 2e0183fc27 Block IDs use hex; zero connections use dec 2018-01-29 11:46:45 -05:00
Remy Oukaour dd4f0a0064 Use base 10 (note, the previous commit resolves #173) 2018-01-29 11:12:59 -05:00
Remy Oukaour d271d69175 Add warp, sign, and warp_to macros for data/mapObjects definitions 2018-01-29 02:31:32 -05:00
luckytyphlosion c84667c4df
Add pokegold and pokefirered. 2017-12-31 13:23:25 -05:00
xCrystal 237aeb8fbd Add space between arguments in assembly instructions and remove redundant a in instructions like add a, x 2017-12-30 01:54:27 +01:00
xCrystal 94b9a86c8b Uppercase battle status constants 2017-12-30 00:59:48 +01:00
dannye 9dc48a1be7 Replace hardcoded address offset 2017-12-02 14:40:34 -06:00
dannye 19e4e188ce Catch a missed hide/show ID 2017-10-29 13:22:17 -05:00
yenatch a9a687bd6e install: rgbds 0.3.3 2017-09-30 13:33:44 -04:00
yenatch 5c24193831 Merge pull request #167 from Pokechu22/rgbds-0.3.3
Update for RGBDS 0.3.3
2017-09-29 22:41:34 -04:00
Pokechu22 d7fae287e4 Update Travis configuration to use rgbds 0.3.3 2017-09-29 19:23:55 -07:00
Pokechu22 f95d25c832 Rename linkerscript and sort sym file 2017-09-29 19:22:56 -07:00
Pokechu22 901844f536 Use unions rather than negative offsets 2017-09-29 19:16:08 -07:00
luckytyphlosion fc9712596f Add Gen 3 disassemblies. 2017-09-04 19:41:04 -04:00
luckytyphlosion a92733b2b9 Add other disassembly links. 2017-09-04 19:25:52 -04:00
luckytyphlosion 55bfaba38e Add Discord link. 2017-09-04 19:06:18 -04:00
yenatch a1ca8aa239 Merge pull request #162 from Helios-vmg/text-corrections
Replaced $xx in text .asm files with "<xxx>" for consistency
2017-08-01 16:45:26 -04:00
Víctor M. González 5c39c6c5cb Replaced all instances of $52, $53, and $5A with "<PLAYER>", "<RIVAL>", and "<USER>" respectively. 2017-07-30 18:46:53 -03:00
dannye 7a9a1b1e55 Fix typos in comments 2017-06-24 15:01:43 -05:00
Antonio Niño Díaz 9ea25bc8cd Replace deprecated mnemonics by the correct ones
The old mnemonics generate warnings with new versions of rgbds. This
patch replaces them by the correct ones.

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
2017-06-09 22:54:09 +01:00
Antonio Niño Díaz dfc094db72 Update Travis configuration to use rgbds 0.3.1
Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
2017-06-09 22:36:11 +01:00
Antonio Niño Díaz 7f3517b8d1 Add linkerscript
Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
2017-06-09 22:34:50 +01:00
dannye e9f33ce19c Typo: SFX_POKEFLUE → SFX_POKEFLUTE 2017-05-08 02:54:20 -05:00
yenatch 832c28eaea Fix the Stack section.
Negative section sizes are no longer allowed as of rgbds 0.3.0.
2017-05-01 11:15:39 -04:00
yenatch c4e51522cc Update the rgbds links. v0.2.5 is the last working version. 2017-05-01 11:08:36 -04:00
yenatch 678b3c9e6c Merge commit '52adb84'
Revert "Fix floating sections"

This reverts commit cec6e6e.
2017-04-24 22:08:48 -04:00
Sanqui 6697d9e7f1
INSTALL.md: add a note about different cygwin install paths
Fixes #149.
2017-04-19 20:09:45 +02:00
YamaArashi 53cb0137e7 Merge pull request #152 from strager/strager-fix-oaks-lab
Remove duplicate OaksLabText labels
2017-04-03 19:58:24 -07:00
YamaArashi 0d062b49a6 Merge pull request #153 from strager/strager-fix-wrong-variable
Use correct variable in EngageMapTrainer
2017-04-03 19:51:38 -07:00
Matthew Glazar d51dcc263e Remove duplicate OaksLabText labels
For unknown reasons, the text pointer list for Oak's Lab is
duplicated. This is currently implemented by treating the
two text pointer lists as one large list. This leads to
duplicate labels and some confusing logic.

Refactor the code to treat the two text pointer lists
separately. This lets us remove several labels. It also
makes the code which sets the text pointer list
self-documenting.
2017-04-02 13:32:21 -07:00
Matthew Glazar 3541904411 Use correct variable in EngageMapTrainer
EngageMapTrainer should write to wEngagedTrainerClass and
wEngagedTrainerSet, not wEngagedTrainerClass and
wEnemyMonAttackMod. wEnemyMonAttackMod doesn't make any
sense in this context. Use the correct variable.

These two variables happen to have the same address, so
there is no functional difference between using
wEnemyMonAttackMod versus using wEngagedTrainerSet.
2017-04-02 13:19:04 -07:00
Sanqui a30bbae4b5
Merge branch 'joefarebrother-label-naming' 2017-03-21 16:35:36 +01:00
Sanqui 2eabbc26a9
Merge branch 'label-naming' of https://github.com/joefarebrother/pokered into joefarebrother-label-naming 2017-03-21 16:35:19 +01:00
Sanqui 274809b723 Merge pull request #148 from Sanqui/ci
Add Travis continuous integration
2017-03-21 14:59:00 +01:00
AntonioND 52adb844de Revert "Fix floating sections"
This reverts commit cec6e6e2fb.

Signed-off-by: AntonioND <antonio_nd@outlook.com>
2017-03-21 01:12:49 +00:00
Sanqui d7bd7f4453
Update Travis script to use make compare and rgbds v0.2.5 2017-03-20 20:37:02 +01:00
Sanqui 2e2a25fec1
Merge branch 'ci' of https://github.com/PoCs/pokered into ci 2017-03-20 19:45:41 +01:00
Joe Farebrother 39d31cecb2 Gave names to the functions and labels and adresses used in DivideBCD
and added a few comments
2017-03-19 21:09:24 +00:00
Joe Farebrother ce35f2f7a1 Gave the labels in _MoveMon more descriptive names and added a few comments 2017-03-19 20:35:40 +00:00
Sanqui caa146a298 Merge pull request #145 from ISSOtm/patch-1
Fix typo in address.
2017-03-16 21:08:55 +01:00
Panda Habert cfacfd847c Fix typo in address 2017-03-16 20:47:01 +01:00
Sanqui d1a96e37b6 Merge pull request #144 from AntonioND/an/fix-floating
Fix floating sections
2017-03-15 14:52:38 +01:00
AntonioND cec6e6e2fb Fix floating sections
This is needed to prevent rgblink from moving them around in future
releases.

Signed-off-by: AntonioND <antonio_nd@outlook.com>
2017-03-14 21:45:45 +00:00
dannye f40c979a6c Fix typos 2017-01-20 17:32:43 -06:00
YamaArashi 46fbe5531b fix incorrect comment 2017-01-16 14:42:15 -08:00