aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64/include/sbi.h
blob: e6ceb9287b445df9853944e6a9a3dc25591e747e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef APOS_RISCV_SBI_H

struct sbiret {
	long error;
	long value;
};

struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
                        unsigned long arg1, unsigned long arg2,
                        unsigned long arg3, unsigned long arg4,
                        unsigned long arg5);

#endif /* APOS_RISCV_SBI_H */