Archived
1
0

create input/output interfaces

This commit is contained in:
Erick
2022-03-27 14:36:36 +02:00
parent e9f9952bec
commit f078ff9552
2 changed files with 27 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package keyboard (
output [15:0]out
);
//TODO: attach the physical keyboard to the hdl keyboard using iverilog
case(out)
1 :
out = 15'b0000000000000001;
break
default:
0 :
out = 15'b0000000000000000;
break;
endcase