summaryrefslogtreecommitdiff
path: root/fibseq.sv
diff options
context:
space:
mode:
authorJulian Blake Kongslie2021-03-23 21:52:41 -0700
committerJulian Blake Kongslie2021-03-23 21:54:44 -0700
commit8056863ce3e95db52e027a0f0babe51df1cb9a4e (patch)
treed35ce72f92e8a9b6f1dce49572a49b3117c5827e /fibseq.sv
parentAdding olamic hook to autobuild source archives. (diff)
downloadtoycpu-8056863ce3e95db52e027a0f0babe51df1cb9a4e.tar.xz
Additional cleanup to make it Quartus-friendly.
Diffstat (limited to '')
-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 );