Skip to content
View wlister's full-sized avatar
🕘
rising edge of the clock
🕘
rising edge of the clock
Block or Report

Block or report wlister

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
wlister/README.md

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

Popular repositories

  1. cpen-221-example-1 cpen-221-example-1 Public

    Java

  2. ppt-GeometryDash ppt-GeometryDash Public

    Forked from CPEN-221/ppt-GeometryDash

    Java

  3. skel-CityNames skel-CityNames Public

    Forked from CPEN-221/skel-CityNames

    Java

  4. wlister wlister Public

    README

  5. NotAnotherAnimeTheme NotAnotherAnimeTheme Public

    Forked from puckzxz/NotAnotherAnimeTheme

    (forked) A easily customizable and automatically updating theme for Discord

    CSS

  6. HDLBits HDLBits Public

    SystemVerilog