mm_libcpu_tc.c 348 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023-03-17 WangXiaoyao cache API unit test
  9. */
  10. #include <rtthread.h>
  11. #ifdef ARCH_RISCV64
  12. #include "test_cache_rv64.h"
  13. #elif defined(ARCH_ARMV8)
  14. #include "test_cache_aarch64.h"
  15. #endif