mem.h 291 B

1234567891011
  1. #pragma once
  2. #include <types/stdint.h>
  3. // don't forget to add the initial 1m to the total
  4. struct mem_size_info {
  5. uint16_t n_1k_blks; // memory between 1m and 16m in 1k blocks
  6. uint16_t n_64k_blks; // memory above 16m in 64k blocks
  7. };
  8. extern struct mem_size_info asm_mem_size_info;