blob: 9dacb0998091fc8d941834b50c7cb0bba25aa461 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
#ifndef OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
#define OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
/**
* This header simply provides the `asm` keyword, in analogy with the ISO C
* headers `stdbool.h`, `stdnoreturn.h`, and so on.
*/
#define asm __asm__
#endif // OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_