1
0
mirror of https://github.com/mist-devel/mist-board.git synced 2026-02-06 16:14:42 +00:00
Files
mist-devel.mist-board/cores/mist/font.v

16 lines
211 B
Verilog

module font (
input clk,
input [9:0] a,
output reg [7:0] d
);
always @(posedge clk)
d <= rom[a];
reg [7:0] rom [0:767];
initial $readmemh("font8x8.memh",rom);
endmodule // font