mirror of
https://github.com/holub/mame
synced 2025-05-22 13:48:55 +03:00
19 lines
411 B
C
19 lines
411 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Wibert Pol
|
|
/*********************************************************************
|
|
|
|
trs_cas.h
|
|
|
|
Format code for TRS80 (level 2) cassette files.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef __TRS_CAS_H
|
|
#define __TRS_CAS_H
|
|
|
|
#include "cassimg.h"
|
|
|
|
CASSETTE_FORMATLIST_EXTERN(trs80l2_cassette_formats);
|
|
|
|
#endif /* __TRS_CAS_H */
|