20 lines
384 B
ArmAsm
20 lines
384 B
ArmAsm
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
.section .text
|
|
|
|
|
|
/* check for supported architectures */
|
|
#if defined(__amd64__)
|
|
# include "arch/amd64/start.S"
|
|
# include "arch/start.S"
|
|
#elif defined(__i386__)
|
|
# include "arch/i386/start.S"
|
|
# include "arch/start.S"
|
|
#else
|
|
# warning Unsupported architecture
|
|
#endif
|