diff options
Diffstat (limited to 'rtl/core/cp15/domain.sv')
| -rw-r--r-- | rtl/core/cp15/domain.sv | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rtl/core/cp15/domain.sv b/rtl/core/cp15/domain.sv index 4e5f5d6..92112be 100644 --- a/rtl/core/cp15/domain.sv +++ b/rtl/core/cp15/domain.sv @@ -9,16 +9,16 @@ module core_cp15_domain transfer, input word write, - output word read + output word read, + mmu_dac ); - word dac; - assign read = dac; + assign read = mmu_dac; always @(posedge clk or negedge rst_n) if(!rst_n) - dac <= 0; + mmu_dac <= 0; else if(transfer && !load) - dac <= write; + mmu_dac <= write; endmodule |
