mirror of
https://github.com/holub/mame
synced 2025-05-24 06:30:04 +03:00
23 lines
491 B
C
23 lines
491 B
C
/*********************************************************************
|
|
|
|
formats/coco_dsk.h
|
|
|
|
Tandy Color Computer / Dragon disk images
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef COCO_DSK_H
|
|
#define COCO_DSK_H
|
|
|
|
#include "flopimg.h"
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
LEGACY_FLOPPY_OPTIONS_EXTERN(coco);
|
|
|
|
FLOPPY_IDENTIFY(coco_dmk_identify);
|
|
FLOPPY_CONSTRUCT(coco_dmk_construct);
|
|
|
|
#endif /* COCO_DSK_H */
|