mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-31 11:17:01 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			438 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			438 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef F85_H
 | |
| #define F85_H
 | |
| 
 | |
| #define F85_SECTOR_RECORD 0xffffce /* 1111 1111 1111 1111 1100 1110 */
 | |
| #define F85_DATA_RECORD 0xffffcb /* 1111 1111 1111 1111 1100 1101 */
 | |
| #define F85_SECTOR_LENGTH    512
 | |
| 
 | |
| class Sector;
 | |
| class Fluxmap;
 | |
| 
 | |
| class DurangoF85Decoder : public AbstractDecoder
 | |
| {
 | |
| public:
 | |
|     virtual ~DurangoF85Decoder() {}
 | |
| 
 | |
|     RecordType advanceToNextRecord();
 | |
|     void decodeSectorRecord();
 | |
|     void decodeDataRecord();
 | |
| };
 | |
| 
 | |
| #endif
 |