Skip to content

wlister/wlister

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 

Repository files navigation

Hi there!

animated

module top_module (
    input clk,
    input reset,
    output [9:0] q);
	
    always_ff@(posedge clk) begin
        if(reset || q == 999) begin
            q <= 10'd0;
        end
        else begin
            q <= q + 10'd1;
        end
    end
endmodule

Languages and tools I am familiar with

SystemVerilog Java C C++ SQL Python
FPGA ModelSim Quartus IntelliJ Visual Studio Code VSCodium STM32 MySQL Linux Ubuntu Fedora

About

README

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published