forked from gbdev/rgbds
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Again, this should improve performance, notably from bypassing stdio's buffering layer (we are generally able to use more appropriate buffer sizes, and also to write bytes directly to their final destination). And perhaps it might also improve reliability somewhat.
- Loading branch information
Showing
3 changed files
with
101 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
error: incbin-empty-bad.asm(3): | ||
Specified range in INCBIN file 'empty.bin' is out of bounds (0 + 1 > 0) | ||
Premature end of INCBIN file "empty.bin" (1 byte left to read) | ||
error: Assembly aborted (1 error)! |
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,3 +1,3 @@ | ||
error: incbin-end-bad.asm(3): | ||
Specified range in INCBIN file 'data.bin' is out of bounds (123 + 1 > 123) | ||
Premature end of INCBIN file "data.bin" (1 byte left to read) | ||
error: Assembly aborted (1 error)! |