Shuffle some declarations around in core headers

This commit is contained in:
AJR 2022-07-03 16:26:10 -04:00
parent f0bcb0c5fe
commit 357098ea6a
4 changed files with 6 additions and 3 deletions

View File

@ -98,6 +98,9 @@ using util::DWORD_XOR_BE;
using util::DWORD_XOR_LE;
// input ports support up to 32 bits each
typedef u32 ioport_value;
// pen_t is used to represent pixel values in bitmaps
typedef u32 pen_t;

View File

@ -187,6 +187,7 @@ class running_machine;
// declared in mconfig.h
namespace emu::detail { class machine_config_replace; }
struct internal_layout;
class machine_config;
// declared in natkeyboard.h

View File

@ -32,9 +32,6 @@
// CONSTANTS
//**************************************************************************
// input ports support up to 32 bits each
typedef u32 ioport_value;
// active high/low values for input ports
constexpr ioport_value IP_ACTIVE_HIGH = 0x00000000;
constexpr ioport_value IP_ACTIVE_LOW = 0xffffffff;

View File

@ -15,6 +15,8 @@
#include "rendertypes.h"
#include "utilfwd.h"
#include <algorithm>
#include <cmath>
#include <utility>