is this the right way to use cbw in Mul?
问题 I get the Multiplication from 8bit and 8bit register. But, when you have one in 16 bit, and one in 8bit, how do we do the conversion before multiplying: Question : need to provide code fragments for 260*19, and print the results. I did: mov Ax,260 mov Al,19 cbw; Mul Ax PutInt Ax 回答1: mov Ax,260 mov Al,19 The AL register is the lowest half of the AX register. AX /-----------------\ MSB xxxx xxxx xxxx xxxx LSB \-------/ \-------/ AH AL The 2nd instruction mov al, 19 thus erroneously overwrites