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

21
arch/c64/c64.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef C64_H
#define C64_H
#define C64_SECTOR_RECORD 0xffd49
#define C64_DATA_RECORD 0xffd57
#define C64_SECTOR_LENGTH 256
class Sector;
class Fluxmap;
class Commodore64Decoder : public AbstractDecoder
{
public:
virtual ~Commodore64Decoder() {}
RecordType advanceToNextRecord();
void decodeSectorRecord();
void decodeDataRecord();
};
#endif