summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Erwin Jansen <pokowaka@users.noreply.github.com>2020-09-17 01:39:48 -0700
committer GitHub <noreply@github.com>2020-09-17 18:39:48 +1000
commit9a0c63f673d1e6b91e8abbf6e54729aad7e439e9 (patch)
tree6b547d13a36c6517412b2e8402f276f2d9283ce7 /src/tools
parent8d7d01caef380b119fbd8653fa5ad23e0d592564 (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/tools')
-rw-r--r--src/tools/castool.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/castool.cpp b/src/tools/castool.cpp
index eb9973ad48d..0b2b4230f8b 100644
--- a/src/tools/castool.cpp
+++ b/src/tools/castool.cpp
@@ -38,6 +38,7 @@
#include "formats/mz_cas.h"
#include "formats/orao_cas.h"
#include "formats/oric_tap.h"
+#include "formats/p2000t_cas.h"
#include "formats/p6001_cas.h"
#include "formats/phc25_cas.h"
#include "formats/pmd_cas.h"
@@ -90,6 +91,7 @@ const struct SupportedCassetteFormats formats[] = {
{"mz", mz700_cassette_formats ,"Sharp MZ-700"},
{"orao", orao_cassette_formats ,"PEL Varazdin Orao"},
{"oric", oric_cassette_formats ,"Tangerine Oric"},
+ {"p2000t", p2000t_cassette_formats ,"Philips P2000T"},
{"pc6001", pc6001_cassette_formats ,"NEC PC-6001"},
{"phc25", phc25_cassette_formats ,"Sanyo PHC-25"},
{"pmd85", pmd85_cassette_formats ,"Tesla PMD-85"},