mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-31 19:54:27 +01:00
Implement thumb16_SVC
This commit is contained in:
parent
181f78f36e
commit
63242924fc
3 changed files with 13 additions and 2 deletions
|
|
@ -247,6 +247,10 @@ public:
|
|||
std::string thumb16_UDF() {
|
||||
return Common::StringFromFormat("udf");
|
||||
}
|
||||
|
||||
std::string thumb16_SVC(Imm8 imm8) {
|
||||
return Common::StringFromFormat("svc #%u", imm8);
|
||||
}
|
||||
};
|
||||
|
||||
std::string DisassembleThumb16(u16 instruction) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue