summaryrefslogtreecommitdiff
path: root/home
AgeCommit message (Collapse)Author
2017-12-25Resolve #428: Use `HIGH(X)` and `LOW(X)` instead of `X / $100` and `X % ↵Remy Oukaour
$100` or `X >> 8` and `X & $ff`
2017-12-24move rst.asm and interrupts.asm into home/yenatch
2017-12-24Renaming: (fix #412)Remy Oukaour
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event
2017-12-24Rename "map permissions" to "map environment" (fix #396)Remy Oukaour
2017-12-24callba/callab → farcall/callfarRemy Oukaour
2017-12-22More comments for constant<->table correspondencesRemy Oukaour
2017-12-22IsHM is not used within home/names.asm; group it with the other HM routines+dataRemy Oukaour
2017-12-22Split more code from home.asm into home/ filesRemy Oukaour
2017-12-15More comments for macrosRemy Oukaour
2017-12-14Reorganize macrosRemy Oukaour
2017-12-12Document one more bug.Remy Oukaour
2017-12-12Define constants for collision typesRemy Oukaour
2017-12-12Identify more sprite-related constantsRemy Oukaour
Start more documentation
2017-12-11Add member constants for the base data struct, same as most other structsRemy Oukaour
2017-12-11Move more data tables into data/ files.Remy Oukaour
2017-12-11Document macros/map.asmRemy Oukaour
Rename MORN/DAY/NITE to MORN_F/DAY_F/NITE_F; use MORN/DAY/NITE for shifted values (cleaner for person_events) Prefix FLOOR to the `elevfloor` constants
2017-12-10Rename tilesets, consistent with constant namesRemy Oukaour
2017-12-10Use new palette constantsRemy Oukaour
2017-12-10Consistent code formatting: no redundant `a`s and spaces after commasRemy Oukaour
2017-12-09More WRAM cleanupRemy Oukaour
2017-12-09Further WRAM organizationRemy Oukaour
2017-12-09More WRAM organizationRemy Oukaour
2017-12-09Start organizing WRAMRemy Oukaour
- Use db and dw when they're more meaningful than ds 1/2 - Use unions to group related labels
2017-12-09More constantsRemy Oukaour
2017-12-09Define more charmap characters and use them in place of hard-coded numbersRemy Oukaour
2017-12-09Document constants with comments, actual names, and more thorough usageRemy Oukaour
2017-10-28Fix WATERTILE/WALLTILE constantspfero
WATRTILE was wrongly defined as 15, and WALLTILE as 1. Those had to be flipped around. This has allowed for us to replace inmediate values with these constants in several places to improve readability. WATRTILE was renamed to WATERTILE in the name of readability.
2017-06-24Merge pull request #354 from FredrIQ/commentsyenatch
Fix a reversed label mistake and reference a major bug
2017-06-09Replace ‘jp [hl]’ with ‘jp hl’Ben10do
The former is arguably misleading (as you don’t access the memory location in hl to retrieve the jump location), and is consequently deprecated in newer versions of rgbds. This fix silences these deprecation warnings.
2017-01-08Reverse the LastEnemyCounterMove and LastPlayerCounterMove labelsFredrik Ljungdahl
They were swapped
2016-07-29Merge branch 'master' of github.com:pret/pokecrystalPikalaxALT
2016-06-13hLCDCPointer and InitListpikalaxalt
2016-06-07Fix indentation in many placespikalaxalt
2016-06-06Remaining layout constantspikalaxalt
2016-05-28Fix PlaySFX priority commentBrandon Mulcahy
2016-05-27Port homecall macropikalaxalt
2016-05-19Comment on bug in ClearWRAMpikalaxalt
2016-05-15SPRITE_ANIM_FRAME_IDX constantspikalaxalt
2016-05-14Unify directional movement macrospikalaxalt
2016-05-11Save functions; feeble attempt at serial and link functionspikalaxalt
2016-05-11Name all printer functionspikalaxalt
2016-05-10Name all functions in event/pikalaxalt
2016-05-10Labeled every function in ROM0 that's referenced in the sourcepikalaxalt
2016-05-08All functions in main.asm have non-generic namespikalaxalt
2016-05-05Mobile and more battle animspikalaxalt
2016-05-04HDMA transfer functionspikalaxalt
2016-05-04More splitting of main.asm; remove unneeded rept 2pikalaxalt
2016-04-10Local labels starting with lowercase letters are no longer decorated with a ↵pikalaxalt
trailing colon
2016-04-10Local labels starting with capital letters are now decorated with a trailing ↵pikalaxalt
colon; remove trailing whitespace; globally correct line endings to UNIX style
2016-03-27Split up banks 1-3 of main.asmpikalaxalt