-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve TMS Reset & SN76489 Early Init
- The TMS reset function was missing a call to re-initialize the CRT registers. This has been added. - The SN76489 powers up in a dreadful state where it is emitting loud noise until initialized. Added a PREINIT entry point to initialize the registers earlier. Still not great, but a lot better.
- Loading branch information
Showing
5 changed files
with
17 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ rmn equ 5 | |
rup equ 0 | ||
rtp equ 0 | ||
biosver macro | ||
db "3.5.0-dev.20" | ||
db "3.5.0-dev.21" | ||
endm |
d50593a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"100" years ago my college roommate had a summer intern job at Texas Instruments.
He came back with a "suitcase full" of various ICs.
Among those were the 76489 sound generators.
They were early prototypes, and defective.
The attenuator was not monotonically increasing with the bit values.
We added one to our hand wired 8080A, and had to adjust the sound levels with a lookup table to fix the bug in the chip.
Add to that he managed to wire up the pins backwards on the socket, so we wound up bending the leads on the IC package folded back on itself.
Good times!
Remembering those days is why I'm interested now in this whole effort!
Bill