Skip to content

zeroones

  • Home
  • Verilog
  • Python
  • Arduino
  • C
  • Contact

verilog

Second Complement With Testbench Using Verilog

23 September 2022 by zeroones.org

Two(2’s) complement is a very basic concept of digital electronics where we just convert a given binary into a 2’s complement. There is a specific process to find 2’s complement …

Read more

Half Adder Modeling Using Verilog With Testbench

16 August 2022 by zeroones.org

HALF ADDER BLOCK DIAGRAM:   TRUTH TABLE: A B SUM CARRY 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 1   HALF ADDER …

Read more

Multiplexer Design Using Verilog With Testbench

14 August 2022 by zeroones.org

MUX 2×1 LOGIC DIAGRAM:   TRUTH TABLE: S Output(Y) 0 A 1 B   MUX 2×1 GATE CIRCUIT DESIGN:   2×1 MUX GATE MODELING:  `timescale 1ns / 1ps module MuxDesign2x1(A,B,select,Y); …

Read more

Four Bit ALU Modeling Using Verilog With Testbench

14 August 2022 by zeroones.org

FOUR-BIT ALU CIRCUIT DESIGN:   NOR GATE MODELING USING NAND GATES: `timescale 1ns / 1ps module fourBitALU(z,x,y,state); input [3:0] x,y; output reg [3:0] z; input [1:0]state; always @(state) case(state) 2’b00: …

Read more

NOR Logic Gate Modeling Using NAND Gates In Verilog

13 August 2022 by zeroones.org

NOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 0 0 1 0 1 1 0   NOR GATE MODELING USING NAND GATES: …

Read more

XOR Logic Gate Modeling Using NAND Gates In Verilog

12 August 2022 by zeroones.org

XOR GATE CIRCUIT USING NAND GATES: TRUTH TABLE: X Y Output(Z) 0 0 0 1 0 1 0 1 1 1 1 0   XOR GATE MODELING USING NAND GATES: …

Read more

NOT Logic Gate Modeling Using Verilog

11 August 2022 by zeroones.org

NOT GATE CIRCUIT: TRUTH TABLE: X Output(Z) 0 1 1 0   XNOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns / 1ps module notGate(output z, input x); assign z= …

Read more

XNOR Logic Gate Modeling Using Verilog

10 August 2022 by zeroones.org

XNOR GATE CIRCUIT: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 0 0 1 0 1 1 1   XNOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns …

Read more

XOR Logic Gate Modeling Using Verilog

9 August 2022 by zeroones.org

XOR GATE CIRCUIT: TRUTH TABLE: X Y Output(Z) 0 0 0 1 0 1 0 1 1 1 1 0   XOR GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns …

Read more

NAND Logic Gate Modeling Using Verilog

8 August 2022 by zeroones.org

NAND GATE CIRCUIT: TRUTH TABLE: X Y Output(Z) 0 0 1 1 0 1 0 1 1 1 1 0   NAND GATE MODELLING METHODS: Data Flow Modelling: `timescale 1ns …

Read more

Older posts
Page1 Page2 Next →

Recent Posts

  • Top 50+ Python String Functions
  • The Next-Gen PCIe 7.0: What It Means for Computing
  • Open-Source EDA Tools for VLSI Design
  • NULL and nullptr in C++
  • Developing and Testing RISC-V SystemVerilog RTL with Open-Source Tools
© 2025 zeroones, All Rights Reserved.