Sorry for the elementary question.
In assembly is it acceptable to compare two floating points stored at different (fixed) memory locations without loading them into the stack? Do I need to use anything besides CMP and JLE?
E.g. Memory address [A] currently equals 95, memory address [B] equals [90]. I want to do a jump if [A] is less than or equal to 90. Is the following sufficient?
CMP DWORD PTR [A], CMP DWORD PTR [B]
JLE [Another address]