├── README.md ├── buf.h ├── conf.h ├── conf ├── data.s ├── m40.s ├── m45.s ├── mkconf.c └── sysfix.c ├── dmr ├── bio.c ├── cat.c ├── dc.c ├── dh.c ├── dhdm.c ├── dhfdm.c ├── dn.c ├── dp.c ├── hp.c ├── hs.c ├── ht.c ├── kl.c ├── lp.c ├── mem.c ├── partab.c ├── pc.c ├── rf.c ├── rk.c ├── rp.c ├── sys.c ├── tc.c ├── tm.c ├── tty.c ├── vs.c └── vt.c ├── file.h ├── filsys.h ├── ino.h ├── inode.h ├── ken ├── alloc.c ├── clock.c ├── fio.c ├── iget.c ├── main.c ├── malloc.c ├── nami.c ├── pipe.c ├── prf.c ├── rdwri.c ├── sig.c ├── slp.c ├── subr.c ├── sys1.c ├── sys2.c ├── sys3.c ├── sys4.c ├── sysent.c ├── text.c └── trap.c ├── param.h ├── proc.h ├── reg.h ├── seg.h ├── systm.h ├── tags ├── text.h ├── tty.h └── user.h /README.md: -------------------------------------------------------------------------------- 1 | # UNX V6 2 | machine: PDP11 3 | -------------------------------------------------------------------------------- /buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/buf.h -------------------------------------------------------------------------------- /conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf.h -------------------------------------------------------------------------------- /conf/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf/data.s -------------------------------------------------------------------------------- /conf/m40.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf/m40.s -------------------------------------------------------------------------------- /conf/m45.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf/m45.s -------------------------------------------------------------------------------- /conf/mkconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf/mkconf.c -------------------------------------------------------------------------------- /conf/sysfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/conf/sysfix.c -------------------------------------------------------------------------------- /dmr/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/bio.c -------------------------------------------------------------------------------- /dmr/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/cat.c -------------------------------------------------------------------------------- /dmr/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dc.c -------------------------------------------------------------------------------- /dmr/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dh.c -------------------------------------------------------------------------------- /dmr/dhdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dhdm.c -------------------------------------------------------------------------------- /dmr/dhfdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dhfdm.c -------------------------------------------------------------------------------- /dmr/dn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dn.c -------------------------------------------------------------------------------- /dmr/dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/dp.c -------------------------------------------------------------------------------- /dmr/hp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/hp.c -------------------------------------------------------------------------------- /dmr/hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/hs.c -------------------------------------------------------------------------------- /dmr/ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/ht.c -------------------------------------------------------------------------------- /dmr/kl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/kl.c -------------------------------------------------------------------------------- /dmr/lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/lp.c -------------------------------------------------------------------------------- /dmr/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/mem.c -------------------------------------------------------------------------------- /dmr/partab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/partab.c -------------------------------------------------------------------------------- /dmr/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/pc.c -------------------------------------------------------------------------------- /dmr/rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/rf.c -------------------------------------------------------------------------------- /dmr/rk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/rk.c -------------------------------------------------------------------------------- /dmr/rp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/rp.c -------------------------------------------------------------------------------- /dmr/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/sys.c -------------------------------------------------------------------------------- /dmr/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/tc.c -------------------------------------------------------------------------------- /dmr/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/tm.c -------------------------------------------------------------------------------- /dmr/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/tty.c -------------------------------------------------------------------------------- /dmr/vs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/vs.c -------------------------------------------------------------------------------- /dmr/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/dmr/vt.c -------------------------------------------------------------------------------- /file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/file.h -------------------------------------------------------------------------------- /filsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/filsys.h -------------------------------------------------------------------------------- /ino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ino.h -------------------------------------------------------------------------------- /inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/inode.h -------------------------------------------------------------------------------- /ken/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/alloc.c -------------------------------------------------------------------------------- /ken/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/clock.c -------------------------------------------------------------------------------- /ken/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/fio.c -------------------------------------------------------------------------------- /ken/iget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/iget.c -------------------------------------------------------------------------------- /ken/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/main.c -------------------------------------------------------------------------------- /ken/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/malloc.c -------------------------------------------------------------------------------- /ken/nami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/nami.c -------------------------------------------------------------------------------- /ken/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/pipe.c -------------------------------------------------------------------------------- /ken/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/prf.c -------------------------------------------------------------------------------- /ken/rdwri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/rdwri.c -------------------------------------------------------------------------------- /ken/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sig.c -------------------------------------------------------------------------------- /ken/slp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/slp.c -------------------------------------------------------------------------------- /ken/subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/subr.c -------------------------------------------------------------------------------- /ken/sys1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sys1.c -------------------------------------------------------------------------------- /ken/sys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sys2.c -------------------------------------------------------------------------------- /ken/sys3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sys3.c -------------------------------------------------------------------------------- /ken/sys4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sys4.c -------------------------------------------------------------------------------- /ken/sysent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/sysent.c -------------------------------------------------------------------------------- /ken/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/text.c -------------------------------------------------------------------------------- /ken/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/ken/trap.c -------------------------------------------------------------------------------- /param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/param.h -------------------------------------------------------------------------------- /proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/proc.h -------------------------------------------------------------------------------- /reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/reg.h -------------------------------------------------------------------------------- /seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/seg.h -------------------------------------------------------------------------------- /systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/systm.h -------------------------------------------------------------------------------- /tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/tags -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/text.h -------------------------------------------------------------------------------- /tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/tty.h -------------------------------------------------------------------------------- /user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hephaex/unix-v6/HEAD/user.h --------------------------------------------------------------------------------