[ImGui] Stub ARM64 host debug text

Marked as TODO for now
This commit is contained in:
Wunkolo 2024-04-27 17:26:42 -07:00
parent 1874f0c72f
commit b48ec84b3c
1 changed files with 4 additions and 0 deletions

View File

@ -956,6 +956,7 @@ void DebugWindow::DrawRegistersPane() {
} break; } break;
case RegisterGroup::kHostGeneral: { case RegisterGroup::kHostGeneral: {
ImGui::BeginChild("##host_general"); ImGui::BeginChild("##host_general");
#if XE_ARCH_AMD64
for (int i = 0; i < 18; ++i) { for (int i = 0; i < 18; ++i) {
auto reg = static_cast<X64Register>(i); auto reg = static_cast<X64Register>(i);
ImGui::BeginGroup(); ImGui::BeginGroup();
@ -993,6 +994,9 @@ void DebugWindow::DrawRegistersPane() {
i, thread_info->host_context.xmm_registers[i].f32); i, thread_info->host_context.xmm_registers[i].f32);
ImGui::EndGroup(); ImGui::EndGroup();
} }
#elif XE_ARCH_ARM64
// TODO(wunkolo): print ARM64 registers
#endif
ImGui::EndChild(); ImGui::EndChild();
} }
} }