diff --git a/Arcade_MiST/IremM62 Hardware/rtl/Graphics.VHD b/Arcade_MiST/IremM62 Hardware/rtl/Graphics.VHD index 773a3b42..680d3b5a 100644 --- a/Arcade_MiST/IremM62 Hardware/rtl/Graphics.VHD +++ b/Arcade_MiST/IremM62 Hardware/rtl/Graphics.VHD @@ -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 diff --git a/Arcade_MiST/IremM62 Hardware/rtl/platform_pkg.vhd b/Arcade_MiST/IremM62 Hardware/rtl/platform_pkg.vhd index 0c243f3e..76fe8cd7 100644 --- a/Arcade_MiST/IremM62 Hardware/rtl/platform_pkg.vhd +++ b/Arcade_MiST/IremM62 Hardware/rtl/platform_pkg.vhd @@ -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;