mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-05 21:32:55 +00:00
23 lines
393 B
C++
23 lines
393 B
C++
//
|
|
// CommodoreGCR.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 29/07/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef CommodoreGCR_hpp
|
|
#define CommodoreGCR_hpp
|
|
|
|
#include "../../Storage.hpp"
|
|
|
|
namespace Storage {
|
|
namespace Encodings {
|
|
namespace CommodoreGCR {
|
|
Time length_of_a_bit_in_time_zone(unsigned int time_zone);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* CommodoreGCR_hpp */
|