Searched defs:sram_size (Results 1 - 1 of 1) sorted by relevance

/external/qemu/hw/
H A Darmv7m.c153 flash_size and sram_size are in kb.
156 qemu_irq *armv7m_init(int flash_size, int sram_size, argument
171 sram_size *= 1024;
187 sram_size = (ram_size / 2) & TARGET_PAGE_MASK;
188 if (sram_size > 32 * 1024 * 1024)
189 sram_size = 32 * 1024 * 1024;
190 code_size = ram_size - sram_size;
197 cpu_register_physical_memory(0x20000000, sram_size,
199 sram_size) | IO_MEM_RAM);

Completed in 352 milliseconds