Changeset 657 for trunk/user/pgcd/pgcd.c
- Timestamp:
- Mar 18, 2020, 11:16:59 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user/pgcd/pgcd.c
r637 r657 18 18 void main( void ) 19 19 { 20 intopx;21 intopy;22 intx;23 inty;20 unsigned int opx; 21 unsigned int opy; 22 unsigned int x; 23 unsigned int y; 24 24 unsigned long long cycle; 25 25 unsigned int cxy; … … 34 34 // get operand X 35 35 printf("operand X = "); 36 opx = get_uint32();36 get_uint32( &opx ); 37 37 printf("\n"); 38 38 39 39 // get operand Y 40 40 printf("operand Y = "); 41 opy = get_uint32();41 get_uint32( &opy ); 42 42 printf("\n"); 43 43
Note: See TracChangeset
for help on using the changeset viewer.