aboutsummaryrefslogtreecommitdiffstats
path: root/simple_gemac/simple_gemac_tx.v
diff options
context:
space:
mode:
Diffstat (limited to 'simple_gemac/simple_gemac_tx.v')
-rw-r--r--simple_gemac/simple_gemac_tx.v22
1 files changed, 16 insertions, 6 deletions
diff --git a/simple_gemac/simple_gemac_tx.v b/simple_gemac/simple_gemac_tx.v
index b104d91a5..783f69e45 100644
--- a/simple_gemac/simple_gemac_tx.v
+++ b/simple_gemac/simple_gemac_tx.v
@@ -195,15 +195,25 @@ module simple_gemac_tx
wire clear_crc = (tx_state == TX_IDLE);
- wire calc_crc_pre = (tx_state==TX_FIRSTBYTE)||(tx_state==TX_IN_FRAME)||
- ((tx_state==TX_IN_FRAME_2)&tx_valid )||(tx_state==TX_PAD )||(tx_state[6]);
- reg calc_crc;
- always @(posedge tx_clk)
- calc_crc <= calc_crc_pre;
-
+// wire calc_crc_pre = (tx_state==TX_FIRSTBYTE)||(tx_state==TX_IN_FRAME)||
+// ((tx_state ==TX_IN_FRAME_2)&tx_valid )||(tx_state==TX_PAD )||(tx_state[6]);
+ // reg calc_crc;
+ // always @(posedge tx_clk)
+ // calc_crc <= calc_crc_pre;
+ wire calc_crc = 0;
+
+ /*
+ wire calc_crc = ~(tx_state==TX_IDLE) &
+ ~(tx_state==TX_IDLE) &
+ ~(tx_state==TX_IDLE) &
+ ~(tx_state==TX_IDLE) &
+ */
crc crc(.clk(tx_clk), .reset(reset), .clear(clear_crc),
.data(txd_pre), .calc(calc_crc), .crc_out(crc_out));
+
+// .data(txd_pre), .calc(calc_crc & ~(tx_state==TX_CRC_0)), .crc_out(crc_out));
+
assign tx_ack = (tx_state == TX_FIRSTBYTE);
reg tx_valid_d1;