├── .editorconfig ├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── preview.gif ├── dino.asm └── makefile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/README.md -------------------------------------------------------------------------------- /assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/assets/preview.gif -------------------------------------------------------------------------------- /dino.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/dino.asm -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franeklubi/dino/HEAD/makefile --------------------------------------------------------------------------------