27 lines
462 B
C
27 lines
462 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
#include "drivers/bus.h"
|
|
#include "drivers/clock.h"
|
|
#include "drivers/console.h"
|
|
|
|
#define TOOLS_BUS "tty"
|
|
#define TOOLS_CLOCK "sys"
|
|
#define TOOLS_CONSOLE "stdio"
|
|
|
|
|
|
/* init */
|
|
int init(void)
|
|
{
|
|
ukBus * bus;
|
|
|
|
bus = bus_init(NULL, TOOLS_BUS);
|
|
console_init(bus, TOOLS_CONSOLE);
|
|
clock_init(NULL, TOOLS_CLOCK);
|
|
return 0;
|
|
}
|