├── .editorconfig ├── .gitignore ├── 2048.asm ├── LICENSE ├── Makefile └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpendleton/lc3-2048/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.obj 2 | *.sym 3 | -------------------------------------------------------------------------------- /2048.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpendleton/lc3-2048/HEAD/2048.asm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpendleton/lc3-2048/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpendleton/lc3-2048/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpendleton/lc3-2048/HEAD/README.md --------------------------------------------------------------------------------