├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── asm.peg ├── main.c ├── minias.h ├── parse.c ├── test ├── execute │ ├── 0001-hello.s │ ├── 0002-setsym.s │ └── 0003-weaksym.s └── test.sh └── util.c /.gitignore: -------------------------------------------------------------------------------- 1 | .redo 2 | minias 3 | *.o 4 | *.inc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/README.md -------------------------------------------------------------------------------- /asm.peg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/asm.peg -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/main.c -------------------------------------------------------------------------------- /minias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/minias.h -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/parse.c -------------------------------------------------------------------------------- /test/execute/0001-hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/test/execute/0001-hello.s -------------------------------------------------------------------------------- /test/execute/0002-setsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/test/execute/0002-setsym.s -------------------------------------------------------------------------------- /test/execute/0003-weaksym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/test/execute/0003-weaksym.s -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/test/test.sh -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchambers/minias/HEAD/util.c --------------------------------------------------------------------------------