1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-05-03 06:29:19 +00:00

Small tweaks, draft of annotated XMesa microcode assembly added.

This commit is contained in:
Josh Dersch
2015-11-24 17:27:06 -08:00
parent b13944c81c
commit f256042cf4
19 changed files with 145 additions and 77 deletions

View File

@@ -1071,6 +1071,14 @@ namespace Contralto
_keyMap.Add(Keys.RShiftKey, AltoKey.RShift);
_keyMap.Add(Keys.ControlKey, AltoKey.CTRL);
_keyMap.Add(Keys.Return, AltoKey.Return);
_keyMap.Add(Keys.F1, AltoKey.BlankTop);
_keyMap.Add(Keys.F2, AltoKey.BlankMiddle);
_keyMap.Add(Keys.F3, AltoKey.BlankBottom);
_keyMap.Add(Keys.Back, AltoKey.BS);
_keyMap.Add(Keys.Tab, AltoKey.TAB);
_keyMap.Add(Keys.OemSemicolon, AltoKey.Semicolon);
_keyMap.Add(Keys.OemOpenBrackets, AltoKey.LBracket);
_keyMap.Add(Keys.OemCloseBrackets, AltoKey.RBracket);
}