4-bit incrementer X58456


Statement
 

pdf   zip   verilog

html

Design a circuit that receives a 4-bit number and produces the same number increased by one unit (mod 16).

Specification

module incr4(in, out); input [3:0] in; output [3:0] out;

Input

  • in represents the 4-bit input number.

Output

  • out represents the 4-bit output number.
Information
Author
Jordi Cortadella
Language
English
Official solutions
Unknown. This problem is being checked.
User solutions
Verilog