mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
20 lines
453 B
C
20 lines
453 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Nathan Woods
|
|
/*********************************************************************
|
|
|
|
coco_cas.h
|
|
|
|
Format code for CoCo CAS (*.cas) files
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef COCO_CAS_H
|
|
#define COCO_CAS_H
|
|
|
|
#include "cassimg.h"
|
|
|
|
CASSETTE_FORMATLIST_EXTERN(coco_cassette_formats);
|
|
CASSETTE_FORMATLIST_EXTERN(alice32_cassette_formats);
|
|
|
|
#endif /* COCO_CAS_H */
|