mirror of
https://github.com/holub/mame
synced 2025-05-28 08:33:05 +03:00
22 lines
539 B
C
22 lines
539 B
C
/*********************************************************************
|
|
|
|
formats/d81_dsk.h
|
|
|
|
Floppy format code for Commodore 1581 disk images
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef __D81_DSK__
|
|
#define __D81_DSK__
|
|
|
|
#include "flopimg.h"
|
|
|
|
/***************************************************************************
|
|
PROTOTYPES
|
|
***************************************************************************/
|
|
|
|
FLOPPY_IDENTIFY( d81_dsk_identify );
|
|
FLOPPY_CONSTRUCT( d81_dsk_construct );
|
|
|
|
#endif
|