Frage

Why this following nasm code does not compile :

cmp byte [rdi], byte [rsi]

whereas this code compiles:

mov al, byte [rsi]
cmp byte [rdi], al
War es hilfreich?

Lösung

Two indirect arguments are not supported. And why not use cmpsb, which compares these two bytes directly?

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top