汇编语言 计算 2^3 .

assume cs:codesg

codesg segment
	mov ax,2
	add ax,ax
	add ax,ax
	
	mov ax,4c00h
	int 21h
codesg ends

end




你可能感兴趣的:(汇编语言)