Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Simple ZX Spectrum Sprite Maker

A topic by Gazzapper created Jun 02, 2017 Views: 814
Viewing posts 1 to 1
HostSubmitted (3 edits)

An Excel tool to help you create Sprites (UDGs) for ZX Spectrum

GET IT HERE

DATA statements for graphics

Poking Graphics (run at start of your game)

5000 FOR n = 0 TO 7  (Add on 8 for each extra sprite)

5010 READ sprdata

5020 POKE USR "a"+n, sprdata

5030 NEXT n

5100 DATA ......

5110 DATA ......

Just add the 8 numbers for each sprite to your Data command like so...
DATA 1,2,3,4,5,6,7,8