aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64/include/sbi.h
blob: 609849d5929beefb535ca3d05cd5407222126459 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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 */