├── CNAME ├── Makefile ├── README.md ├── asm.c ├── asm.s ├── include ├── a64.hrl └── asm.hrl ├── index.html └── src ├── a64.app.src ├── a64.erl ├── opcodes.a64 ├── opcodes.fpu └── opcodes.hdr /CNAME: -------------------------------------------------------------------------------- 1 | a64.voxoz.com 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | mad com bun a64 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/README.md -------------------------------------------------------------------------------- /asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/asm.c -------------------------------------------------------------------------------- /asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/asm.s -------------------------------------------------------------------------------- /include/a64.hrl: -------------------------------------------------------------------------------- 1 | -define(VERSION,""). 2 | -------------------------------------------------------------------------------- /include/asm.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/include/asm.hrl -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/index.html -------------------------------------------------------------------------------- /src/a64.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/src/a64.app.src -------------------------------------------------------------------------------- /src/a64.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/src/a64.erl -------------------------------------------------------------------------------- /src/opcodes.a64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/src/opcodes.a64 -------------------------------------------------------------------------------- /src/opcodes.fpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/src/opcodes.fpu -------------------------------------------------------------------------------- /src/opcodes.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5HT/a64/HEAD/src/opcodes.hdr --------------------------------------------------------------------------------