perhaps if you post a screenshot it might help me. suspects are the ATAPI routines, or the IDE drive ordering. A quick explanation...
the boot process works this way for CDROM.
1. bios boots up CDROM boot partition (looks like FA12 floppy drive) boot sector.
2. boot sector loads BOOTSTUB.BIN via bios calls.
3. BOOTSTUB.BIN loads up CLASSIOS.KXE via bios calls.
4. kernel probes the hardware and mounts any file systems it can find with the exception of the CDROM boot partition. native device drivers are used here instead of bios calls. CDROM is mounted as CDFS.
5. CLASSIOS.KXE then tries to load up SHELL.EXE from the default FS, which should be the CDFS.
The last process will also load any associated DLLs like kernel32.dll, user32.dll and advapi32.dll
I suspect that it is failing the last process either because the default drive letter was incorrectly determined or that the CDROM wasn't readable because the kernel driver for it is failing.
P!
