diff options
Diffstat (limited to 'src/mess/machine/coco_vhd.c')
-rw-r--r-- | src/mess/machine/coco_vhd.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mess/machine/coco_vhd.c b/src/mess/machine/coco_vhd.c index 7fef1b320ca..bcf9cfe30f1 100644 --- a/src/mess/machine/coco_vhd.c +++ b/src/mess/machine/coco_vhd.c @@ -48,15 +48,15 @@ #define VERBOSE 1 -#define VHDSTATUS_OK 0x00 -#define VHDSTATUS_NO_VHD_ATTACHED 0x02 -#define VHDSTATUS_ACCESS_DENIED 0x05 -#define VHDSTATUS_UNKNOWN_COMMAND 0xFE -#define VHDSTATUS_POWER_ON_STATE 0xFF +#define VHDSTATUS_OK 0x00 +#define VHDSTATUS_NO_VHD_ATTACHED 0x02 +#define VHDSTATUS_ACCESS_DENIED 0x05 +#define VHDSTATUS_UNKNOWN_COMMAND 0xFE +#define VHDSTATUS_POWER_ON_STATE 0xFF -#define VHDCMD_READ 0 -#define VHDCMD_WRITE 1 -#define VHDCMD_FLUSH 2 +#define VHDCMD_READ 0 +#define VHDCMD_WRITE 1 +#define VHDCMD_FLUSH 2 /*************************************************************************** @@ -70,8 +70,8 @@ const device_type COCO_VHD = &device_creator<coco_vhd_image_device>; //------------------------------------------------- coco_vhd_image_device::coco_vhd_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, COCO_VHD, "Virtual Hard Disk", tag, owner, clock), - device_image_interface(mconfig, *this) + : device_t(mconfig, COCO_VHD, "Virtual Hard Disk", tag, owner, clock), + device_image_interface(mconfig, *this) { } |