mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
288 B
C++
19 lines
288 B
C++
#ifndef ZILOGMCZ_H
|
|
#define ZILOGMCZ_H
|
|
|
|
#define MICROPOLIS_ENCODED_SECTOR_SIZE (1+2+266+6)
|
|
|
|
class Sector;
|
|
class Fluxmap;
|
|
|
|
class MicropolisDecoder : public AbstractDecoder
|
|
{
|
|
public:
|
|
virtual ~MicropolisDecoder() {}
|
|
|
|
RecordType advanceToNextRecord();
|
|
void decodeSectorRecord();
|
|
};
|
|
|
|
#endif
|