├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── daycycle └── main.rgbasm ├── den ├── README.md └── main.rgbasm ├── doc └── ref.rgbasm ├── include ├── big-endian.inc ├── kris.png ├── pallet-town.png └── weather.png ├── lapras ├── header.inc ├── lapras.png ├── main.rgbasm ├── map.rgbasm └── palette.rgbasm ├── scanlines ├── README.md └── main.rgbasm ├── squish └── main.rgbasm ├── tools ├── colors.go ├── palette.go └── still.go ├── transparency ├── README.md ├── lyra.png ├── main.rgbasm ├── pallet.png └── text.png ├── voltorbflip └── main.rgbasm └── weather └── main.rgbasm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/README.md -------------------------------------------------------------------------------- /daycycle/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/daycycle/main.rgbasm -------------------------------------------------------------------------------- /den/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/den/README.md -------------------------------------------------------------------------------- /den/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/den/main.rgbasm -------------------------------------------------------------------------------- /doc/ref.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/doc/ref.rgbasm -------------------------------------------------------------------------------- /include/big-endian.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/include/big-endian.inc -------------------------------------------------------------------------------- /include/kris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/include/kris.png -------------------------------------------------------------------------------- /include/pallet-town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/include/pallet-town.png -------------------------------------------------------------------------------- /include/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/include/weather.png -------------------------------------------------------------------------------- /lapras/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/lapras/header.inc -------------------------------------------------------------------------------- /lapras/lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/lapras/lapras.png -------------------------------------------------------------------------------- /lapras/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/lapras/main.rgbasm -------------------------------------------------------------------------------- /lapras/map.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/lapras/map.rgbasm -------------------------------------------------------------------------------- /lapras/palette.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/lapras/palette.rgbasm -------------------------------------------------------------------------------- /scanlines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/scanlines/README.md -------------------------------------------------------------------------------- /scanlines/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/scanlines/main.rgbasm -------------------------------------------------------------------------------- /squish/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/squish/main.rgbasm -------------------------------------------------------------------------------- /tools/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/tools/colors.go -------------------------------------------------------------------------------- /tools/palette.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/tools/palette.go -------------------------------------------------------------------------------- /tools/still.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/tools/still.go -------------------------------------------------------------------------------- /transparency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/transparency/README.md -------------------------------------------------------------------------------- /transparency/lyra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/transparency/lyra.png -------------------------------------------------------------------------------- /transparency/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/transparency/main.rgbasm -------------------------------------------------------------------------------- /transparency/pallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/transparency/pallet.png -------------------------------------------------------------------------------- /transparency/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/transparency/text.png -------------------------------------------------------------------------------- /voltorbflip/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/voltorbflip/main.rgbasm -------------------------------------------------------------------------------- /weather/main.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmmaEwert/gameboy/HEAD/weather/main.rgbasm --------------------------------------------------------------------------------