Skip to content
Snippets Groups Projects
Commit 012fa207 authored by jf3g19's avatar jf3g19
Browse files

Update DA.sv

parent f98c22a4
No related branches found
No related tags found
No related merge requests found
...@@ -95,12 +95,12 @@ always_ff @(posedge ck, posedge rst) ...@@ -95,12 +95,12 @@ always_ff @(posedge ck, posedge rst)
// === state machine to control the MAC ==== // === state machine to control the MAC ====
always_ff @(posedge ck, posedge rst) always_ff @(posedge ck, posedge rst)
begin: SEQ begin: SEQ
if(rst) if(rst)
state <= waiting; state <= waiting;
else else
state <= next_state; state <= next_state;
end: SEQ end: SEQ
always_comb always_comb
begin: COM begin: COM
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment