mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
24 lines
551 B
C
24 lines
551 B
C
/*************************************************************************
|
|
|
|
formats/coupedsk.h
|
|
|
|
SAM Coupe disk image formats
|
|
|
|
**************************************************************************/
|
|
|
|
#ifndef __COUPEDSK_H__
|
|
#define __COUPEDSK_H__
|
|
|
|
#include "flopimg.h"
|
|
|
|
|
|
FLOPPY_CONSTRUCT( coupe_mgt_construct );
|
|
FLOPPY_IDENTIFY( coupe_mgt_identify );
|
|
FLOPPY_CONSTRUCT( coupe_sad_construct );
|
|
FLOPPY_IDENTIFY( coupe_sad_identify );
|
|
FLOPPY_CONSTRUCT( coupe_sdf_construct );
|
|
FLOPPY_IDENTIFY( coupe_sdf_identify );
|
|
|
|
|
|
#endif /* __COUPEDSK_H__ */
|