Merge pull request #6 from rijuyuezhu/master

[FIX]  am-kernels/kernels/demo/src/hanoi/hanoi.c: pattern not shown on the screen of nemu due to no sync of GPU FB
This commit is contained in:
Zihao Yu 2023-10-11 17:06:58 +08:00 committed by GitHub
commit 0bab7cb226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ static void text(int y, int i, int d, const char *s) {
static void add_disk(int i, int d) {
t[i]->x[t[i]->n++] = d;
text(t[i]->n, i, d, "==");
screen_refresh();
usleep(100000);
}