mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
21 lines
413 B
C++
21 lines
413 B
C++
#ifndef AMIGA_H
|
|
#define AMIGA_H
|
|
|
|
#define AMIGA_SECTOR_RECORD 0xaaaa44894489LL
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class AmigaDecoder : public AbstractSoftSectorDecoder
|
|
{
|
|
public:
|
|
virtual ~AmigaDecoder() {}
|
|
|
|
SectorVector decodeToSectors(
|
|
const RawRecordVector& rawRecords, unsigned physicalTrack);
|
|
nanoseconds_t guessClock(Fluxmap& fluxmap) const;
|
|
int recordMatcher(uint64_t fifo) const;
|
|
};
|
|
|
|
#endif
|