|
jxzhzcf
初级用户
 
积分 137
发帖 9
注册 2003-12-12
状态 离线
|
『楼 主』:
哪位朋友能给我传一个reboot命令,谢谢!
使用 LLM 解释/回答一下
哪位朋友能给我传一个reboot命令,谢谢!
Which friend can send me a reboot command, thank you!
|
|
2004-8-24 00:00 |
|
|
bush
银牌会员
    
积分 2165
发帖 730
注册 2004-4-21
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
是重启机器的DOS命令吗? 我有一个RESTART
Is RESTART a DOS command to restart the machine?
|
|
2004-8-26 00:00 |
|
|
JonePeng
金牌会员
      D◎$ Fαп
积分 4562
发帖 1883
注册 2004-1-19 来自 广东广州
状态 离线
|
|
2004-8-26 00:00 |
|
|
hrc_2004
初级用户
 
积分 150
发帖 12
注册 2004-7-19
状态 离线
|
『第 4 楼』:
能指點一下嗎?
使用 LLM 解释/回答一下
哪些代碼看不懂,能指點指點嗎?
Which codes do you not understand? Can you give some pointers?
|
|
2004-8-26 00:00 |
|
|
GOTOmsdos
铂金会员
       C++启程者
积分 5154
发帖 1827
注册 2003-7-18
状态 离线
|
|
2004-8-26 00:00 |
|
|
sunbinjin
初级用户
 
积分 127
发帖 7
注册 2003-8-1
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
有没有直接重启的,可以跳过自检,像DiskGen里的重启,那是怎么做的?速度很快!
Is there a direct restart that can skip the power-on self-test, like the restart in DiskGen? How is that done? It's very fast!
|
|
2004-8-27 00:00 |
|
|
jxzhzcf
初级用户
 
积分 137
发帖 9
注册 2003-12-12
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
谢谢bushrestart,win98启动盘(虚拟盘)里有。 JonePeng 的方法比较麻烦。
Thanks bushrestart, the Win98 boot disk (virtual disk) has it. JonePeng's method is more complicated.
|
|
2004-8-30 00:00 |
|
|
TurboY
中级用户
   绝不写垃圾帖
积分 322
发帖 99
注册 2004-7-3 来自 湖北
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
我还是建议你找资料看懂JonePeng的程序,对自己有好处。我可以解释一下:(DEBUG中用的是16进制)MOV AX,40
MOV DS,AX
MOV AX,1234
MOV ,AX
;这几句是把内存0040:0072H的字内容写为1234H,
;这是个标志位,提示BIOS再次启动时跳过内存自检(热启动)JMP FFFF:0000
;这句使CPU跳到BIOS的启动程序入口,开始初始化,重启动。
刚开电源时,CPU内部就会自动找这个地址的程序来启动。后面的RCX 10是为W(写)指令制定长度为16字节,
N REBOOT.COM用来制定文件名,这样就制作出了一个COM可执行程序。还不明白就自己看看书吧。
I still suggest you find materials to understand JonePeng's program, which is good for you. I can explain: (HEX is used in DEBUG)
MOV AX,40
MOV DS,AX
MOV AX,1234
MOV ,AX
;These few lines write the word content at memory 0040:0072H as 1234H,
;This is a flag bit, prompting the BIOS to skip the memory self-test when restarting (warm boot)
JMP FFFF:0000
;This makes the CPU jump to the BIOS startup program entry, starting initialization, restarting.
When the power is just turned on, the program at this address will be automatically found by the CPU to start. The following RCX 10 is to set the length to 16 bytes for the W (write) instruction,
N REBOOT.COM is used to set the file name, so that a COM executable program is made. If you still don't understand, just read the book by yourself.
|

从95年开始用DOS3.2,96年在Windows3.1里认识了鼠标,97年开始用Win95,98年装过NetWare,99年迷过Linux,现在用WinXP、WinME和DOS7.1。一回首,从盲到忙,从忙到茫。 |
|
2004-9-3 00:00 |
|
|
JonePeng
金牌会员
      D◎$ Fαп
积分 4562
发帖 1883
注册 2004-1-19 来自 广东广州
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
以下是引用sunbinjin在2004-8-27 18:27:01的发言:
有没有直接重启的,可以跳过自检,像DiskGen里的重启,那是怎么做的?速度很快!
这种超快的启动我也见过,我查过有关资料,只要简单地调用DOS中断19H和20H就可以实现超快热启动。用DEBUG打几行就做得到:
a100
int 19
int 20
rcx
4
n fastboot.com
w
q
这个FastBoot.com程序只有仅仅4字节!运行之,可跳过系统自检,直接引导操作系统。经过反复试验,我发现它有个缺点,一旦Config.sys加载了EMM386,这个FastBoot就会进行正常的热启动。除非禁用EMM386,FastBoot才会FAST。
Here is the statement from sunbinjin on 2004-8-27 18:27:01:
Is there a direct restart that can skip the POST, like the restart in DiskGen? How is that done? It's very fast!
I've also seen this kind of super - fast boot. I've checked relevant materials. As long as you simply call DOS interrupts 19H and 20H, you can achieve super - fast warm boot. You can do it with DEBUG by typing a few lines:
a100
int 19
int 20
rcx
4
n fastboot.com
w
q
This FastBoot.com program is only 4 bytes! When you run it, you can skip the system POST and directly boot the operating system. After repeated tests, I found that it has a shortcoming. Once EMM386 is loaded in Config.sys, this FastBoot will perform a normal warm boot. Unless EMM386 is disabled, FastBoot will be FAST.
|

----====≡≡≡≡ 我的至爱,永远是MSDOS!≡≡≡≡====----
|
|
2004-9-11 00:00 |
|
|
zykdos
初级用户
 
积分 183
发帖 31
注册 2003-8-1
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
给个fastboot.com下载吧??
Please clarify the specific content you want to translate. You just provided a sentence "给个fastboot.com下载吧??", which is in Chinese. The translation is "Can you give a download link for fastboot.com??"
|
|
2004-9-13 00:00 |
|
|
JonePeng
金牌会员
      D◎$ Fαп
积分 4562
发帖 1883
注册 2004-1-19 来自 广东广州
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
这个FastBoot.com是我自编自造的小程序,网上是没得下载的啊。用DEBUG做出来也很简单,但考虑到有些朋友不会用DEBUG,我已把这个FastBoot.com上传了。 打开附件
Last edited by JonePeng on 2006-2-22 at 19:06 ]
This FastBoot.com is a small program I made by myself, and it's not available for download online. It's also very simple to make with DEBUG, but considering that some friends don't know how to use DEBUG, I've uploaded this FastBoot.com. Open the attachment
Last edited by JonePeng on 2006-2-22 at 19:06 ]
|

----====≡≡≡≡ 我的至爱,永远是MSDOS!≡≡≡≡====----
|
|
2004-9-15 00:00 |
|
|
qingwashaoye
中级用户
  
积分 271
发帖 74
注册 2004-11-17
状态 离线
|
|
2005-3-28 00:00 |
|
|
zhgwbzhd
高级用户
   
积分 506
发帖 187
注册 2005-12-4
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
DEBUG
a100
int 19
int 20
rcx//这是什么意思??
4//>??????
n fastboot.com
w
q
DEBUG
a100
int 19
int 20
rcx//What does this mean?
4//>??????
n fastboot.com
w
q
|
|
2006-1-18 23:50 |
|
|
weilong888
银牌会员
    
积分 1270
发帖 548
注册 2004-5-31
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
仔细看看8楼的说明,还是要自己认真学。
Take a close look at the instructions in floor 8. Still, you need to study carefully by yourself.
|
|
2006-1-19 09:19 |
|
|
zhgwbzhd
高级用户
   
积分 506
发帖 187
注册 2005-12-4
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
哦,谢谢。关键是在俺的破机器上没弄成功才问呢?
俺的机器怎么就软驱响了一响就没动静了,死了。只好reset了。
Oh, thanks. The key is that it didn't work on my lousy machine, so I asked. Why did my machine just make a beep from the floppy drive and then nothing happened, it died. Had to reset.
|
|
2006-1-19 09:57 |
|