Changeset 570 for trunk/hal/generic
- Timestamp:
- Oct 5, 2018, 12:08:35 AM (6 years ago)
- Location:
- trunk/hal/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/generic/hal_remote.h
r457 r570 51 51 * @ data : value to be written 52 52 ****************************************************************************************/ 53 void hal_remote_s w( xptr_t xp,53 void hal_remote_s32( xptr_t xp, 54 54 uint32_t data ); 55 55 … … 60 60 * @ data : value to be written 61 61 ****************************************************************************************/ 62 void hal_remote_s wd( xptr_t xp,62 void hal_remote_s64( xptr_t xp, 63 63 uint64_t data ); 64 64 … … 86 86 * @ return read value 87 87 ****************************************************************************************/ 88 uint32_t hal_remote_l w( xptr_t xp );88 uint32_t hal_remote_l32( xptr_t xp ); 89 89 90 90 /***************************************************************************************** … … 94 94 * @ return read value 95 95 ****************************************************************************************/ 96 uint64_t hal_remote_l wd( xptr_t xp );96 uint64_t hal_remote_l64( xptr_t xp ); 97 97 98 98 /***************************************************************************************** -
trunk/hal/generic/hal_uspace.h
r457 r570 93 93 * If the kernel uses physical addresses, it activates the MMU to access the user buffer. 94 94 ***************************************************************************************** 95 * @ u_str : string addressin user space.95 * @ string : string in user space. 96 96 * @ return length of the string. 97 97 ****************************************************************************************/
Note: See TracChangeset
for help on using the changeset viewer.