fix synchronization
This commit is contained in:
parent
9e9b644e29
commit
0773f51fd3
Binary file not shown.
|
@ -113,7 +113,9 @@ int main() {
|
|||
}
|
||||
|
||||
*local_sync_bit++;
|
||||
while (*target_sync_bit < *local_sync_bit);
|
||||
while (*target_sync_bit < *local_sync_bit) {
|
||||
asm("nop");
|
||||
}
|
||||
|
||||
printf("End of execution");
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue