Write an assembly program that converts the temperature values (defined in array X) from
Celsius to Fahrenheit according to the following formula (5 pts):
$Y(i) = \frac{9}{5} * X(i) + 32$
X DB 15, 20, 25, 35, 27, 28, 18
Y DB 7 DUP (?)
i = 0,1,2,3, ..., 6