Crates.io | logic_gate |
lib.rs | logic_gate |
version | 0.4.0 |
source | src |
created_at | 2023-02-09 14:17:38.703277 |
updated_at | 2023-02-22 11:09:01.760957 |
description | Logic Gates |
homepage | |
repository | https://github.com/HakanVardarr/logic-gates |
max_upload_size | |
id | 780772 |
size | 19,039 |
Trying to simulate logic gates in rust programming language.
You need to import theese if you want to use the features.
use logic_gates::Signal;
use logic_gates::gates::*;
use logic_gates::bytes::FourByte;
// Importing essentials... (You can check them in usage part)
fn main() -> Result<(), Box<dyn std::error::Error> {
let byte1: FourBit = "0100".parse()?;
let byte2: FourBit = "0010".parse()?;
let carry = Signal::Zero;
let (sum, car) = FourBitAdder::send_signal(&carry, &bits1, &bits2);
Ok(())
}
In this example you can add two four bytes together. You need to send carry signal as Signal::Zero
carry signal is usefull if you want to implement 8bit adder.
If you want to display the added four bit you can implement a display function like this.
fn display(bits1: &FourBit, bits2: &FourBit, sum: &FourBit, car: &Signal) {
println!(
"Input 1 : {}{}{}{} = {}",
bits1.bit1,
bits1.bit2,
bits1.bit3,
bits1.bit4,
bits1.convert()
);
println!(
"Input 2 : {}{}{}{} = {}",
bits2.bit1,
bits2.bit2,
bits2.bit3,
bits2.bit4,
bits2.convert()
);
let mut output = sum.convert()
if car == &Signal::One {
output += 16;
}
println!(
"Output : {car}{}{}{}{} = {}",
sum.bit1,
sum.bit2,
sum.bit3,
sum.bit4,
output
);
}
If you use this function to display. You will get a result like this.
Input 1 : 0100 = 4
Input 2 : 0010 = 2
Output : 00110 = 6
Extra fifth bit is carry bit it is not a necessary bit do display we are working with 4 bits not with 5 bits. But carry bit is usefull in the future when I develop 8BitAdder.