backend\A64\emit_a64_data_processing.cpp: Mostly empty file

This commit is contained in:
SachinVin 2019-07-16 17:34:37 +05:30
parent 9df55fc951
commit a66bcdfc91
2 changed files with 17 additions and 1 deletions

View File

@ -357,7 +357,7 @@ elseif(ARCHITECTURE_Aarch64)
backend/A64/emit_a64.h
# backend/A64/emit_a64_aes.cpp
# backend/A64/emit_a64_crc32.cpp
# backend/A64/emit_a64_data_processing.cpp
backend/A64/emit_a64_data_processing.cpp
# backend/A64/emit_a64_floating_point.cpp
# backend/A64/emit_a64_packed.cpp
# backend/A64/emit_a64_saturation.cpp

View File

@ -0,0 +1,16 @@
/* 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/A64/block_of_code.h"
#include "backend/A64/emit_a64.h"
#include "common/assert.h"
#include "common/common_types.h"
#include "frontend/ir/basic_block.h"
#include "frontend/ir/microinstruction.h"
#include "frontend/ir/opcodes.h"
namespace Dynarmic::BackendA64 {
} // namespace Dynarmic::BackendA64