Replaced ASCII backspace 0x08 with '_' in ps2 keyboard translation table.

This commit is contained in:
Niels Moseley 2018-05-07 16:56:38 +02:00
parent 03ab2cc86e
commit b9a95d4089
1 changed files with 1 additions and 1 deletions

View File

@ -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