1/*
2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3 */
4
5#ifdef CHIP_HAAS1000
6
7#define TO_STRING_A(s)                  # s
8#define TO_STRING(s)                    TO_STRING_A(s)
9
10.globl __dsp_code_start
11.globl __dsp_code_end
12.section .rodata_dsp_code, "a", %progbits
13.balign 4
14
15__dsp_code_start:
16	.incbin TO_STRING(../../hardware/chip/haas1000/aos/dsp/dsp.bin.lzma)
17__dsp_code_end:
18
19#endif
20