Skip to content

Commit a566950

Browse files
committed
Print out contents of a SAIL accounting file.
1 parent 88afc7c commit a566950

File tree

4 files changed

+378
-1
lines changed

4 files changed

+378
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ dumper
3131
mini-dumper
3232
linum
3333
tendmp
34+
acct

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ OBJS = pdp10-opc.o info.o dis.o symbols.o \
1414
UTILS = cat36 itsarc magdmp magfrm dskdmp dump \
1515
macdmp macro-tapes tape-dir harscntopbm palx cross \
1616
ipak kldcp klfedr scrmbl unscr tvpic tito dart od10 \
17-
constantinople dumper mini-dumper linum tendmp
17+
constantinople dumper mini-dumper linum tendmp acct
1818

1919
all: dis10 $(UTILS) check
2020

@@ -70,6 +70,9 @@ macro-tapes: macro-tapes.o $(OBJS) $(LIBWORD)
7070
tape-dir: tape-dir.o $(OBJS) $(LIBWORD)
7171
$(CC) $(CFLAGS) $^ -o $@
7272

73+
acct: acct.o dec.o $(OBJS) $(LIBWORD)
74+
$(CC) $(CFLAGS) $^ -o $@
75+
7376
tito: tito.o $(OBJS) $(LIBWORD)
7477
$(CC) $(CFLAGS) $^ -o $@
7578

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ is elsewhere: http://github.com/larsbrinkhoff/mldev
2727
- Add or delete DEC-style text file line numbers.
2828
- Extract files from a DECtape image in TENDMP/DTBOOT format.
2929
- Create a TENDMP/DTBOOT image.
30+
- Print entried in a WAITS accounting file.
3031

3132
## File formats supported.
3233

0 commit comments

Comments
 (0)