memory_account.c
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #include <i386/memory_account.h>
  2. unsigned long total_memory; // En MBytes
  3. void recover_boot_e801 (unsigned long base) {
  4. struct e801_memory* mem=(struct e801_memory*) base;
  5. total_memory = (mem->lowmem/1024)+ 1 + mem->highmem*64/1024;
  6. }
  7. unsigned long total_system_memory() {
  8. return total_memory;
  9. }