diff options
Diffstat (limited to 'src/mess/machine/coco_pak.c')
-rw-r--r-- | src/mess/machine/coco_pak.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/coco_pak.c b/src/mess/machine/coco_pak.c index c1db2997905..e06783e74b1 100644 --- a/src/mess/machine/coco_pak.c +++ b/src/mess/machine/coco_pak.c @@ -11,7 +11,7 @@ #include "includes/coco.h" #include "imagedev/cartslot.h" -#define CARTSLOT_TAG "cart" +#define CARTSLOT_TAG "cart" /*************************************************************************** IMPLEMENTATION @@ -40,12 +40,12 @@ const device_type COCO_PAK = &device_creator<coco_pak_device>; //------------------------------------------------- coco_pak_device::coco_pak_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, type, name, tag, owner, clock), - device_cococart_interface( mconfig, *this ) + device_cococart_interface( mconfig, *this ) { } coco_pak_device::coco_pak_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, COCO_PAK, "CoCo Program PAK", tag, owner, clock), + : device_t(mconfig, COCO_PAK, "CoCo Program PAK", tag, owner, clock), device_cococart_interface( mconfig, *this ) { } @@ -135,7 +135,7 @@ const device_type COCO_PAK_BANKED = &device_creator<coco_pak_banked_device>; //------------------------------------------------- coco_pak_banked_device::coco_pak_banked_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : coco_pak_device(mconfig, COCO_PAK_BANKED, "CoCo Program PAK (Banked)", tag, owner, clock) + : coco_pak_device(mconfig, COCO_PAK_BANKED, "CoCo Program PAK (Banked)", tag, owner, clock) { } |