-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathxgp11.c
403 lines (355 loc) · 6.98 KB
/
xgp11.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#include "11.h"
#include "util.h"
/* define this for a XGP-11 with 11/20. Make sure to link correctly! */
#ifdef AUTODIAG
// just so linking works, we don't actually do AUTODIAG in the xgp11
int diagpassed;
#endif
#ifdef KD11Bp
#include "kd11b.h"
#else
#include "ka11.h"
#include "kw11.h"
#include "kl11.h"
#endif
#include "xgp.h"
#include <stdarg.h>
// in words
#define MEMSIZE (28*1024)
uint16 memory[MEMSIZE];
char *host;
int port;
void (*debug) (char *, ...);
FILE *logfile;
void
busadddev(Bus *bus, Busdev *dev)
{
Busdev **bp;
for(bp = &bus->devs; *bp; bp = &(*bp)->next)
;
*bp = dev;
dev->next = nil;
}
int
dati_bus(Bus *bus)
{
Busdev *bd;
for(bd = bus->devs; bd; bd = bd->next)
if(bd->dati(bus, bd->dev) == 0)
return 0;
return 1;
}
int
dato_bus(Bus *bus)
{
Busdev *bd;
for(bd = bus->devs; bd; bd = bd->next)
if(bd->dato(bus, bd->dev) == 0)
return 0;
return 1;
}
int
datob_bus(Bus *bus)
{
Busdev *bd;
for(bd = bus->devs; bd; bd = bd->next)
if(bd->datob(bus, bd->dev) == 0)
return 0;
return 1;
}
int dati_null(Bus *bus, void *dev) { (void)bus; (void)dev; return 1; }
int dato_null(Bus *bus, void *dev) { (void)bus; (void)dev; return 1; }
int datob_null(Bus *bus, void *dev) { (void)bus; (void)dev; return 1; }
void reset_null(void *dev) { (void)dev; }
int svc_null(Bus *bus, void *dev) { (void)bus; (void)dev; return 0; }
word
sgn(word w)
{
return (w>>15)&1;
}
word
sxt(byte b)
{
return (word)(int8)b;
}
void
quiet (char *format, ...)
{
va_list ap;
va_start(ap, format);
va_end(ap);
}
void
log (char *format, ...)
{
va_list ap;
va_start(ap, format);
vfprintf(logfile, format, ap);
fflush(logfile);
va_end(ap);
}
char *re = "";
void
reconnect(Ten11 *ten11)
{
ten11->fd = dial(host, port);
while (ten11->fd == -1) {
sleep(5);
ten11->fd = dial(host, port);
}
nodelay(ten11->fd);
printf("%sconnected to PDP-10\n", re);
re = "re";
}
int
svc_ten11(Bus *bus, void *dev)
{
Ten11 *ten11 = dev;
uint8 buf[8], len[2];
int n;
uint32 a;
word d;
if(ten11->fd < 0)
reconnect(ten11);
memset(buf, 0, sizeof(buf));
if(!hasinput(ten11->fd))
return 0;
n = read(ten11->fd, len, 2);
if(n != 2){
printf("fd closed, reconnecting...\n");
close(ten11->fd);
ten11->fd = -1;
return 0;
}
if(len[0] != 0){
fprintf(stderr, "unibus botch, exiting\n");
exit(0);
}
if(len[1] > 6){
fprintf(stderr, "unibus botch, exiting\n");
exit(0);
}
readn(ten11->fd, buf, len[1]);
a = buf[3] | buf[2]<<8 | buf[1]<<16;
d = buf[5] | buf[4]<<8;
ten11->cycle = 1;
switch(buf[0]){
case 1: /* write */
bus->addr = a;
bus->data = d;
if(a&1) goto be;
if(dato_bus(bus)) goto be;
debug("TEN11 write: %06o %06o\n", bus->addr, bus->data);
buf[0] = 0;
buf[1] = 1;
buf[2] = 3;
writen(ten11->fd, buf, 3);
break;
case 2: /* read */
bus->addr = a;
if(a&1) goto be;
if(dati_bus(bus)) goto be;
debug("TEN11 read: %06o %06o\n", bus->addr, bus->data);
buf[0] = 0;
buf[1] = 3;
buf[2] = 3;
buf[3] = bus->data>>8;
buf[4] = bus->data;
writen(ten11->fd, buf, 5);
break;
default:
fprintf(stderr, "unknown ten11 message type %d\n", buf[0]);
break;
}
ten11->cycle = 0;
return 0;
be:
fprintf(stderr, "TEN11 bus error %06o\n", bus->addr);
buf[0] = 0;
buf[1] = 1;
buf[2] = 4;
writen(ten11->fd, buf, 3);
ten11->cycle = 0;
return 0;
}
void
loadmem(char *filename)
{
FILE *f;
char line[100], *s;
word w;
w = 0;
f = fopen(filename, "r");
if(f == nil)
return;
while(s = fgets(line, 100, f), s != nil){
while(isspace(*s)) s++;
if(*s == ':')
w = strtol(s+1, nil, 8)>>1;
if(*s >= '0' && *s <= '7')
memory[w++] = strtol(s, nil, 8);
}
fclose(f);
}
int
loadpt(char *filename)
{
FILE *f;
byte hi, lo, s;
word n, a, w;
f = fopen(filename, "rb");
if(f == nil){
printf("can't open %s\n", filename);
return 1;
}
for(;;){
s = 0;
if(fread(&lo, 1, 1, f) < 1) break;
if(lo != 1)
continue;
s += lo;
if(fread(&hi, 1, 1, f) < 1) break;
s += hi;
w = WD(hi, lo);
if(w != 1)
continue;
if(fread(&lo, 1, 1, f) < 1) goto botch;
s += lo;
if(fread(&hi, 1, 1, f) < 1) goto botch;
s += hi;
n = WD(hi, lo);
if(fread(&lo, 1, 1, f) < 1) goto botch;
s += lo;
if(fread(&hi, 1, 1, f) < 1) goto botch;
s += hi;
a = WD(hi, lo);
if(a == 1)
break;
if(n == 0)
continue;
n -= 6;
/* odd number of bytes is probably allowed but we can't do it */
if(n&1)
goto botch;
n >>= 1;
a >>= 1;
while(n--){
if(fread(&lo, 1, 1, f) < 1) goto botch;
s += lo;
if(fread(&hi, 1, 1, f) < 1) goto botch;
s += hi;
w = WD(hi, lo);
memory[a++] = w;
}
if(fread(&lo, 1, 1, f) < 1) goto botch;
s += lo;
if(s)
goto botch;
}
fclose(f);
return 0;
botch:
printf("paper tape botch\n");
fclose(f);
return 1;
}
void
dumpmem(word start, word end)
{
start >>= 1;
end >>= 1;
for(; start != end; start++)
printf("%06o: %06o\n", start<<1, memory[start]);
}
Bus bus;
#ifdef KD11Bp
KD11B cpu;
#define TTYDEV cpu
#else
KA11 cpu;
KW11 kw11;
KL11 kl11;
#define TTYDEV kl11
#endif
Memory memdev = { memory, 0, MEMSIZE };
Busdev membusdev = { nil, &memdev, dati_mem, dato_mem, datob_mem, svc_null, nil, reset_null };
KE11 ke11;
Busdev kebusdev = { nil, &ke11, dati_ke11, dato_ke11, datob_ke11, svc_null, nil, reset_ke11 };
#ifndef KD11Bp
Busdev klbusdev = { nil, &kl11, dati_kl11, dato_kl11, datob_kl11, svc_kl11, bg_kl11, reset_kl11 };
Busdev kwbusdev = { nil, &kw11, dati_kw11, dato_kw11, datob_kw11, svc_kw11, bg_kw11, reset_kw11 };
#endif
XGP xgp;
Busdev xgpbusdev = { nil, &xgp, dati_xgp, dato_xgp, datob_xgp, svc_xgp, bg_xgp, reset_xgp };
Ten11 ten11;
Busdev ten11busdev = { nil, &ten11, dati_null, dato_null, datob_null, svc_ten11, nil, reset_null };
void
setunibus(uint8 n)
{
printf("unibus %d OK\n", n);
return;
}
char *argv0;
void
usage(void)
{
fprintf(stderr, "usage: %s [-p port] [-s time(ms)] [-d] server\n", argv0);
fprintf(stderr, "\tserver: host running pdp-10\n");
fprintf(stderr, "\t-p: pdp-10 port; default 1110\n");
fprintf(stderr, "\t-s: sleep (ms); default=0\n");
fprintf(stderr, "\t-d: write debug log\n");
exit(0);
}
int
main(int argc, char *argv[])
{
uint32 sleep;
memset(&cpu, 0, sizeof(cpu));
memset(&bus, 0, sizeof(Bus));
cpu.bus = &bus;
busadddev(&bus, &membusdev);
#ifndef KD11Bp
busadddev(&bus, &kwbusdev);
busadddev(&bus, &klbusdev);
#endif
busadddev(&bus, &kebusdev);
busadddev(&bus, &xgpbusdev);
busadddev(&bus, &ten11busdev);
port = 1110;
sleep = 0;
debug = quiet;
ARGBEGIN{
case 'p':
port = atoi(EARGF(usage()));
break;
case 's':
sleep = atoi(EARGF(usage()));
break;
case 'd':
logfile = stderr;
debug = log;
break;
}ARGEND;
if(argc < 1)
usage();
host = argv[0];
ten11.cycle = 0;
ten11.fd = -1;
loadmem("mem.txt");
// if(loadpt("maindec/MAINDEC-11-D0NA-PB.ptap"))
// if(loadpt("maindec/MAINDEC-11-D2AA-PB.ptap"))
// return 0;
// cpu.r[7] = 0200;
// cpu.sw = 0104000;
//void eaetest(KE11 *ke);
//eaetest(&ke11);
initxgp(&xgp);
reset(&cpu);
ttyopen(&TTYDEV.tty);
/* wait until we get some data from the 10 */
cpu.r[7] = 0;
cpu.throttle = sleep;
memory[0] = 0777;
run(&cpu);
return 0;
}