diff options
author | Matt Ettus <matt@ettus.com> | 2010-11-10 11:32:00 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-11-10 11:32:00 -0800 |
commit | ba36bdd2795b9ae4c11c8f65de92022a1d96bb0f (patch) | |
tree | c4501d2c221ef077cf7387cd6fd4e4e1f2a7a9f4 /usrp2 | |
parent | c7be879f6156c219de331df232d1b55ae539f5dd (diff) | |
download | uhd-ba36bdd2795b9ae4c11c8f65de92022a1d96bb0f.tar.gz uhd-ba36bdd2795b9ae4c11c8f65de92022a1d96bb0f.tar.bz2 uhd-ba36bdd2795b9ae4c11c8f65de92022a1d96bb0f.zip |
occ needs to be 2 bits wide on a 36 bit fifo interface.
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/fifo/fifo19_to_fifo36.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/fifo/fifo19_to_fifo36.v b/usrp2/fifo/fifo19_to_fifo36.v index 0e6bcea68..2f530109f 100644 --- a/usrp2/fifo/fifo19_to_fifo36.v +++ b/usrp2/fifo/fifo19_to_fifo36.v @@ -16,7 +16,8 @@ module fifo19_to_fifo36 output [31:0] debug ); - reg f36_sof, f36_eof, f36_occ; + reg f36_sof, f36_eof; + reg [1:0] f36_occ; reg [1:0] state; reg [15:0] dat0, dat1; |