'******************************************************************************
'* 
'* GONFIG OF SEGA GENESIS/MEGADRIVE (Video game console by Sega, 199x)
'*
'* Note: - This generic parameters mainly used for emulator interface
'*         configuration and/or emulated PC configuring.
'*
'******************************************************************************

? "[CONFIG] Selected Sega Genesis/Megadrive"

pc.AutoCPUFreq=false

//drives
emuDrives.ROMCount=1 'one ROM slot
dim rom as object=emuDrives.ROM(0)
rom.AddFileExt("All ROM Files","")
rom.AddFileExt("Sega Genesis/Megadrive Roms (*.gen)","gen")
rom.AddFileExt("Binary Roms (*.bin)","bin")
rom.AddFileExt("Generic Roms (*.rom)","rom")

//script editor files
emuScripts.AddEditorFile("Init","Initialization")
emuScripts.AddEditorFile("mboard","Motherboard")
emuScripts.AddEditorFile(CPU_M68000,"Processor (CPU m68000)")
emuScripts.AddEditorFile(VID_SEGAMD,"Video (VDP)")
emuScripts.AddEditorFile("Console","Local Console")
emuScripts.AddEditorFile(CONSOLE_M68K,"M68K Console")
emuScripts.AddEditorFile(CONSOLE_ALL,"Global Console")



