mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
21 lines
369 B
C
21 lines
369 B
C
// 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 */
|