Changeset 570 for trunk/hal/x86_64/core
- Timestamp:
- Oct 5, 2018, 12:08:35 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_remote.c
r457 r570 30 30 } 31 31 32 void hal_remote_s w(xptr_t xp, uint32_t data)32 void hal_remote_s32(xptr_t xp, uint32_t data) 33 33 { 34 34 *(uint32_t *)xp = data; 35 35 } 36 36 37 void hal_remote_s wd(xptr_t xp, uint64_t data)37 void hal_remote_s64(xptr_t xp, uint64_t data) 38 38 { 39 39 *(uint64_t *)xp = data; … … 42 42 void hal_remote_spt(xptr_t xp, void *pt) 43 43 { 44 hal_remote_s wd(xp, (uint64_t)pt);44 hal_remote_s64(xp, (uint64_t)pt); 45 45 } 46 46 … … 50 50 } 51 51 52 uint32_t hal_remote_l w(xptr_t xp)52 uint32_t hal_remote_l32(xptr_t xp) 53 53 { 54 54 return *(uint32_t *)xp; 55 55 } 56 56 57 uint64_t hal_remote_l wd(xptr_t xp)57 uint64_t hal_remote_l64(xptr_t xp) 58 58 { 59 59 return *(uint64_t *)xp; … … 62 62 void *hal_remote_lpt(xptr_t xp) 63 63 { 64 return (void *)hal_remote_l wd(xp);64 return (void *)hal_remote_l64(xp); 65 65 } 66 66
Note: See TracChangeset
for help on using the changeset viewer.