mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-11-04 00:16:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			317 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			317 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
//  Commodore.hpp
 | 
						|
//  Clock Signal
 | 
						|
//
 | 
						|
//  Created by Thomas Harte on 06/11/2016.
 | 
						|
//  Copyright 2016 Thomas Harte. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <cstdint>
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace Storage::Data::Commodore {
 | 
						|
 | 
						|
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
 | 
						|
 | 
						|
}
 |