Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/openrisc/include/asm/insn-def.h
29524 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* Copyright (C) 2025 Chen Miao
4
*/
5
6
#ifndef __ASM_OPENRISC_INSN_DEF_H
7
#define __ASM_OPENRISC_INSN_DEF_H
8
9
/* or1k instructions are always 32 bits. */
10
#define OPENRISC_INSN_SIZE 4
11
12
/* or1k nop instruction code */
13
#define OPENRISC_INSN_NOP 0x15000000U
14
15
#endif /* __ASM_OPENRISC_INSN_DEF_H */
16
17