blob: 1e0c028a5b953cec8b2c7c24ebac8cf337a8bc88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2025 Chen Miao
*/
#ifndef __ASM_OPENRISC_INSN_DEF_H
#define __ASM_OPENRISC_INSN_DEF_H
/* or1k instructions are always 32 bits. */
#define OPENRISC_INSN_SIZE 4
/* or1k nop instruction code */
#define OPENRISC_INSN_NOP 0x15000000U
#endif /* __ASM_OPENRISC_INSN_DEF_H */
|