2016-09-06 12:49:32 +00:00
|
|
|
//
|
2016-11-06 23:43:51 +00:00
|
|
|
// Commodore.hpp
|
2016-09-06 12:49:32 +00:00
|
|
|
// Clock Signal
|
|
|
|
//
|
2016-11-06 23:43:51 +00:00
|
|
|
// Created by Thomas Harte on 06/11/2016.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
2016-09-06 12:49:32 +00:00
|
|
|
//
|
|
|
|
|
2016-11-06 23:43:51 +00:00
|
|
|
#ifndef Storage_Data_Commodore_hpp
|
|
|
|
#define Storage_Data_Commodore_hpp
|
2016-09-06 12:49:32 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-11-06 23:43:51 +00:00
|
|
|
namespace Storage {
|
|
|
|
namespace Data {
|
2016-09-06 12:49:32 +00:00
|
|
|
namespace Commodore {
|
|
|
|
|
|
|
|
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
|
|
|
|
|
2016-11-06 23:43:51 +00:00
|
|
|
}
|
2016-09-06 12:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-06 23:43:51 +00:00
|
|
|
#endif /* Commodore_hpp */
|