Mobile
68hc08.asc
Associated article: Efficient MC68HC08 Programming
Tags: Mobile Design
_EFFICIENT MC68HC08 PROGRAMMING_
by Rand Gray and Deepak Mulchandani
Example 1:
1 main()
2 {
3 int x;
4 int y;
5 int z;
6
7 y = 7;
8 x = 2*y+1;
9 z = 2*y+1;
10
11 }
Example 2:
Byte Cycle Instructions
3 4 mov #7, y+1
2 3 clr y
3 4 mov #15, x+1
2 3 clr x
3 4 mov #15, z+1
2 3 clr z
Example 3:
...


