Skip to content

Commit b48ec84

Browse files
committed
[ImGui] Stub ARM64 host debug text
Marked as TODO for now
1 parent 1874f0c commit b48ec84

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/xenia/debug/ui/debug_window.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,7 @@ void DebugWindow::DrawRegistersPane() {
956956
} break;
957957
case RegisterGroup::kHostGeneral: {
958958
ImGui::BeginChild("##host_general");
959+
#if XE_ARCH_AMD64
959960
for (int i = 0; i < 18; ++i) {
960961
auto reg = static_cast<X64Register>(i);
961962
ImGui::BeginGroup();
@@ -993,6 +994,9 @@ void DebugWindow::DrawRegistersPane() {
993994
i, thread_info->host_context.xmm_registers[i].f32);
994995
ImGui::EndGroup();
995996
}
997+
#elif XE_ARCH_ARM64
998+
// TODO(wunkolo): print ARM64 registers
999+
#endif
9961000
ImGui::EndChild();
9971001
}
9981002
}

0 commit comments

Comments
 (0)