mirror of
https://github.com/holub/mame
synced 2025-05-22 05:38:52 +03:00
20 lines
363 B
C
20 lines
363 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Gordon Jefferyes
|
|
/*
|
|
csw_cas.h
|
|
|
|
Format code for csw cassette files
|
|
*/
|
|
|
|
#ifndef CSW_CAS_H
|
|
#define CSW_CAS_H
|
|
|
|
#include "cassimg.h"
|
|
|
|
extern const struct CassetteFormat csw_cassette_format;
|
|
|
|
CASSETTE_FORMATLIST_EXTERN(csw_cassette_formats);
|
|
CASSETTE_FORMATLIST_EXTERN(bbc_cassette_formats);
|
|
|
|
#endif /* CSW_CAS_H */
|