├── .gitattributes ├── .gitignore ├── Alpha.chr ├── BUILD ├── hello.nes ├── hello.nes.deb ├── hello.s └── labels.txt ├── LIB ├── nesdoug.h ├── nesdoug.s ├── neslib.h └── neslib.s ├── License.txt ├── MUSIC └── famitone2.s ├── compile.bat ├── crt0.s ├── dbg.txt ├── hello.c ├── makefile ├── nrom_32k_vert.cfg └── screenshot01.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/.gitignore -------------------------------------------------------------------------------- /Alpha.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/Alpha.chr -------------------------------------------------------------------------------- /BUILD/hello.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/BUILD/hello.nes -------------------------------------------------------------------------------- /BUILD/hello.nes.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/BUILD/hello.nes.deb -------------------------------------------------------------------------------- /BUILD/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/BUILD/hello.s -------------------------------------------------------------------------------- /BUILD/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/BUILD/labels.txt -------------------------------------------------------------------------------- /LIB/nesdoug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/LIB/nesdoug.h -------------------------------------------------------------------------------- /LIB/nesdoug.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/LIB/nesdoug.s -------------------------------------------------------------------------------- /LIB/neslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/LIB/neslib.h -------------------------------------------------------------------------------- /LIB/neslib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/LIB/neslib.s -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/License.txt -------------------------------------------------------------------------------- /MUSIC/famitone2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/MUSIC/famitone2.s -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/compile.bat -------------------------------------------------------------------------------- /crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/crt0.s -------------------------------------------------------------------------------- /dbg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/dbg.txt -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/hello.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/makefile -------------------------------------------------------------------------------- /nrom_32k_vert.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/nrom_32k_vert.cfg -------------------------------------------------------------------------------- /screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/01_Hello/HEAD/screenshot01.png --------------------------------------------------------------------------------