Mechanical refactor to rearrange the source files into a more pleasing order.

This commit is contained in:
David Given
2019-08-06 22:25:11 +02:00
parent 5748f017dd
commit 4b07c38782
35 changed files with 14 additions and 14 deletions

25
arch/apple2/apple2.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef APPLE2_H
#define APPLE2_H
#define APPLE2_SECTOR_RECORD 0xd5aa96
#define APPLE2_DATA_RECORD 0xd5aaad
#define APPLE2_SECTOR_LENGTH 256
#define APPLE2_ENCODED_SECTOR_LENGTH 342
class Sector;
class Fluxmap;
class Apple2Decoder : public AbstractDecoder
{
public:
virtual ~Apple2Decoder() {}
RecordType advanceToNextRecord();
void decodeSectorRecord();
void decodeDataRecord();
};
#endif