So I have to make an assembly functions which would change the way the processor rounds the numbers. I've got that one. Now I need to prove it. So I need to have 1 value to be written to the screen, then change the rounding method, then write the same value and check that it changed on the least significant mantis bits. How then can I f.e write a 3.14 value in IEEE 754 format, like this:
0 10000000 10010001111010111000011
I mean the function can printf it out or it can return it, so I can call that function from C.