blob: 2e228ff19c5457bf76bcea7f18376f392ec6c74e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* This file is subject to the terms and conditions of the LGPL V2.1
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2019 Kalray Inc.
*/
#ifndef _SYS_USER_H
#define _SYS_USER_H 1
struct user_regs_struct
{
/* GPR */
unsigned long long gpr_regs[64];
/* SFR */
unsigned long lc;
unsigned long le;
unsigned long ls;
unsigned long ra;
unsigned long cs;
unsigned long spc;
};
#endif
|