1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibX86: Expose some more things on X86::Instruction

This commit is contained in:
Andreas Kling 2020-07-07 21:12:40 +02:00
parent 7ab2a4dde7
commit 6440e59ead
2 changed files with 15 additions and 2 deletions

View file

@ -1906,4 +1906,10 @@ void MemoryOrRegisterReference::decode32(InstructionStream& stream)
}
}
InstructionHandler Instruction::handler() const
{
ASSERT(m_descriptor->handler);
return m_descriptor->handler;
}
}