blob: 3d873677fed1b9879c95fe3b3b4badd0abb069e2 (
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
34
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
drcbex86.h
32-bit x86 back-end for the universal machine language.
***************************************************************************/
#ifndef MAME_CPU_DRCBEX86_H
#define MAME_CPU_DRCBEX86_H
#pragma once
#include "drcuml.h"
#include <memory>
namespace drc {
std::unique_ptr<drcbe_interface> make_drcbe_x86(
drcuml_state &drcuml,
device_t &device,
drc_cache &cache,
uint32_t flags,
int modes,
int addrbits,
int ignorebits);
} // namespace drc
#endif // MAME_CPU_DRCBEX86_H
|