blob: 3f259e8656eaf266d8318ab7ecb93482f2e0c0ab [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 SW_DEVICE_LIB_BASE_STDASM_H_
#define 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 // SW_DEVICE_LIB_BASE_STDASM_H_