You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

memsizes.h 317B

1234567891011121314151617
  1. #ifndef _MEMSIZES_H
  2. #define _MEMSIZES_H
  3. #include <basemem.h>
  4. /**
  5. * Get size of base memory from BIOS free base memory counter
  6. *
  7. * @ret basemem Base memory size, in kB
  8. */
  9. static inline unsigned int basememsize ( void ) {
  10. return get_fbms();
  11. }
  12. extern unsigned int extmemsize ( void );
  13. #endif /* _MEMSIZES_H */