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
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2016-09-06 12:49:32 +00:00
|
|
|
|
2023-05-25 20:06:13 +00:00
|
|
|
#include <cstdint>
|
2016-09-06 12:49:32 +00:00
|
|
|
#include <string>
|
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace Storage::Data::Commodore {
|
2016-09-06 12:49:32 +00:00
|
|
|
|
|
|
|
std::wstring petscii_from_bytes(const uint8_t *string, int length, bool shifted);
|
|
|
|
|
|
|
|
}
|