regtypes.h 422 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2006-2024, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024-07-15 WangShun The first version
  9. */
  10. #ifndef REGTYPES_H__
  11. #define REGTYPES_H__
  12. #include <rtconfig.h>
  13. #if defined(RT_USING_RV64ILP32)
  14. typedef unsigned long long rt_uintreg_t;
  15. #else
  16. typedef unsigned long rt_uintreg_t;
  17. #endif
  18. #endif /* REGTYPES_H__ */