
 Party: LoveByte party
  Date: 09-11.02.2024
 Scene: ZX Spectrum
 Compo: 16b oldschool intro
  Name: CoMePa -Color Merry Painting
  Need: ZX Spectrum 48k
   Who: Busy soft & hard
 Email: busy@centrum.sk

Set of 255 animated color textures with border
changing and sound effects depend to texture.
Whole code of intro fits into 16 bytes.

Each texture is shown for about 5 seconds,
(including "morphing" from previous texture) so
the show does not repeat before about 22 minutes.

  Included files:

CoMePa16-sound.tap .... full version with border and sound
CoMePa16-silent.tap ... quiet version with no border/sound

Since the border changing and sound effect can be
a bit disturbing, there is included limited version
what generates textures only without sound and border.

I know, there is need very big endurance to real showing
for all 22 minutes, I mean this intro it is a "study"
how many "effects" is possible to place into 16 bytes :)

  Source code:

start	ld	h,c	 ;; C=#5B from USR by ORG #805B
	halt
loop	out	(#fe),a
	adc	(iy+#3F)
	rr	(hl)
	dec	hl
	bit	6,h
	jr	nz,loop
	jr	start

In quiet version there the out (#fe),a is missing
so we can say that quiet version is a 14 byte intro only :)
