mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 01:04:54 +00:00
24 lines
453 B
C++
24 lines
453 B
C++
//
|
|
// CharacterMapper.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 03/08/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Machines_Oric_CharacterMapper_hpp
|
|
#define Machines_Oric_CharacterMapper_hpp
|
|
|
|
#include "../Typer.hpp"
|
|
|
|
namespace Oric {
|
|
|
|
class CharacterMapper: public ::Utility::CharacterMapper {
|
|
public:
|
|
uint16_t *sequence_for_character(char character);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* Machines_Oric_CharacterMapper_hpp */
|