mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-03 08:51:40 +00:00
28 lines
474 B
C++
28 lines
474 B
C++
|
//
|
||
|
// CharacterMapper.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 03/08/2017.
|
||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef CharacterMapper_hpp
|
||
|
#define CharacterMapper_hpp
|
||
|
|
||
|
#include "../Typer.hpp"
|
||
|
|
||
|
namespace ZX8081 {
|
||
|
|
||
|
class CharacterMapper: public ::Utility::CharacterMapper {
|
||
|
public:
|
||
|
CharacterMapper(bool is_zx81);
|
||
|
uint16_t *sequence_for_character(char character);
|
||
|
|
||
|
private:
|
||
|
bool is_zx81_;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* CharacterMapper_hpp */
|