blob: 0113fdf64845b14d0d879af29ff79c435f25a539 (
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_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 /* ACE_TAP_H */
|