Home | History | Annotate | Download | only in alchemy

Lines Matching refs:memsize

145 mach_init(int argc, char **argv, yamon_env_var *envp, u_long memsize)
270 * Determine the memory size. Use the `memsize' PMON
277 #if defined(MEMSIZE)
278 memsize = MEMSIZE;
280 if (memsize == 0) {
281 if ((cp = yamon_getenv("memsize")) != NULL)
282 memsize = strtoul(cp, NULL, 0);
284 printf("FATAL: `memsize' YAMON variable not set. Set it to\n");
286 printf(" Or, build a kernel with the `MEMSIZE' "
291 #endif /* MEMSIZE */
292 printf("Memory size: 0x%08lx\n", memsize);
293 physmem = btoc(memsize);
297 memsize - mem_clusters[mem_cluster_cnt].start;