.data n1: .word 17 n2: .word 23 result: .space 4 .text .global main main: lf f1,n1 ; load the number n1 to f1 cvti2f f5,f1 ; convert to floating point lf f1,n2 ; load the number n2 to f1 cvti2f f6,f1 ; convert to floating point multf f7,f6,f5 ; multiply f5 and f6 sf result,f7 ; store f7 to result Finish: trap 0 ; quit