Changeset 580 for trunk/user/pgcd/pgcd.c
- Timestamp:
- Oct 8, 2018, 11:31:42 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user/pgcd/pgcd.c
r574 r580 18 18 int opy; 19 19 unsigned long long cycle; 20 unsigned int cxy; 21 unsigned int lid; 20 22 21 23 get_cycle( &cycle ); 22 printf( "\n\n[PGCD] starts / cycle %d\n", (unsigned int)cycle ); 24 get_core( &cxy , &lid ); 25 26 printf( "\n\n[PGCD] starts on core[%x,%d] / cycle %d\n", 27 cxy , lid , (unsigned int)cycle ); 23 28 24 29 while (1) … … 26 31 printf("\n*******************\n"); 27 32 printf("operand X = "); 28 opx = get int();33 opx = get_uint32(); 29 34 printf("\n"); 30 35 printf("operand Y = "); 31 opy = get int();36 opy = get_uint32(); 32 37 printf("\n"); 33 38
Note: See TracChangeset
for help on using the changeset viewer.