導航:首頁 > 編程知識 > biantwo在編程中什麼意思

biantwo在編程中什麼意思

發布時間:2023-10-10 23:31:41

A. 匯編編程實現在顯示器上輸出一問一答的對話顯示

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命令查看

閱讀全文

與biantwo在編程中什麼意思相關的資料

熱點內容
計算機網路章節練習 瀏覽:999
單片機的外部中斷程序 瀏覽:48
表格批量更名找不到指定文件 瀏覽:869
js的elseif 瀏覽:584
3dmaxvray視頻教程 瀏覽:905
imgtool工具中文版 瀏覽:539
java幫助文件在哪裡 瀏覽:965
win10切換輸入語言 瀏覽:696
haier電視網路用不了怎麼辦 瀏覽:361
蘋果6手機id怎麼更改 瀏覽:179
米家掃地機器人下載什麼app 瀏覽:82
如何在編程貓代碼島20種樹 瀏覽:915
手機基礎信息存儲在哪個文件 瀏覽:726
如何查找手機備份文件 瀏覽:792
內存清理工具formac 瀏覽:323
iphone過濾騷擾電話 瀏覽:981
wap網路如何使用微信 瀏覽:699
手機迅雷應用盒子在哪個文件夾 瀏覽:351
windows8網路連接 瀏覽:442
怎麼快速增加qq群人數 瀏覽:919

友情鏈接