1 /* 2 * Copyright (c) 2019, Mentor Graphics Corporation 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7 #ifndef USER_TA_HEADER_DEFINES_H 8 #define USER_TA_HEADER_DEFINES_H 9 10 #include <ta_miss_test.h> 11 12 #define TA_NAME "MISS" 13 #define TA_UUID TA_MISS_TEST_UUID 14 15 #define TA_FLAGS (0UL) 16 #define TA_STACK_SIZE (32 * 1024) 17 #define TA_DATA_SIZE (32 * 1024) 18 19 #endif /* USER_TA_HEADER_DEFINES_H */ 20