mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-26 07:09:30 +00:00
A32: Implement Thumb-16's variant of BKPT
This commit is contained in:
@@ -292,6 +292,10 @@ public:
|
||||
return fmt::format("revsh {}, {}", d, m);
|
||||
}
|
||||
|
||||
std::string thumb16_BKPT(Imm<8> imm8) {
|
||||
return fmt::format("bkpt #{}", imm8.ZeroExtend());
|
||||
}
|
||||
|
||||
std::string thumb16_STMIA(Reg n, RegList reg_list) {
|
||||
return fmt::format("stm {}!, {{{}}}", n, RegListToString(reg_list));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user