pub unsafe extern "C" fn map_memory(
name: *mut c_char,
size: u64,
address: u64,
)Expand description
map_memory() - Add a region to the memory map. @name: The name of the region. @size: Size of the region, in bytes. @address: Start of the region.
If setting up an environment to run code or rehost some embedded system, this function can be used to set up regions in the machine’s memory map. RAM only, at present.
XXX: Rename as panda_map_memory?