Vasified source.

This commit is contained in:
tim lindner 2017-05-14 15:50:36 -07:00
parent ef3254e428
commit 963efbea77
2 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@
// copyright-holders:tim lindner // copyright-holders:tim lindner
/*************************************************************************** /***************************************************************************
coco_gmc.c coco_gmc.cpp
Code for emulating the Games Master Cartridge. A banked switched ROM Code for emulating the Games Master Cartridge. A banked switched ROM
cartridge with a SN76489AN programmable sound generator. 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 ); return MACHINE_CONFIG_NAME( cocopak_gmc );
} }
/*------------------------------------------------- //-------------------------------------------------
write // write
-------------------------------------------------*/ //-------------------------------------------------
WRITE8_MEMBER(coco_pak_gmc_device::write) WRITE8_MEMBER(coco_pak_gmc_device::write)
{ {

View File

@ -1,9 +1,9 @@
// license:BSD-3-Clause // license:BSD-3-Clause
// copyright-holders:tim lindner // 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__ #pragma once
#define __COCO_GMC_H__
#include "coco_pak.h" #include "coco_pak.h"
#include "sound/sn76496.h" #include "sound/sn76496.h"
@ -29,4 +29,4 @@ private:
// device type definition // device type definition
DECLARE_DEVICE_TYPE(COCO_PAK_GMC, coco_pak_gmc_device) DECLARE_DEVICE_TYPE(COCO_PAK_GMC, coco_pak_gmc_device)
#endif /* __COCO_GMC_H__ */ #endif // MAME_DEVICES_BUS_COCO_COCO_GMC_H