mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
25 lines
526 B
C++
25 lines
526 B
C++
#ifndef VICTOR9K_H
|
|
#define VICTOR9K_H
|
|
|
|
#define VICTOR9K_SECTOR_RECORD 0xffeab
|
|
#define VICTOR9K_DATA_RECORD 0xffea4
|
|
|
|
#define VICTOR9K_SECTOR_LENGTH 512
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class Victor9kDecoder : public AbstractSoftSectorDecoder
|
|
{
|
|
public:
|
|
virtual ~Victor9kDecoder() {}
|
|
|
|
SectorVector decodeToSectors(
|
|
const RawRecordVector& rawRecords, unsigned physicalTrack);
|
|
int recordMatcher(uint64_t fifo) const;
|
|
|
|
nanoseconds_t guessClockImpl(Fluxmap& fluxmap, unsigned physicalTrack) const;
|
|
};
|
|
|
|
#endif
|