SPC
Version 0.9.5
Main Page
Related Pages
Modules
Files
Examples
All
Files
Functions
Groups
Pages
ex_rotate.spc
This is an example of how to use the
RotateLeft
and
RotateRight
functions.
task main()
{
int
x =
ADChannel0
;
printf
(
"x = %d\n"
, x);
repeat(4)
RotateLeft
(x);
// rotate left through carry by 1 bit (4 times)
printf
(
"x = %d\n"
, x);
repeat(2)
RotateRight
(x);
// rotate right through carry by 1 bit (2 times)
printf
(
"x = %d\n"
, x);
}
Generated by
1.8.2