├── .gitignore ├── Makefile ├── README.md ├── SECURITY.md ├── atfuncs ├── Makefile ├── atfuncs.c ├── atfuncs.h ├── date.c ├── product.c ├── system.c └── weekday.c ├── binutils.sh ├── coff.h ├── coffsyrup.c ├── dist ├── Makefile ├── control └── lotus123r3.spec ├── draw.c ├── draw.h ├── extract.sh ├── filemap.c ├── filemap.h ├── filename.c ├── forceplt.s ├── globalize.lst ├── graphics.c ├── graphics.h ├── gzip.sh ├── import.c ├── keymap ├── Makefile ├── keymap.bt ├── keymap.c ├── keymap.h └── lmbcs.h ├── kfun.h ├── l123set.cf ├── localize.lst ├── lotdefs.h ├── loterrs.h ├── lotfuncs.h ├── lottypes.h ├── main.c ├── patch.c ├── redefine.lst ├── res ├── Makefile ├── README.md ├── hlp.c ├── l123txt3.txt └── resgen.c ├── src ├── display.c ├── invalid.c └── showme.c ├── symbols.lst ├── test ├── macutil.sh ├── runtests.sh ├── smpfiles.txt ├── testcases │ └── bug103.wk3 └── testutil.sh ├── ttydraw ├── COPYING ├── Makefile ├── attr.c ├── box.c ├── cacastub.h ├── canvas.c ├── charset.c ├── codec.h ├── config.h ├── conic.c ├── drawtest.c ├── frame.c ├── line.c ├── string.c ├── transfrm.c ├── triangle.c ├── ttydraw.h └── ttyint.h ├── undefine.lst ├── unixterm.h ├── unixtypes.h └── wrappers.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/SECURITY.md -------------------------------------------------------------------------------- /atfuncs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/Makefile -------------------------------------------------------------------------------- /atfuncs/atfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/atfuncs.c -------------------------------------------------------------------------------- /atfuncs/atfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/atfuncs.h -------------------------------------------------------------------------------- /atfuncs/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/date.c -------------------------------------------------------------------------------- /atfuncs/product.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/product.c -------------------------------------------------------------------------------- /atfuncs/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/system.c -------------------------------------------------------------------------------- /atfuncs/weekday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/atfuncs/weekday.c -------------------------------------------------------------------------------- /binutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/binutils.sh -------------------------------------------------------------------------------- /coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/coff.h -------------------------------------------------------------------------------- /coffsyrup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/coffsyrup.c -------------------------------------------------------------------------------- /dist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/dist/Makefile -------------------------------------------------------------------------------- /dist/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/dist/control -------------------------------------------------------------------------------- /dist/lotus123r3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/dist/lotus123r3.spec -------------------------------------------------------------------------------- /draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/draw.c -------------------------------------------------------------------------------- /draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/draw.h -------------------------------------------------------------------------------- /extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/extract.sh -------------------------------------------------------------------------------- /filemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/filemap.c -------------------------------------------------------------------------------- /filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/filemap.h -------------------------------------------------------------------------------- /filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/filename.c -------------------------------------------------------------------------------- /forceplt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/forceplt.s -------------------------------------------------------------------------------- /globalize.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/globalize.lst -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/graphics.h -------------------------------------------------------------------------------- /gzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/gzip.sh -------------------------------------------------------------------------------- /import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/import.c -------------------------------------------------------------------------------- /keymap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/keymap/Makefile -------------------------------------------------------------------------------- /keymap/keymap.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/keymap/keymap.bt -------------------------------------------------------------------------------- /keymap/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/keymap/keymap.c -------------------------------------------------------------------------------- /keymap/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/keymap/keymap.h -------------------------------------------------------------------------------- /keymap/lmbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/keymap/lmbcs.h -------------------------------------------------------------------------------- /kfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/kfun.h -------------------------------------------------------------------------------- /l123set.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/l123set.cf -------------------------------------------------------------------------------- /localize.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/localize.lst -------------------------------------------------------------------------------- /lotdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/lotdefs.h -------------------------------------------------------------------------------- /loterrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/loterrs.h -------------------------------------------------------------------------------- /lotfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/lotfuncs.h -------------------------------------------------------------------------------- /lottypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/lottypes.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/main.c -------------------------------------------------------------------------------- /patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/patch.c -------------------------------------------------------------------------------- /redefine.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/redefine.lst -------------------------------------------------------------------------------- /res/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/res/Makefile -------------------------------------------------------------------------------- /res/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/res/README.md -------------------------------------------------------------------------------- /res/hlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/res/hlp.c -------------------------------------------------------------------------------- /res/l123txt3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/res/l123txt3.txt -------------------------------------------------------------------------------- /res/resgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/res/resgen.c -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/src/display.c -------------------------------------------------------------------------------- /src/invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/src/invalid.c -------------------------------------------------------------------------------- /src/showme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/src/showme.c -------------------------------------------------------------------------------- /symbols.lst: -------------------------------------------------------------------------------- 1 | --add-symbol fmt_cpy=.text:0x6e530,function,local 2 | -------------------------------------------------------------------------------- /test/macutil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/test/macutil.sh -------------------------------------------------------------------------------- /test/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/test/runtests.sh -------------------------------------------------------------------------------- /test/smpfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/test/smpfiles.txt -------------------------------------------------------------------------------- /test/testcases/bug103.wk3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/test/testcases/bug103.wk3 -------------------------------------------------------------------------------- /test/testutil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/test/testutil.sh -------------------------------------------------------------------------------- /ttydraw/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/COPYING -------------------------------------------------------------------------------- /ttydraw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/Makefile -------------------------------------------------------------------------------- /ttydraw/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/attr.c -------------------------------------------------------------------------------- /ttydraw/box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/box.c -------------------------------------------------------------------------------- /ttydraw/cacastub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/cacastub.h -------------------------------------------------------------------------------- /ttydraw/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/canvas.c -------------------------------------------------------------------------------- /ttydraw/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/charset.c -------------------------------------------------------------------------------- /ttydraw/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/codec.h -------------------------------------------------------------------------------- /ttydraw/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/config.h -------------------------------------------------------------------------------- /ttydraw/conic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/conic.c -------------------------------------------------------------------------------- /ttydraw/drawtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/drawtest.c -------------------------------------------------------------------------------- /ttydraw/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/frame.c -------------------------------------------------------------------------------- /ttydraw/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/line.c -------------------------------------------------------------------------------- /ttydraw/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/string.c -------------------------------------------------------------------------------- /ttydraw/transfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/transfrm.c -------------------------------------------------------------------------------- /ttydraw/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/triangle.c -------------------------------------------------------------------------------- /ttydraw/ttydraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/ttydraw.h -------------------------------------------------------------------------------- /ttydraw/ttyint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/ttydraw/ttyint.h -------------------------------------------------------------------------------- /undefine.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/undefine.lst -------------------------------------------------------------------------------- /unixterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/unixterm.h -------------------------------------------------------------------------------- /unixtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/unixtypes.h -------------------------------------------------------------------------------- /wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taviso/123elf/HEAD/wrappers.c --------------------------------------------------------------------------------