-
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.
Replace PAC dependency w/ new internal VI module (#1)
A new internal definition of VI registers, related types, and documenting comments replaces the dependency on n64-pac. This also removes a duplicate transitive dependency (proc-bitfield). Primary motivations for this change: - New documenting comments and links to reference material on each register, bitfield, and enum - Enable additional types and macros to improve ergonomics - Fewer external dependencies Most of the time spent has been learning about each VI field and analog television in general; much less time has been spent on the ergonomics of the interface, which have gotten slightly worse. Future types, macros, and defaults (e.g. for NTSC constants) are part of the growing todo list.
- Loading branch information
Showing
5 changed files
with
566 additions
and
125 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -13,4 +13,3 @@ path = "src/bin/main.rs" | |
|
||
[dependencies] | ||
kernel = { path = "../kernel" } | ||
n64-pac = "0.3.3" |
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
|
||
//! Device interfaces and supporting structures | ||
pub mod reg; | ||
pub mod rdp; | ||
pub mod reg; | ||
pub mod vi; | ||
|
||
// eof |
Oops, something went wrong.