A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 87 lines 2.1 kB view raw
1/*************************************************************************** 2 * __________ __ ___. 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 7 * \/ \/ \/ \/ \/ 8 * $Id$ 9 * 10 * Copyright (C) 2004 by Linus Nielsen Feltzing 11 * 12 * This program is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU General Public License 14 * as published by the Free Software Foundation; either version 2 15 * of the License, or (at your option) any later version. 16 * 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * KIND, either express or implied. 19 * 20 ****************************************************************************/ 21#ifndef __CPU_H 22#define __CPU_H 23 24#include "config.h" 25 26#if CONFIG_CPU == MCF5249 27#include "mcf5249.h" 28#endif 29#if CONFIG_CPU == MCF5250 30#include "mcf5250.h" 31#endif 32#if (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022) 33#include "pp5020.h" 34#endif 35#if CONFIG_CPU == PP5002 36#include "pp5002.h" 37#endif 38#if CONFIG_CPU == PP5024 39#include "pp5024.h" 40#endif 41#if CONFIG_CPU == PP6100 42#include "pp6100.h" 43#endif 44#if CONFIG_CPU == PNX0101 45#include "pnx0101.h" 46#endif 47#if CONFIG_CPU == S3C2440 48#include "s3c2440.h" 49#endif 50#if CONFIG_CPU == DM320 51#include "dm320.h" 52#endif 53#if CONFIG_CPU == IMX31L 54#include "imx31l.h" 55#endif 56#ifdef CPU_TCC780X 57#include "tcc780x.h" 58#endif 59#ifdef CPU_S5L87XX 60#include "s5l87xx.h" 61#endif 62#if CONFIG_CPU == JZ4732 63#include "jz4740.h" 64#endif 65#if CONFIG_CPU == JZ4760B 66#include "jz4760b.h" 67#endif 68#if CONFIG_CPU == AS3525 69#include "as3525.h" 70#endif 71#if CONFIG_CPU == AS3525v2 72#include "as3525v2.h" 73#endif 74#if CONFIG_CPU == IMX233 75#include "imx233.h" 76#endif 77#if CONFIG_CPU == RK27XX 78#include "rk27xx.h" 79#endif 80#if CONFIG_CPU == X1000 81#include "x1000.h" 82#endif 83#if CONFIG_CPU == STM32H743 84#include "cpu-stm32h743.h" 85#endif 86 87#endif /* __CPU_H */