Skip to content

Commit

Permalink
Finishes minimal keg_ctor implementation (#1253)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon authored Jan 20, 2025
1 parent 649a3fd commit 1f7d5ce
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 494 deletions.
11 changes: 10 additions & 1 deletion kernel/src/uma/keg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ use core::num::NonZero;
pub struct UmaKeg {}

impl UmaKeg {
/// `align` is the actual alignment **minus** one, which mean if you want each item to be 8
/// bytes alignment this value will be 7.
///
/// See `keg_ctor` on the Orbis for a reference.
///
/// # Reference offsets
Expand Down Expand Up @@ -141,6 +144,12 @@ impl UmaKeg {
}
}

todo!()
if flags.has(UmaFlags::Hash) {
todo!()
}

// TODO: Add uk_zones.
// TODO: Add uma_kegs.
Self {}
}
}
158 changes: 0 additions & 158 deletions legacy/src/log/entry.rs

This file was deleted.

161 changes: 0 additions & 161 deletions legacy/src/log/macros.rs

This file was deleted.

Loading

0 comments on commit 1f7d5ce

Please sign in to comment.