summaryrefslogtreecommitdiff
path: root/rtl/core/mmu
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-10-15 23:33:34 -0600
committerAlejandro Soto <alejandro@34project.org>2022-10-15 23:33:34 -0600
commitd7747d9e030f965bd358bca5badb849f656147a8 (patch)
treefa1ae553ea9d6b7f073d4386136ab676edcf50c5 /rtl/core/mmu
parent5b0872c995ddd7f581730ff9c7e145b5228e211d (diff)
Fix flags and writeback hazards
Diffstat (limited to '')
-rw-r--r--rtl/core/mmu/mmu.sv2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/core/mmu/mmu.sv b/rtl/core/mmu/mmu.sv
index 8d3b909..bf37cb0 100644
--- a/rtl/core/mmu/mmu.sv
+++ b/rtl/core/mmu/mmu.sv
@@ -80,7 +80,7 @@ module core_mmu
end
end
- always @(posedge clk) begin
+ always_ff @(posedge clk) begin
master <= next_master;
active <= bus_start || (active && !bus_ready);