aboutsummaryrefslogtreecommitdiff
path: root/src/main-keyboard.vhd
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-02-14 20:14:20 +0100
committerlonkaars <loek@pipeframe.xyz>2023-02-14 20:14:20 +0100
commitc51ddac924a0b8e7c82db49f2f168618c9a9eeb0 (patch)
tree048955ce4e8fe898995a4544f64d7c5b5e774789 /src/main-keyboard.vhd
parentc1d77b6b9225dd242fd8472da6149f9399345bfe (diff)
fix keyboard v3
Diffstat (limited to 'src/main-keyboard.vhd')
-rw-r--r--src/main-keyboard.vhd8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main-keyboard.vhd b/src/main-keyboard.vhd
index 8397266..14fd24f 100644
--- a/src/main-keyboard.vhd
+++ b/src/main-keyboard.vhd
@@ -92,10 +92,10 @@ begin
disp: component bcd2disp
port map (
CLK => DISP_CLK(16),
- N0 => N0,
- N1 => N1,
- N2 => N2,
- N3 => N3,
+ N0 => N3,
+ N1 => N2,
+ N2 => N1,
+ N3 => N0,
DD => DD,
DS => DS);
end Behavioral;