X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/fpga-games/blobdiff_plain/3fc34adfa51bd78e346143103b498bf962ea1b46..0840cca68ecfa59ea10e60db9c02dbbd081215e7:/galaxian/src/mc_top.v diff --git a/galaxian/src/mc_top.v b/galaxian/src/mc_top.v index a8d2ca8..c382b64 100644 --- a/galaxian/src/mc_top.v +++ b/galaxian/src/mc_top.v @@ -95,9 +95,9 @@ output O_SOUND_OUT_L; output O_SOUND_OUT_R; // VGA (VIDEO) IF -output [4:0]O_VGA_R; -output [4:0]O_VGA_G; -output [4:0]O_VGA_B; +output [2:0]O_VGA_R; +output [2:0]O_VGA_G; +output [1:0]O_VGA_B; output O_VGA_H_SYNCn; output O_VGA_V_SYNCn; @@ -643,11 +643,11 @@ mc_vga_if VGA( `else -assign O_VGA_R[4:0] = W_R; +assign O_VGA_R[2:0] = W_R; -assign O_VGA_G[4:0] = W_G; +assign O_VGA_G[2:0] = W_G; -assign O_VGA_B[4:0] = W_B; +assign O_VGA_B[1:0] = W_B; //assign O_VGA_H_SYNCn = W_H_SYNC | W_V_SYNC ; // AKIDUKI LCD USED assign O_VGA_H_SYNCn = ~W_H_SYNC ;