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