mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-10-27 08:16:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			335 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			335 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| //  Machines.h
 | |
| //  Clock Signal
 | |
| //
 | |
| //  Created by Thomas Harte on 24/01/2018.
 | |
| //  Copyright © 2018 Thomas Harte. All rights reserved.
 | |
| //
 | |
| 
 | |
| #ifndef Machines_h
 | |
| #define Machines_h
 | |
| 
 | |
| namespace Analyser {
 | |
| 
 | |
| enum class Machine {
 | |
| 	AmstradCPC,
 | |
| 	Atari2600,
 | |
| 	ColecoVision,
 | |
| 	Electron,
 | |
| 	MSX,
 | |
| 	Oric,
 | |
| 	Vic20,
 | |
| 	ZX8081
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif /* Machines_h */
 |