|
本帖最后由 ddsony 于 2014-8-27 13:21 编辑
好的,我原来正常使用时是采用grldr可写方式运行img的,这个镜像运行时要求写A盘的。
title MAXDOS93.IMG
map --mem ()/IMG/MAXDOS93.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
================
现在的内置菜单就是参考你的:
title start MAXDOS9.3
set tag=IMG/MAXDOS93.IMG
if not exist /%tag% if exist (hd0,0)/%tag% root (hd0,0)
if not exist /%tag% if exist (hd0,1)/%tag% root (hd0,1)
if not exist /%tag% find --set-root --ignore-floppies --ignore-cd /%tag% || set _=
if not exist /%tag% if exist (hd0)/%tag% root (hd0)
if not exist /%tag% find --set-root /%tag% || set _=
chainloader /%tag%
|
|