mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-13 20:41:53 +00:00
UserspaceEmulator: Dump backtrace on FPU instruction
This commit is contained in:
parent
76b2a2789b
commit
0ce4d3e942
Notes:
sideshowbarker
2024-07-19 04:47:56 +09:00
Author: https://github.com/awesomekling
Commit: 0ce4d3e942
1 changed files with 8 additions and 1 deletions
|
@ -910,7 +910,14 @@ void SoftCPU::DIV_RM32(const X86::Instruction& insn)
|
|||
void SoftCPU::DIV_RM8(const X86::Instruction&) { TODO(); }
|
||||
void SoftCPU::ENTER16(const X86::Instruction&) { TODO(); }
|
||||
void SoftCPU::ENTER32(const X86::Instruction&) { TODO(); }
|
||||
void SoftCPU::ESCAPE(const X86::Instruction&) { TODO(); }
|
||||
|
||||
void SoftCPU::ESCAPE(const X86::Instruction&)
|
||||
{
|
||||
dbg() << "FIXME: x87 floating-point support";
|
||||
m_emulator.dump_backtrace();
|
||||
TODO();
|
||||
}
|
||||
|
||||
void SoftCPU::HLT(const X86::Instruction&) { TODO(); }
|
||||
void SoftCPU::IDIV_RM16(const X86::Instruction&) { TODO(); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue