Initial commit

This commit is contained in:
Rich
2023-12-06 14:24:46 +00:00
commit edf0f5e06a
53 changed files with 3665 additions and 0 deletions

10
emu.py Normal file
View File

@@ -0,0 +1,10 @@
from config import cfg
import mame
class emu:
def __init__(self):
self.config = cfg[cfg["Emulator"]]
self.name = cfg["Emulator"]
if self.config["EmulatorType"].upper() == "MAME":
self.roms = mame.mameROMs(self.config, cfg["datadir"])