From 0fcfcaf4f3a8f96904e4c3bbd6d81f0e342cacaa Mon Sep 17 00:00:00 2001 From: sorgelig Date: Wed, 13 Feb 2019 15:46:38 +0800 Subject: [PATCH] remove fast boot option. It's byggy. --- Gameboy.sv | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Gameboy.sv b/Gameboy.sv index acb76e2..238951f 100644 --- a/Gameboy.sv +++ b/Gameboy.sv @@ -157,8 +157,6 @@ localparam CONF_STR4 = { "O34,Aspect ratio,4:3,10:9,16:9;", "O78,Stereo mix,none,25%,50%,100%;", "-;", - "O2,Boot,Normal,Fast;", - "-;", "R0,Reset;", "J1,A,B,Select,Start;", "V,v",`BUILD_DATE @@ -521,7 +519,7 @@ gb gb ( .clk ( clk_cpu ), // the whole gameboy runs on 4mhnz .clk2x ( clk_cpu2x ), // ~8MHz in dualspeed mode (GBC) - .fast_boot ( status[2] ), + .fast_boot ( 0 ), .joystick ( joystick ), .isGBC ( isGBC ), .isGBC_game ( isGBC_game ),