mirror of
https://github.com/nippur72/Apple1_MiST.git
synced 2025-02-28 18:29:27 +00:00
remove scaline effects in display
This commit is contained in:
parent
cc8ced21a0
commit
4a7c11c60e
@ -138,7 +138,6 @@ assign ram_wr = we & ram_cs;
|
|||||||
.address(addr[0]),
|
.address(addr[0]),
|
||||||
.w_en(we & display_cs),
|
.w_en(we & display_cs),
|
||||||
.din(cpu_dout),
|
.din(cpu_dout),
|
||||||
.mode(2'b0),
|
|
||||||
.clr_screen(vga_cls)
|
.clr_screen(vga_cls)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -15,8 +15,7 @@ module display (
|
|||||||
// cpu interface
|
// cpu interface
|
||||||
input address, // address bus
|
input address, // address bus
|
||||||
input w_en, // active high write enable strobe
|
input w_en, // active high write enable strobe
|
||||||
input [7:0] din, // 8-bit data bus (input)
|
input [7:0] din // 8-bit data bus (input)
|
||||||
input [1:0] mode // 2-bit mode setting for pixel doubling
|
|
||||||
);
|
);
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
@ -111,7 +110,7 @@ module display (
|
|||||||
|
|
||||||
font_rom font_rom(
|
font_rom font_rom(
|
||||||
.clk(clk),
|
.clk(clk),
|
||||||
.mode(mode),
|
.mode(2'b0),
|
||||||
.character(font_char),
|
.character(font_char),
|
||||||
.pixel(font_pixel),
|
.pixel(font_pixel),
|
||||||
.line(font_line),
|
.line(font_line),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user