remove scaline effects in display

This commit is contained in:
nino-porcino 2022-01-02 10:52:46 +01:00
parent cc8ced21a0
commit 4a7c11c60e
2 changed files with 3 additions and 5 deletions

View File

@ -137,8 +137,7 @@ assign ram_wr = we & ram_cs;
.address(addr[0]),
.w_en(we & display_cs),
.din(cpu_dout),
.mode(2'b0),
.din(cpu_dout),
.clr_screen(vga_cls)
);

View File

@ -15,8 +15,7 @@ module display (
// cpu interface
input address, // address bus
input w_en, // active high write enable strobe
input [7:0] din, // 8-bit data bus (input)
input [1:0] mode // 2-bit mode setting for pixel doubling
input [7:0] din // 8-bit data bus (input)
);
//////////////////////////////////////////////////////////////////////////
@ -111,7 +110,7 @@ module display (
font_rom font_rom(
.clk(clk),
.mode(mode),
.mode(2'b0),
.character(font_char),
.pixel(font_pixel),
.line(font_line),