diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2024-01-03 10:59:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-03 10:59:04 -0500 |
| commit | fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b (patch) | |
| tree | aeec4e2e98eb8a8ad122ebb59346b1028bf92b69 /ram | |
| parent | Use BANK("Trainer Sight") to apply to all four possible functions in the "Tra... (diff) | |
| download | pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.tar.gz pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.tar.xz pokeyellow-fabe2b3fb3fb5a849c5220298acabbdc9ad30f3b.zip | |
Update to RGBDS 0.7.0 (#447)
Diffstat (limited to 'ram')
| -rw-r--r-- | ram/hram.asm | 2 | ||||
| -rw-r--r-- | ram/sram.asm | 2 | ||||
| -rw-r--r-- | ram/vram.asm | 2 | ||||
| -rw-r--r-- | ram/wram.asm | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/ram/hram.asm b/ram/hram.asm index fc2f45bc..1a781da4 100644 --- a/ram/hram.asm +++ b/ram/hram.asm @@ -397,3 +397,5 @@ hJoyInput:: db hDisableJoypadPolling:: db ds 5 + +ENDSECTION diff --git a/ram/sram.asm b/ram/sram.asm index 6cb45371..c3435b80 100644 --- a/ram/sram.asm +++ b/ram/sram.asm @@ -51,3 +51,5 @@ sBank3IndividualBoxChecksums:: ds 6 ; All 12 boxes fit within 2 SRAM banks ASSERT box_n == NUM_BOXES, \ "boxes: Expected {d:NUM_BOXES} total boxes, got {d:box_n}" + +ENDSECTION diff --git a/ram/vram.asm b/ram/vram.asm index 21230ac0..04556410 100644 --- a/ram/vram.asm +++ b/ram/vram.asm @@ -29,3 +29,5 @@ vTitleLogo:: ds $80 tiles vTitleLogo2:: ds 30 tiles ENDU + +ENDSECTION diff --git a/ram/wram.asm b/ram/wram.asm index ecd0602b..775a9dc8 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -2320,3 +2320,5 @@ SECTION "Stack", WRAM0 ; the stack grows downward ds $100 - 1 wStack:: db + +ENDSECTION |
