Convert 32bit floating point numbers to string and display in assembly language

Опубликовано: 31 Июль 2024
на канале: Computing Mongoose
429
15

I'm briefly describing the IEEE 754 floating point format. Then I'm presenting a very simple 64-bit x86 assembly language routine for converting a 32-bit floating point number to a string representation that can be displayed on screen.

Wikipedia pages:
IEEE 754: https://en.wikipedia.org/wiki/IEEE_754
Floating point arithmetic: https://en.wikipedia.org/wiki/Floatin...

Previous related videos:
Convert numbers in decimal format:    • Convert 32bit decimal numbers to stri...  
Convert numbers in hexadecimal format:    • Displaying 32bit hexadecimal numbers ...  
Display a string in Linux:    • Writing to Linux console in 64bit ass...  
Display a string in Windows:    • Writing to Windows console in 64bit a...  
Display a string in MSDOS:    • Display a String in MSDOS using Assem...  
Installing NASM from source:    • Installing NASM from source on Linux ...  
Assembling and linking multiple files:    • Splitting assembly language program i...  

#assemblylanguage #linux #64bits #x86