Mobile Partitions

How I cant find partition wall area by assembly languge?

Public Comments

  1. I can only guess what you're seeking. Below is a program segment for 80x86 assembler. It will multiply the "wall height" by the "wall width" to calculate the "wall area". DATASEG height DB 25 width DB 48 CODESEG Start: mov ax,@data mov ds,ax mov al, [height] mul [width] Exit: END Start
Powered by Yahoo! Answers