├── .gitignore ├── GrLib.inc ├── GrLib ├── anim.asm ├── bmp.asm ├── circle.asm ├── colors.asm ├── dblbuf.asm ├── graphx.asm ├── image.asm ├── line.asm ├── poly.asm └── rect.asm ├── README.md ├── TODO.txt ├── Tests ├── tests.asm └── tic │ ├── bg.asm │ └── game.asm ├── UtilLib.inc ├── UtilLib ├── file.asm ├── keymap.inc ├── keys.asm ├── math.asm ├── mem.asm ├── mouse.asm ├── print.asm ├── sound.asm ├── string.asm ├── time.asm └── util.asm ├── asset ├── a.bmp ├── b.bmp ├── b1.bmp ├── b2.bmp ├── bat.bmp ├── bg.bmp ├── cat.bmp ├── sprite1.bmp └── x.bmp ├── main.asm └── tictac.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/.gitignore -------------------------------------------------------------------------------- /GrLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib.inc -------------------------------------------------------------------------------- /GrLib/anim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/anim.asm -------------------------------------------------------------------------------- /GrLib/bmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/bmp.asm -------------------------------------------------------------------------------- /GrLib/circle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/circle.asm -------------------------------------------------------------------------------- /GrLib/colors.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/colors.asm -------------------------------------------------------------------------------- /GrLib/dblbuf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/dblbuf.asm -------------------------------------------------------------------------------- /GrLib/graphx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/graphx.asm -------------------------------------------------------------------------------- /GrLib/image.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/image.asm -------------------------------------------------------------------------------- /GrLib/line.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/line.asm -------------------------------------------------------------------------------- /GrLib/poly.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/poly.asm -------------------------------------------------------------------------------- /GrLib/rect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/GrLib/rect.asm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/tests.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/Tests/tests.asm -------------------------------------------------------------------------------- /Tests/tic/bg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/Tests/tic/bg.asm -------------------------------------------------------------------------------- /Tests/tic/game.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/Tests/tic/game.asm -------------------------------------------------------------------------------- /UtilLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib.inc -------------------------------------------------------------------------------- /UtilLib/file.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/file.asm -------------------------------------------------------------------------------- /UtilLib/keymap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/keymap.inc -------------------------------------------------------------------------------- /UtilLib/keys.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/keys.asm -------------------------------------------------------------------------------- /UtilLib/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/math.asm -------------------------------------------------------------------------------- /UtilLib/mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/mem.asm -------------------------------------------------------------------------------- /UtilLib/mouse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/mouse.asm -------------------------------------------------------------------------------- /UtilLib/print.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/print.asm -------------------------------------------------------------------------------- /UtilLib/sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/sound.asm -------------------------------------------------------------------------------- /UtilLib/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/string.asm -------------------------------------------------------------------------------- /UtilLib/time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/time.asm -------------------------------------------------------------------------------- /UtilLib/util.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/UtilLib/util.asm -------------------------------------------------------------------------------- /asset/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/a.bmp -------------------------------------------------------------------------------- /asset/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/b.bmp -------------------------------------------------------------------------------- /asset/b1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/b1.bmp -------------------------------------------------------------------------------- /asset/b2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/b2.bmp -------------------------------------------------------------------------------- /asset/bat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/bat.bmp -------------------------------------------------------------------------------- /asset/bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/bg.bmp -------------------------------------------------------------------------------- /asset/cat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/cat.bmp -------------------------------------------------------------------------------- /asset/sprite1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/sprite1.bmp -------------------------------------------------------------------------------- /asset/x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/asset/x.bmp -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/main.asm -------------------------------------------------------------------------------- /tictac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oded8bit/Assembly-Lib/HEAD/tictac.asm --------------------------------------------------------------------------------