29a30
> * Korey Sewell
59c60,61
< fatal("Object file does not match architecture.");
---
> fatal("Object file does not match MIPS architecture.");
>
81a84,86
> // Set up stack. On MIPS, stack starts at the top of kuseg
> // user address space. MIPS stack grows down from here
> stack_base = 0x7FFFFFFF;
83c88,91
< // XXX all the below need to be updated for SPARC - Ali
---
> // Set pointer for next thread stack. Reserve 8M for main stack.
> next_thread_stack_base = stack_base - (8 * 1024 * 1024);
>
> // Set up break point (Top of Heap)
87,92c95
< // Set up stack. On Alpha, stack goes below text section. This
< // code should get moved to some architecture-specific spot.
< stack_base = objFile->textBase() - (409600+4096);
<
< // Set up region for mmaps. Tru64 seems to start just above 0 and
< // grow up from there.
---
> // Set up region for mmaps. For now, start at bottom of kuseg space.
94,97d96
<
< // Set pointer for next thread stack. Reserve 8M for main stack.
< next_thread_stack_base = stack_base - (8 * 1024 * 1024);
<