blob: 2db312453103576ac7a070c448bb6c30438e62d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol,???
/*
tzx_cas.h
Format code for tzx cassette files
*/
#ifndef TZX_CAS_H
#define TZX_CAS_H
#include "cassimg.h"
extern const struct CassetteFormat tzx_cassette_format;
CASSETTE_FORMATLIST_EXTERN(tzx_cassette_formats);
CASSETTE_FORMATLIST_EXTERN(cdt_cassette_formats);
#endif /* TZX_CAS_H */
|