Codigo:
tmp var byte[5]
if (tmp[0]="H"and(tmp[1]="E"
and(tmp[2]="L"
and(tmp[3]="L"
and (tmp[4]="O"
then SI_hello
Codigo:
tmp var byte[5]
cmp var byte[5]
cmp[0]="H";cmp[1]="E";cmp[2]="L";cmp[3]="L";cmp[4]="O";
for a=0 to 4
if tmp[a] <> cmp[a] then NO_hello
next a