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

? "[CONFIG] Selected Sega Master System"

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 SMS Roms (*.sms)","sms")
rom.AddFileExt("Sega SG-1000 Roms (*.sg)","sg")
rom.AddFileExt("Generic Roms (*.rom)","rom")

//script editor files
emuScripts.AddEditorFile("Init","Initialization")
emuScripts.AddEditorFile("mboard","Motherboard")
emuScripts.AddEditorFile(CPU_Z80,"Processor (CPU Z80)")
emuScripts.AddEditorFile(VID_SEGAMS,"Video (VDP SMS)")
emuScripts.AddEditorFile("Console","Local Console")
emuScripts.AddEditorFile(CONSOLE_Z80,"Z80 Console")
emuScripts.AddEditorFile(CONSOLE_ALL,"Global Console")

