I am new to assembly language. I was practising division in assembly language and I had a doubt about dividing using variables
num1 db 10
mov ax , num1 <br>
mov bl , 2 <br>
div bl
But this creates an error (39) wrong parameters: MOV ax , num1
(39) operands do not match: 16 bit register and 8 bit address
Can anyone help me understand this ?