diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-02-16 12:50:44 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-02-16 12:50:44 -0500 |
commit | 775d5da74d6a6919fe5986b827bc05ba3191a513 (patch) | |
tree | 32ff15a8df3cde48e7951ee2ea110f9bf06255cf | |
parent | 3f93f7726fffe4171c528bcd164c374dd8b256db (diff) |
0.3.8
-rw-r--r-- | Code-cleanup.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Code-cleanup.md b/Code-cleanup.md index 92b1e98..12d13c4 100644 --- a/Code-cleanup.md +++ b/Code-cleanup.md @@ -15,11 +15,6 @@ As of 0.3.7, we have these features that are little-used: - `BANK(@)` gets the current bank; `BANK("Section Name")` is also valid (some labels can thus be removed) - `\` continues lines, like in C or Python, which could help clean up long macros (`trainer`, `npctrade`) and implement new ones (like for data/trainers/attributes.asm or data/pokemon/base_stats/\*.asm) -The next release, presumably 0.3.8, will have even more features: - -- [PR #277](https://github.com/rednex/rgbds/pull/277) supports the aliases `ldh [c], a` for `ld [$ff00+c], a` and `ldh a, [c]` for `ld a, [$ff00+c]`. These will be easier to read and pair better with other uses of `ldh`. -- [PR #295](https://github.com/rednex/rgbds/pull/295) supports charmaps in constant expressions, so we can simplify cases like `TIMESET_DOWN_ARROW EQUS "\"♀\"` to just `TIMESET_DOWN_ARROW EQU "♀"`. - ### Meaningless temporary labels |