1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Adds just enough logic to make every host key look like '0' to the MSX.

This commit is contained in:
Thomas Harte
2017-11-29 22:07:30 -05:00
parent ee84f33ab5
commit 54c845b6e2
4 changed files with 104 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
//
// Keyboard.cpp
// Clock Signal
//
// Created by Thomas Harte on 29/11/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
#include "Keyboard.hpp"
uint16_t MSX::KeyboardMapper::mapped_key_for_key(Inputs::Keyboard::Key key) {
// TODO: actual keyboard map.
return 0;
}