Move mem_read_value declaration below the memory access unit comment
This commit is contained in:
parent
eac6a20040
commit
b0c05a908e
1 changed files with 1 additions and 1 deletions
|
|
@ -91,9 +91,9 @@ module rv32_mem (
|
||||||
.read_value_out(csr_read_value)
|
.read_value_out(csr_read_value)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/* memory access unit */
|
||||||
logic [31:0] mem_read_value;
|
logic [31:0] mem_read_value;
|
||||||
|
|
||||||
/* memory access unit */
|
|
||||||
assign data_read_out = read_in;
|
assign data_read_out = read_in;
|
||||||
assign data_write_out = write_in;
|
assign data_write_out = write_in;
|
||||||
assign data_address_out = result_in;
|
assign data_address_out = result_in;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue