.z80 ; test strukta ; combinations ; version 1.4 options rlca ! rlca ! rlca ! rlca ;multiple commands on one line rlca | rlca | rlca | rlca ;two methods ; do loops do b,5 nop enddo do hl,1000h-1 nop enddo do ix,50 nop enddo do iy,4041 nop enddo ; while loop while a=0 nop endwhile while (hl)=0 and b<5 nop endwhile while a<=6 nop endwhile while a in ['a'..'z','0'..'9',';',']','['] nop endwhile ; repeat loop repeat nop until z repeat nop until h=0 or b=0 repeat nop until not a in [1,100,'a',"a",7..89] and b<>0 repeat nop until not[c=0 or b