summaryrefslogtreecommitdiff
path: root/fibseq.sv
diff options
context:
space:
mode:
Diffstat (limited to 'fibseq.sv')
-rw-r--r--fibseq.sv4
1 files changed, 3 insertions, 1 deletions
diff --git a/fibseq.sv b/fibseq.sv
index f877b98..752c0b6 100644
--- a/fibseq.sv
+++ b/fibseq.sv
@@ -1,10 +1,12 @@
1`include "utils.svh"
2
1module fibseq 3module 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 );