1
0
mirror of https://github.com/aap/pdp6.git synced 2026-01-13 15:27:46 +00:00
aap.pdp6/tools/ptdump.c
2016-10-19 12:11:11 +02:00

13 lines
158 B
C

#include <stdio.h>
#include <stdint.h>
#include "pdp6common.h"
int
main()
{
word w;
while(w = readw(stdin), w != ~0)
printf("%012lo\n", w);
return 0;
}