diff options
author | 2024-11-25 03:37:11 +1100 | |
---|---|---|
committer | 2024-11-25 03:37:11 +1100 | |
commit | 116c0bf38433f7294ba7713a23fa48f00370341b (patch) | |
tree | 5c7bc16890a310a25533983b1f86c0da6c1e206b /src/devices/bus/spectrum | |
parent | eaeac3f65f5ac8813f69f26c61c49f9f8503e889 (diff) |
Cleanup:
* toaplan/mjsister.cpp: Use memory share creator for VRAM, put banked
ROM in its own region so the fixed ROM region can be sized correctly.
* cpu/s2650: Use util::sext rather than goofy lookup table.
* Fixed a lot more #include guards that didn't match header paths.
Diffstat (limited to 'src/devices/bus/spectrum')
-rw-r--r-- | src/devices/bus/spectrum/floppyone.h | 13 | ||||
-rw-r--r-- | src/devices/bus/spectrum/nemoide.h | 6 | ||||
-rw-r--r-- | src/devices/bus/spectrum/neogs.h | 6 | ||||
-rw-r--r-- | src/devices/bus/spectrum/smuc.h | 6 |
4 files changed, 16 insertions, 15 deletions
diff --git a/src/devices/bus/spectrum/floppyone.h b/src/devices/bus/spectrum/floppyone.h index 7992f0c7aea..e77fb61d5be 100644 --- a/src/devices/bus/spectrum/floppyone.h +++ b/src/devices/bus/spectrum/floppyone.h @@ -6,14 +6,16 @@ (c) 1984/5 R.P.Gush *********************************************************************/ -#ifndef MAME_BUS_SPECTRUM_FLPONE_H -#define MAME_BUS_SPECTRUM_FLPONE_H +#ifndef MAME_BUS_SPECTRUM_FLOPPYONE_H +#define MAME_BUS_SPECTRUM_FLOPPYONE_H #include "exp.h" -#include "imagedev/floppy.h" -#include "machine/wd_fdc.h" + #include "bus/centronics/ctronics.h" #include "bus/rs232/rs232.h" +#include "imagedev/floppy.h" +#include "machine/wd_fdc.h" + //************************************************************************** // TYPE DEFINITIONS @@ -76,5 +78,4 @@ protected: // device type definition DECLARE_DEVICE_TYPE(SPECTRUM_FLPONE, spectrum_flpone_device) - -#endif // MAME_BUS_SPECTRUM_FLPONE_H +#endif // MAME_BUS_SPECTRUM_FLOPPYONE_H diff --git a/src/devices/bus/spectrum/nemoide.h b/src/devices/bus/spectrum/nemoide.h index 441f3c9514a..b2af6963064 100644 --- a/src/devices/bus/spectrum/nemoide.h +++ b/src/devices/bus/spectrum/nemoide.h @@ -1,8 +1,8 @@ // license:BSD-3-Clause // copyright-holders:Andrei I. Holub -#ifndef MAME_SINCLAIR_NEMOIDE_H -#define MAME_SINCLAIR_NEMOIDE_H +#ifndef MAME_BUS_SPECTRUM_NEMOIDE_H +#define MAME_BUS_SPECTRUM_NEMOIDE_H #pragma once @@ -11,4 +11,4 @@ DECLARE_DEVICE_TYPE(ZXBUS_NEMOIDE, device_zxbus_card_interface) -#endif // MAME_SINCLAIR_NEMOIDE_H +#endif // MAME_BUS_SPECTRUM_NEMOIDE_H diff --git a/src/devices/bus/spectrum/neogs.h b/src/devices/bus/spectrum/neogs.h index 79170356690..6045520e1f7 100644 --- a/src/devices/bus/spectrum/neogs.h +++ b/src/devices/bus/spectrum/neogs.h @@ -1,8 +1,8 @@ // license:BSD-3-Clause // copyright-holders:Andrei I. Holub -#ifndef MAME_SINCLAIR_NEOGS_H -#define MAME_SINCLAIR_NEOGS_H +#ifndef MAME_BUS_SPECTRUM_NEOGS_H +#define MAME_BUS_SPECTRUM_NEOGS_H #pragma once @@ -11,4 +11,4 @@ DECLARE_DEVICE_TYPE(ZXBUS_NEOGS, device_zxbus_card_interface) -#endif // MAME_SINCLAIR_NEOGS_H +#endif // MAME_BUS_SPECTRUM_NEOGS_H diff --git a/src/devices/bus/spectrum/smuc.h b/src/devices/bus/spectrum/smuc.h index 87de5539783..93eadd904a3 100644 --- a/src/devices/bus/spectrum/smuc.h +++ b/src/devices/bus/spectrum/smuc.h @@ -1,8 +1,8 @@ // license:BSD-3-Clause // copyright-holders:Andrei I. Holub -#ifndef MAME_SINCLAIR_SMUC_H -#define MAME_SINCLAIR_SMUC_H +#ifndef MAME_BUS_SPECTRUM_SMUC_H +#define MAME_BUS_SPECTRUM_SMUC_H #pragma once @@ -11,4 +11,4 @@ DECLARE_DEVICE_TYPE(ZXBUS_SMUC, device_zxbus_card_interface) -#endif // MAME_SINCLAIR_SMUC_H +#endif // MAME_BUS_SPECTRUM_SMUC_H |