summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/ace_tap.h
blob: 664b9876c290947bb0242fecd8ffe40317c23d5e (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
30
31
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
/*********************************************************************

    ace_tap.h

    Format code for Jupiter Ace cassette files

*********************************************************************/
#ifndef MAME_FORMATS_ACE_TAP_H
#define MAME_FORMATS_ACE_TAP_H

#include "cassimg.h"

#if 0
struct ace_tape_t
{
	uint8_t hdr_type;
	uint8_t hdr_name[10];
	uint16_t hdr_len;
	uint16_t hdr_addr;
	uint8_t hdr_vars[8];
	uint8_t hdr_3c4c;
	uint8_t hdr_3c4d;
	uint16_t dat_len;
};
#endif

CASSETTE_FORMATLIST_EXTERN(ace_cassette_formats);

#endif // MAME_FORMATS_ACE_TAP_H