mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
18 lines
371 B
C
18 lines
371 B
C
/*
|
|
* Generic platform file.
|
|
*
|
|
* Copyright (C) 2010 B Labs Ltd.
|
|
*
|
|
* Author: Bahadir Balban
|
|
*/
|
|
#ifndef __LIBDEV_PLATFORM_H__
|
|
#define __LIBDEV_PLATFORM_H__
|
|
|
|
#define INC_LIBDEV_PLAT(x) <dev/platform/__PLATFORM__/x>
|
|
|
|
/* paths realtive to conts/dev/ */
|
|
#include INC_LIBDEV_PLAT(irq.h)
|
|
#include INC_LIBDEV_PLAT(platform.h)
|
|
|
|
#endif /* __LIBDEV_PLATFORM_H__ */
|