diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-09-17 22:10:39 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-09-17 22:10:39 -0600 |
| commit | b0cb20496d88cd017c4c51243d16ac3b060cc1d6 (patch) | |
| tree | b73bb171b9454501a8a3e101ab9d5f05c6b72945 /rtl/bus | |
| parent | a9aafdf34ed44f115edf43f29a733eb82f366eb6 (diff) | |
Update project structure to match Verilator Makefile
Diffstat (limited to 'rtl/bus')
| -rw-r--r-- | rtl/bus/master.sv | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/bus/master.sv b/rtl/bus/master.sv index 63ea2be..5d8c3a8 100644 --- a/rtl/bus/master.sv +++ b/rtl/bus/master.sv @@ -49,10 +49,10 @@ module bus_master endcase initial begin - ready <= 0; - avl_read <= 0; - avl_write <= 0; - state <= REQUEST; + ready = 0; + avl_read = 0; + avl_write = 0; + state = REQUEST; end endmodule |
