Skip to content

Commit

Permalink
Fix(vga_cherm): название памятей с опечаткой
Browse files Browse the repository at this point in the history
  • Loading branch information
fhideous committed May 7, 2024
1 parent af3c353 commit feffbe0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Labs/13. Peripheral units/peripheral modules/vgachargen.sv
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ module vgachargen
import vgachargen_pkg::*;
#(
parameter int unsigned CLK_FACTOR_25M = 100 / 25,
parameter CH_T_RO_INIT_FILE_NAME = "lab12_vga_ch_t_ro.mem",
parameter CH_T_RO_INIT_FILE_NAME = "lab13_vga_ch_t_ro.mem",
parameter bit CH_T_RO_INIT_FILE_IS_BIN = 1,
parameter CH_T_RW_INIT_FILE_NAME = "lab12_vga_ch_t_rw.mem",
parameter CH_T_RW_INIT_FILE_NAME = "lab13_vga_ch_t_rw.mem",
parameter bit CH_T_RW_INIT_FILE_IS_BIN = 1,
parameter CH_MAP_INIT_FILE_NAME = "lab12_vga_ch_map.mem",
parameter CH_MAP_INIT_FILE_NAME = "lab13_vga_ch_map.mem",
parameter bit CH_MAP_INIT_FILE_IS_BIN = 0,
parameter COL_MAP_INIT_FILE_NAME = "lab12_vga_col_map.mem",
parameter COL_MAP_INIT_FILE_NAME = "lab13_vga_col_map.mem",
parameter bit COL_MAP_INIT_FILE_IS_BIN = 0
) (
input logic clk_i, // системный синхроимпульс
Expand Down

0 comments on commit feffbe0

Please sign in to comment.