Flat assembler program project 4
Budget: $10 – $30 USD
Using the flat assembler (fasm), write a program that converts an 8-bit integer to binary and hexadecimal using bitwise operators. Do not use external functions. You may use the algorithm below.
Need Output to Look like:
This x86 assembly program converts an integer to binary and hex.
Enter an integer from 0 - 255: 73
Binary: 01001001
Hex: 49
Need Output to Look like:
This x86 assembly program converts an integer to binary and hex.
Enter an integer from 0 - 255: 73
Binary: 01001001
Hex: 49