1
0
mirror of https://github.com/Gehstock/Mist_FPGA.git synced 2026-01-20 01:34:38 +00:00

IremM62: crop hscroll garbage

This commit is contained in:
Gyorgy Szombathelyi 2020-03-04 20:09:31 +01:00
parent e3c642c295
commit e9b38ee90b
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ architecture SYN of Graphics is
signal rgb_data : RGB_t;
-- before OSD is mixed in
signal video_o_s : to_VIDEO_t;
signal irem62_hsize : integer range 0 to 384;
signal irem62_hsize : integer range 0 to 511;
begin
@ -71,7 +71,7 @@ begin
graphics_o.vblank <= video_o_s.vblank;
--graphics_o.vblank <= from_video_ctl.vblank;
irem62_hsize <= 384 when hwsel = HW_LDRUN else 256;
irem62_hsize <= 384+16 when hwsel = HW_LDRUN else 256+16;
pace_video_controller_inst : entity work.pace_video_controller
generic map

View File

@ -51,8 +51,8 @@ package platform_pkg is
constant PACE_VIDEO_NUM_SPRITES : natural := 32;
-- constant PACE_VIDEO_H_SIZE : integer := M62_VIDEO_H_SIZE;
constant PACE_VIDEO_V_SIZE : integer := M62_VIDEO_V_SIZE;
constant PACE_VIDEO_L_CROP : integer := 0;
constant PACE_VIDEO_R_CROP : integer := PACE_VIDEO_L_CROP;
constant PACE_VIDEO_L_CROP : integer := 8;
constant PACE_VIDEO_R_CROP : integer := 8;
constant PACE_VIDEO_PIPELINE_DELAY : integer := 5;
constant PACE_INPUTS_NUM_BYTES : integer := 6;