Computer Science, asked by darshana50, 10 months ago

write the command line used to generate .exe file of assembly languages program for addition and subtraction​

Answers

Answered by snehathakur5
3

In which software can I help u

Answered by siddhartharao77
3

Assembly language program for addition:

.data

var1 WORD 10000h

var2 WORD 20000h

.code

mov dell,var1

add dell, var2

Assembly language program for subtraction:

.data

var1 WORD 10000h

var2 WORD 20000h

.code

mov dell, var1

sub dell, var2

Hope it helps!

Similar questions