├── LICENSE ├── README.md ├── acme ├── Dict │ ├── Dict.go │ ├── go.mod │ └── go.sum ├── Watch │ ├── main.go │ ├── sig_generic.go │ └── sig_unix.go ├── acme.go ├── acme_p9p.go ├── acme_plan9.go ├── acmego │ ├── main.go │ └── read.go └── editinacme │ └── main.go ├── cmd ├── acme │ ├── acme.go │ ├── dat.h.go │ ├── fsys1.go │ ├── internal │ │ ├── addr │ │ │ └── addr.go │ │ ├── adraw │ │ │ ├── draw.go │ │ │ └── font.go │ │ ├── alog │ │ │ └── alog.go │ │ ├── bufs │ │ │ └── buf.go │ │ ├── complete │ │ │ └── complete.go │ │ ├── disk │ │ │ ├── buff.go │ │ │ └── disk.go │ │ ├── dump │ │ │ └── rows1.go │ │ ├── edit │ │ │ ├── ecmd.go │ │ │ ├── edit.go │ │ │ ├── edit.h.go │ │ │ └── elog.go │ │ ├── exec │ │ │ └── exec.go │ │ ├── file │ │ │ └── file.go │ │ ├── fileload │ │ │ ├── buff.go │ │ │ └── text1.go │ │ ├── regx │ │ │ └── regx.go │ │ ├── runes │ │ │ ├── runes.go │ │ │ └── util.go │ │ ├── ui │ │ │ ├── arg.go │ │ │ ├── cols1.go │ │ │ ├── look.go │ │ │ ├── look1.go │ │ │ ├── rows.go │ │ │ ├── scrl1.go │ │ │ ├── text.go │ │ │ ├── ui.go │ │ │ └── wind1.go │ │ ├── util │ │ │ ├── cols1.go │ │ │ └── util.go │ │ └── wind │ │ │ ├── cols.go │ │ │ ├── rows.go │ │ │ ├── scrl.go │ │ │ ├── text.go │ │ │ └── wind.go │ ├── logf.go │ ├── look1.go │ ├── post.go │ ├── util.go │ └── xfid.go ├── devdraw │ ├── devdraw.go │ ├── devdraw.h.go │ ├── drawclient.go │ ├── latin1.go │ ├── latinkbd.go │ ├── mklatinkbd.go │ ├── mouseswap.go │ ├── screen.go │ ├── srv.go │ └── winsize.go ├── internal │ └── base │ │ └── dat.h.go ├── sam │ ├── address.go │ ├── buff.go │ ├── cmd.go │ ├── conv │ ├── disk.go │ ├── error.go │ ├── errors.h.go │ ├── file.go │ ├── io.go │ ├── list.go │ ├── mesg.go │ ├── mesg.h.go │ ├── moveto.go │ ├── multi.go │ ├── parse.h.go │ ├── plumb.h.go │ ├── rasp.go │ ├── regexp.go │ ├── rules.txt │ ├── sam.go │ ├── sam.h.go │ ├── shell.go │ ├── string.go │ ├── sys.go │ ├── test.sh │ ├── testdata │ │ ├── 000.in │ │ ├── 000.txt │ │ ├── 001.txt │ │ ├── 002.txt │ │ ├── 003.txt │ │ ├── 004.txt │ │ ├── 005.txt │ │ ├── 006.txt │ │ ├── 007.txt │ │ ├── 008.txt │ │ ├── 009.txt │ │ ├── 011.txt │ │ ├── 012.txt │ │ ├── 013.txt │ │ ├── 014.txt │ │ ├── 015.txt │ │ └── gettysburg │ ├── unix.go │ ├── util.go │ └── xec.go └── samterm │ ├── conv │ ├── flayer.go │ ├── flayer.h.go │ ├── icons.go │ ├── io.go │ ├── main.go │ ├── menu.go │ ├── mesg.go │ ├── mesg.h.go │ ├── notunix.go │ ├── rasp.go │ ├── rules.txt │ ├── samterm.h.go │ ├── scroll.go │ ├── sys.go │ └── unix.go ├── draw ├── alloc.go ├── allocimagemix.go ├── arith.go ├── bench_test.go ├── bezier.go ├── border.go ├── buildfont.go ├── bytesperline.go ├── cloadimage.go ├── color.go ├── color_test.go ├── computil.go ├── creadimage.go ├── cursor.go ├── debug.go ├── defont.go ├── doc.go ├── draw.go ├── drawfcall │ ├── bit.go │ ├── msg.go │ ├── mux.go │ └── mux_plan9.go ├── drawrepl.go ├── egetrect.go ├── ellipse.go ├── emenuhit.go ├── event.go ├── fixbp ├── font.go ├── frame │ ├── frame.go │ ├── frbox.go │ ├── frdelete.go │ ├── frdraw.go │ ├── frinit.go │ ├── frinsert.go │ ├── frptofchar.go │ ├── frselect.go │ ├── frutil.go │ └── internal │ │ └── frametest │ │ └── main.go ├── freesubfont.go ├── getdefont.go ├── getrect.go ├── getsubfont.go ├── icossin.go ├── icossin2.go ├── init.go ├── init_test.go ├── keyboard.go ├── line.go ├── loadimage.go ├── memdraw │ ├── alloc.go │ ├── arc.go │ ├── arctest.go │ ├── cload.go │ ├── cmap.go │ ├── conv │ ├── cread.go │ ├── draw-stub.go │ ├── draw.go │ ├── drawtest.go │ ├── ellipse.go │ ├── fillpoly.go │ ├── hwdraw.go │ ├── iprint.go │ ├── lalloc.go │ ├── layerop.go │ ├── ldelete.go │ ├── ldraw.go │ ├── lhide.go │ ├── line.go │ ├── lline.go │ ├── lload.go │ ├── load.go │ ├── lorigin.go │ ├── lsetrefresh.go │ ├── ltofront.go │ ├── ltorear.go │ ├── lunload.go │ ├── memdraw.h.go │ ├── memlayer.h.go │ ├── mkcmap.go │ ├── openmemsubfont.go │ ├── poly.go │ ├── read.go │ ├── rules.txt │ ├── string.go │ ├── subfont.go │ ├── unload.go │ └── write.go ├── menuhit.go ├── mkfont.go ├── mouse.go ├── openfont.go ├── pix.go ├── poly.go ├── readimage.go ├── readsubfont.go ├── rectclip.go ├── replclipr.go ├── rgb.go ├── scroll.go ├── snarf.go ├── string.go ├── stringsubfont.go ├── stringwidth.go ├── subfont.go ├── subfontcache.go ├── subfontname.go ├── unloadimage.go ├── window.go ├── writeimage.go ├── writesubfont.go └── wsys.go ├── games ├── 4s │ ├── 4s.go │ ├── data.go │ └── xs.go └── spacewar │ ├── code.go │ ├── pdp1 │ └── pdp1.go │ └── spacewar.go ├── go.mod ├── go.sum ├── p9trace ├── deps.go ├── go.mod ├── go.sum ├── reorder.go ├── super.go ├── super2.go └── trace.go ├── plan9 ├── bit.go ├── client │ ├── cat │ │ └── cat.go │ ├── conn.go │ ├── conn_plan9.go │ ├── dial.go │ ├── dial_plan9.go │ ├── fid.go │ ├── fid_p9p.go │ ├── fid_plan9.go │ ├── fsys.go │ └── fsys_plan9.go ├── const.go ├── dir.go ├── fcall.go └── srv9p │ ├── example │ ├── netshell │ │ └── main.go │ ├── ramfs │ │ └── main.go │ ├── rot13fs │ │ └── main.go │ └── roundtrip │ │ └── main.go │ ├── fid.go │ ├── file.go │ ├── help.go │ ├── post.go │ ├── refmap.go │ ├── req.go │ ├── srv.go │ ├── srv_test.go │ ├── testdata │ ├── basic.txt │ ├── flush.txt │ ├── pipe.txt │ └── ramfs.txt │ └── uid.go └── plumb ├── plumb.go ├── plumb_p9p.go ├── plumb_plan9.go └── plumb_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/README.md -------------------------------------------------------------------------------- /acme/Dict/Dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Dict/Dict.go -------------------------------------------------------------------------------- /acme/Dict/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Dict/go.mod -------------------------------------------------------------------------------- /acme/Dict/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Dict/go.sum -------------------------------------------------------------------------------- /acme/Watch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Watch/main.go -------------------------------------------------------------------------------- /acme/Watch/sig_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Watch/sig_generic.go -------------------------------------------------------------------------------- /acme/Watch/sig_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/Watch/sig_unix.go -------------------------------------------------------------------------------- /acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/acme.go -------------------------------------------------------------------------------- /acme/acme_p9p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/acme_p9p.go -------------------------------------------------------------------------------- /acme/acme_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/acme_plan9.go -------------------------------------------------------------------------------- /acme/acmego/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/acmego/main.go -------------------------------------------------------------------------------- /acme/acmego/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/acmego/read.go -------------------------------------------------------------------------------- /acme/editinacme/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/acme/editinacme/main.go -------------------------------------------------------------------------------- /cmd/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/acme.go -------------------------------------------------------------------------------- /cmd/acme/dat.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/dat.h.go -------------------------------------------------------------------------------- /cmd/acme/fsys1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/fsys1.go -------------------------------------------------------------------------------- /cmd/acme/internal/addr/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/addr/addr.go -------------------------------------------------------------------------------- /cmd/acme/internal/adraw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/adraw/draw.go -------------------------------------------------------------------------------- /cmd/acme/internal/adraw/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/adraw/font.go -------------------------------------------------------------------------------- /cmd/acme/internal/alog/alog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/alog/alog.go -------------------------------------------------------------------------------- /cmd/acme/internal/bufs/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/bufs/buf.go -------------------------------------------------------------------------------- /cmd/acme/internal/complete/complete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/complete/complete.go -------------------------------------------------------------------------------- /cmd/acme/internal/disk/buff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/disk/buff.go -------------------------------------------------------------------------------- /cmd/acme/internal/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/disk/disk.go -------------------------------------------------------------------------------- /cmd/acme/internal/dump/rows1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/dump/rows1.go -------------------------------------------------------------------------------- /cmd/acme/internal/edit/ecmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/edit/ecmd.go -------------------------------------------------------------------------------- /cmd/acme/internal/edit/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/edit/edit.go -------------------------------------------------------------------------------- /cmd/acme/internal/edit/edit.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/edit/edit.h.go -------------------------------------------------------------------------------- /cmd/acme/internal/edit/elog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/edit/elog.go -------------------------------------------------------------------------------- /cmd/acme/internal/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/exec/exec.go -------------------------------------------------------------------------------- /cmd/acme/internal/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/file/file.go -------------------------------------------------------------------------------- /cmd/acme/internal/fileload/buff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/fileload/buff.go -------------------------------------------------------------------------------- /cmd/acme/internal/fileload/text1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/fileload/text1.go -------------------------------------------------------------------------------- /cmd/acme/internal/regx/regx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/regx/regx.go -------------------------------------------------------------------------------- /cmd/acme/internal/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/runes/runes.go -------------------------------------------------------------------------------- /cmd/acme/internal/runes/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/runes/util.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/arg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/arg.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/cols1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/cols1.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/look.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/look.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/look1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/look1.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/rows.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/scrl1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/scrl1.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/text.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/ui.go -------------------------------------------------------------------------------- /cmd/acme/internal/ui/wind1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/ui/wind1.go -------------------------------------------------------------------------------- /cmd/acme/internal/util/cols1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/util/cols1.go -------------------------------------------------------------------------------- /cmd/acme/internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/util/util.go -------------------------------------------------------------------------------- /cmd/acme/internal/wind/cols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/wind/cols.go -------------------------------------------------------------------------------- /cmd/acme/internal/wind/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/wind/rows.go -------------------------------------------------------------------------------- /cmd/acme/internal/wind/scrl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/wind/scrl.go -------------------------------------------------------------------------------- /cmd/acme/internal/wind/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/wind/text.go -------------------------------------------------------------------------------- /cmd/acme/internal/wind/wind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/internal/wind/wind.go -------------------------------------------------------------------------------- /cmd/acme/logf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/logf.go -------------------------------------------------------------------------------- /cmd/acme/look1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/look1.go -------------------------------------------------------------------------------- /cmd/acme/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/post.go -------------------------------------------------------------------------------- /cmd/acme/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/util.go -------------------------------------------------------------------------------- /cmd/acme/xfid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/acme/xfid.go -------------------------------------------------------------------------------- /cmd/devdraw/devdraw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/devdraw.go -------------------------------------------------------------------------------- /cmd/devdraw/devdraw.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/devdraw.h.go -------------------------------------------------------------------------------- /cmd/devdraw/drawclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/drawclient.go -------------------------------------------------------------------------------- /cmd/devdraw/latin1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/latin1.go -------------------------------------------------------------------------------- /cmd/devdraw/latinkbd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/latinkbd.go -------------------------------------------------------------------------------- /cmd/devdraw/mklatinkbd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/mklatinkbd.go -------------------------------------------------------------------------------- /cmd/devdraw/mouseswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/mouseswap.go -------------------------------------------------------------------------------- /cmd/devdraw/screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/screen.go -------------------------------------------------------------------------------- /cmd/devdraw/srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/srv.go -------------------------------------------------------------------------------- /cmd/devdraw/winsize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/devdraw/winsize.go -------------------------------------------------------------------------------- /cmd/internal/base/dat.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/internal/base/dat.h.go -------------------------------------------------------------------------------- /cmd/sam/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/address.go -------------------------------------------------------------------------------- /cmd/sam/buff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/buff.go -------------------------------------------------------------------------------- /cmd/sam/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/cmd.go -------------------------------------------------------------------------------- /cmd/sam/conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/conv -------------------------------------------------------------------------------- /cmd/sam/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/disk.go -------------------------------------------------------------------------------- /cmd/sam/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/error.go -------------------------------------------------------------------------------- /cmd/sam/errors.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/errors.h.go -------------------------------------------------------------------------------- /cmd/sam/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/file.go -------------------------------------------------------------------------------- /cmd/sam/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/io.go -------------------------------------------------------------------------------- /cmd/sam/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/list.go -------------------------------------------------------------------------------- /cmd/sam/mesg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/mesg.go -------------------------------------------------------------------------------- /cmd/sam/mesg.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/mesg.h.go -------------------------------------------------------------------------------- /cmd/sam/moveto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/moveto.go -------------------------------------------------------------------------------- /cmd/sam/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/multi.go -------------------------------------------------------------------------------- /cmd/sam/parse.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/parse.h.go -------------------------------------------------------------------------------- /cmd/sam/plumb.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/plumb.h.go -------------------------------------------------------------------------------- /cmd/sam/rasp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/rasp.go -------------------------------------------------------------------------------- /cmd/sam/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/regexp.go -------------------------------------------------------------------------------- /cmd/sam/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/rules.txt -------------------------------------------------------------------------------- /cmd/sam/sam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/sam.go -------------------------------------------------------------------------------- /cmd/sam/sam.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/sam.h.go -------------------------------------------------------------------------------- /cmd/sam/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/shell.go -------------------------------------------------------------------------------- /cmd/sam/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/string.go -------------------------------------------------------------------------------- /cmd/sam/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/sys.go -------------------------------------------------------------------------------- /cmd/sam/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/test.sh -------------------------------------------------------------------------------- /cmd/sam/testdata/000.in: -------------------------------------------------------------------------------- 1 | B testdata/gettysburg 2 | 1 3 | -------------------------------------------------------------------------------- /cmd/sam/testdata/000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/000.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/001.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/002.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/003.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/004.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/005.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/006.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/007.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/008.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/009.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/011.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/012.txt: -------------------------------------------------------------------------------- 1 | B 2 | -- out -- 3 | -. 4 | ?blank expected 5 | -------------------------------------------------------------------------------- /cmd/sam/testdata/013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/013.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/014.txt: -------------------------------------------------------------------------------- 1 | |sort 2 | -- out -- 3 | -. 4 | ! 5 | -------------------------------------------------------------------------------- /cmd/sam/testdata/015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/015.txt -------------------------------------------------------------------------------- /cmd/sam/testdata/gettysburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/testdata/gettysburg -------------------------------------------------------------------------------- /cmd/sam/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/unix.go -------------------------------------------------------------------------------- /cmd/sam/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/util.go -------------------------------------------------------------------------------- /cmd/sam/xec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/sam/xec.go -------------------------------------------------------------------------------- /cmd/samterm/conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/conv -------------------------------------------------------------------------------- /cmd/samterm/flayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/flayer.go -------------------------------------------------------------------------------- /cmd/samterm/flayer.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/flayer.h.go -------------------------------------------------------------------------------- /cmd/samterm/icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/icons.go -------------------------------------------------------------------------------- /cmd/samterm/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/io.go -------------------------------------------------------------------------------- /cmd/samterm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/main.go -------------------------------------------------------------------------------- /cmd/samterm/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/menu.go -------------------------------------------------------------------------------- /cmd/samterm/mesg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/mesg.go -------------------------------------------------------------------------------- /cmd/samterm/mesg.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/mesg.h.go -------------------------------------------------------------------------------- /cmd/samterm/notunix.go: -------------------------------------------------------------------------------- 1 | // +build !unix 2 | 3 | package main 4 | 5 | func extstart() {} 6 | -------------------------------------------------------------------------------- /cmd/samterm/rasp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/rasp.go -------------------------------------------------------------------------------- /cmd/samterm/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/rules.txt -------------------------------------------------------------------------------- /cmd/samterm/samterm.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/samterm.h.go -------------------------------------------------------------------------------- /cmd/samterm/scroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/scroll.go -------------------------------------------------------------------------------- /cmd/samterm/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/sys.go -------------------------------------------------------------------------------- /cmd/samterm/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/cmd/samterm/unix.go -------------------------------------------------------------------------------- /draw/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/alloc.go -------------------------------------------------------------------------------- /draw/allocimagemix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/allocimagemix.go -------------------------------------------------------------------------------- /draw/arith.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/arith.go -------------------------------------------------------------------------------- /draw/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/bench_test.go -------------------------------------------------------------------------------- /draw/bezier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/bezier.go -------------------------------------------------------------------------------- /draw/border.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/border.go -------------------------------------------------------------------------------- /draw/buildfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/buildfont.go -------------------------------------------------------------------------------- /draw/bytesperline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/bytesperline.go -------------------------------------------------------------------------------- /draw/cloadimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/cloadimage.go -------------------------------------------------------------------------------- /draw/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/color.go -------------------------------------------------------------------------------- /draw/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/color_test.go -------------------------------------------------------------------------------- /draw/computil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/computil.go -------------------------------------------------------------------------------- /draw/creadimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/creadimage.go -------------------------------------------------------------------------------- /draw/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/cursor.go -------------------------------------------------------------------------------- /draw/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/debug.go -------------------------------------------------------------------------------- /draw/defont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/defont.go -------------------------------------------------------------------------------- /draw/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/doc.go -------------------------------------------------------------------------------- /draw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/draw.go -------------------------------------------------------------------------------- /draw/drawfcall/bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/drawfcall/bit.go -------------------------------------------------------------------------------- /draw/drawfcall/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/drawfcall/msg.go -------------------------------------------------------------------------------- /draw/drawfcall/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/drawfcall/mux.go -------------------------------------------------------------------------------- /draw/drawfcall/mux_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/drawfcall/mux_plan9.go -------------------------------------------------------------------------------- /draw/drawrepl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/drawrepl.go -------------------------------------------------------------------------------- /draw/egetrect.go: -------------------------------------------------------------------------------- 1 | package draw 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /draw/ellipse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/ellipse.go -------------------------------------------------------------------------------- /draw/emenuhit.go: -------------------------------------------------------------------------------- 1 | package draw 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /draw/event.go: -------------------------------------------------------------------------------- 1 | package draw 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /draw/fixbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/fixbp -------------------------------------------------------------------------------- /draw/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/font.go -------------------------------------------------------------------------------- /draw/frame/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frame.go -------------------------------------------------------------------------------- /draw/frame/frbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frbox.go -------------------------------------------------------------------------------- /draw/frame/frdelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frdelete.go -------------------------------------------------------------------------------- /draw/frame/frdraw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frdraw.go -------------------------------------------------------------------------------- /draw/frame/frinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frinit.go -------------------------------------------------------------------------------- /draw/frame/frinsert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frinsert.go -------------------------------------------------------------------------------- /draw/frame/frptofchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frptofchar.go -------------------------------------------------------------------------------- /draw/frame/frselect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frselect.go -------------------------------------------------------------------------------- /draw/frame/frutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/frutil.go -------------------------------------------------------------------------------- /draw/frame/internal/frametest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/frame/internal/frametest/main.go -------------------------------------------------------------------------------- /draw/freesubfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/freesubfont.go -------------------------------------------------------------------------------- /draw/getdefont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/getdefont.go -------------------------------------------------------------------------------- /draw/getrect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/getrect.go -------------------------------------------------------------------------------- /draw/getsubfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/getsubfont.go -------------------------------------------------------------------------------- /draw/icossin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/icossin.go -------------------------------------------------------------------------------- /draw/icossin2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/icossin2.go -------------------------------------------------------------------------------- /draw/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/init.go -------------------------------------------------------------------------------- /draw/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/init_test.go -------------------------------------------------------------------------------- /draw/keyboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/keyboard.go -------------------------------------------------------------------------------- /draw/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/line.go -------------------------------------------------------------------------------- /draw/loadimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/loadimage.go -------------------------------------------------------------------------------- /draw/memdraw/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/alloc.go -------------------------------------------------------------------------------- /draw/memdraw/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/arc.go -------------------------------------------------------------------------------- /draw/memdraw/arctest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/arctest.go -------------------------------------------------------------------------------- /draw/memdraw/cload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/cload.go -------------------------------------------------------------------------------- /draw/memdraw/cmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/cmap.go -------------------------------------------------------------------------------- /draw/memdraw/conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/conv -------------------------------------------------------------------------------- /draw/memdraw/cread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/cread.go -------------------------------------------------------------------------------- /draw/memdraw/draw-stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/draw-stub.go -------------------------------------------------------------------------------- /draw/memdraw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/draw.go -------------------------------------------------------------------------------- /draw/memdraw/drawtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/drawtest.go -------------------------------------------------------------------------------- /draw/memdraw/ellipse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/ellipse.go -------------------------------------------------------------------------------- /draw/memdraw/fillpoly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/fillpoly.go -------------------------------------------------------------------------------- /draw/memdraw/hwdraw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/hwdraw.go -------------------------------------------------------------------------------- /draw/memdraw/iprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/iprint.go -------------------------------------------------------------------------------- /draw/memdraw/lalloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lalloc.go -------------------------------------------------------------------------------- /draw/memdraw/layerop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/layerop.go -------------------------------------------------------------------------------- /draw/memdraw/ldelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/ldelete.go -------------------------------------------------------------------------------- /draw/memdraw/ldraw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/ldraw.go -------------------------------------------------------------------------------- /draw/memdraw/lhide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lhide.go -------------------------------------------------------------------------------- /draw/memdraw/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/line.go -------------------------------------------------------------------------------- /draw/memdraw/lline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lline.go -------------------------------------------------------------------------------- /draw/memdraw/lload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lload.go -------------------------------------------------------------------------------- /draw/memdraw/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/load.go -------------------------------------------------------------------------------- /draw/memdraw/lorigin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lorigin.go -------------------------------------------------------------------------------- /draw/memdraw/lsetrefresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lsetrefresh.go -------------------------------------------------------------------------------- /draw/memdraw/ltofront.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/ltofront.go -------------------------------------------------------------------------------- /draw/memdraw/ltorear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/ltorear.go -------------------------------------------------------------------------------- /draw/memdraw/lunload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/lunload.go -------------------------------------------------------------------------------- /draw/memdraw/memdraw.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/memdraw.h.go -------------------------------------------------------------------------------- /draw/memdraw/memlayer.h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/memlayer.h.go -------------------------------------------------------------------------------- /draw/memdraw/mkcmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/mkcmap.go -------------------------------------------------------------------------------- /draw/memdraw/openmemsubfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/openmemsubfont.go -------------------------------------------------------------------------------- /draw/memdraw/poly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/poly.go -------------------------------------------------------------------------------- /draw/memdraw/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/read.go -------------------------------------------------------------------------------- /draw/memdraw/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/rules.txt -------------------------------------------------------------------------------- /draw/memdraw/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/string.go -------------------------------------------------------------------------------- /draw/memdraw/subfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/subfont.go -------------------------------------------------------------------------------- /draw/memdraw/unload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/unload.go -------------------------------------------------------------------------------- /draw/memdraw/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/memdraw/write.go -------------------------------------------------------------------------------- /draw/menuhit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/menuhit.go -------------------------------------------------------------------------------- /draw/mkfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/mkfont.go -------------------------------------------------------------------------------- /draw/mouse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/mouse.go -------------------------------------------------------------------------------- /draw/openfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/openfont.go -------------------------------------------------------------------------------- /draw/pix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/pix.go -------------------------------------------------------------------------------- /draw/poly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/poly.go -------------------------------------------------------------------------------- /draw/readimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/readimage.go -------------------------------------------------------------------------------- /draw/readsubfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/readsubfont.go -------------------------------------------------------------------------------- /draw/rectclip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/rectclip.go -------------------------------------------------------------------------------- /draw/replclipr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/replclipr.go -------------------------------------------------------------------------------- /draw/rgb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/rgb.go -------------------------------------------------------------------------------- /draw/scroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/scroll.go -------------------------------------------------------------------------------- /draw/snarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/snarf.go -------------------------------------------------------------------------------- /draw/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/string.go -------------------------------------------------------------------------------- /draw/stringsubfont.go: -------------------------------------------------------------------------------- 1 | package draw 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /draw/stringwidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/stringwidth.go -------------------------------------------------------------------------------- /draw/subfont.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/subfont.go -------------------------------------------------------------------------------- /draw/subfontcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/subfontcache.go -------------------------------------------------------------------------------- /draw/subfontname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/subfontname.go -------------------------------------------------------------------------------- /draw/unloadimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/unloadimage.go -------------------------------------------------------------------------------- /draw/window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/window.go -------------------------------------------------------------------------------- /draw/writeimage.go: -------------------------------------------------------------------------------- 1 | package draw 2 | -------------------------------------------------------------------------------- /draw/writesubfont.go: -------------------------------------------------------------------------------- 1 | package draw 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /draw/wsys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/draw/wsys.go -------------------------------------------------------------------------------- /games/4s/4s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/4s/4s.go -------------------------------------------------------------------------------- /games/4s/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/4s/data.go -------------------------------------------------------------------------------- /games/4s/xs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/4s/xs.go -------------------------------------------------------------------------------- /games/spacewar/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/spacewar/code.go -------------------------------------------------------------------------------- /games/spacewar/pdp1/pdp1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/spacewar/pdp1/pdp1.go -------------------------------------------------------------------------------- /games/spacewar/spacewar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/games/spacewar/spacewar.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/go.sum -------------------------------------------------------------------------------- /p9trace/deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/deps.go -------------------------------------------------------------------------------- /p9trace/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/go.mod -------------------------------------------------------------------------------- /p9trace/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/go.sum -------------------------------------------------------------------------------- /p9trace/reorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/reorder.go -------------------------------------------------------------------------------- /p9trace/super.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/super.go -------------------------------------------------------------------------------- /p9trace/super2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/super2.go -------------------------------------------------------------------------------- /p9trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/p9trace/trace.go -------------------------------------------------------------------------------- /plan9/bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/bit.go -------------------------------------------------------------------------------- /plan9/client/cat/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/cat/cat.go -------------------------------------------------------------------------------- /plan9/client/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/conn.go -------------------------------------------------------------------------------- /plan9/client/conn_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/conn_plan9.go -------------------------------------------------------------------------------- /plan9/client/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/dial.go -------------------------------------------------------------------------------- /plan9/client/dial_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/dial_plan9.go -------------------------------------------------------------------------------- /plan9/client/fid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/fid.go -------------------------------------------------------------------------------- /plan9/client/fid_p9p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/fid_p9p.go -------------------------------------------------------------------------------- /plan9/client/fid_plan9.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | import "os" 4 | 5 | type Fid struct { 6 | *os.File 7 | } 8 | -------------------------------------------------------------------------------- /plan9/client/fsys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/fsys.go -------------------------------------------------------------------------------- /plan9/client/fsys_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/client/fsys_plan9.go -------------------------------------------------------------------------------- /plan9/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/const.go -------------------------------------------------------------------------------- /plan9/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/dir.go -------------------------------------------------------------------------------- /plan9/fcall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/fcall.go -------------------------------------------------------------------------------- /plan9/srv9p/example/netshell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/example/netshell/main.go -------------------------------------------------------------------------------- /plan9/srv9p/example/ramfs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/example/ramfs/main.go -------------------------------------------------------------------------------- /plan9/srv9p/example/rot13fs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/example/rot13fs/main.go -------------------------------------------------------------------------------- /plan9/srv9p/example/roundtrip/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/example/roundtrip/main.go -------------------------------------------------------------------------------- /plan9/srv9p/fid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/fid.go -------------------------------------------------------------------------------- /plan9/srv9p/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/file.go -------------------------------------------------------------------------------- /plan9/srv9p/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/help.go -------------------------------------------------------------------------------- /plan9/srv9p/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/post.go -------------------------------------------------------------------------------- /plan9/srv9p/refmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/refmap.go -------------------------------------------------------------------------------- /plan9/srv9p/req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/req.go -------------------------------------------------------------------------------- /plan9/srv9p/srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/srv.go -------------------------------------------------------------------------------- /plan9/srv9p/srv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/srv_test.go -------------------------------------------------------------------------------- /plan9/srv9p/testdata/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/testdata/basic.txt -------------------------------------------------------------------------------- /plan9/srv9p/testdata/flush.txt: -------------------------------------------------------------------------------- 1 | # TODO test Tflush of actual blocked request 2 | -------------------------------------------------------------------------------- /plan9/srv9p/testdata/pipe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/testdata/pipe.txt -------------------------------------------------------------------------------- /plan9/srv9p/testdata/ramfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/testdata/ramfs.txt -------------------------------------------------------------------------------- /plan9/srv9p/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plan9/srv9p/uid.go -------------------------------------------------------------------------------- /plumb/plumb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plumb/plumb.go -------------------------------------------------------------------------------- /plumb/plumb_p9p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plumb/plumb_p9p.go -------------------------------------------------------------------------------- /plumb/plumb_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plumb/plumb_plan9.go -------------------------------------------------------------------------------- /plumb/plumb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9fans/go/HEAD/plumb/plumb_test.go --------------------------------------------------------------------------------