├── .gitattributes ├── .gitignore ├── README.md ├── compile.cmd ├── gfx.bin ├── img ├── bsnesv106r44.png ├── hardware │ ├── 1L3B-20-1CHIP.jpg │ ├── 1L3B-20.jpg │ ├── 1L8B-10.jpg │ ├── README.md │ └── v51-1L8B-10 │ │ ├── v51-1.JPG │ │ ├── v51-2.JPG │ │ ├── v51-3.JPG │ │ ├── v51-4.JPG │ │ └── video.mkv ├── nosns16.png ├── sa1_speedtest_v2.JPG ├── sd2snes06.jpg ├── snes9x │ ├── README.md │ ├── snes9x_1.39.png │ ├── snes9x_1.40.png │ ├── snes9x_1.42.png │ ├── snes9x_1.50.png │ ├── snes9x_1.51.png │ ├── snes9x_1.52.png │ ├── snes9x_1.53.png │ └── snes9x_1.56.png ├── snes9x1562.png ├── snes9x_for_3ds_130.png ├── zsnes │ ├── README.md │ ├── zsnes120.png │ ├── zsnes125.png │ ├── zsnes130.png │ ├── zsnes136.png │ ├── zsnes141.png │ ├── zsnes142.png │ ├── zsnes150.png │ ├── zsnes151.png │ └── zsnes151_v32.png └── zsnes151.png ├── speed_test.asm ├── speed_test_v51.sfc └── src ├── init.asm └── text.asm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.srm 3 | *.exe 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/README.md -------------------------------------------------------------------------------- /compile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/compile.cmd -------------------------------------------------------------------------------- /gfx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/gfx.bin -------------------------------------------------------------------------------- /img/bsnesv106r44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/bsnesv106r44.png -------------------------------------------------------------------------------- /img/hardware/1L3B-20-1CHIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/1L3B-20-1CHIP.jpg -------------------------------------------------------------------------------- /img/hardware/1L3B-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/1L3B-20.jpg -------------------------------------------------------------------------------- /img/hardware/1L8B-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/1L8B-10.jpg -------------------------------------------------------------------------------- /img/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/README.md -------------------------------------------------------------------------------- /img/hardware/v51-1L8B-10/v51-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/v51-1L8B-10/v51-1.JPG -------------------------------------------------------------------------------- /img/hardware/v51-1L8B-10/v51-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/v51-1L8B-10/v51-2.JPG -------------------------------------------------------------------------------- /img/hardware/v51-1L8B-10/v51-3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/v51-1L8B-10/v51-3.JPG -------------------------------------------------------------------------------- /img/hardware/v51-1L8B-10/v51-4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/v51-1L8B-10/v51-4.JPG -------------------------------------------------------------------------------- /img/hardware/v51-1L8B-10/video.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/hardware/v51-1L8B-10/video.mkv -------------------------------------------------------------------------------- /img/nosns16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/nosns16.png -------------------------------------------------------------------------------- /img/sa1_speedtest_v2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/sa1_speedtest_v2.JPG -------------------------------------------------------------------------------- /img/sd2snes06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/sd2snes06.jpg -------------------------------------------------------------------------------- /img/snes9x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/README.md -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.39.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.40.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.42.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.50.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.51.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.52.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.53.png -------------------------------------------------------------------------------- /img/snes9x/snes9x_1.56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x/snes9x_1.56.png -------------------------------------------------------------------------------- /img/snes9x1562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x1562.png -------------------------------------------------------------------------------- /img/snes9x_for_3ds_130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/snes9x_for_3ds_130.png -------------------------------------------------------------------------------- /img/zsnes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/README.md -------------------------------------------------------------------------------- /img/zsnes/zsnes120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes120.png -------------------------------------------------------------------------------- /img/zsnes/zsnes125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes125.png -------------------------------------------------------------------------------- /img/zsnes/zsnes130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes130.png -------------------------------------------------------------------------------- /img/zsnes/zsnes136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes136.png -------------------------------------------------------------------------------- /img/zsnes/zsnes141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes141.png -------------------------------------------------------------------------------- /img/zsnes/zsnes142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes142.png -------------------------------------------------------------------------------- /img/zsnes/zsnes150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes150.png -------------------------------------------------------------------------------- /img/zsnes/zsnes151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes151.png -------------------------------------------------------------------------------- /img/zsnes/zsnes151_v32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes/zsnes151_v32.png -------------------------------------------------------------------------------- /img/zsnes151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/img/zsnes151.png -------------------------------------------------------------------------------- /speed_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/speed_test.asm -------------------------------------------------------------------------------- /speed_test_v51.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/speed_test_v51.sfc -------------------------------------------------------------------------------- /src/init.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/src/init.asm -------------------------------------------------------------------------------- /src/text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorVilela7/SnesSpeedTest/HEAD/src/text.asm --------------------------------------------------------------------------------