tools/memdump: expect proper prompt

This commit is contained in:
Virgil Dupras 2020-06-30 11:06:59 -04:00
parent fff893452d
commit a8302920cb
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ int main(int argc, char **argv)
unsigned char c = strtol(s, NULL, 16);
putchar(c);
}
read(fd, s, 2); // read prompt
readprompt(fd);
sendcmdp(fd, "FORGET _");
return 0;
}