-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from matushorvath/link-order
Include "binary" symbol in the header sources
- Loading branch information
Showing
3 changed files
with
22 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
# This the header for the MS Basic binary. | ||
# It needs to be linked immediately after binary.o and immediately before the MS Basic binary itself. | ||
|
||
# Start address for the MS Basic binary, set to -1 to use the reset vector. | ||
.EXPORT binary | ||
|
||
binary: | ||
# Start address for the MS Basic binary, set to -1 to use the reset vector. | ||
db -1 | ||
|
||
# Load address for the MS Basic binary, needs to match the BASROM memory region in $(MSBASICDIR)/vm6502.cfg. | ||
# Load address for the MS Basic binary, needs to match the BASROM memory region in $(MSBASICDIR)/vm6502.cfg. | ||
db 0xc000 | ||
|
||
# Disable tracing | ||
# Disable tracing | ||
db 0 | ||
|
||
# No callback | ||
# No callback | ||
db 0 | ||
|
||
.EOF |