mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
25 lines
409 B
C++
25 lines
409 B
C++
//
|
|
// Commodore.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/11/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Storage_Data_Commodore_hpp
|
|
#define Storage_Data_Commodore_hpp
|
|
|
|
#include <string>
|
|
|
|
namespace Storage {
|
|
namespace Data {
|
|
namespace Commodore {
|
|
|
|
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Commodore_hpp */
|