rockbox/utils/hwstub/stub/SOURCES
Marcin Bukat d11704fed5 hwstub: Add atj213x support
Change-Id: Ic32200f9ab2c6977e503307a9cbe43a1328d0341
2014-11-05 08:18:59 +01:00

31 lines
503 B
Text

#if defined(CPU_ARM)
asm/arm/memcpy.S
asm/arm/memmove.S
asm/arm/memset.S
#elif defined(CPU_MIPS)
asm/mips/memcpy.S
asm/mips/memset.S
#else
#error "Unimplemented ISA"
#endif
main.c
logf.c
string.c
format.c
#ifdef CONFIG_STMP
stmp/crt0.S
stmp/target.c
usb_drv_arc.c
#elif defined(CONFIG_RK27XX)
rk27xx/crt0.S
rk27xx/usb_drv_rk27xx.c
rk27xx/target.c
#elif defined(CONFIG_PP)
pp/crt0.S
pp/target.c
usb_drv_arc.c
#elif defined(CONFIG_ATJ213X)
atj213x/crt0.S
atj213x/target.c
atj213x/usb_drv_atj213x.c
#endif