From b9a95d408997209c0f1b85d473415cdc5c515482 Mon Sep 17 00:00:00 2001 From: Niels Moseley Date: Mon, 7 May 2018 16:56:38 +0200 Subject: [PATCH] Replaced ASCII backspace 0x08 with '_' in ps2 keyboard translation table. --- rtl/ps2keyboard/ps2keyboard.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/ps2keyboard/ps2keyboard.v b/rtl/ps2keyboard/ps2keyboard.v index a4dc50c..540290e 100644 --- a/rtl/ps2keyboard/ps2keyboard.v +++ b/rtl/ps2keyboard/ps2keyboard.v @@ -280,7 +280,7 @@ module ps2keyboard ( 8'h4E: ascii <= "_"; 8'h55: ascii <= "+"; 8'h5D: ascii <= "|"; - 8'h66: ascii <= 8'd8; // backspace + 8'h66: ascii <= "_"; // backspace, normally ASCII 0x08 but '_' for Apple 1 8'h29: ascii <= " "; 8'h5A: ascii <= 8'd13; // enter