mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 20:26:29 +00:00
Relicense to 0BSD
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
/* This file is part of the dynarmic project.
|
||||
* Copyright (c) 2016 MerryMage
|
||||
* This software may be used and distributed according to the terms of the GNU
|
||||
* General Public License version 2 or any later version.
|
||||
* SPDX-License-Identifier: 0BSD
|
||||
*/
|
||||
|
||||
#include "frontend/A32/translate/impl/translate_arm.h"
|
||||
@@ -9,35 +8,35 @@
|
||||
namespace Dynarmic::A32 {
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRBT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRHT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRSBT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRSHT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_LDRT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRBT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRHT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
bool ArmTranslatorVisitor::arm_STRT() {
|
||||
ASSERT_MSG(false, "System instructions unimplemented");
|
||||
ASSERT_FALSE("System instructions unimplemented");
|
||||
}
|
||||
|
||||
static IR::U32 GetAddress(A32::IREmitter& ir, bool P, bool U, bool W, Reg n, IR::U32 offset) {
|
||||
|
||||
Reference in New Issue
Block a user