Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iceberg/IO/keyboard.sv
T
2022-03-27 15:58:07 +02:00

16 lines
302 B
Systemverilog

package keyboard (
output [15:0]out
);
//TODO: attach the physical keyboard to the hdl keyboard using iverilog
case(out)
1 :
out = 15'b0000000000000001;
break
//TODO: create all keyboard cases
default:
0 :
out = 15'b0000000000000000;
break;
endcase