blob: 116b493973068882934dc1480862b311785bc9d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
drcbex64.h
64-bit x64 back-end for the universal machine language.
***************************************************************************/
#ifndef MAME_CPU_DRCBEX64_H
#define MAME_CPU_DRCBEX64_H
#pragma once
#include "drcuml.h"
#include <memory>
namespace drc {
std::unique_ptr<drcbe_interface> make_drcbe_x64(
drcuml_state &drcuml,
device_t &device,
drc_cache &cache,
uint32_t flags,
int modes,
int addrbits,
int ignorebits);
} // namespace drc
#endif // MAME_CPU_DRCBEX64_H
|