Browse Source
fix license
Signed-off-by: lizzie <lizzie@eden-emu.dev>
dynarmic-ppc64
lizzie
2 months ago
No known key found for this signature in database
GPG Key ID: 287378CADCAB13
1 changed files with
6 additions and
0 deletions
-
src/dynarmic/src/dynarmic/backend/arm64/a64_address_space.h
|
|
|
@ -1,3 +1,6 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project |
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
|
|
|
|
/* This file is part of the dynarmic project. |
|
|
|
* Copyright (c) 2022 MerryMage |
|
|
|
* SPDX-License-Identifier: 0BSD |
|
|
|
@ -23,8 +26,11 @@ public: |
|
|
|
|
|
|
|
protected: |
|
|
|
friend class A64Core; |
|
|
|
|
|
|
|
void EmitPrelude(); |
|
|
|
EmitConfig GetEmitConfig() override; |
|
|
|
void RegisterNewBasicBlock(const IR::Block& block, const EmittedBlockInfo& block_info) override; |
|
|
|
|
|
|
|
const A64::UserConfig conf; |
|
|
|
BlockRangeInformation<u64> block_ranges; |
|
|
|
}; |
|
|
|
|