libttl 0.1.1

A library for simulating TTL logic chips
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Module defining the available TTL chips.

// Make chip types and traits publicly available
pub mod common;
pub use common::{Chip, PinType};

// Specific chip implementations
pub mod chip_7400;
pub mod chip_7404;
pub mod chip_7408;
pub mod chip_7432;

// Re-export chip structs for easier access
pub use chip_7400::Chip7400;
pub use chip_7404::Chip7404;
pub use chip_7408::Chip7408;
pub use chip_7432::Chip7432;