From c697e96ec4739e1a79efe0060efe21ecaddb908f Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 13 Nov 2024 21:43:34 +0100 Subject: [PATCH] joystick 2 disability fixed - Issue 54 https://github.com/sy2002/MiSTer2MEGA65/issues/54 (cherry picked from commit 3f0cf58110d8c4d7659965b8dacca60ad60486e9) --- CORE/vhdl/mega65.vhd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CORE/vhdl/mega65.vhd b/CORE/vhdl/mega65.vhd index d6455e13..a2e869ef 100644 --- a/CORE/vhdl/mega65.vhd +++ b/CORE/vhdl/mega65.vhd @@ -270,7 +270,9 @@ begin cart_ctrl_oe_o <= '0'; cart_addr_oe_o <= '0'; cart_data_oe_o <= '0'; - cart_en_o <= '0'; -- Disable port + + -- Due to a bug in the R5/R6 boards, the cartridge port needs to be enabled for joystick port 2 to work + cart_en_o <= '1'; cart_reset_oe_o <= '0'; cart_game_oe_o <= '0';