├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── futhark.pkg ├── lib └── github.com │ └── diku-dk │ └── lys │ ├── Inconsolata-Regular.ttf │ ├── build-inputs.nix │ ├── common.mk │ ├── console │ ├── liblys.c │ ├── liblys.h │ └── main.c │ ├── gen_printf.py │ ├── genlys.fut │ ├── lys.fut │ ├── sdl │ ├── liblys.c │ ├── liblys.h │ └── main.c │ ├── setup_flags.mk │ ├── shared.c │ └── shared.h ├── lys.fut ├── lys.png └── shell.nix /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include lib/github.com/diku-dk/lys/common.mk 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/README.md -------------------------------------------------------------------------------- /futhark.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/futhark.pkg -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/build-inputs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/build-inputs.nix -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/common.mk -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/console/liblys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/console/liblys.c -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/console/liblys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/console/liblys.h -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/console/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/console/main.c -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/gen_printf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/gen_printf.py -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/genlys.fut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/genlys.fut -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/lys.fut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/lys.fut -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/sdl/liblys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/sdl/liblys.c -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/sdl/liblys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/sdl/liblys.h -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/sdl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/sdl/main.c -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/setup_flags.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/setup_flags.mk -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/shared.c -------------------------------------------------------------------------------- /lib/github.com/diku-dk/lys/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lib/github.com/diku-dk/lys/shared.h -------------------------------------------------------------------------------- /lys.fut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lys.fut -------------------------------------------------------------------------------- /lys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/lys.png -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diku-dk/lys/HEAD/shell.nix --------------------------------------------------------------------------------