├── .gitignore ├── 2048.obj ├── ChangeLog.md ├── LC3.cabal ├── LICENSE ├── README.md ├── Setup.hs ├── default.nix ├── pkg.nix ├── rogue.obj ├── shell.nix └── src └── Main.hs /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | *.hi 4 | dist/ 5 | result 6 | TAGS 7 | ctags 8 | -------------------------------------------------------------------------------- /2048.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/2048.obj -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LC3.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/LC3.cabal -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/default.nix -------------------------------------------------------------------------------- /pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/pkg.nix -------------------------------------------------------------------------------- /rogue.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/rogue.obj -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | (import ./default.nix {}).env 2 | -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmjio/LC3/HEAD/src/Main.hs --------------------------------------------------------------------------------