mirror of
https://github.com/aap/pdp6.git
synced 2026-01-13 15:27:46 +00:00
13 lines
158 B
C
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;
|
|
}
|