Searched defs:bootseq (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Dboot.c160 uint16_t bootseq; local
190 bootseq=inb_cmos(0x3d);
191 bootseq|=((inb_cmos(0x38) & 0xf0) << 4);
192 bootseq|=((inb_cmos(0x3c) & 0x0f) << 12);
194 bootseq = read_byte(ebda_seg, (uint16_t)&EbdaData->uForceBootDevice);
199 if (bseqnr==2) bootseq >>= 4;
200 if (bseqnr==3) bootseq >>= 8;
201 if (bseqnr==4) bootseq >>= 12;
202 if (bootseq<0x10) lastdrive = 1;
205 BX_INFO("Boot : bseqnr=%d, bootseq
[all...]

Completed in 322 milliseconds