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/screen.sv
T
2022-03-27 14:36:36 +02:00

12 lines
168 B
Systemverilog

package screen (
input [15:0]in,
input load,
input [12:0]address
output [15:0]out
);
//wire [8192:0] screenArray;
if (load==1) begin
out = in;
end