Subversion Repositories Kolibri OS

Rev

Rev 8089 | Rev 8092 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8089 Rev 8091
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2017. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2017. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 8089 $
8
$Revision: 8091 $
9
 
9
 
10
 
10
 
Line 681... Line 681...
681
        addr DQ ?
681
        addr DQ ?
682
        size DQ ?
682
        size DQ ?
683
        type dd ?
683
        type dd ?
684
ends
684
ends
Line 685... Line 685...
685
 
685
 
686
RD_LOAD_FROM_FLOPPY = 0
686
RD_LOAD_FROM_FLOPPY = 1
687
RD_LOAD_FROM_HD     = 1
687
RD_LOAD_FROM_HD     = 2
688
RD_LOAD_FROM_MEMORY = 2
688
RD_LOAD_FROM_MEMORY = 3
689
RD_LOAD_FROM_FORMAT = 3
689
RD_LOAD_FROM_FORMAT = 4
Line 690... Line 690...
690
RD_LOAD_FROM_NONE   = 4
690
RD_LOAD_FROM_NONE   = 5
691
 
691
 
692
struct  boot_data
692
struct  boot_data
693
        bpp             db ?    ; bits per pixel
693
        bpp             db ?    ; bits per pixel
Line 719... Line 719...
719
        rd_load_from    db ?    ; Device to load ramdisk from, RD_LOAD_FROM_*
719
        rd_load_from    db ?    ; Device to load ramdisk from, RD_LOAD_FROM_*
720
                        db ?
720
                        db ?
721
        kernel_restart  dw ?
721
        kernel_restart  dw ?
722
        sys_disk        dw ?    ; Device to mount on /sys/, see loader_doc.txt for details
722
        sys_disk        dw ?    ; Device to mount on /sys/, see loader_doc.txt for details
723
        acpi_rsdp       dd ?
723
        acpi_rsdp       dd ?
724
                        rb 0x1f
724
        syspath         rb 0x1f
725
        bios_hd_cnt     db ?    ; number of BIOS hard disks
725
        bios_hd_cnt     db ?    ; number of BIOS hard disks
726
        bios_hd         rb 0x80 ; BIOS hard disks
726
        bios_hd         rb 0x80 ; BIOS hard disks
727
        memmap_block_cnt dd ?   ; available physical memory map: number of blocks
727
        memmap_block_cnt dd ?   ; available physical memory map: number of blocks
728
        memmap_blocks   e820entry
728
        memmap_blocks   e820entry
729
                        rb sizeof.e820entry * (MAX_MEMMAP_BLOCKS - 1)
729
                        rb sizeof.e820entry * (MAX_MEMMAP_BLOCKS - 1)