pub mod eon;
pub mod fram;
pub mod gigadevice;
pub mod macronix;
pub mod micron;
pub mod others;
pub mod spansion;
pub mod winbond;
use crate::domain::ChipSpec;
pub fn get_all_nor() -> Vec<ChipSpec> {
let mut chips = Vec::new();
chips.extend(gigadevice::get_chips());
chips.extend(winbond::get_chips());
chips.extend(macronix::get_chips());
chips.extend(spansion::get_chips());
chips.extend(micron::get_chips());
chips.extend(eon::get_chips());
chips.extend(others::get_chips());
chips.extend(fram::get_chips());
chips
}