Backend: Create "backend" folder

similar to the "frontend" folder
This commit is contained in:
BreadFish64 2018-08-14 13:13:47 -05:00 committed by MerryMage
parent 3b13f1eb12
commit 2a65442933
42 changed files with 122 additions and 121 deletions

View file

@ -0,0 +1,21 @@
/* 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.
*/
#include "backend/x64/block_of_code.h"
namespace Dynarmic::BackendX64 {
struct BlockOfCode::ExceptionHandler::Impl final {
};
BlockOfCode::ExceptionHandler::ExceptionHandler() = default;
BlockOfCode::ExceptionHandler::~ExceptionHandler() = default;
void BlockOfCode::ExceptionHandler::Register(BlockOfCode&) {
// Do nothing
}
} // namespace Dynarmic::BackendX64