Search results
[FIXED] update disasm window in the debugger when slot changes or code is rewritten
Score: 185.25 %,
Type: Forum topic , Comments: 2 comments
I proposed a fix for a long-standing and confusing bug when debugging and it seems to be OK now according to my tests. It's currently in my fork, but I created a PR . Whoa, this bug is almost 7 years old! *_*
Nice! I encounter the issue ...
MSX2 png to sprite conversion tool
Score: 185.15 %,
Type: Forum topic , Comments: 4 comments
original image vs. OpenMSX
Yet another python script I'd like to share. This one I created last week, but it was still a little rough around the edges. png2sprites.py converts an RGB PNG image into MSX2 VRAM sprite data. Output is ...
tilegen.py tileset and tilemap generator
Score: 185.15 %,
Type: Forum topic , Comments: 9 comments
match.group(0) if (match := re.search("[0-9]+", filename)) else None #< this
match = re.search("[0-9]+", filename) #<- to this
tile_num = match.group(0) if (match) else None
This way Python 3.7 ...
