├── .gitignore ├── HACKING ├── README ├── TODO ├── basis-util.cc ├── basis-util.h ├── bench.txt ├── commandline.txt ├── config.cc ├── config.h ├── emu_test.cc ├── emulator.cc ├── emulator.h ├── fceu ├── Authors.md ├── COPYING ├── asm.cpp ├── asm.h ├── boards │ ├── 01-222.cpp │ ├── 103.cpp │ ├── 106.cpp │ ├── 108.cpp │ ├── 112.cpp │ ├── 116.cpp │ ├── 117.cpp │ ├── 120.cpp │ ├── 121.cpp │ ├── 12in1.cpp │ ├── 15.cpp │ ├── 151.cpp │ ├── 156.cpp │ ├── 164.cpp │ ├── 168.cpp │ ├── 17.cpp │ ├── 170.cpp │ ├── 175.cpp │ ├── 176.cpp │ ├── 177.cpp │ ├── 178.cpp │ ├── 179.cpp │ ├── 18.cpp │ ├── 183.cpp │ ├── 185.cpp │ ├── 186.cpp │ ├── 187.cpp │ ├── 189.cpp │ ├── 193.cpp │ ├── 199.cpp │ ├── 208.cpp │ ├── 222.cpp │ ├── 225.cpp │ ├── 228.cpp │ ├── 230.cpp │ ├── 232.cpp │ ├── 234.cpp │ ├── 235.cpp │ ├── 244.cpp │ ├── 246.cpp │ ├── 252.cpp │ ├── 253.cpp │ ├── 28.cpp │ ├── 32.cpp │ ├── 33.cpp │ ├── 34.cpp │ ├── 3d-block.cpp │ ├── 411120-c.cpp │ ├── 43.cpp │ ├── 57.cpp │ ├── 603-5052.cpp │ ├── 68.cpp │ ├── 8157.cpp │ ├── 82.cpp │ ├── 8237.cpp │ ├── 830118C.cpp │ ├── 88.cpp │ ├── 90.cpp │ ├── 91.cpp │ ├── 95.cpp │ ├── 96.cpp │ ├── 99.cpp │ ├── __dummy_mapper.cpp │ ├── a9711.cpp │ ├── a9746.cpp │ ├── ac-08.cpp │ ├── addrlatch.cpp │ ├── ax5705.cpp │ ├── bandai.cpp │ ├── bb.cpp │ ├── bmc13in1jy110.cpp │ ├── bmc42in1r.cpp │ ├── bmc64in1nr.cpp │ ├── bmc70in1.cpp │ ├── bonza.cpp │ ├── bs-5.cpp │ ├── cityfighter.cpp │ ├── dance2000.cpp │ ├── datalatch.cpp │ ├── deirom.cpp │ ├── dream.cpp │ ├── edu2000.cpp │ ├── famicombox.cpp │ ├── fk23c.cpp │ ├── ghostbusters63in1.cpp │ ├── gs-2004.cpp │ ├── gs-2013.cpp │ ├── h2288.cpp │ ├── karaoke.cpp │ ├── kof97.cpp │ ├── konami-qtai.cpp │ ├── ks7012.cpp │ ├── ks7013.cpp │ ├── ks7017.cpp │ ├── ks7030.cpp │ ├── ks7031.cpp │ ├── ks7032.cpp │ ├── ks7037.cpp │ ├── ks7057.cpp │ ├── le05.cpp │ ├── lh32.cpp │ ├── lh53.cpp │ ├── malee.cpp │ ├── mapinc.h │ ├── mmc1.cpp │ ├── mmc3.cpp │ ├── mmc3.h │ ├── mmc5.cpp │ ├── n-c22m.cpp │ ├── n106.cpp │ ├── n625092.cpp │ ├── novel.cpp │ ├── onebus.cpp │ ├── pec-586.cpp │ ├── sa-9602b.cpp │ ├── sachen.cpp │ ├── sc-127.cpp │ ├── sheroes.cpp │ ├── sl1632.cpp │ ├── smb2j.cpp │ ├── subor.cpp │ ├── super24.cpp │ ├── supervision.cpp │ ├── t-227-1.cpp │ ├── t-262.cpp │ ├── tengen.cpp │ ├── tf-1201.cpp │ ├── transformer.cpp │ ├── vrc2and4.cpp │ ├── vrc7.cpp │ └── yoko.cpp ├── cart.cpp ├── cart.h ├── changelog.txt ├── cheat.cpp ├── cheat.h ├── conddebug.cpp ├── conddebug.h ├── config.cpp ├── config.h ├── debug.cpp ├── debug.h ├── drawing.cpp ├── drawing.h ├── driver.h ├── drivers │ └── common │ │ ├── args.cpp │ │ ├── args.h │ │ ├── cheat.cpp │ │ ├── cheat.h │ │ ├── hq2x.cpp │ │ ├── hq2x.h │ │ ├── hq3x.cpp │ │ ├── hq3x.h │ │ ├── nes_ntsc.c │ │ ├── nes_ntsc.h │ │ ├── nes_ntsc_config.h │ │ ├── nes_ntsc_impl.h │ │ ├── scale2x.cpp │ │ ├── scale2x.h │ │ ├── scale3x.cpp │ │ ├── scale3x.h │ │ ├── scalebit.cpp │ │ ├── scalebit.h │ │ ├── vidblit.cpp │ │ └── vidblit.h ├── emufile.cpp ├── emufile.h ├── emufile_types.h ├── fceu.cpp ├── fceu.h ├── fceulua.h ├── fcoeffs.h ├── fds.cpp ├── fds.h ├── file.cpp ├── file.h ├── filter.cpp ├── filter.h ├── fir │ ├── Makefile │ ├── README │ ├── c44100ntsc.coef │ ├── c44100ntsc.h │ ├── c44100ntsc.scm │ ├── c44100pal.coef │ ├── c44100pal.h │ ├── c44100pal.scm │ ├── c48000ntsc.coef │ ├── c48000ntsc.h │ ├── c48000ntsc.scm │ ├── c48000pal.coef │ ├── c48000pal.h │ ├── c48000pal.scm │ ├── c96000ntsc.coef │ ├── c96000ntsc.h │ ├── c96000ntsc.scm │ ├── c96000pal.coef │ ├── c96000pal.h │ ├── c96000pal.scm │ └── toh.c ├── git.h ├── ines-bad.h ├── ines-correct.h ├── ines.cpp ├── ines.h ├── input.cpp ├── input.h ├── input │ ├── arkanoid.cpp │ ├── bworld.cpp │ ├── cursor.cpp │ ├── fkb.cpp │ ├── fkb.h │ ├── ftrainer.cpp │ ├── hypershot.cpp │ ├── mahjong.cpp │ ├── mouse.cpp │ ├── oekakids.cpp │ ├── powerpad.cpp │ ├── quiz.cpp │ ├── shadow.cpp │ ├── share.h │ ├── suborkb.cpp │ ├── suborkb.h │ ├── toprider.cpp │ ├── zapper.cpp │ └── zapper.h ├── mappers │ ├── 24and26.cpp │ ├── 40.cpp │ ├── 41.cpp │ ├── 42.cpp │ ├── 46.cpp │ ├── 50.cpp │ ├── 51.cpp │ ├── 6.cpp │ ├── 61.cpp │ ├── 62.cpp │ ├── 65.cpp │ ├── 67.cpp │ ├── 69.cpp │ ├── 71.cpp │ ├── 72.cpp │ ├── 73.cpp │ ├── 75.cpp │ ├── 76.cpp │ ├── 77.cpp │ ├── 79.cpp │ ├── 80.cpp │ ├── 85.cpp │ ├── emu2413.c │ ├── emu2413.h │ ├── mapinc.h │ └── mmc2and4.cpp ├── movie.cpp ├── movie.h ├── netplay.cpp ├── netplay.h ├── nsf.cpp ├── nsf.h ├── oldmovie.cpp ├── oldmovie.h ├── ops.inc ├── palette.cpp ├── palette.h ├── palettes │ ├── palettes.h │ ├── rp2c04001.h │ ├── rp2c04002.h │ ├── rp2c04003.h │ └── rp2c05004.h ├── ppu.cpp ├── ppu.h ├── pputile.inc ├── sound.cpp ├── sound.h ├── state.cpp ├── state.h ├── types-des.h ├── types.h ├── unif.cpp ├── unif.h ├── utils │ ├── ConvertUTF.c │ ├── ConvertUTF.h │ ├── crc32.cpp │ ├── crc32.h │ ├── endian.cpp │ ├── endian.h │ ├── general.cpp │ ├── general.h │ ├── guid.cpp │ ├── guid.h │ ├── md5.cpp │ ├── md5.h │ ├── memory.cpp │ ├── memory.h │ ├── unzip.cpp │ ├── unzip.h │ ├── valuearray.h │ ├── xstring.cpp │ └── xstring.h ├── version.h ├── video.cpp ├── video.h ├── vsuni.cpp ├── vsuni.h ├── wave.cpp ├── wave.h ├── x6502.cpp ├── x6502.h ├── x6502abbrev.h └── x6502struct.h ├── game.h ├── headless-driver.cc ├── learnfun.cc ├── log.css ├── makefile ├── marionet.proto ├── motifs-style.h ├── motifs.cc ├── motifs.h ├── netutil.cc ├── netutil.h ├── objective.cc ├── objective.h ├── objective_test.cc ├── paper ├── bytes2048.png ├── isimprovement.pdf ├── makefile ├── mario-global.pdf ├── mario-strides.pdf ├── mario-tenths.pdf ├── paper.bib ├── paper.tex ├── tetris.png └── utilization.png ├── playfun-backtrack.cc ├── playfun-first-marionet.cc ├── playfun-futures.cc ├── playfun-individual.cc ├── playfun-nobacktrack.cc ├── playfun.cc ├── sdl_win32_main.c ├── showfun.cc ├── simplefm2.cc ├── simplefm2.h ├── tasbot-old.cc ├── tasbot.cc ├── tasbot.h ├── util.cc ├── util.h ├── weighted-objectives.cc ├── weighted-objectives.h └── weighted-objectives_test.cc /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o 2 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/HACKING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/TODO -------------------------------------------------------------------------------- /basis-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/basis-util.cc -------------------------------------------------------------------------------- /basis-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/basis-util.h -------------------------------------------------------------------------------- /bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/bench.txt -------------------------------------------------------------------------------- /commandline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/commandline.txt -------------------------------------------------------------------------------- /config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/config.cc -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/config.h -------------------------------------------------------------------------------- /emu_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/emu_test.cc -------------------------------------------------------------------------------- /emulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/emulator.cc -------------------------------------------------------------------------------- /emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/emulator.h -------------------------------------------------------------------------------- /fceu/Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/Authors.md -------------------------------------------------------------------------------- /fceu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/COPYING -------------------------------------------------------------------------------- /fceu/asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/asm.cpp -------------------------------------------------------------------------------- /fceu/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/asm.h -------------------------------------------------------------------------------- /fceu/boards/01-222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/01-222.cpp -------------------------------------------------------------------------------- /fceu/boards/103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/103.cpp -------------------------------------------------------------------------------- /fceu/boards/106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/106.cpp -------------------------------------------------------------------------------- /fceu/boards/108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/108.cpp -------------------------------------------------------------------------------- /fceu/boards/112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/112.cpp -------------------------------------------------------------------------------- /fceu/boards/116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/116.cpp -------------------------------------------------------------------------------- /fceu/boards/117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/117.cpp -------------------------------------------------------------------------------- /fceu/boards/120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/120.cpp -------------------------------------------------------------------------------- /fceu/boards/121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/121.cpp -------------------------------------------------------------------------------- /fceu/boards/12in1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/12in1.cpp -------------------------------------------------------------------------------- /fceu/boards/15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/15.cpp -------------------------------------------------------------------------------- /fceu/boards/151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/151.cpp -------------------------------------------------------------------------------- /fceu/boards/156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/156.cpp -------------------------------------------------------------------------------- /fceu/boards/164.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/164.cpp -------------------------------------------------------------------------------- /fceu/boards/168.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/168.cpp -------------------------------------------------------------------------------- /fceu/boards/17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/17.cpp -------------------------------------------------------------------------------- /fceu/boards/170.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/170.cpp -------------------------------------------------------------------------------- /fceu/boards/175.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/175.cpp -------------------------------------------------------------------------------- /fceu/boards/176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/176.cpp -------------------------------------------------------------------------------- /fceu/boards/177.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/177.cpp -------------------------------------------------------------------------------- /fceu/boards/178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/178.cpp -------------------------------------------------------------------------------- /fceu/boards/179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/179.cpp -------------------------------------------------------------------------------- /fceu/boards/18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/18.cpp -------------------------------------------------------------------------------- /fceu/boards/183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/183.cpp -------------------------------------------------------------------------------- /fceu/boards/185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/185.cpp -------------------------------------------------------------------------------- /fceu/boards/186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/186.cpp -------------------------------------------------------------------------------- /fceu/boards/187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/187.cpp -------------------------------------------------------------------------------- /fceu/boards/189.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/189.cpp -------------------------------------------------------------------------------- /fceu/boards/193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/193.cpp -------------------------------------------------------------------------------- /fceu/boards/199.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/199.cpp -------------------------------------------------------------------------------- /fceu/boards/208.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/208.cpp -------------------------------------------------------------------------------- /fceu/boards/222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/222.cpp -------------------------------------------------------------------------------- /fceu/boards/225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/225.cpp -------------------------------------------------------------------------------- /fceu/boards/228.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/228.cpp -------------------------------------------------------------------------------- /fceu/boards/230.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/230.cpp -------------------------------------------------------------------------------- /fceu/boards/232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/232.cpp -------------------------------------------------------------------------------- /fceu/boards/234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/234.cpp -------------------------------------------------------------------------------- /fceu/boards/235.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/235.cpp -------------------------------------------------------------------------------- /fceu/boards/244.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/244.cpp -------------------------------------------------------------------------------- /fceu/boards/246.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/246.cpp -------------------------------------------------------------------------------- /fceu/boards/252.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/252.cpp -------------------------------------------------------------------------------- /fceu/boards/253.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/253.cpp -------------------------------------------------------------------------------- /fceu/boards/28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/28.cpp -------------------------------------------------------------------------------- /fceu/boards/32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/32.cpp -------------------------------------------------------------------------------- /fceu/boards/33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/33.cpp -------------------------------------------------------------------------------- /fceu/boards/34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/34.cpp -------------------------------------------------------------------------------- /fceu/boards/3d-block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/3d-block.cpp -------------------------------------------------------------------------------- /fceu/boards/411120-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/411120-c.cpp -------------------------------------------------------------------------------- /fceu/boards/43.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/43.cpp -------------------------------------------------------------------------------- /fceu/boards/57.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/57.cpp -------------------------------------------------------------------------------- /fceu/boards/603-5052.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/603-5052.cpp -------------------------------------------------------------------------------- /fceu/boards/68.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/68.cpp -------------------------------------------------------------------------------- /fceu/boards/8157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/8157.cpp -------------------------------------------------------------------------------- /fceu/boards/82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/82.cpp -------------------------------------------------------------------------------- /fceu/boards/8237.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/8237.cpp -------------------------------------------------------------------------------- /fceu/boards/830118C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/830118C.cpp -------------------------------------------------------------------------------- /fceu/boards/88.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/88.cpp -------------------------------------------------------------------------------- /fceu/boards/90.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/90.cpp -------------------------------------------------------------------------------- /fceu/boards/91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/91.cpp -------------------------------------------------------------------------------- /fceu/boards/95.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/95.cpp -------------------------------------------------------------------------------- /fceu/boards/96.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/96.cpp -------------------------------------------------------------------------------- /fceu/boards/99.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/99.cpp -------------------------------------------------------------------------------- /fceu/boards/__dummy_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/__dummy_mapper.cpp -------------------------------------------------------------------------------- /fceu/boards/a9711.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/a9711.cpp -------------------------------------------------------------------------------- /fceu/boards/a9746.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/a9746.cpp -------------------------------------------------------------------------------- /fceu/boards/ac-08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ac-08.cpp -------------------------------------------------------------------------------- /fceu/boards/addrlatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/addrlatch.cpp -------------------------------------------------------------------------------- /fceu/boards/ax5705.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ax5705.cpp -------------------------------------------------------------------------------- /fceu/boards/bandai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bandai.cpp -------------------------------------------------------------------------------- /fceu/boards/bb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bb.cpp -------------------------------------------------------------------------------- /fceu/boards/bmc13in1jy110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bmc13in1jy110.cpp -------------------------------------------------------------------------------- /fceu/boards/bmc42in1r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bmc42in1r.cpp -------------------------------------------------------------------------------- /fceu/boards/bmc64in1nr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bmc64in1nr.cpp -------------------------------------------------------------------------------- /fceu/boards/bmc70in1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bmc70in1.cpp -------------------------------------------------------------------------------- /fceu/boards/bonza.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bonza.cpp -------------------------------------------------------------------------------- /fceu/boards/bs-5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/bs-5.cpp -------------------------------------------------------------------------------- /fceu/boards/cityfighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/cityfighter.cpp -------------------------------------------------------------------------------- /fceu/boards/dance2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/dance2000.cpp -------------------------------------------------------------------------------- /fceu/boards/datalatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/datalatch.cpp -------------------------------------------------------------------------------- /fceu/boards/deirom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/deirom.cpp -------------------------------------------------------------------------------- /fceu/boards/dream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/dream.cpp -------------------------------------------------------------------------------- /fceu/boards/edu2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/edu2000.cpp -------------------------------------------------------------------------------- /fceu/boards/famicombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/famicombox.cpp -------------------------------------------------------------------------------- /fceu/boards/fk23c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/fk23c.cpp -------------------------------------------------------------------------------- /fceu/boards/ghostbusters63in1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ghostbusters63in1.cpp -------------------------------------------------------------------------------- /fceu/boards/gs-2004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/gs-2004.cpp -------------------------------------------------------------------------------- /fceu/boards/gs-2013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/gs-2013.cpp -------------------------------------------------------------------------------- /fceu/boards/h2288.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/h2288.cpp -------------------------------------------------------------------------------- /fceu/boards/karaoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/karaoke.cpp -------------------------------------------------------------------------------- /fceu/boards/kof97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/kof97.cpp -------------------------------------------------------------------------------- /fceu/boards/konami-qtai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/konami-qtai.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7012.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7013.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7017.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7030.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7030.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7031.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7031.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7032.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7037.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7037.cpp -------------------------------------------------------------------------------- /fceu/boards/ks7057.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/ks7057.cpp -------------------------------------------------------------------------------- /fceu/boards/le05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/le05.cpp -------------------------------------------------------------------------------- /fceu/boards/lh32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/lh32.cpp -------------------------------------------------------------------------------- /fceu/boards/lh53.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/lh53.cpp -------------------------------------------------------------------------------- /fceu/boards/malee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/malee.cpp -------------------------------------------------------------------------------- /fceu/boards/mapinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/mapinc.h -------------------------------------------------------------------------------- /fceu/boards/mmc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/mmc1.cpp -------------------------------------------------------------------------------- /fceu/boards/mmc3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/mmc3.cpp -------------------------------------------------------------------------------- /fceu/boards/mmc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/mmc3.h -------------------------------------------------------------------------------- /fceu/boards/mmc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/mmc5.cpp -------------------------------------------------------------------------------- /fceu/boards/n-c22m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/n-c22m.cpp -------------------------------------------------------------------------------- /fceu/boards/n106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/n106.cpp -------------------------------------------------------------------------------- /fceu/boards/n625092.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/n625092.cpp -------------------------------------------------------------------------------- /fceu/boards/novel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/novel.cpp -------------------------------------------------------------------------------- /fceu/boards/onebus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/onebus.cpp -------------------------------------------------------------------------------- /fceu/boards/pec-586.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/pec-586.cpp -------------------------------------------------------------------------------- /fceu/boards/sa-9602b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/sa-9602b.cpp -------------------------------------------------------------------------------- /fceu/boards/sachen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/sachen.cpp -------------------------------------------------------------------------------- /fceu/boards/sc-127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/sc-127.cpp -------------------------------------------------------------------------------- /fceu/boards/sheroes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/sheroes.cpp -------------------------------------------------------------------------------- /fceu/boards/sl1632.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/sl1632.cpp -------------------------------------------------------------------------------- /fceu/boards/smb2j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/smb2j.cpp -------------------------------------------------------------------------------- /fceu/boards/subor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/subor.cpp -------------------------------------------------------------------------------- /fceu/boards/super24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/super24.cpp -------------------------------------------------------------------------------- /fceu/boards/supervision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/supervision.cpp -------------------------------------------------------------------------------- /fceu/boards/t-227-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/t-227-1.cpp -------------------------------------------------------------------------------- /fceu/boards/t-262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/t-262.cpp -------------------------------------------------------------------------------- /fceu/boards/tengen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/tengen.cpp -------------------------------------------------------------------------------- /fceu/boards/tf-1201.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/tf-1201.cpp -------------------------------------------------------------------------------- /fceu/boards/transformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/transformer.cpp -------------------------------------------------------------------------------- /fceu/boards/vrc2and4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/vrc2and4.cpp -------------------------------------------------------------------------------- /fceu/boards/vrc7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/vrc7.cpp -------------------------------------------------------------------------------- /fceu/boards/yoko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/boards/yoko.cpp -------------------------------------------------------------------------------- /fceu/cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/cart.cpp -------------------------------------------------------------------------------- /fceu/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/cart.h -------------------------------------------------------------------------------- /fceu/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/changelog.txt -------------------------------------------------------------------------------- /fceu/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/cheat.cpp -------------------------------------------------------------------------------- /fceu/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/cheat.h -------------------------------------------------------------------------------- /fceu/conddebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/conddebug.cpp -------------------------------------------------------------------------------- /fceu/conddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/conddebug.h -------------------------------------------------------------------------------- /fceu/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/config.cpp -------------------------------------------------------------------------------- /fceu/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fceu/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/debug.cpp -------------------------------------------------------------------------------- /fceu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/debug.h -------------------------------------------------------------------------------- /fceu/drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drawing.cpp -------------------------------------------------------------------------------- /fceu/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drawing.h -------------------------------------------------------------------------------- /fceu/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/driver.h -------------------------------------------------------------------------------- /fceu/drivers/common/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/args.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/args.h -------------------------------------------------------------------------------- /fceu/drivers/common/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/cheat.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/cheat.h -------------------------------------------------------------------------------- /fceu/drivers/common/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/hq2x.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/hq2x.h -------------------------------------------------------------------------------- /fceu/drivers/common/hq3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/hq3x.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/hq3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/hq3x.h -------------------------------------------------------------------------------- /fceu/drivers/common/nes_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/nes_ntsc.c -------------------------------------------------------------------------------- /fceu/drivers/common/nes_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/nes_ntsc.h -------------------------------------------------------------------------------- /fceu/drivers/common/nes_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/nes_ntsc_config.h -------------------------------------------------------------------------------- /fceu/drivers/common/nes_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/nes_ntsc_impl.h -------------------------------------------------------------------------------- /fceu/drivers/common/scale2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scale2x.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/scale2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scale2x.h -------------------------------------------------------------------------------- /fceu/drivers/common/scale3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scale3x.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/scale3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scale3x.h -------------------------------------------------------------------------------- /fceu/drivers/common/scalebit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scalebit.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/scalebit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/scalebit.h -------------------------------------------------------------------------------- /fceu/drivers/common/vidblit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/vidblit.cpp -------------------------------------------------------------------------------- /fceu/drivers/common/vidblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/drivers/common/vidblit.h -------------------------------------------------------------------------------- /fceu/emufile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/emufile.cpp -------------------------------------------------------------------------------- /fceu/emufile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/emufile.h -------------------------------------------------------------------------------- /fceu/emufile_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/emufile_types.h -------------------------------------------------------------------------------- /fceu/fceu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fceu.cpp -------------------------------------------------------------------------------- /fceu/fceu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fceu.h -------------------------------------------------------------------------------- /fceu/fceulua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fceulua.h -------------------------------------------------------------------------------- /fceu/fcoeffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fcoeffs.h -------------------------------------------------------------------------------- /fceu/fds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fds.cpp -------------------------------------------------------------------------------- /fceu/fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fds.h -------------------------------------------------------------------------------- /fceu/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/file.cpp -------------------------------------------------------------------------------- /fceu/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/file.h -------------------------------------------------------------------------------- /fceu/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/filter.cpp -------------------------------------------------------------------------------- /fceu/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/filter.h -------------------------------------------------------------------------------- /fceu/fir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/Makefile -------------------------------------------------------------------------------- /fceu/fir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/README -------------------------------------------------------------------------------- /fceu/fir/c44100ntsc.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100ntsc.coef -------------------------------------------------------------------------------- /fceu/fir/c44100ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100ntsc.h -------------------------------------------------------------------------------- /fceu/fir/c44100ntsc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100ntsc.scm -------------------------------------------------------------------------------- /fceu/fir/c44100pal.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100pal.coef -------------------------------------------------------------------------------- /fceu/fir/c44100pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100pal.h -------------------------------------------------------------------------------- /fceu/fir/c44100pal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c44100pal.scm -------------------------------------------------------------------------------- /fceu/fir/c48000ntsc.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000ntsc.coef -------------------------------------------------------------------------------- /fceu/fir/c48000ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000ntsc.h -------------------------------------------------------------------------------- /fceu/fir/c48000ntsc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000ntsc.scm -------------------------------------------------------------------------------- /fceu/fir/c48000pal.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000pal.coef -------------------------------------------------------------------------------- /fceu/fir/c48000pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000pal.h -------------------------------------------------------------------------------- /fceu/fir/c48000pal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c48000pal.scm -------------------------------------------------------------------------------- /fceu/fir/c96000ntsc.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000ntsc.coef -------------------------------------------------------------------------------- /fceu/fir/c96000ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000ntsc.h -------------------------------------------------------------------------------- /fceu/fir/c96000ntsc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000ntsc.scm -------------------------------------------------------------------------------- /fceu/fir/c96000pal.coef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000pal.coef -------------------------------------------------------------------------------- /fceu/fir/c96000pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000pal.h -------------------------------------------------------------------------------- /fceu/fir/c96000pal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/c96000pal.scm -------------------------------------------------------------------------------- /fceu/fir/toh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/fir/toh.c -------------------------------------------------------------------------------- /fceu/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/git.h -------------------------------------------------------------------------------- /fceu/ines-bad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ines-bad.h -------------------------------------------------------------------------------- /fceu/ines-correct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ines-correct.h -------------------------------------------------------------------------------- /fceu/ines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ines.cpp -------------------------------------------------------------------------------- /fceu/ines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ines.h -------------------------------------------------------------------------------- /fceu/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input.cpp -------------------------------------------------------------------------------- /fceu/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input.h -------------------------------------------------------------------------------- /fceu/input/arkanoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/arkanoid.cpp -------------------------------------------------------------------------------- /fceu/input/bworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/bworld.cpp -------------------------------------------------------------------------------- /fceu/input/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/cursor.cpp -------------------------------------------------------------------------------- /fceu/input/fkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/fkb.cpp -------------------------------------------------------------------------------- /fceu/input/fkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/fkb.h -------------------------------------------------------------------------------- /fceu/input/ftrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/ftrainer.cpp -------------------------------------------------------------------------------- /fceu/input/hypershot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/hypershot.cpp -------------------------------------------------------------------------------- /fceu/input/mahjong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/mahjong.cpp -------------------------------------------------------------------------------- /fceu/input/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/mouse.cpp -------------------------------------------------------------------------------- /fceu/input/oekakids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/oekakids.cpp -------------------------------------------------------------------------------- /fceu/input/powerpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/powerpad.cpp -------------------------------------------------------------------------------- /fceu/input/quiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/quiz.cpp -------------------------------------------------------------------------------- /fceu/input/shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/shadow.cpp -------------------------------------------------------------------------------- /fceu/input/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/share.h -------------------------------------------------------------------------------- /fceu/input/suborkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/suborkb.cpp -------------------------------------------------------------------------------- /fceu/input/suborkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/suborkb.h -------------------------------------------------------------------------------- /fceu/input/toprider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/toprider.cpp -------------------------------------------------------------------------------- /fceu/input/zapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/zapper.cpp -------------------------------------------------------------------------------- /fceu/input/zapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/input/zapper.h -------------------------------------------------------------------------------- /fceu/mappers/24and26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/24and26.cpp -------------------------------------------------------------------------------- /fceu/mappers/40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/40.cpp -------------------------------------------------------------------------------- /fceu/mappers/41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/41.cpp -------------------------------------------------------------------------------- /fceu/mappers/42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/42.cpp -------------------------------------------------------------------------------- /fceu/mappers/46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/46.cpp -------------------------------------------------------------------------------- /fceu/mappers/50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/50.cpp -------------------------------------------------------------------------------- /fceu/mappers/51.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/51.cpp -------------------------------------------------------------------------------- /fceu/mappers/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/6.cpp -------------------------------------------------------------------------------- /fceu/mappers/61.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/61.cpp -------------------------------------------------------------------------------- /fceu/mappers/62.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/62.cpp -------------------------------------------------------------------------------- /fceu/mappers/65.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/65.cpp -------------------------------------------------------------------------------- /fceu/mappers/67.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/67.cpp -------------------------------------------------------------------------------- /fceu/mappers/69.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/69.cpp -------------------------------------------------------------------------------- /fceu/mappers/71.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/71.cpp -------------------------------------------------------------------------------- /fceu/mappers/72.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/72.cpp -------------------------------------------------------------------------------- /fceu/mappers/73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/73.cpp -------------------------------------------------------------------------------- /fceu/mappers/75.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/75.cpp -------------------------------------------------------------------------------- /fceu/mappers/76.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/76.cpp -------------------------------------------------------------------------------- /fceu/mappers/77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/77.cpp -------------------------------------------------------------------------------- /fceu/mappers/79.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/79.cpp -------------------------------------------------------------------------------- /fceu/mappers/80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/80.cpp -------------------------------------------------------------------------------- /fceu/mappers/85.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/85.cpp -------------------------------------------------------------------------------- /fceu/mappers/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/emu2413.c -------------------------------------------------------------------------------- /fceu/mappers/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/emu2413.h -------------------------------------------------------------------------------- /fceu/mappers/mapinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/mapinc.h -------------------------------------------------------------------------------- /fceu/mappers/mmc2and4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/mappers/mmc2and4.cpp -------------------------------------------------------------------------------- /fceu/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/movie.cpp -------------------------------------------------------------------------------- /fceu/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/movie.h -------------------------------------------------------------------------------- /fceu/netplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/netplay.cpp -------------------------------------------------------------------------------- /fceu/netplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/netplay.h -------------------------------------------------------------------------------- /fceu/nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/nsf.cpp -------------------------------------------------------------------------------- /fceu/nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/nsf.h -------------------------------------------------------------------------------- /fceu/oldmovie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/oldmovie.cpp -------------------------------------------------------------------------------- /fceu/oldmovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/oldmovie.h -------------------------------------------------------------------------------- /fceu/ops.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ops.inc -------------------------------------------------------------------------------- /fceu/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palette.cpp -------------------------------------------------------------------------------- /fceu/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palette.h -------------------------------------------------------------------------------- /fceu/palettes/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palettes/palettes.h -------------------------------------------------------------------------------- /fceu/palettes/rp2c04001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palettes/rp2c04001.h -------------------------------------------------------------------------------- /fceu/palettes/rp2c04002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palettes/rp2c04002.h -------------------------------------------------------------------------------- /fceu/palettes/rp2c04003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palettes/rp2c04003.h -------------------------------------------------------------------------------- /fceu/palettes/rp2c05004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/palettes/rp2c05004.h -------------------------------------------------------------------------------- /fceu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ppu.cpp -------------------------------------------------------------------------------- /fceu/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/ppu.h -------------------------------------------------------------------------------- /fceu/pputile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/pputile.inc -------------------------------------------------------------------------------- /fceu/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/sound.cpp -------------------------------------------------------------------------------- /fceu/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/sound.h -------------------------------------------------------------------------------- /fceu/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/state.cpp -------------------------------------------------------------------------------- /fceu/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/state.h -------------------------------------------------------------------------------- /fceu/types-des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/types-des.h -------------------------------------------------------------------------------- /fceu/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/types.h -------------------------------------------------------------------------------- /fceu/unif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/unif.cpp -------------------------------------------------------------------------------- /fceu/unif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/unif.h -------------------------------------------------------------------------------- /fceu/utils/ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/ConvertUTF.c -------------------------------------------------------------------------------- /fceu/utils/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/ConvertUTF.h -------------------------------------------------------------------------------- /fceu/utils/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/crc32.cpp -------------------------------------------------------------------------------- /fceu/utils/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/crc32.h -------------------------------------------------------------------------------- /fceu/utils/endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/endian.cpp -------------------------------------------------------------------------------- /fceu/utils/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/endian.h -------------------------------------------------------------------------------- /fceu/utils/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/general.cpp -------------------------------------------------------------------------------- /fceu/utils/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/general.h -------------------------------------------------------------------------------- /fceu/utils/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/guid.cpp -------------------------------------------------------------------------------- /fceu/utils/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/guid.h -------------------------------------------------------------------------------- /fceu/utils/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/md5.cpp -------------------------------------------------------------------------------- /fceu/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/md5.h -------------------------------------------------------------------------------- /fceu/utils/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/memory.cpp -------------------------------------------------------------------------------- /fceu/utils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/memory.h -------------------------------------------------------------------------------- /fceu/utils/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/unzip.cpp -------------------------------------------------------------------------------- /fceu/utils/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/unzip.h -------------------------------------------------------------------------------- /fceu/utils/valuearray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/valuearray.h -------------------------------------------------------------------------------- /fceu/utils/xstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/xstring.cpp -------------------------------------------------------------------------------- /fceu/utils/xstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/utils/xstring.h -------------------------------------------------------------------------------- /fceu/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/version.h -------------------------------------------------------------------------------- /fceu/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/video.cpp -------------------------------------------------------------------------------- /fceu/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/video.h -------------------------------------------------------------------------------- /fceu/vsuni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/vsuni.cpp -------------------------------------------------------------------------------- /fceu/vsuni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/vsuni.h -------------------------------------------------------------------------------- /fceu/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/wave.cpp -------------------------------------------------------------------------------- /fceu/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/wave.h -------------------------------------------------------------------------------- /fceu/x6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/x6502.cpp -------------------------------------------------------------------------------- /fceu/x6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/x6502.h -------------------------------------------------------------------------------- /fceu/x6502abbrev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/x6502abbrev.h -------------------------------------------------------------------------------- /fceu/x6502struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/fceu/x6502struct.h -------------------------------------------------------------------------------- /game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/game.h -------------------------------------------------------------------------------- /headless-driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/headless-driver.cc -------------------------------------------------------------------------------- /learnfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/learnfun.cc -------------------------------------------------------------------------------- /log.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 13px verdana,helvetica,sans-serif 3 | } 4 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/makefile -------------------------------------------------------------------------------- /marionet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/marionet.proto -------------------------------------------------------------------------------- /motifs-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/motifs-style.h -------------------------------------------------------------------------------- /motifs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/motifs.cc -------------------------------------------------------------------------------- /motifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/motifs.h -------------------------------------------------------------------------------- /netutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/netutil.cc -------------------------------------------------------------------------------- /netutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/netutil.h -------------------------------------------------------------------------------- /objective.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/objective.cc -------------------------------------------------------------------------------- /objective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/objective.h -------------------------------------------------------------------------------- /objective_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/objective_test.cc -------------------------------------------------------------------------------- /paper/bytes2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/bytes2048.png -------------------------------------------------------------------------------- /paper/isimprovement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/isimprovement.pdf -------------------------------------------------------------------------------- /paper/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/makefile -------------------------------------------------------------------------------- /paper/mario-global.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/mario-global.pdf -------------------------------------------------------------------------------- /paper/mario-strides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/mario-strides.pdf -------------------------------------------------------------------------------- /paper/mario-tenths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/mario-tenths.pdf -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/paper.tex -------------------------------------------------------------------------------- /paper/tetris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/tetris.png -------------------------------------------------------------------------------- /paper/utilization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/paper/utilization.png -------------------------------------------------------------------------------- /playfun-backtrack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun-backtrack.cc -------------------------------------------------------------------------------- /playfun-first-marionet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun-first-marionet.cc -------------------------------------------------------------------------------- /playfun-futures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun-futures.cc -------------------------------------------------------------------------------- /playfun-individual.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun-individual.cc -------------------------------------------------------------------------------- /playfun-nobacktrack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun-nobacktrack.cc -------------------------------------------------------------------------------- /playfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/playfun.cc -------------------------------------------------------------------------------- /sdl_win32_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/sdl_win32_main.c -------------------------------------------------------------------------------- /showfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/showfun.cc -------------------------------------------------------------------------------- /simplefm2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/simplefm2.cc -------------------------------------------------------------------------------- /simplefm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/simplefm2.h -------------------------------------------------------------------------------- /tasbot-old.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/tasbot-old.cc -------------------------------------------------------------------------------- /tasbot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/tasbot.cc -------------------------------------------------------------------------------- /tasbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/tasbot.h -------------------------------------------------------------------------------- /util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/util.cc -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/util.h -------------------------------------------------------------------------------- /weighted-objectives.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/weighted-objectives.cc -------------------------------------------------------------------------------- /weighted-objectives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/weighted-objectives.h -------------------------------------------------------------------------------- /weighted-objectives_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinco/tasbot/HEAD/weighted-objectives_test.cc --------------------------------------------------------------------------------