_start.S -> _start.s as the latter is pure asm file.

Repocopied by:	joe
This commit is contained in:
Ruslan Ermilov 2004-02-11 21:17:04 +00:00
parent e898d5ad97
commit 23350aaf89
2 changed files with 1 additions and 9 deletions

View file

@ -4,7 +4,7 @@ PROG= boot1.elf
INTERNALPROG=
NOMAN=
FILES= boot1
SRCS= _start.S boot1.c
SRCS= _start.s boot1.c
BOOTBLOCKBASE= 0x4000

View file

@ -1,8 +0,0 @@
/* $FreeBSD$ */
.text
.globl _start
_start:
call ofw_init
nop
sir