1
0
mirror of https://github.com/aap/pdp6.git synced 2026-02-24 08:12:50 +00:00

added network memory; some work on cmdline interface

This commit is contained in:
aap
2018-08-15 14:18:52 +02:00
parent 67fa30288e
commit 28cc63f3ba
16 changed files with 524 additions and 84 deletions

View File

@@ -68,6 +68,7 @@ readwrite(int ttyin, int ttyout, int ptyin, int ptyout)
if(n = read(ptyin, &c, 1), n <= 0)
return;
else{
//if(c == '\a') c = '.';
write(ttyout, &c, 1);
SLEEP;
}