dynarmic/src/frontend/translate.h
2016-07-04 21:37:50 +08:00

19 lines
515 B
C++

/* 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.
*/
#pragma once
#include "frontend/arm_types.h"
#include "frontend/ir/ir.h"
namespace Dynarmic {
namespace Arm {
using MemoryRead32FuncType = u32 (*)(u32 vaddr);
IR::Block Translate(LocationDescriptor descriptor, MemoryRead32FuncType memory_read_32);
} // namespace Arm
} // namespace Dynarmic