summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/bsp/install/include/metal/drivers/sifive_fu540-c000_l2.h
blob: 8c3cf907ebacb3d0357baa8d9e938b5cfa8b06de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright 2018 SiFive, Inc */
/* SPDX-License-Identifier: Apache-2.0 */

#ifndef METAL__DRIVERS__SIFIVE_FU540_C000_L2_H
#define METAL__DRIVERS__SIFIVE_FU540_C000_L2_H

struct __metal_driver_sifive_fu540_c000_l2;

#include <stdint.h>
#include <metal/cache.h>

struct __metal_driver_vtable_sifive_fu540_c000_l2 {
	struct __metal_cache_vtable cache;
};

__METAL_DECLARE_VTABLE(__metal_driver_vtable_sifive_fu540_c000_l2)

struct __metal_driver_sifive_fu540_c000_l2 {
	struct metal_cache cache;
};

#endif