Files
fluxengine/lib/fb100/fb100.h
David Given 5ce2acdfb4 The new decoder architecture now works, at least for the FB100. All I need now
is to rewrite every single other decoder.
2019-04-18 00:47:28 +02:00

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