Skip to content

zeroones

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

verilog

NOR Logic Gate Modeling Using Verilog

7 August 2022 by zeroones.org

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

Read more

AND Logic Gate Modeling Using Verilog

6 August 2022 by zeroones.org

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

Read more

OR Logic Gate Modeling Using Verilog

5 August 2022 by zeroones.org

In this tutorial, we are going to design “OR Logic Gate” using Verilog. There are different design methods to model digital circuits in Verilog like gate level, data flow, and …

Read more

Two Bit Comparator Using Verilog With Testbench

12 July 2022 by zeroones.org

  Truth Table: A1 A0 B1 B0 X(A=B) Y(A>B) Y(A<B) 0  0  0  0  1  0 0  0  0  0  1  0  0  1  0  0  1  0  0  0  …

Read more

Four Bit Ripple Carry Adder Using Verilog With Testbench

10 June 2022 by zeroones.org

4bit Ripple Carry Adder Block Diagram Code: module fourBitRippleCarryAdder(s,c4, A, B, Cin); input [3:0] A, B; input Cin; output [3:0] s; wire [2:0] cout; output c4; oneBitAdder Add1 (s[0],cout[0],A[0],B[0],Cin); oneBitAdder …

Read more

Difference Between Tasks And Functions In Verilog

2 July 202331 March 2022 by zeroones.org

Tasks and function concept is a little bit confusing in the Verilog language and both terms have a different purpose in Verilog. Let’s try to understand the difference and some …

Read more

Newer posts
← Previous Page1 Page2

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.