feat: reimplement cycles newtype

This commit is contained in:
2021-01-18 22:54:38 -06:00
parent 2fc7ac3833
commit 9b4c95ce4c
8 changed files with 273 additions and 143 deletions

View File

@@ -6,7 +6,7 @@ pub struct HighRAM {
impl Default for HighRAM {
fn default() -> Self {
Self {
buf: vec![0u8; 127].into_boxed_slice(),
buf: vec![0u8; 128].into_boxed_slice(),
}
}
}