Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 364 → Rev 363

/SPARTAN/trunk/arch/mips32/src/drivers/arc.c
157,8 → 157,10
{
arc_memdescriptor_t *desc;
 
if (!arc_enabled())
if (!arc_enabled()) {
printf("ARC not enabled.\n");
return;
}
 
printf("Memory map:\n");
 
/SPARTAN/trunk/arch/mips32/Makefile.inc
48,7 → 48,7
 
# MSIM needs lwl/swl patch & 4kc instruction patch to work
# otherwise add -mmemcpy -mips3
ifeq (${MACHINE},msim4kc)
ifeq (${MACHINE},msim)
BFD = binary
CFLAGS += -msoft-float -march=4kc
KERNEL_LOAD_ADDRESS = 0x80100000
55,13 → 55,6
BFD_NAME=elf32-little
endif
 
ifeq (${MACHINE},msim)
BFD = binary
CFLAGS += -msoft-float -mips3
KERNEL_LOAD_ADDRESS = 0x80100000
BFD_NAME=elf32-little
endif
 
# SIMICS 4kc emulation is broken, although for instructions
# that do not bother us
ifeq (${MACHINE},simics)