Changeset 445 for trunk/hal/generic
- Timestamp:
- May 29, 2018, 9:27:23 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/generic/hal_user.h
r407 r445 25 25 #define _HAL_USER_H_ 26 26 27 #include <hal_types.h> 27 28 28 29 ////////////////////////////////////////////////////////////////////////////////////////// 29 30 // User-side, hardware dependant functions API definition. 30 31 // 31 // Any architecture specific implementation must implement this API.32 // Any architecture specific implementation must implement this API. 32 33 ////////////////////////////////////////////////////////////////////////////////////////// 33 34 34 35 35 /***************************************************************************************** … … 45 45 * @ returned value semantic depends on the syscall index. 46 46 ****************************************************************************************/ 47 int hal_user_syscall( int service_num,48 int arg0,49 int arg1,50 int arg2,51 int arg3 );47 int hal_user_syscall( reg_t service_num, 48 reg_t arg0, 49 reg_t arg1, 50 reg_t arg2, 51 reg_t arg3 ); 52 52 53 53 /*****************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.