-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Marginally speed up the tty, but using eight-bit aligned font data ra…
…ther than trying to pack it cleverly. Doesn't appear to make a noticeable difference in real life, sadly.
- Loading branch information
1 parent
fff8e21
commit 17e2354
Showing
2 changed files
with
15 additions
and
62 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
17e2354
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.
That's a lot of cycles saved, so you've bottlenecks elsewhere that's hiding the improvement :)
17e2354
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.
Yeah, it's probably death-of-a-thousand-cuts caused by BDOS dispatch, BIOS dispatch, context switch to supervisor, tty processing, etc. I don't see any obvious low-hanging fruit. I did try buffering outgoing data in the BIOS to save on dispatch time but it didn't help and I had to claim another 256 bytes of TPA for the BIOS, so I don't think it's worth it. I definitely open to suggestions.