mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
21 lines
308 B
C++
21 lines
308 B
C++
#ifndef AMIGA_H
|
|
#define AMIGA_H
|
|
|
|
#define AMIGA_SECTOR_RECORD 0xaaaa44894489LL
|
|
|
|
#define AMIGA_RECORD_SIZE 0x21f
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class AmigaDecoder : public AbstractDecoder
|
|
{
|
|
public:
|
|
virtual ~AmigaDecoder() {}
|
|
|
|
RecordType advanceToNextRecord();
|
|
void decodeSectorRecord();
|
|
};
|
|
|
|
#endif
|