can transmit data out, but in wrong order ...

This commit is contained in:
2020-11-01 09:30:46 -06:00
parent aeaf18c2d4
commit 45f845f671
5 changed files with 209 additions and 6 deletions

View File

@@ -67,13 +67,13 @@ int main(int argc, char **argv) {
tick(++tickcount, tb, tfp);
tb->i_stopN = 1;
for (int k = 0; k < 30; k++)
for (int k = 0; k < (1<<16); k++)
tick(++tickcount, tb, tfp);
tb->i_resetN = 0;
tick(++tickcount, tb, tfp);
tb->i_resetN = 1;
for (int k = 0; k < 3; k++)
for (int k = 0; k < 30; k++)
tick(++tickcount, tb, tfp);
}