2021-12-24 21:55:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// 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__
|
|
|
|
|
2021-12-28 00:42:33 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2021-12-24 21:55:41 +08:00
|
|
|
#define ZX8211_NUM_BLOCKS 32
|
|
|
|
|
|
|
|
// Common word/block addresses
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
bool parity;
|
|
|
|
} zx8211_data_t;
|
|
|
|
|
2021-12-28 02:36:42 +08:00
|
|
|
#endif // ZX8211_H__
|