OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bios_fbm
(Results
1 - 5
of
5
) sorted by null
/external/syslinux/core/include/
bios.h
34
#define
BIOS_fbm
0x0413 /* Free Base Memory (kilobytes) */
40
static inline uint16_t
bios_fbm
(void)
function
42
return *(volatile uint16_t *)
BIOS_fbm
;
47
*(volatile uint16_t *)
BIOS_fbm
= mem;
/external/syslinux/core/fs/pxe/
bios.c
85
uint16_t start =
bios_fbm
(); /* Starting segment */
109
start =
bios_fbm
() << 10;
110
size = (real_base_mem -
bios_fbm
()) << 10;
338
dprintf("FBM before unload = %d\n",
bios_fbm
());
342
dprintf("FBM after reset_pxe = %d, err = %d\n",
bios_fbm
(), err);
363
if (real_base_mem <=
bios_fbm
()) { /* Sanity check */
364
dprintf("FBM %d < real_base_mem %d\n",
bios_fbm
(), real_base_mem);
372
if (int_addr >= real_base_mem || int_addr <
bios_fbm
()) {
374
dprintf("FBM after unload_pxe = %d\n",
bios_fbm
());
380
real_base_mem,
bios_fbm
(),
[
all
...]
/external/syslinux/core/
bios.inc
34
BIOS_fbm
resw 1 ; Free Base Memory (kilobytes)
/external/syslinux/com32/modules/
pxechn.c
146
uint16_t *const
bios_fbm
= (uint16_t *) 0x413;
local
147
addr_t dosmem = *
bios_fbm
<< 10; /* Technically a low bound */
/external/syslinux/efi/
main.c
162
uint16_t
BIOS_fbm
= 1;
[
all
...]
Completed in 490 milliseconds