diff options
author | Josh Blum <josh@joshknows.com> | 2012-03-26 16:46:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-03-26 16:46:39 -0700 |
commit | 948727634db7d41d3da184a97b6ef394118b343d (patch) | |
tree | cfde3f0986e1f1f4731f22bfba2198763981465c /fpga/usrp2/gpif/packet_reframer.v | |
parent | c6fd517ad7cb50d6f546536ed7a46f44999f208e (diff) | |
parent | 95de4f7343e52fe54a140fdd1462a2087a877a2e (diff) | |
download | uhd-948727634db7d41d3da184a97b6ef394118b343d.tar.gz uhd-948727634db7d41d3da184a97b6ef394118b343d.tar.bz2 uhd-948727634db7d41d3da184a97b6ef394118b343d.zip |
Merge branch 'maint'
Diffstat (limited to 'fpga/usrp2/gpif/packet_reframer.v')
-rw-r--r-- | fpga/usrp2/gpif/packet_reframer.v | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fpga/usrp2/gpif/packet_reframer.v b/fpga/usrp2/gpif/packet_reframer.v index 8bb8a3678..e0ce9e174 100644 --- a/fpga/usrp2/gpif/packet_reframer.v +++ b/fpga/usrp2/gpif/packet_reframer.v @@ -20,7 +20,7 @@ module packet_reframer (input clk, input reset, input clear, - input [18:0] data_i, + input [15:0] data_i, input src_rdy_i, output dst_rdy_o, output [18:0] data_o, @@ -60,8 +60,7 @@ module packet_reframer wire occ_out = 0; assign eof_out = (state == RF_PKT) & (length == 2); wire sof_out = (state == RF_IDLE); - wire [15:0] data_out = data_i[15:0]; - assign data_o = {occ_out, eof_out, sof_out, data_out}; + assign data_o = {occ_out, eof_out, sof_out, data_i[15:0]}; endmodule // packet_reframer |