summaryrefslogtreecommitdiff
path: root/tb/top/conspiracion.cpp
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-12-14 19:16:54 -0600
committerAlejandro Soto <alejandro@34project.org>2022-12-16 16:29:10 -0600
commitd2be560fa668cefcc5eff6b88180f12fec0c326e (patch)
tree8f833227461f8f97c32c2635f4eab39f1c077d37 /tb/top/conspiracion.cpp
parent8c06c97c81339f68e06ff465aac2d8b1f2da4e27 (diff)
Fix implementation of MMU access faults
Diffstat (limited to '')
-rw-r--r--tb/top/conspiracion.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tb/top/conspiracion.cpp b/tb/top/conspiracion.cpp
index 67ad2db..5af439f 100644
--- a/tb/top/conspiracion.cpp
+++ b/tb/top/conspiracion.cpp
@@ -19,6 +19,7 @@
#include "Vconspiracion_platform.h"
#include "Vconspiracion_vga_domain.h"
#include "Vconspiracion_core_control.h"
+#include "Vconspiracion_core_cp15_domain.h"
#include "Vconspiracion_core_cp15_far.h"
#include "Vconspiracion_core_cp15_fsr.h"
#include "Vconspiracion_core_cp15_syscfg.h"
@@ -464,6 +465,7 @@ int main(int argc, char **argv)
std::fprintf(ctrl, "%08x ttbr\n", core.cp15->ttbr->read);
std::fprintf(ctrl, "%08x far\n", core.cp15->far_->read);
std::fprintf(ctrl, "%08x fsr\n", core.cp15->fsr->read);
+ std::fprintf(ctrl, "%08x dacr\n", core.cp15->domain->mmu_dac);
std::fputs("=== end-regs ===\n", ctrl);
};