Software APIs
sw
device
lib
base
stdasm.h
Go to the documentation of this file.
1
// Copyright lowRISC contributors (OpenTitan project).
2
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3
// SPDX-License-Identifier: Apache-2.0
4
5
#ifndef OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
6
#define OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
7
8
/**
9
* @file
10
* @brief The `asm` keyword.
11
*
12
* This header simply provides the `asm` keyword, in analogy with the ISO
13
* C headers `stdbool.h`, `stdnoreturn.h`, and so on.
14
*/
15
16
#define asm __asm__
17
18
#endif // OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
Return to
OpenTitan Documentation