Question: USING MASM ASSEMBLY/ IRVINE LIBRARY Write a procedure that will convert Celsius temperature to Fahrenheit, your program should accept positive and negative numbers (16-bit integer),
USING MASM ASSEMBLY/ IRVINE LIBRARY
Write a procedure that will convert Celsius temperature to Fahrenheit, your program should accept positive and negative numbers (16-bit integer), write a test program that calls the procedure several times, passing it different values. Display all results on the screen. Hint: use the formula F = (9*C /5) + 32 Multiply 9 * C before the division. Add 2 to (9*C) before the division. to get a rounded answer. You need to you IMUL and IDIV instead of MUL and DIV
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
