├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Code ├── .DS_Store ├── Atari │ ├── 002X1.DAT │ ├── 002X2.DAT │ ├── ALCOIN.MAC │ ├── ALCOMN.MAC │ ├── ALDIAG.MAC │ ├── ALDIS2.MAC │ ├── ALDISP.MAC │ ├── ALEARO.MAC │ ├── ALEXEC.COM │ ├── ALEXEC.LDA │ ├── ALEXEC.MAC │ ├── ALEXEC.MAP │ ├── ALHAR2.MAC │ ├── ALHARD.MAC │ ├── ALLANG.MAC │ ├── ALSCO2.MAC │ ├── ALSCOR.MAC │ ├── ALSOUN.MAC │ ├── ALTES2.MAC │ ├── ALTEST.MAC │ ├── ALVGUT.MAC │ ├── ALVROM.MAC │ ├── ALWELG.MAC │ ├── ANVGAN.MAC │ ├── ASCVG.MAC │ ├── COIN65.MAC │ ├── HLL65.MAC │ ├── MABOX.DAT │ ├── MBOX.SAV │ ├── MBUCOD.COM │ ├── MBUCOD.MAP │ ├── MBUCOD.V05 │ ├── MBUDOC.DOC │ ├── STATE2.COM │ ├── STATE2.MAC │ ├── STATE2.MAP │ ├── STATE2.SAV │ ├── TEMPST.DOC │ ├── TEMPST.LDA │ └── VGMC.MAC ├── tempest.asm └── tempest.lst ├── Hunting.doc ├── LUAScripts ├── framecounter.lua ├── showcredits.lua └── showplayer.lua ├── README.md ├── Scripts ├── READ_ME.md ├── aimodel.py ├── config.py ├── display.lua ├── logic.lua ├── main.lua ├── main.py ├── metrics_display.py ├── socket_server.py └── state.lua ├── cspell.json ├── roms ├── .DS_Store ├── 0x9000.rom └── tempest1 │ ├── 136002-113.d1 │ ├── 136002-114.e1 │ ├── 136002-115.f1 │ ├── 136002-116.h1 │ ├── 136002-117.j1 │ ├── 136002-118.k1 │ ├── 136002-119.lm1 │ ├── 136002-120.mn1 │ ├── 136002-121.p1 │ ├── 136002-122.r1 │ ├── 136002-123.np3 │ ├── 136002-124.r3 │ ├── 136002-125.d7 │ ├── 136002-126.a1 │ ├── 136002-127.e1 │ ├── 136002-128.f1 │ ├── 136002-129.h1 │ ├── 136002-130.j1 │ ├── 136002-131.k1 │ ├── 136002-132.l1 │ ├── 136002-133.d1 │ ├── 136002-134.f1 │ ├── 136002-135.j1 │ ├── 136002-136.lm1 │ ├── 136002-137.p1 │ ├── 136002-138.np3 │ ├── 136002-235.j1 │ ├── 136002-237.p1 │ ├── 136002.126 │ ├── 136002.127 │ ├── 136002.128 │ ├── 136002.129 │ ├── 136002.130 │ ├── 136002.131 │ └── 136002.132 ├── startmame.cmd ├── stopmame.cmd ├── tile.py └── tools ├── hxa65w.exe └── make.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/.DS_Store -------------------------------------------------------------------------------- /Code/Atari/002X1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/002X1.DAT -------------------------------------------------------------------------------- /Code/Atari/002X2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/002X2.DAT -------------------------------------------------------------------------------- /Code/Atari/ALCOIN.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALCOIN.MAC -------------------------------------------------------------------------------- /Code/Atari/ALCOMN.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALCOMN.MAC -------------------------------------------------------------------------------- /Code/Atari/ALDIAG.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALDIAG.MAC -------------------------------------------------------------------------------- /Code/Atari/ALDIS2.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALDIS2.MAC -------------------------------------------------------------------------------- /Code/Atari/ALDISP.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALDISP.MAC -------------------------------------------------------------------------------- /Code/Atari/ALEARO.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALEARO.MAC -------------------------------------------------------------------------------- /Code/Atari/ALEXEC.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALEXEC.COM -------------------------------------------------------------------------------- /Code/Atari/ALEXEC.LDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALEXEC.LDA -------------------------------------------------------------------------------- /Code/Atari/ALEXEC.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALEXEC.MAC -------------------------------------------------------------------------------- /Code/Atari/ALEXEC.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALEXEC.MAP -------------------------------------------------------------------------------- /Code/Atari/ALHAR2.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALHAR2.MAC -------------------------------------------------------------------------------- /Code/Atari/ALHARD.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALHARD.MAC -------------------------------------------------------------------------------- /Code/Atari/ALLANG.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALLANG.MAC -------------------------------------------------------------------------------- /Code/Atari/ALSCO2.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALSCO2.MAC -------------------------------------------------------------------------------- /Code/Atari/ALSCOR.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALSCOR.MAC -------------------------------------------------------------------------------- /Code/Atari/ALSOUN.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALSOUN.MAC -------------------------------------------------------------------------------- /Code/Atari/ALTES2.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALTES2.MAC -------------------------------------------------------------------------------- /Code/Atari/ALTEST.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALTEST.MAC -------------------------------------------------------------------------------- /Code/Atari/ALVGUT.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALVGUT.MAC -------------------------------------------------------------------------------- /Code/Atari/ALVROM.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALVROM.MAC -------------------------------------------------------------------------------- /Code/Atari/ALWELG.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ALWELG.MAC -------------------------------------------------------------------------------- /Code/Atari/ANVGAN.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ANVGAN.MAC -------------------------------------------------------------------------------- /Code/Atari/ASCVG.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/ASCVG.MAC -------------------------------------------------------------------------------- /Code/Atari/COIN65.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/COIN65.MAC -------------------------------------------------------------------------------- /Code/Atari/HLL65.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/HLL65.MAC -------------------------------------------------------------------------------- /Code/Atari/MABOX.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MABOX.DAT -------------------------------------------------------------------------------- /Code/Atari/MBOX.SAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MBOX.SAV -------------------------------------------------------------------------------- /Code/Atari/MBUCOD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MBUCOD.COM -------------------------------------------------------------------------------- /Code/Atari/MBUCOD.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MBUCOD.MAP -------------------------------------------------------------------------------- /Code/Atari/MBUCOD.V05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MBUCOD.V05 -------------------------------------------------------------------------------- /Code/Atari/MBUDOC.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/MBUDOC.DOC -------------------------------------------------------------------------------- /Code/Atari/STATE2.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/STATE2.COM -------------------------------------------------------------------------------- /Code/Atari/STATE2.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/STATE2.MAC -------------------------------------------------------------------------------- /Code/Atari/STATE2.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/STATE2.MAP -------------------------------------------------------------------------------- /Code/Atari/STATE2.SAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/STATE2.SAV -------------------------------------------------------------------------------- /Code/Atari/TEMPST.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/TEMPST.DOC -------------------------------------------------------------------------------- /Code/Atari/TEMPST.LDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/TEMPST.LDA -------------------------------------------------------------------------------- /Code/Atari/VGMC.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/Atari/VGMC.MAC -------------------------------------------------------------------------------- /Code/tempest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/tempest.asm -------------------------------------------------------------------------------- /Code/tempest.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Code/tempest.lst -------------------------------------------------------------------------------- /Hunting.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Hunting.doc -------------------------------------------------------------------------------- /LUAScripts/framecounter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/LUAScripts/framecounter.lua -------------------------------------------------------------------------------- /LUAScripts/showcredits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/LUAScripts/showcredits.lua -------------------------------------------------------------------------------- /LUAScripts/showplayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/LUAScripts/showplayer.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/READ_ME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/READ_ME.md -------------------------------------------------------------------------------- /Scripts/aimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/aimodel.py -------------------------------------------------------------------------------- /Scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/config.py -------------------------------------------------------------------------------- /Scripts/display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/display.lua -------------------------------------------------------------------------------- /Scripts/logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/logic.lua -------------------------------------------------------------------------------- /Scripts/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/main.lua -------------------------------------------------------------------------------- /Scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/main.py -------------------------------------------------------------------------------- /Scripts/metrics_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/metrics_display.py -------------------------------------------------------------------------------- /Scripts/socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/socket_server.py -------------------------------------------------------------------------------- /Scripts/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/Scripts/state.lua -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/cspell.json -------------------------------------------------------------------------------- /roms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/.DS_Store -------------------------------------------------------------------------------- /roms/0x9000.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/0x9000.rom -------------------------------------------------------------------------------- /roms/tempest1/136002-113.d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-113.d1 -------------------------------------------------------------------------------- /roms/tempest1/136002-114.e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-114.e1 -------------------------------------------------------------------------------- /roms/tempest1/136002-115.f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-115.f1 -------------------------------------------------------------------------------- /roms/tempest1/136002-116.h1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-116.h1 -------------------------------------------------------------------------------- /roms/tempest1/136002-117.j1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-117.j1 -------------------------------------------------------------------------------- /roms/tempest1/136002-118.k1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-118.k1 -------------------------------------------------------------------------------- /roms/tempest1/136002-119.lm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-119.lm1 -------------------------------------------------------------------------------- /roms/tempest1/136002-120.mn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-120.mn1 -------------------------------------------------------------------------------- /roms/tempest1/136002-121.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-121.p1 -------------------------------------------------------------------------------- /roms/tempest1/136002-122.r1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-122.r1 -------------------------------------------------------------------------------- /roms/tempest1/136002-123.np3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-123.np3 -------------------------------------------------------------------------------- /roms/tempest1/136002-124.r3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-124.r3 -------------------------------------------------------------------------------- /roms/tempest1/136002-125.d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-125.d7 -------------------------------------------------------------------------------- /roms/tempest1/136002-126.a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-126.a1 -------------------------------------------------------------------------------- /roms/tempest1/136002-127.e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-127.e1 -------------------------------------------------------------------------------- /roms/tempest1/136002-128.f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-128.f1 -------------------------------------------------------------------------------- /roms/tempest1/136002-129.h1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-129.h1 -------------------------------------------------------------------------------- /roms/tempest1/136002-130.j1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-130.j1 -------------------------------------------------------------------------------- /roms/tempest1/136002-131.k1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-131.k1 -------------------------------------------------------------------------------- /roms/tempest1/136002-132.l1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-132.l1 -------------------------------------------------------------------------------- /roms/tempest1/136002-133.d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-133.d1 -------------------------------------------------------------------------------- /roms/tempest1/136002-134.f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-134.f1 -------------------------------------------------------------------------------- /roms/tempest1/136002-135.j1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-135.j1 -------------------------------------------------------------------------------- /roms/tempest1/136002-136.lm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-136.lm1 -------------------------------------------------------------------------------- /roms/tempest1/136002-137.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-137.p1 -------------------------------------------------------------------------------- /roms/tempest1/136002-138.np3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-138.np3 -------------------------------------------------------------------------------- /roms/tempest1/136002-235.j1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-235.j1 -------------------------------------------------------------------------------- /roms/tempest1/136002-237.p1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002-237.p1 -------------------------------------------------------------------------------- /roms/tempest1/136002.126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.126 -------------------------------------------------------------------------------- /roms/tempest1/136002.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.127 -------------------------------------------------------------------------------- /roms/tempest1/136002.128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.128 -------------------------------------------------------------------------------- /roms/tempest1/136002.129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.129 -------------------------------------------------------------------------------- /roms/tempest1/136002.130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.130 -------------------------------------------------------------------------------- /roms/tempest1/136002.131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.131 -------------------------------------------------------------------------------- /roms/tempest1/136002.132: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/roms/tempest1/136002.132 -------------------------------------------------------------------------------- /startmame.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/startmame.cmd -------------------------------------------------------------------------------- /stopmame.cmd: -------------------------------------------------------------------------------- 1 | taskkill /f /im mame.exe -------------------------------------------------------------------------------- /tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/tile.py -------------------------------------------------------------------------------- /tools/hxa65w.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/tools/hxa65w.exe -------------------------------------------------------------------------------- /tools/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepl/tempest_ai/HEAD/tools/make.cmd --------------------------------------------------------------------------------