1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/example/manual/inc_comb.v

27 lines
275 B
Coq
Raw Normal View History

2008-11-22 22:40:25 +01:00
// File: inc_comb.v
2012-12-21 14:36:07 +01:00
// Generated by MyHDL 0.8dev
2012-12-21 15:06:18 +01:00
// Date: Fri Dec 21 15:02:39 2012
2010-07-02 13:24:04 +02:00
2008-11-22 22:40:25 +01:00
`timescale 1ns/10ps
module inc_comb (
nextCount,
count
);
2010-07-02 13:24:04 +02:00
2008-11-22 22:40:25 +01:00
output [7:0] nextCount;
wire [7:0] nextCount;
input [7:0] count;
2010-07-02 13:24:04 +02:00
2008-11-22 22:40:25 +01:00
assign nextCount = (count + 1) % 256;
endmodule