Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 328 → Rev 329

/SPARTAN/trunk/arch/mips/boot/boot.S
33,6 → 33,10
.set nomacro
 
#include <arch/asm/boot.h>
 
#ifndef KERNEL_LOAD_ADDRESS
# define KERNEL_LOAD_ADDRESS 0x80010000
#endif
.global start
start:
/SPARTAN/trunk/arch/mips/boot/Makefile
13,7 → 13,7
LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
 
ASFLAGS=-mips2 -I../../../include
LFLAGS=--oformat=binary -mips2 -e start -T _link.ld
LFLAGS=--oformat=binary -e start -T _link.ld
 
.S.o:
$(CC) $(ASFLAGS) -c -o $@ $<