6 releases (3 breaking)

0.4.0 Feb 22, 2023
0.3.0 Feb 18, 2023
0.2.2 Feb 10, 2023
0.1.0 Feb 9, 2023

#154 in Simulation

Download history 6/week @ 2024-02-26 95/week @ 2024-04-01

95 downloads per month

MIT license

17KB
457 lines

Logic Gates

Trying to simulate logic gates in rust programming language.

Todo:

  • 4 bit adder (completed)
  • Change the project to a rust lib (completed)
  • Negative number support (completed)
  • Substract (completed)
  • 1 Bit alu (completed)
  • 4 Bit alu (completed)
  • 8 bit (uncompleted)
  • 8 bit adder (uncompleted)

Usage:

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;

Examples:

// 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.

No runtime deps