mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
21 lines
394 B
C++
21 lines
394 B
C++
#ifndef C64_H
|
|
#define C64_H
|
|
|
|
#define C64_RECORD_SEPARATOR 0xfff5
|
|
#define C64_SECTOR_LENGTH 256
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class Commodore64Decoder : public AbstractSoftSectorDecoder
|
|
{
|
|
public:
|
|
virtual ~Commodore64Decoder() {}
|
|
|
|
SectorVector decodeToSectors(
|
|
const RawRecordVector& rawRecords, unsigned physicalTrack);
|
|
int recordMatcher(uint64_t fifo) const;
|
|
};
|
|
|
|
#endif
|