1. 匯編編程實現在顯示器上輸出一問一答的對話顯示
1、data segment
string1 db 'what is your name?',13,10,'$'
string2 db 'my name is li yang!$'
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
lea dx,string1
mov ah,9
int 21h
mov dx,offset string2
int 21h
mov ah,4ch
int 21h
code ends
end start
2、data segment
x dw 0ff00h;假設x為1111111100000000
y dw 0ffh;假設y為0000000011111111
w dw ?
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov ax,x
add ax,y
mov bx,40
sub ax,bx
mov w,ax
mov ah,4ch
int 21h
code ends
end start
第二題沒有輸出和冊握輸入,你可以自己加,但是很麻煩。。
可以在源殲debug裡面雹姿沖用t命令和d命令查看
2. 文本顯示器怎麼編程序
您用無錫市雲川工控技術有限公司生產的文本顯示器TD307吧,他們還有技術支持、甚至免費編程。