blob: 0dbcd02269f6e98cb0cd50f9cb0e38ff1ba3da04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _SBICALL_H
#define _SBICALL_H
struct sbiret {
long err;
long val;
};
struct sbiret sbi_ecall(int _eid, int _fid, unsigned long _a0, unsigned long _a1,
unsigned long _a2, unsigned long _a3, unsigned long _a4, unsigned long _a5);
void sbi_console_putchar(int c);
void sbi_shutdown(void);
#endif /* _SBICALL_H */
|