So, I need split a string character by character
in JavaScript it will be like this
let text = "abcde";
for (var i = 0; i < text.lenght; i++);
{
console.log(text.charAt(i));
}
but how to do this is in NASM?
I am not an expert in assembly, but I have already tried to solve this problem for a week