logic-gates 0.1.0

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

mod adder;
mod and;
mod fourbitadder;
mod mux;
mod nand;
mod nor;
mod not;
mod or;
mod xor;
pub use adder::Adder;
pub use and::And;
pub use fourbitadder::FourBitAdder;
pub use mux::Mux;
pub use nand::Nand;
pub use nor::Nor;
pub use not::Not;
pub use or::Or;
pub use xor::Xor;