From af93809d075cf29405fcb3a7d23a7c17b3d208df Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 24 Dec 2021 14:55:41 +0100 Subject: [PATCH] zx structs --- include/zx8211.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/zx8211.h diff --git a/include/zx8211.h b/include/zx8211.h new file mode 100644 index 000000000..7e3e901f7 --- /dev/null +++ b/include/zx8211.h @@ -0,0 +1,23 @@ +//----------------------------------------------------------------------------- +// Copyright (C) 2021 Iceman +// +// This code is licensed to you under the terms of the GNU GPL, version 2 or, +// at your option, any later version. See the LICENSE.txt file for the text of +// the license. +//----------------------------------------------------------------------------- +// Low frequency ZX8211 structs +//----------------------------------------------------------------------------- + +#ifndef ZX8211_H__ +#define ZX8211_H__ + +#define ZX8211_NUM_BLOCKS 32 + +// Common word/block addresses + + +typedef struct { + bool parity; +} zx8211_data_t; + +#endif // ZX8211_H__