summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/ace_tap.h
blob: 382d97697a496b62917e4afa6404442df7054168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*********************************************************************

    ace_tap.h

    Format code for Jupiter Ace casette files

*********************************************************************/

#ifndef ACE_TAP_H
#define ACE_TAP_H

#include "cassimg.h"

struct ace_tape_t
{
	UINT8 hdr_type;
	UINT8 hdr_name[10];
	UINT16 hdr_len;
	UINT16 hdr_addr;
	UINT8 hdr_vars[8];
	UINT8 hdr_3c4c;
	UINT8 hdr_3c4d;
	UINT16 dat_len;
};

CASSETTE_FORMATLIST_EXTERN(ace_cassette_formats);

#endif /* ACE_TAP_H */