Home
VERILOG
Books
Enter your search terms
Submit search form
Web
www.asichowto.com
How to define a macro with directive `define?
How to share Verilog code with directive `include?
How to define a constant with parameter and localparam?
How to specify time unit and precision?
How to generate a waveform?
How to generate a clock?
What accounts a rising transition -- posedge?
What accounts a falling transition -- negedge?
How to model combinational logic?
When do we have to use a label in a procedure construct?
What's difference between conditional operator and if statement?
How to use generate for loop to instantiate a module?
How to instantiate a module?
How to change a parameter of a module?
How to model a D latch?
How to avoid unintended D latches?
How to model a D flip-flop with an asynchronous reset?
How to model a D flip-flop with a synchronous reset?
How to model inertial delay?
How to model transport delay?
How to use model a pipeline or shift registers?
How to avoid race conditions?
How to generate random numbers?
How to read data from a file with $readmemb and $readmemh?
How to write data to a file with $display and its variants?
How to define a task? and how to enable (call) it?
How to define a function? and how to enable (call) it?
How to model a tristate?
How to model a bi-directional port?
How to model a decoder?
How to model a seven-segment decoder?
How to model an encoder?
How to model a priority encoder?
How to model a Barrel shifter?
How to model a multiplexer?
How to generate a parity?
How to model a comparator?
How to design an adder with an assign statement?
How to design an adder with an always block?
How to design a ripple carry adder with a generate for loop?
How to design a carry-lookahead adder with generate for loops?
How to design a carry-select adder with generate for loops?
How to model multipliers?
How to design a clock divider by an even, odd, or fraction number?
How to model a up counter with an asynchronous reset?
How to model a down counter with an asynchronous reset?
How to model a counter with an asynchronous reset, a load, a count enable, and an output enable signals?
How to detect 101 sequence based on a Moore finite state machine (FSM)?
How to detect 101 sequence using a Mealy finite state machine (FSM)?
How to model a ROM?