blob: 395ddba835cda8a68d37d7ed8749ca5a49012044 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*********************************************************************
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
|