logic_gate 0.4.0

Logic Gates
Documentation
use super::bytes::FourBit;
use super::Signal;

mod adder;
mod alu;
mod alu4way;
mod and;
mod and3way;
mod demux;
mod fourbitadder;
mod mux;
mod mux4way;
mod nand;
mod nor;
mod not;
mod or;
mod xor;
pub use adder::Adder;
pub use alu::Alu;
pub use alu4way::Alu4Way;
pub use and::And;
pub use and3way::And3Way;
pub use demux::Demux;
pub use fourbitadder::FourBitAdder;
pub use mux::Mux;
pub use mux4way::Mux4Way;
pub use nand::Nand;
pub use nor::Nor;
pub use not::Not;
pub use or::Or;
pub use xor::Xor;