fix main return type
This commit is contained in:
parent
b75c11b20e
commit
8a7eb80e47
2 changed files with 7 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -48,7 +48,7 @@ kernel : $(OBJS) bootother.S user1 usertests userfs
|
|||
$(LD) -N -e start -Ttext 0x7000 -o bootother.out bootother.o
|
||||
$(OBJCOPY) -S -O binary bootother.out bootother
|
||||
$(OBJDUMP) -S bootother.o > bootother.asm
|
||||
$(LD) -Ttext 0x100000 -e main -o kernel $(OBJS) -b binary bootother user1 usertests userfs
|
||||
$(LD) -Ttext 0x100000 -e main0 -o kernel $(OBJS) -b binary bootother user1 usertests userfs
|
||||
$(OBJDUMP) -S kernel > kernel.asm
|
||||
|
||||
vectors.S : vectors.pl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue