You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
《汇编语言》实验5 编写、调试具有多个段的程序 - 王明明的小站
第 (1) 题 将下面的程序编译、连接,用Debug加载、跟踪,然后回答问题 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 assume cs:code,ds:data,ss:stack data segment dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h data ends stack segment dw 0,0,0,0,0,0,0,0 stack ends code segment start: mov ax,stack mov ss,ax mov sp,16 mov ax,data mov ds,ax push ds:[0] push ds:[2] pop ds:[2] pop ds:[0] mov ax,4c00h int 21h code ends end start 问题 ① CPU执行程序,程序返回前
https://mingming.wang/posts/hui-bian-yu-yan-shi-yan-5-bian-xie-diao-shi-ju-you-duo-ge-duan-de-cheng-xu/
Beta Was this translation helpful? Give feedback.
All reactions