-
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.
Added support for stereo sound in a way that allows the program to fall back on mono when necessary. This is not a breaking change.
- Loading branch information
1 parent
ebd074a
commit 8c144ac
Showing
4 changed files
with
145 additions
and
11 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,9 +1,15 @@ | ||
/* Simple GNU ld linker script to build a DOS .COM executable */ | ||
|
||
MEMORY | ||
{ | ||
segment (wxa) : ORIGIN = 0, LENGTH = 64K | ||
} | ||
|
||
SECTIONS | ||
{ | ||
. = 0x100; | ||
.text : { *(.text) } | ||
.data : { *(.data) } | ||
.bss : { *(.bss) } | ||
.text ALIGN(0x10) : { *(.text) } >segment | ||
.data ALIGN(0x10) : { *(.data) *(.rdata) } >segment | ||
.bss (NOLOAD) : ALIGN(0x10) { *(.bss) } >segment | ||
/DISCARD/ : { *(.rdata$zzz) *(.reloc) } >segment | ||
} |
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