Changes in kernel/arch/ia32/src/bios/bios.c [dc0b964:df4ed85] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/bios/bios.c
rdc0b964 rdf4ed85 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ … … 34 34 35 35 #include <arch/bios/bios.h> 36 #include <typedefs.h> 37 38 #define BIOS_EBDA_PTR 0x40eU 36 #include <arch/types.h> 39 37 40 38 uintptr_t ebda = 0; … … 43 41 { 44 42 /* Copy the EBDA address out from BIOS Data Area */ 45 ebda = *((uint16_t *) BIOS_EBDA_PTR) * 0x10 U;43 ebda = *((uint16_t *) BIOS_EBDA_PTR) * 0x10; 46 44 } 47 45
Note:
See TracChangeset
for help on using the changeset viewer.