I want to use a variable as a multiplicand in my program, below is one of the variables, which I'm not sure if it's declared correctly
chickenPrice db 19
This is to declare that the price for chicken is $19.
Also, I learned about AX:DX that it's 16-bit registers
I want to take the user input as the multiplier, but I'm not sure if mul ax, chickenPrice is the correct way to do this.
And I want to know is there a way to show the answer in 3 digits? I have multiple variables for this and the sum might for the multiplication of the variables might require me to display it in 3 digits.