-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e210f6f
commit 21bef49
Showing
4 changed files
with
42 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
/// Implementation of `uma_keg` structure. | ||
pub struct UmaKeg {} | ||
|
||
impl UmaKeg { | ||
/// See `keg_ctor` on the Orbis for a reference. | ||
/// | ||
/// # Context safety | ||
/// This function does not require a CPU context on **stage 1** heap. | ||
/// | ||
/// # Reference offsets | ||
/// | Version | Offset | | ||
/// |---------|--------| | ||
/// |PS4 11.00|0x13CF40| | ||
pub(super) fn new(_: usize) -> Self { | ||
todo!() | ||
} | ||
} |
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