mirror of
https://github.com/holub/mame
synced 2025-05-20 04:39:11 +03:00
20 lines
447 B
C
20 lines
447 B
C
// license:GPL-2.0+
|
|
// copyright-holders:Juergen Buchmueller
|
|
/*********************************************************************
|
|
|
|
vt_cas.h
|
|
|
|
Format code for VTech cassette files
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef VT_CAS_H
|
|
#define VT_CAS_H
|
|
|
|
#include "cassimg.h"
|
|
|
|
CASSETTE_FORMATLIST_EXTERN(vtech1_cassette_formats);
|
|
CASSETTE_FORMATLIST_EXTERN(vtech2_cassette_formats);
|
|
|
|
#endif /* VT_CAS_H */
|