mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-19 14:52:57 +00:00
40 lines
747 B
C++
40 lines
747 B
C++
/* This file is part of the dynarmic project.
|
|
* Copyright (c) 2018 MerryMage
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
* General Public License version 2 or any later version.
|
|
*/
|
|
|
|
#include "frontend/A64/translate/impl/impl.h"
|
|
|
|
namespace Dynarmic::A64 {
|
|
|
|
bool TranslatorVisitor::HINT([[maybe_unused]] Imm<4> CRm, [[maybe_unused]] Imm<3> op2) {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::NOP() {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::YIELD() {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::WFE() {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::WFI() {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::SEV() {
|
|
return true;
|
|
}
|
|
|
|
bool TranslatorVisitor::SEVL() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace Dynarmic::A64
|