blob: e7c39993016cd65b59c0a728650c5e6a798873e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/***************************************************************************
APRIDISK disk image format
***************************************************************************/
#ifndef __APRIDISK_H__
#define __APRIDISK_H__
#include "flopimg.h"
FLOPPY_IDENTIFY( apridisk_identify );
FLOPPY_CONSTRUCT( apridisk_construct );
#endif /* __APRIDISK_H__ */
|