xref: /netbsd-src/sys/arch/ia64/include/ssc.h (revision 833b14845d7033300a08fe412b7027bced7669cf)
1 /*	$NetBSD: ssc.h,v 1.2 2009/07/20 04:41:37 kiyohara Exp $	*/
2 
3 #ifndef _SSC_H_
4 #define _SSC_H_
5 
6 #define SSC_CONSOLE_INIT		20
7 #define SSC_GETCHAR			21
8 #define SSC_PUTCHAR			31
9 #define SSC_OPEN			50
10 #define SSC_CLOSE			51
11 #define SSC_READ			52
12 #define SSC_WRITE			53
13 #define SSC_GET_COMPLETION		54
14 #define SSC_WAIT_COMPLETION		55
15 #define SSC_GET_RTC			65
16 #define SSC_EXIT			66
17 #define SSC_LOAD_SYMBOLS		69
18 #define	SSC_SAL_SET_VECTORS		120
19 
20 uint64_t ssc(uint64_t, uint64_t, uint64_t, uint64_t, int);
21 
22 #endif	/* _SSC_H_ */
23