A64: Implement SVC

This commit is contained in:
MerryMage
2018-01-08 22:03:03 +00:00
parent e5ace37560
commit 68391b0a05
9 changed files with 37 additions and 14 deletions

View File

@@ -13,7 +13,7 @@ namespace Dynarmic {
namespace IR {
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
o << fmt::format("{{{{}}}}", descriptor.Value());
o << fmt::format("{{{:016x}}}", descriptor.Value());
return o;
}