Implement thumb16_SVC

This commit is contained in:
MerryMage 2016-07-14 15:01:30 +01:00
parent 181f78f36e
commit 63242924fc
3 changed files with 13 additions and 2 deletions

View file

@ -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) {