mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
78ee46270b
Specifically by establishing an intermediate representation of a useful mix between the American and British IBM and Mac keyboard layouts, and routing through that.
23 lines
474 B
C++
23 lines
474 B
C++
//
|
|
// KeyboardMapper.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 10/10/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Machines_AmstradCPC_KeyboardMapper_hpp
|
|
#define Machines_AmstradCPC_KeyboardMapper_hpp
|
|
|
|
#include "../KeyboardMachine.hpp"
|
|
|
|
namespace AmstradCPC {
|
|
|
|
struct KeyboardMapper: public KeyboardMachine::Machine::KeyboardMapper {
|
|
uint16_t mapped_key_for_key(Inputs::Keyboard::Key key);
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* KeyboardMapper_hpp */
|