; 1

   org 0x8000

   ld  a,7
   out (254),a
   ld  ix,0
loop:
   ld  hl,text
   call    prtStr
   jr  loop

prtStr:
   ld  a,(hl)
   and a
   ret z
   rst $10
   inc hl
   jr  prtStr

;fsck this i'm going home

text:
   defb "*** cOMPO fILLER *** ",0