Search results
MSX2 png to sprite conversion tool
Score: 184.75 %,
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: 184.75 %,
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 ...
LDIRVM weirdness?
Score: 183.65 %,
Type: Forum topic , Comments: 8 comments
use this configuration on the MSX2 :
Pattern name table = 0x3800 (R#2 = 0xE)
Colour table = 0x0000 (R#3 = 0x7F, R#10 = 0x0)
Pattern generator table = 0x2000 (R#4 = 0x7)
Sprite attribute table = 0x3c00 (R#5 = 0x78, R#11 = 0x0)
Sprite pattern generator table = 0x4000 (R#6 = 0x8)
It almost works, ...
