I was shown a post on nesdev where someone had an issue with the region protection lockout screen.
I found that many years ago I had badly handled the branch for dealing with the region protection. I've updated the patch so it should now work on all SNES consoles.
The protection code was quite basic:$80/FD08 LDA #$30
$80/FD0A PHA
$80/FD0B PLB
$80/FD0C LDX #$1F00
$80/FD0F LDA #$00
//Write a byte to SRAM
$80/FD11 STA $6000,x [$30:7F00]
//Check if byte was written to SRAM
$80/FD14 CMP $6000,x [$30:7F00]
//If there is no SRAM, go to $80FD33.
//#Changed to BRA to avoid protection
$80/FD17 BNE $FD33
//Infinite loop if there is SRAM
//present, eg on copier device
$80/FD31 BRA $FD31
$80/FD33 SEP #$20
The other section of PAL region protection code:
//Load the destination country code
$80/FDD6 LDA $C0FFD9
//Game loads 00 & would branch here
$80/FDDA BEQ $FDED
$80/FDDC CMP #$01
$80/FDDE BEQ $FDED
$80/FDE0 CMP #$0D
$80/FDE2 BEQ $FDED
$80/FDE4 LDA $213F
$80/FDE7 AND #$10
$80/FDE9 BEQ $FDF6
$80/FDEB CLC
$80/FDEC RTS
//Check if running on a PAL SNES
$80/FDED LDA $213F
$80/FDF0 AND #$10
//Go to PAL Region Protection screen
//if on a PAL SNES.
//#Branch removed to avoid protection
$80/FDF2 BNE $FDF6
$80/FDF4 CLC
$80/FDF5 RTS