mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
trivial stuff (nw)
This commit is contained in:
parent
b787818d0c
commit
079522fe67
@ -2,7 +2,7 @@
|
||||
// copyright-holders:Vas Crabb
|
||||
/***************************************************************************
|
||||
|
||||
WE|AT&T DSP16 series emulator
|
||||
WE|AT&T DSP16 series instruction analyser
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
@ -10,6 +10,10 @@
|
||||
#include "dsp16fe.h"
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
construction/destruction
|
||||
***********************************************************************/
|
||||
|
||||
dsp16_device_base::frontend::frontend(dsp16_device_base &host, u32 window_start, u32 window_end, u32 max_sequence)
|
||||
: drc_frontend(host, window_start, window_end, max_sequence)
|
||||
, m_host(host)
|
||||
|
@ -2,7 +2,7 @@
|
||||
// copyright-holders:Vas Crabb
|
||||
/***************************************************************************
|
||||
|
||||
WE|AT&T DSP16 series emulator
|
||||
WE|AT&T DSP16 series instruction analyser
|
||||
|
||||
***************************************************************************/
|
||||
#ifndef MAME_CPU_DSP16_DSP16FE_H
|
||||
@ -57,6 +57,7 @@ public:
|
||||
REG_BIT_DAU_A1
|
||||
};
|
||||
|
||||
// construction/destruction
|
||||
frontend(dsp16_device_base &host, u32 window_start, u32 window_end, u32 max_sequence);
|
||||
|
||||
protected:
|
||||
|
@ -26,7 +26,7 @@ public:
|
||||
private:
|
||||
// compilation boundaries
|
||||
enum : u32
|
||||
{
|
||||
{
|
||||
COMPILE_BACKWARDS_BYTES = 64,
|
||||
COMPILE_FORWARDS_BYTES = 256,
|
||||
COMPILE_MAX_INSTRUCTIONS = (COMPILE_BACKWARDS_BYTES / 2) + (COMPILE_FORWARDS_BYTES / 2),
|
||||
|
Loading…
Reference in New Issue
Block a user