blob: 27a1e93129d636bd36c99b4e56b8c72f1016f9ca (
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
32
|
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
/*********************************************************************
ace_tap.h
Format code for Jupiter Ace cassette files
*********************************************************************/
#ifndef ACE_TAP_H
#define ACE_TAP_H
#include "cassimg.h"
#if 0
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;
};
#endif
CASSETTE_FORMATLIST_EXTERN(ace_cassette_formats);
#endif /* ACE_TAP_H */
|