ASSUME CS:CODE, DS:DATA
DATA SEGMENT
ORG 3000H
NUM1 DB 22H
NUM2 DB 32H
SUM DB 00H
DATA ENDS
CODE SEGMENT
ASSUME CS:CODE, DS:DATA
START: MOV AX, DATA
MOV DS, AX
MOV AL, NUM1
MOV BL, NUM2
ADD AL, BL
MOV SUM, AL
MOV AH, 4CH
INT 21H
CODE ENDS
END START
DC Motor intro DC motor is a device which converts electrical energy into kinetic energy. It converts the DC power into movement. The typica...
I am requesting for anyone to teach me to code in assembly programming. Any volunteer?
ReplyDeleteWhat about adding 9 and 9
ReplyDeleteWill it print 18
This code is doesn't run dude
ReplyDelete