Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
djordje200179 committed Aug 24, 2024
1 parent 6746eae commit 1fd5faf
Show file tree
Hide file tree
Showing 7 changed files with 349 additions and 339 deletions.
2 changes: 2 additions & 0 deletions Hardware/.qsys_edit/filters.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<filters version="23.1" />
12 changes: 12 additions & 0 deletions Hardware/.qsys_edit/preferences.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<preferences>
<debug showDebugMenu="0" />
<systemtable filter="All Interfaces">
<columns>
<connections preferredWidth="47" />
<irq preferredWidth="34" />
</columns>
</systemtable>
<library expandedCategories="Project,Library" />
<window width="1100" height="800" x="0" y="0" />
</preferences>
14 changes: 14 additions & 0 deletions Hardware/Devices/PS2Keyboard/BusInterface.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module ps2_keyboard_bus_interface#(parameter START_ADDR = 32'h0) (
input clk, rst,

input btn_0, btn_1, btn_2, btn_3,
output irq,

input [31:0] addr_bus,
inout [31:0] data_bus,
input rd_bus, wr_bus,
input [3:0] data_mask_bus,
output fc_bus
);

endmodule
Loading

0 comments on commit 1fd5faf

Please sign in to comment.