This repository is a collection of my passion projects in Verilog, inspired by my university course EECS 2021, where I discovered how fascinating Verilog is to learn. Its ability to design hardware through code, simulate complex systems, and create modular, reusable components sparked my interest.
For now, this repository contains a Digital Clock, but I plan to add more exciting projects soon!
- Description:
- A digital clock that tracks hours, minutes, and seconds.
- Configurable to work with any clock frequency.
- Designed with modularity in mind, using separate modules for clock division and timekeeping.
- Key Features:
- Modular design with a
ClockDivider
module. - Converts time into Binary Coded Decimal (BCD) for display purposes.
- Includes a testbench to verify functionality.
- Modular design with a
- Description:
- A traffic light controller implemented as a Finite State Machine (FSM).
- The system transitions between RED, YELLOW, and GREEN lights based on configurable timer inputs.
- Designed to handle both normal and error states, with error detection for invalid timer configurations.
- Key Features:
- Configurable timer for each light state using an 18-bit input.
- Supports error detection for invalid timer configurations (e.g., zero-duration states).
- Includes FSM pause/resume functionality based on the enable signal.
- Provides a testbench to simulate various scenarios, including valid and invalid configurations, light transitions, and error recovery.
- The FSM design ensures proper timing and smooth light transitions.
.
โโโ DigitalClock/ # Directory containing Verilog files
โ โโโ DigitalClock.v # Digital clock module
โ โโโ ClockDivider.v # Clock divider module
โ โโโ clock_testbench.v # Testbench for verifying the digital clock
| โโโ README.md
โโโ TrafficLight/ # Directory containing Verilog files for the traffic light system
โ โโโ TrafficLightFSM.v # Traffic light FSM module
โ โโโ TrafficLightFSM_tb.v # Testbench for verifying the traffic light FSM functionality
| โโโ README.md
โโโ .gitignore # Git configuration to exclude unnecessary files
โโโ README.md
- Clone the repository:
git clone https://github.com/NB071/Verilog-projects.git
- Navigate to the project directory:
cd Verilog-projects/DigitalClock
- Compile the Verilog code using iverilog:
iverilog -o DigitalClock_testbench.vvp clock_testbench.v DigitalClock.v ClockDivider.v
- Run the compiled file using vvp:
vvp DigitalClock_testbench.vvp
- Observe the simulation output in the terminal.
- ๐งฎ Digital Calculator: Exploring arithmetic logic and modular design.
- TBD: Iโm always brainstorming new ideas to expand this repository!
- Inspired by my coursework in EECS 2021 at York University.
- Thanks to my professors and peers for fostering my interest in digital design! ๐