--- ADLO_old/loader.s	2007-09-25 14:27:12.000000000 -0600
+++ ADLO/loader.s	2007-10-26 10:14:51.000000000 -0600
@@ -175,11 +175,17 @@
 ; III) tell BOCHS' BIOS we want to boot from hdd.
 ; 0x00 - floppy
 ; 0x02 - hdd
+; It's changed now //With El Torito enabled
+; 0x0 - none
+; 0x1 - floppy
+; 0x2 - hdd
+; 0x3 - cdrom
+; i.e., 0x23 means try the cdrom first, then the hdd
 ; In future there will be 'fd failover'option in bochs.
 
 mov  al, #0x3d ;; cmos_reg
 out  0x70, al
-mov  al, #0x02 ;; val (hdd)
+mov  al, #0x23 ;; val (cd then hdd)
 out  0x71, al
 
 ;-----------------------------------------------------
@@ -228,7 +234,7 @@
 
 mov  al, #0x39 ;; cmos_reg
 out  0x70, al
-mov  al, #0x01 ;; val (LBA)
+mov  al, #0x05 ;; val 5 = (LBA and LBA) 0 = none
 out  0x71, al
 
 ;*****************************************************
@@ -378,7 +384,7 @@
 nop
 nop
 ;*****************************************************
-; G) jump to BIOS.
+; H) jump to BIOS.
 
 jmp 0xFFFF:0x0000
 ;jmp 0xF000:0xFFF0
