mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
11 lines
304 B
C++
11 lines
304 B
C++
#ifndef F85_H
|
|
#define F85_H
|
|
|
|
#define F85_SECTOR_RECORD 0xffffce /* 1111 1111 1111 1111 1100 1110 */
|
|
#define F85_DATA_RECORD 0xffffcb /* 1111 1111 1111 1111 1100 1101 */
|
|
#define F85_SECTOR_LENGTH 512
|
|
|
|
extern std::unique_ptr<AbstractDecoder> createDurangoF85Decoder(const DecoderProto& config);
|
|
|
|
#endif
|