Files
fluxengine/arch/mx/mx.h
2020-06-27 14:46:35 +01:00

22 lines
327 B
C++

#ifndef MX_H
#define MX_H
#include "decoders/decoders.h"
class MxDecoder : public AbstractFmDecoder
{
public:
virtual ~MxDecoder() {}
void beginTrack();
RecordType advanceToNextRecord();
void decodeSectorRecord();
private:
nanoseconds_t _clock;
int _currentSector;
int _logicalTrack;
};
#endif