1
0
mirror of https://github.com/UzixLS/zx-sizif-xxs.git synced 2025-07-19 07:11:28 +03:00

ps2: handle ctrl-alt-backspace as reboot

This commit is contained in:
UzixLS
2021-06-14 11:45:49 +03:00
parent 0ba75ee9e7
commit 974b92cd94

View File

@ -164,7 +164,7 @@ always @(posedge clk or negedge rst_n) begin
if (!rst_n)
key_reset <= 0;
else
key_reset <= (key2_l_ctrl || key2_r_ctrl) && key2_alt && key2_del;
key_reset <= (key2_l_ctrl || key2_r_ctrl) && key2_alt && (key2_del || key2_backspace);
end