Changeset 570 for trunk/hal/tsar_mips32/core/hal_remote.c
- Timestamp:
- Oct 5, 2018, 12:08:35 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_remote.c
r501 r570 54 54 55 55 ///////////////////////////////// 56 void hal_remote_s w( xptr_t xp,56 void hal_remote_s32( xptr_t xp, 57 57 uint32_t data ) 58 58 { … … 80 80 81 81 ////////////////////////////////// 82 void hal_remote_s wd( xptr_t xp,82 void hal_remote_s64( xptr_t xp, 83 83 uint64_t data ) 84 84 { … … 113 113 void * pt ) 114 114 { 115 hal_remote_s w( xp , (uint32_t)pt );115 hal_remote_s32 ( xp , (uint32_t)pt ); 116 116 } 117 117 … … 143 143 144 144 //////////////////////////////////// 145 uint32_t hal_remote_l w( xptr_t xp )145 uint32_t hal_remote_l32( xptr_t xp ) 146 146 { 147 147 uint32_t data; … … 169 169 170 170 ///////////////////////////////////// 171 uint64_t hal_remote_l wd( xptr_t xp )171 uint64_t hal_remote_l64( xptr_t xp ) 172 172 { 173 173 uint32_t data_lsb; … … 200 200 void * hal_remote_lpt( xptr_t xp ) 201 201 { 202 return (void *)hal_remote_l w( xp );202 return (void *)hal_remote_l32 ( xp ); 203 203 } 204 204
Note: See TracChangeset
for help on using the changeset viewer.