汇编网首页登录博客注册
advancedprogrammer的学习博客
博客首页博客互动【做检测题】论坛求助

我的博客

个人首页 |  我的文章 |  我的相册 |  我的好友 |  最新访客 |  文章收藏 |  论坛提问 |  友情链接 |  给我留言  
图片载入中
学习动态
好友圈
友情链接

[2009-09-09 18:30] why failed to restart my computer by the following codes?

;I have never  suspect the following codes would fail to restart computer? i just make it compile to t.exe
and excute it under command prompt programmer,but my computer nerver restart!why?

assume cs:code,ds:data
data segment
dw 0,0ffffh
data ends
code segment
start: mov ax,data
 mov ds,ax ...
阅读全文 | 评论次数(1) | 浏览次数(628) | 所属类型(汇编作业)

[2009-09-05 11:43] 试验15

点击查看原图
以前一直在cmd环境中测试,没有任何效果。然后看了一下别人的贴图,发现是command prompt中运行,说实话我以前的实验都是通过cmd环境来编译,运行的,跟踪的,但是我现在仍然想不明白为什么要在command prompt,而在cmd中却不行?望老师答解!
assume cs:code

stack segment
db 128 dup(0)
stack ends

code segment
start:mov ax,stack
        mov ss,ax
        mov sp,128

        mov ax,cs
        mov...
阅读全文 | 评论次数(1) | 浏览次数(663) | 所属类型(汇编作业)