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/bml3/mp1802.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/bml3/mp1802.h')
-rw-r--r-- | src/devices/bus/bml3/mp1802.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/bml3/mp1802.h b/src/devices/bus/bml3/mp1802.h index 7b9701d56f7..908442a6bd7 100644 --- a/src/devices/bus/bml3/mp1802.h +++ b/src/devices/bus/bml3/mp1802.h @@ -2,15 +2,15 @@ // copyright-holders:Jonathan Edwards /********************************************************************* - bml3mp1802.h + mp1802.h Hitachi MP-1802 floppy disk controller card for the MB-6890 Hitachi MP-3550 floppy drive is attached *********************************************************************/ -#ifndef MAME_BUS_BML3_BML3MP1802_H -#define MAME_BUS_BML3_BML3MP1802_H +#ifndef MAME_BUS_BML3_MP1802_H +#define MAME_BUS_BML3_MP1802_H #pragma once @@ -59,4 +59,4 @@ private: // device type definition DECLARE_DEVICE_TYPE(BML3BUS_MP1802, bml3bus_mp1802_device) -#endif // MAME_BUS_BML3_BML3MP1802_H +#endif // MAME_BUS_BML3_MP1802_H |