diff options
author | 2020-09-17 01:39:48 -0700 | |
---|---|---|
committer | 2020-09-17 18:39:48 +1000 | |
commit | 9a0c63f673d1e6b91e8abbf6e54729aad7e439e9 (patch) | |
tree | 6b547d13a36c6517412b2e8402f276f2d9283ce7 /src/lib/formats/p2000t_cas.h | |
parent | 8d7d01caef380b119fbd8653fa5ad23e0d592564 (diff) |
Add MDCR support for P2000t (#7215)
This adds support for the mini digital cassette recorder that can be
found inside a P2000t. This implementation is based on documentation
that can be found in https://github.com/p2000t/documentation.
In memory of NPM Jansen, who taught me all the magic of bits and bytes.
Diffstat (limited to 'src/lib/formats/p2000t_cas.h')
-rw-r--r-- | src/lib/formats/p2000t_cas.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/formats/p2000t_cas.h b/src/lib/formats/p2000t_cas.h new file mode 100644 index 00000000000..6d63e314a33 --- /dev/null +++ b/src/lib/formats/p2000t_cas.h @@ -0,0 +1,19 @@ +// license:BSD-3-Clause +// copyright-holders:Erwin Jansen +/********************************************************************* + + p2000t_cas.h + + Format code for P2000t .cas cassette files. + +*********************************************************************/ +#ifndef MAME_FORMATS_P2000T_CAS_H +#define MAME_FORMATS_P2000T_CAS_H + +#pragma once + +#include "cassimg.h" + +CASSETTE_FORMATLIST_EXTERN(p2000t_cassette_formats); + +#endif // MAME_FORMATS_P2000T_CAS_H |