mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
22 lines
334 B
C++
22 lines
334 B
C++
#ifndef FB100_H
|
|
#define FB100_H
|
|
|
|
#define FB100_RECORD_SIZE 0x516 /* bytes */
|
|
#define FB100_ID_SIZE 17
|
|
#define FB100_PAYLOAD_SIZE 0x500
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
class Track;
|
|
|
|
class Fb100Decoder : public AbstractStatefulDecoder
|
|
{
|
|
public:
|
|
virtual ~Fb100Decoder() {}
|
|
|
|
void decodeToSectors(Track& track) override;
|
|
};
|
|
|
|
#endif
|
|
|