frankli998
frankli998
typo
1.1.2 Eg3 missing 'd' in last line
Currently there is no option to hide or filter finished manga, a common function that most comic reader has, hope there is a way to hide all finished manga. A...
This is what I like to have 
autodef cannot handle generate and single-bit index correctly  
In sytemverilog, localparam is allowed to show up in the "parameter area, for example ```systemverilog module fifo# ( parameter DP = 8, localparam PTRW = $clog2(DP) ) ( output [PTRW...
Suppose I have top.sv and fifo.sv ```verilog module top //submodule /*autodef*/ fifo #( .DW (ALIGN_FIFO_DW) ) u_align_fifo ( PORT_LIST ) endmodule ``` ```verilog module fifo# ( paramter DW ) (...