Skip to content

Instantly share code, notes, and snippets.

@lagomorph
lagomorph / kim-1-hh.asm
Created December 23, 2022 18:47
Happy Holidays from the KIM-1
TIMERCNT = $df
TIMERMCNT = $1
SAD = $1740
PADD = SAD+1
SBD = SAD+2
CLK1T = $1704
CLK8T = CLK1T+1
CLK64T = CLK1T+2
CLK1024T = CLK1T+3
@lagomorph
lagomorph / ghost_ai.lua
Created December 15, 2021 23:34
Updated ghost_ai.lua that works on newer versions of MAME
-- Pac-Man ghost AI viewer v1.2
-- Shows ghost target tiles and projected paths of ghosts
-- You can change this to make the paths shorter or longer:
PATHDIST = 20
s = manager.machine.screens[":screen"]
mem = manager.machine.devices[":maincpu"].spaces["program"]
XMAX = s.width - 1
YMAX = s.height - 1