Snitch Runtime
Loading...
Searching...
No Matches
cls_decls.h
1// Copyright 2023 ETH Zurich and University of Bologna.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5#pragma once
6
7#include <stdint.h>
8
9#include "alloc_decls.h"
10
11typedef struct {
12 uint32_t hw_barrier;
13 snrt_allocator_t l1_allocator;
14} cls_t;
15
16inline cls_t* cls();
Definition cls_decls.h:11
Definition alloc_decls.h:10