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