-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
22 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
error: fixed-oob.asm(1): | ||
Section "ROM0"'s fixed address 0xbabe is outside of range [0; 0x7fff] | ||
Section "ROM0"'s fixed address $babe is outside of range [$0000; $7fff] | ||
error: fixed-oob.asm(3): | ||
Section "ROMX"'s fixed address 0xbeef is outside of range [0x4000; 0x7fff] | ||
Section "ROMX"'s fixed address $beef is outside of range [$4000; $7fff] | ||
error: fixed-oob.asm(5): | ||
Section "VRAM"'s fixed address 0xc0de is outside of range [0x8000; 0x9fff] | ||
Section "VRAM"'s fixed address $c0de is outside of range [$8000; $9fff] | ||
error: fixed-oob.asm(7): | ||
Section "SRAM"'s fixed address 0xcafe is outside of range [0xa000; 0xbfff] | ||
Section "SRAM"'s fixed address $cafe is outside of range [$a000; $bfff] | ||
error: fixed-oob.asm(11): | ||
Section "WRAMX"'s fixed address 0xdad is outside of range [0xd000; 0xdfff] | ||
Section "WRAMX"'s fixed address $0dad is outside of range [$d000; $dfff] | ||
error: fixed-oob.asm(13): | ||
Section "OAM"'s fixed address 0xcab is outside of range [0xfe00; 0xfe9f] | ||
Section "OAM"'s fixed address $0cab is outside of range [$fe00; $fe9f] | ||
error: fixed-oob.asm(15): | ||
Section "HRAM"'s fixed address 0xbad is outside of range [0xff80; 0xfffe] | ||
Section "HRAM"'s fixed address $0bad is outside of range [$ff80; $fffe] | ||
error: Assembly aborted (7 errors)! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
error: Section "rom" is bigger than the max size for that type: 0x8000 > 0x4000 | ||
error: Section "rom" is bigger than the max size for that type: $8000 > $4000 | ||
Linking failed with 1 error |