21 lines
383 B
C
21 lines
383 B
C
![]() |
/*
|
||
|
* Copyright (c) 2017, Xilinx Inc. and Contributors. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* @file cpu.h
|
||
|
* @brief CPU specific primatives on microblaze platform.
|
||
|
*/
|
||
|
|
||
|
#ifndef __METAL_MICROBLAZE__H__
|
||
|
#define __METAL_MICROBLAZE__H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <metal/atomic.h>
|
||
|
|
||
|
#define metal_cpu_yield()
|
||
|
|
||
|
#endif /* __METAL_MICROBLAZE__H__ */
|