]> begriffs open source - cmsis-freertos/blob - Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/metal/scrub.h
Updated pack to FreeRTOS 10.4.4
[cmsis-freertos] / Demo / RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio / freedom-metal / metal / scrub.h
1 /* Copyright 2020 SiFive, Inc */
2 /* SPDX-License-Identifier: Apache-2.0 */
3
4 #ifndef METAL__SCRUB_H
5 #define METAL__SCRUB_H
6
7 /*! @brief Writes specified memory region with zeros.
8  * @param address Start memory address for zero-scrub.
9  * @param size Memory region size in bytes.
10  * @return None.*/
11 void metal_mem_scrub(void *address, int size);
12
13 #endif