Skip to content

Commit

Permalink
fix 16bits eeproms size
Browse files Browse the repository at this point in the history
  • Loading branch information
LLeny committed Oct 4, 2024
1 parent 48df417 commit 5402814
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/cartridge/eeprom/ee93cxx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ fn config(t: Ee93cxxType) -> Ee93cxxConf {
Ee93cxxType::C66x8 => Ee93cxxConf::new(512, 8, 8),
Ee93cxxType::C76x8 => Ee93cxxConf::new(1024, 10, 8),
Ee93cxxType::C86x8 => Ee93cxxConf::new(2048, 10, 8),
Ee93cxxType::C46x16 => Ee93cxxConf::new(128, 5, 16),
Ee93cxxType::C56x16 => Ee93cxxConf::new(256, 7, 16),
Ee93cxxType::C66x16 => Ee93cxxConf::new(512, 7, 16),
Ee93cxxType::C76x16 => Ee93cxxConf::new(1024, 9, 16),
Ee93cxxType::C86x16 => Ee93cxxConf::new(2048, 9, 16),
Ee93cxxType::C46x16 => Ee93cxxConf::new(64, 5, 16),
Ee93cxxType::C56x16 => Ee93cxxConf::new(128, 7, 16),
Ee93cxxType::C66x16 => Ee93cxxConf::new(256, 7, 16),
Ee93cxxType::C76x16 => Ee93cxxConf::new(512, 9, 16),
Ee93cxxType::C86x16 => Ee93cxxConf::new(1024, 9, 16),
}
}

Expand Down

0 comments on commit 5402814

Please sign in to comment.