Minesweeper 16/48

People are still making stuff for the Sinclair related machines. Tell us about new games and other software that runs on the Spectrum, ZX80/ZX81, Pentagon and Next.
Post Reply
User avatar
RMartins
Manic Miner
Posts: 776
Joined: Thu Nov 16, 2017 3:26 pm

Re: Minesweeper 16/48

Post by RMartins »

Cool that those graphics have now been used instead of just being lost in the mist.

You might want to correct the entry of the "Byte Me" sprite sheet, and create a new one for this game :D
User avatar
R-Tape
Site Admin
Posts: 6353
Joined: Thu Nov 09, 2017 11:46 am

Re: Minesweeper 16/48

Post by R-Tape »

Blerkotron wrote: Sat Dec 02, 2017 1:47 am I've done that a few times too but just thought it was me being cack-handed. I'll put a bit of a pause in there for the next version.
You may know already but I find putting a 'nokey' check first useful:

Code: Select all

	;
anykey:	call nokey
	xor a
aklp:	in a,(254)
	cpl
	and 31
	jr z,aklp
	ret
	;
nokey:	xor a
	in a,(254)
	cpl
	and 31
	jr nz,nokey
	ret
	;
Post Reply