diff options
Diffstat (limited to 'cpu/i386')
-rw-r--r-- | cpu/i386/Makefile | 2 | ||||
-rw-r--r-- | cpu/i386/resetvec.S (renamed from cpu/i386/reset.S) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpu/i386/Makefile b/cpu/i386/Makefile index 50534b615..f20675af1 100644 --- a/cpu/i386/Makefile +++ b/cpu/i386/Makefile @@ -28,7 +28,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a -START = start.o start16.o reset.o +START = start.o start16.o resetvec.o COBJS = serial.o interrupts.o cpu.o timer.o sc520.o SOBJS = sc520_asm.o diff --git a/cpu/i386/reset.S b/cpu/i386/resetvec.S index 07a738492..d9222dd2f 100644 --- a/cpu/i386/reset.S +++ b/cpu/i386/resetvec.S @@ -26,7 +26,7 @@ .extern start16 -.section .reset, "ax" +.section .resetvec, "ax" .code16 reset_vector: cli |