Computer Contains
Wednesday, 9 August 2017
Implement 16bit subtraction Assembly Language Program using tasm (MP)
data segment
n1 dw 3333h
n2 dw 2222h
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov ax,n1
sub ax,n2
int 03h
code ends
end start
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment