fix synchronization

This commit is contained in:
Stanislaw Kaushanski 2020-09-17 15:19:14 +02:00
parent 9e9b644e29
commit 0773f51fd3
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -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;