- Timestamp:
- 08/19/2017 09:20:16 AM (7 years ago)
- Branches:
- master
- Children:
- ad89950
- Parents:
- 197ff76
- Location:
- libsm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libsm/memcpyw.c
r197ff76 rc59409e 11 11 #include "ram.h" 12 12 13 vo id *memcpyw(void *vp1,void *vp2, int16_t n)13 volatile void *memcpyw(volatile void *vp1, volatile void *vp2, int16_t n) 14 14 { 15 int16_t *sp1 = vp1;16 int16_t *sp2 = vp2;15 volatile int16_t *sp1 = vp1; 16 volatile int16_t *sp2 = vp2; 17 17 18 18 while (--n >= 0) -
libsm/memcpyw.x
r197ff76 rc59409e 15 15 */ 16 16 17 extern vo id *memcpyw(void *vp1,void *vp2, int16_t n);17 extern volatile void *memcpyw(volatile void *vp1, volatile void *vp2, int16_t n); -
libsm/memsetw.c
r197ff76 rc59409e 11 11 #include "ram.h" 12 12 13 vo id *memsetw(void *vp, uint16_t s, int16_t n)13 volatile void *memsetw(volatile void *vp, uint16_t s, int16_t n) 14 14 { 15 uint16_t *sp = vp;15 volatile uint16_t *sp = vp; 16 16 17 17 while (--n >= 0) -
libsm/memsetw.x
r197ff76 rc59409e 15 15 */ 16 16 17 extern vo id *memsetw(void *vp, uint16_t s, int16_t n);17 extern volatile void *memsetw(volatile void *vp, uint16_t s, int16_t n);
Note:
See TracChangeset
for help on using the changeset viewer.