Skip to content

Commit

Permalink
Fix CGA Initial text mode
Browse files Browse the repository at this point in the history
  • Loading branch information
spark2k06 committed Jul 21, 2022
1 parent 12e8539 commit 5069e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/video/cga.v
Expand Up @@ -63,7 +63,7 @@ module cga(
wire[7:0] bus_out_crtc;
wire[7:0] bus_out_mem;
wire[7:0] cga_status_reg;
reg[7:0] cga_control_reg = 8'b0010_1000; // (TEXT)
reg[7:0] cga_control_reg = 8'b0010_1001; // (TEXT 80x25)
//reg[7:0] cga_control_reg = 8'b0010_1010; // (GFX 320 x 200)
reg[7:0] cga_color_reg = 8'b0000_0000;
reg[7:0] tandy_color_reg = 8'b0000_0000;
Expand Down

0 comments on commit 5069e75

Please sign in to comment.