diff options
Diffstat (limited to '')
| -rw-r--r-- | fibseq.sv | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -1,10 +1,12 @@ | |||
| 1 | `include "utils.svh" | ||
| 2 | |||
| 1 | module fibseq | 3 | module fibseq |
| 2 | #( BITS = 8 | 4 | #( BITS = 8 |
| 3 | ) | 5 | ) |
| 4 | ( input bit clk | 6 | ( input bit clk |
| 5 | , input bit reset | 7 | , input bit reset |
| 6 | 8 | ||
| 7 | , input bit ready `define ready $past(ready) | 9 | , input bit ready `define ready `past(ready) |
| 8 | , output bit valid | 10 | , output bit valid |
| 9 | , output bit [BITS-1:0] data | 11 | , output bit [BITS-1:0] data |
| 10 | ); | 12 | ); |
