credits bug fixed

This commit is contained in:
Aitor Gómez
2022-12-21 08:25:38 +01:00
parent 29a20bc0b4
commit 6ee53fa2eb
2 changed files with 2 additions and 1 deletions

BIN
releases/PCXT_20221221.rbf Normal file

Binary file not shown.

View File

@@ -17,7 +17,7 @@ module KFPS2KB #(
output logic irq,
output logic [7:0] keycode,
input logic clear_keycode,
output reg pause_core = 1'b0
output reg pause_core
);
//
// Internal Signals
@@ -217,6 +217,7 @@ module KFPS2KB #(
irq <= 1'b0;
keycode <= 8'h00;
break_flag <= 1'b0;
pause_core <= 1'b0;
end
else if (clear_keycode) begin
irq <= 1'b0;