mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
23 lines
565 B
C++
23 lines
565 B
C++
#ifndef VICTOR9K_H
|
|
#define VICTOR9K_H
|
|
|
|
class AbstractEncoder;
|
|
class AbstractDecoder;
|
|
class EncoderProto;
|
|
class DecoderProto;
|
|
|
|
/* ... 1101 0101 0111
|
|
* ^^ ^^^^ ^^^^ ten bit IO byte */
|
|
#define VICTOR9K_SECTOR_RECORD 0xfffffd57
|
|
|
|
/* ... 1101 0100 1001
|
|
* ^^ ^^^^ ^^^^ ten bit IO byte */
|
|
#define VICTOR9K_DATA_RECORD 0xfffffd49
|
|
|
|
#define VICTOR9K_SECTOR_LENGTH 512
|
|
|
|
extern std::unique_ptr<AbstractDecoder> createVictor9kDecoder(const DecoderProto& config);
|
|
extern std::unique_ptr<AbstractEncoder> createVictor9kEncoder(const EncoderProto& config);
|
|
|
|
#endif
|