diff options
| author | 2017-05-14 15:50:36 -0700 | |
|---|---|---|
| committer | 2017-05-14 15:50:36 -0700 | |
| commit | 963efbea7724f15b5c6f151b703f6d4abd9fc981 (patch) | |
| tree | 074b41b55d4c5add486651eb2d914ac964bf2724 /src | |
| parent | ef3254e42824e1cc749bf2da7ea3c4871486326f (diff) | |
Vasified source.
Diffstat (limited to 'src')
| -rw-r--r-- | src/devices/bus/coco/coco_gmc.cpp | 8 | ||||
| -rw-r--r-- | src/devices/bus/coco/coco_gmc.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/coco/coco_gmc.cpp b/src/devices/bus/coco/coco_gmc.cpp index e8db882df06..5140e8cc1cf 100644 --- a/src/devices/bus/coco/coco_gmc.cpp +++ b/src/devices/bus/coco/coco_gmc.cpp @@ -2,7 +2,7 @@ // copyright-holders:tim lindner /*************************************************************************** - coco_gmc.c + coco_gmc.cpp Code for emulating the Games Master Cartridge. A banked switched ROM cartridge with a SN76489AN programmable sound generator. @@ -54,9 +54,9 @@ machine_config_constructor coco_pak_gmc_device::device_mconfig_additions() const return MACHINE_CONFIG_NAME( cocopak_gmc ); } -/*------------------------------------------------- - write --------------------------------------------------*/ +//------------------------------------------------- +// write +//------------------------------------------------- WRITE8_MEMBER(coco_pak_gmc_device::write) { diff --git a/src/devices/bus/coco/coco_gmc.h b/src/devices/bus/coco/coco_gmc.h index 6d48c461350..df2dbb255c8 100644 --- a/src/devices/bus/coco/coco_gmc.h +++ b/src/devices/bus/coco/coco_gmc.h @@ -1,9 +1,9 @@ // license:BSD-3-Clause // copyright-holders:tim lindner -#pragma once +#ifndef MAME_DEVICES_BUS_COCO_COCO_GMC_H +#define MAME_DEVICES_BUS_COCO_COCO_GMC_H -#ifndef __COCO_GMC_H__ -#define __COCO_GMC_H__ +#pragma once #include "coco_pak.h" #include "sound/sn76496.h" @@ -29,4 +29,4 @@ private: // device type definition DECLARE_DEVICE_TYPE(COCO_PAK_GMC, coco_pak_gmc_device) -#endif /* __COCO_GMC_H__ */ +#endif // MAME_DEVICES_BUS_COCO_COCO_GMC_H |
