I have a problem with one assembly task - I need to convert simple number (with comma- floating) input to 32-bit float representation and print it as the four-digit hex number.
Thanks.
I have a problem with one assembly task - I need to convert simple number (with comma- floating) input to 32-bit float representation and print it as the four-digit hex number.
Thanks.
Copyright © 2021 Jogjafile Inc.
Here's a quick example in NASM syntax.
I used the SSE XMMx registers and functions because they are more clear and modern than the x87 FPU instructions. Also you mentioned the processor was 64bit so it should be compliant/compatible.
You can mess around with the program online at ideone.com
http://ideone.com/Q3naVN
Read the comments and try to learn something.