mirror of
https://github.com/holub/mame
synced 2025-05-23 06:08:48 +03:00
16 lines
364 B
C
16 lines
364 B
C
/***************************************************************************
|
|
|
|
APRIDISK disk image format
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __APRIDISK_H__
|
|
#define __APRIDISK_H__
|
|
|
|
#include "flopimg.h"
|
|
|
|
FLOPPY_IDENTIFY( apridisk_identify );
|
|
FLOPPY_CONSTRUCT( apridisk_construct );
|
|
|
|
#endif /* __APRIDISK_H__ */
|