/* $Id$ */ /* Copyright (c) 2018 Pierre Pronchery */ /* This file is part of DeforaOS uKernel */ .text /* _start */ .global _start .type _start, @function /* check for supported architectures */ #if defined(__amd64__) || defined(__i386__) # include "arch/i386/start.S" #else # warning Unsupported architecture #endif