-
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.
feat(utils): create dedicated utils module;
- Loading branch information
Showing
4 changed files
with
14 additions
and
4 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 |
---|---|---|
|
@@ -19,6 +19,7 @@ mod emulation; | |
mod character_encoding; | ||
mod errors; | ||
mod instruction; | ||
mod utils; | ||
|
||
use errors::Error; | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use arbitrary_int::{u12, u6}; | ||
|
||
pub fn tuple_as_usize(tuple: (u6, u6)) -> usize { | ||
((u16::from(tuple.0) << 6) | u16::from(tuple.1)) as usize | ||
} | ||
|
||
pub fn tuple_as_u12(tuple: (u6, u6)) -> u12 { | ||
u12::new((u16::from(tuple.0) << 6) | u16::from(tuple.1)) | ||
} |