├── CHANGES ├── COPYRIGHT ├── INSTALL ├── README ├── doc ├── Makefile ├── manual.txt └── standard.txt ├── makeall ├── src ├── LIBHDR ├── Makefile ├── SYNHDR ├── TRNHDR ├── bcplc ├── bcplc.1 ├── blib.O ├── blib.bcpl ├── blib.s ├── cg.c ├── global.s ├── oc.c ├── oc.h ├── op.c ├── pt.c ├── rt.s ├── st.O ├── st.bcpl ├── st.s ├── su.s ├── sys.s ├── sys_freebsd.s └── sys_linux.s └── util ├── Makefile ├── cmpltest.bcpl ├── gpm.bcpl └── xref.bcpl /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/README -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/doc/manual.txt -------------------------------------------------------------------------------- /doc/standard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/doc/standard.txt -------------------------------------------------------------------------------- /makeall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/makeall -------------------------------------------------------------------------------- /src/LIBHDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/LIBHDR -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/SYNHDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/SYNHDR -------------------------------------------------------------------------------- /src/TRNHDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/TRNHDR -------------------------------------------------------------------------------- /src/bcplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/bcplc -------------------------------------------------------------------------------- /src/bcplc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/bcplc.1 -------------------------------------------------------------------------------- /src/blib.O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/blib.O -------------------------------------------------------------------------------- /src/blib.bcpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/blib.bcpl -------------------------------------------------------------------------------- /src/blib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/blib.s -------------------------------------------------------------------------------- /src/cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/cg.c -------------------------------------------------------------------------------- /src/global.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/global.s -------------------------------------------------------------------------------- /src/oc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/oc.c -------------------------------------------------------------------------------- /src/oc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/oc.h -------------------------------------------------------------------------------- /src/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/op.c -------------------------------------------------------------------------------- /src/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/pt.c -------------------------------------------------------------------------------- /src/rt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/rt.s -------------------------------------------------------------------------------- /src/st.O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/st.O -------------------------------------------------------------------------------- /src/st.bcpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/st.bcpl -------------------------------------------------------------------------------- /src/st.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/st.s -------------------------------------------------------------------------------- /src/su.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/su.s -------------------------------------------------------------------------------- /src/sys.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/sys.s -------------------------------------------------------------------------------- /src/sys_freebsd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/sys_freebsd.s -------------------------------------------------------------------------------- /src/sys_linux.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/src/sys_linux.s -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/util/Makefile -------------------------------------------------------------------------------- /util/cmpltest.bcpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/util/cmpltest.bcpl -------------------------------------------------------------------------------- /util/gpm.bcpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/util/gpm.bcpl -------------------------------------------------------------------------------- /util/xref.bcpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeGris/BCPL-compiler/HEAD/util/xref.bcpl --------------------------------------------------------------------------------