// license:BSD-3-Clause // copyright-holders:Aaron Giles /*************************************************************************** drcbec.h Interpreted C core back-end for the universal machine language. ***************************************************************************/ #ifndef MAME_CPU_DRCBEC_H #define MAME_CPU_DRCBEC_H #pragma once #include "drcuml.h" #include namespace drc { std::unique_ptr make_drcbe_c( drcuml_state &drcuml, device_t &device, drc_cache &cache, uint32_t flags, int modes, int addrbits, int ignorebits); } // namespace drc #endif // MAME_CPU_DRCBEC_H