create a separate directory for SCC specific code

This commit is contained in:
Stefan Lankes 2011-03-24 07:13:55 +01:00
parent de9fb1fc65
commit 1a141d9dc9
5 changed files with 6 additions and 2 deletions

View file

@ -12,7 +12,6 @@
#define __ARCH_STRING_H__
#include <metalsvm/stddef.h>
#include <asm/scc_memcpy.h>
#ifdef __cplusplus
extern "C" {

View file

@ -1,4 +1,4 @@
C_source := scc.c gdt.c kb.c timer.c irq.c isrs.c idt.c vga.c multiboot.c apic.c pci.c processor.c
C_source := gdt.c kb.c timer.c irq.c isrs.c idt.c vga.c multiboot.c apic.c pci.c processor.c
ASM_source := entry.asm string.asm
MODULE := arch_x86_kernel

5
arch/x86/scc/Makefile Normal file
View file

@ -0,0 +1,5 @@
C_source := scc_init.c
ASM_source :=
MODULE := arch_x86_scc
include $(TOPDIR)/Makefile.inc