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/electron/mc68k.h | |
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/electron/mc68k.h')
-rw-r--r-- | src/devices/bus/electron/mc68k.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/bus/electron/mc68k.h b/src/devices/bus/electron/mc68k.h index d8b5e29894c..67c23eba8a6 100644 --- a/src/devices/bus/electron/mc68k.h +++ b/src/devices/bus/electron/mc68k.h @@ -6,8 +6,8 @@ **********************************************************************/ -#ifndef MAME_BUS_ELECTRON_MC68K_M -#define MAME_BUS_ELECTRON_MC68K_M +#ifndef MAME_BUS_ELECTRON_MC68K_H +#define MAME_BUS_ELECTRON_MC68K_H #pragma once @@ -59,5 +59,4 @@ private: // device type definition DECLARE_DEVICE_TYPE(ELECTRON_MC68K, electron_mc68k_device) - -#endif // MAME_BUS_ELECTRON_MC68K_M +#endif // MAME_BUS_ELECTRON_MC68K_H |