Skip to content

Instantly share code, notes, and snippets.

View zhutmost's full-sized avatar
:octocat:
WooooooooooW

Haozhe Zhu zhutmost

:octocat:
WooooooooooW
View GitHub Profile
@zhutmost
zhutmost / .svlint.toml
Created July 18, 2023 10:35
Lint Rule for svlint
[option]
exclude_paths = []
textwidth = 100
copyright_linenum = 1
copyright_year = "1234"
copyright_holder = "HOLDER"
indent = 2
prefix_inout = "b_"
prefix_input = "i_"
prefix_output = "o_"
@zhutmost
zhutmost / Mux4.v
Last active September 9, 2020 17:20
Chisel MuxN generator toy
module MyMux(
input clock,
input reset,
input [1:0] io_sel,
input [15:0] io_in_0,
input [15:0] io_in_1,
input [15:0] io_in_2,
input [15:0] io_in_3,
output [15:0] io_out
);