├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ └── build.yml ├── .vscode └── tasks.json ├── 32x.h ├── LICENSE ├── Makefile ├── README.md ├── assets └── platformer │ ├── Collision_Tiles.png │ ├── pla_VGA.bmp │ ├── pla_VGA.h │ ├── pla_VGA.tsx │ ├── pla_VGA_palette.h │ ├── platformer.h │ └── platformer.tmx ├── crt0.s ├── draw.c ├── draw.h ├── draw_inc.h ├── dsprite.c ├── dtiles.c ├── extensions ├── tiled-to-yatssd-tilemap.js └── tiled-to-yatssd-tileset.js ├── fixed.h ├── font.c ├── hw_32x.c ├── hw_32x.h ├── main.c ├── mars_ringbuf.h ├── sh2_fixed.s ├── sound.c ├── sound.h ├── src-md ├── Makefile ├── cd.s ├── crt0.s ├── kos.s ├── main.c └── planeb.c └── types.h /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/32x.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/README.md -------------------------------------------------------------------------------- /assets/platformer/Collision_Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/Collision_Tiles.png -------------------------------------------------------------------------------- /assets/platformer/pla_VGA.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/pla_VGA.bmp -------------------------------------------------------------------------------- /assets/platformer/pla_VGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/pla_VGA.h -------------------------------------------------------------------------------- /assets/platformer/pla_VGA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/pla_VGA.tsx -------------------------------------------------------------------------------- /assets/platformer/pla_VGA_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/pla_VGA_palette.h -------------------------------------------------------------------------------- /assets/platformer/platformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/platformer.h -------------------------------------------------------------------------------- /assets/platformer/platformer.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/assets/platformer/platformer.tmx -------------------------------------------------------------------------------- /crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/crt0.s -------------------------------------------------------------------------------- /draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/draw.c -------------------------------------------------------------------------------- /draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/draw.h -------------------------------------------------------------------------------- /draw_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/draw_inc.h -------------------------------------------------------------------------------- /dsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/dsprite.c -------------------------------------------------------------------------------- /dtiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/dtiles.c -------------------------------------------------------------------------------- /extensions/tiled-to-yatssd-tilemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/extensions/tiled-to-yatssd-tilemap.js -------------------------------------------------------------------------------- /extensions/tiled-to-yatssd-tileset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/extensions/tiled-to-yatssd-tileset.js -------------------------------------------------------------------------------- /fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/fixed.h -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/font.c -------------------------------------------------------------------------------- /hw_32x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/hw_32x.c -------------------------------------------------------------------------------- /hw_32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/hw_32x.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/main.c -------------------------------------------------------------------------------- /mars_ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/mars_ringbuf.h -------------------------------------------------------------------------------- /sh2_fixed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/sh2_fixed.s -------------------------------------------------------------------------------- /sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/sound.c -------------------------------------------------------------------------------- /sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/sound.h -------------------------------------------------------------------------------- /src-md/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/Makefile -------------------------------------------------------------------------------- /src-md/cd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/cd.s -------------------------------------------------------------------------------- /src-md/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/crt0.s -------------------------------------------------------------------------------- /src-md/kos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/kos.s -------------------------------------------------------------------------------- /src-md/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/main.c -------------------------------------------------------------------------------- /src-md/planeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/src-md/planeb.c -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viciious/yatssd/HEAD/types.h --------------------------------------------------------------------------------