Я новичок в языке Assembly 8086 и пытаюсь преобразовать следующий код в Assembly:
first=string1; second=string2; for i=0; i=first.length; i=i+1{ for x=0; x=second.length x=x+1{ if first[i] == second[x]{ new_string=first[i]+second[i] } }
}