├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.vita ├── NEWS ├── README ├── TODO ├── VERSION ├── configure.ac ├── icon0.png └── src ├── Makefile.am ├── SDL_rotozoom.c ├── file_chooser.c ├── file_chooser.h ├── font.c ├── font.h ├── font_data.c ├── gboy.h ├── gboy_conf.c ├── gboy_conf.h ├── gboy_cpu.c ├── gboy_cpu.h ├── gboy_events.c ├── gboy_events.h ├── gboy_events_vita.c ├── gboy_events_vita.h ├── gboy_file.c ├── gboy_frame.c ├── gboy_frame.h ├── gboy_interp.c ├── gboy_interp.h ├── gboy_ioctrl.c ├── gboy_ioctrl.h ├── gboy_joy.c ├── gboy_joy.h ├── gboy_keys.c ├── gboy_keys.h ├── gboy_lcd.c ├── gboy_lcd.h ├── gboy_mbc.c ├── gboy_mbc.h ├── gboy_mbc1.c ├── gboy_mbc1.h ├── gboy_mbc2.c ├── gboy_mbc3.c ├── gboy_mbc3.h ├── gboy_mbc5.c ├── gboy_mbc5.h ├── gboy_mem.c ├── gboy_mem.h ├── gboy_parse.c ├── gboy_parse.h ├── gboy_sgb.c ├── gboy_sgb.h ├── gboy_sound.c ├── gboy_sound.h ├── gboy_sound_vita.c ├── gboy_sound_vita.h ├── gboy_utils.c ├── gboy_video.c ├── gboy_video.h ├── gboy_video_vita.c ├── gboy_video_vita.h ├── gboy_vm.c ├── gboy_vm.h ├── gboy_x86_64.S ├── gddb_funcs.c ├── gddb_main.c ├── globals.c ├── main.c ├── main.h ├── main_vita.c ├── utils.c ├── utils.h ├── vita_audio.c └── vita_audio.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.vita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/Makefile.vita -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | RealBoy 0.2.2 2 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/configure.ac -------------------------------------------------------------------------------- /icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/icon0.png -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/SDL_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/SDL_rotozoom.c -------------------------------------------------------------------------------- /src/file_chooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/file_chooser.c -------------------------------------------------------------------------------- /src/file_chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/file_chooser.h -------------------------------------------------------------------------------- /src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/font.c -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/font.h -------------------------------------------------------------------------------- /src/font_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/font_data.c -------------------------------------------------------------------------------- /src/gboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy.h -------------------------------------------------------------------------------- /src/gboy_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_conf.c -------------------------------------------------------------------------------- /src/gboy_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_conf.h -------------------------------------------------------------------------------- /src/gboy_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_cpu.c -------------------------------------------------------------------------------- /src/gboy_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_cpu.h -------------------------------------------------------------------------------- /src/gboy_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_events.c -------------------------------------------------------------------------------- /src/gboy_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_events.h -------------------------------------------------------------------------------- /src/gboy_events_vita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_events_vita.c -------------------------------------------------------------------------------- /src/gboy_events_vita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_events_vita.h -------------------------------------------------------------------------------- /src/gboy_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_file.c -------------------------------------------------------------------------------- /src/gboy_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_frame.c -------------------------------------------------------------------------------- /src/gboy_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_frame.h -------------------------------------------------------------------------------- /src/gboy_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_interp.c -------------------------------------------------------------------------------- /src/gboy_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_interp.h -------------------------------------------------------------------------------- /src/gboy_ioctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_ioctrl.c -------------------------------------------------------------------------------- /src/gboy_ioctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_ioctrl.h -------------------------------------------------------------------------------- /src/gboy_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_joy.c -------------------------------------------------------------------------------- /src/gboy_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_joy.h -------------------------------------------------------------------------------- /src/gboy_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_keys.c -------------------------------------------------------------------------------- /src/gboy_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_keys.h -------------------------------------------------------------------------------- /src/gboy_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_lcd.c -------------------------------------------------------------------------------- /src/gboy_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_lcd.h -------------------------------------------------------------------------------- /src/gboy_mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc.c -------------------------------------------------------------------------------- /src/gboy_mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc.h -------------------------------------------------------------------------------- /src/gboy_mbc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc1.c -------------------------------------------------------------------------------- /src/gboy_mbc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc1.h -------------------------------------------------------------------------------- /src/gboy_mbc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc2.c -------------------------------------------------------------------------------- /src/gboy_mbc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc3.c -------------------------------------------------------------------------------- /src/gboy_mbc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc3.h -------------------------------------------------------------------------------- /src/gboy_mbc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc5.c -------------------------------------------------------------------------------- /src/gboy_mbc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mbc5.h -------------------------------------------------------------------------------- /src/gboy_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mem.c -------------------------------------------------------------------------------- /src/gboy_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_mem.h -------------------------------------------------------------------------------- /src/gboy_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_parse.c -------------------------------------------------------------------------------- /src/gboy_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_parse.h -------------------------------------------------------------------------------- /src/gboy_sgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sgb.c -------------------------------------------------------------------------------- /src/gboy_sgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sgb.h -------------------------------------------------------------------------------- /src/gboy_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sound.c -------------------------------------------------------------------------------- /src/gboy_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sound.h -------------------------------------------------------------------------------- /src/gboy_sound_vita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sound_vita.c -------------------------------------------------------------------------------- /src/gboy_sound_vita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_sound_vita.h -------------------------------------------------------------------------------- /src/gboy_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_utils.c -------------------------------------------------------------------------------- /src/gboy_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_video.c -------------------------------------------------------------------------------- /src/gboy_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_video.h -------------------------------------------------------------------------------- /src/gboy_video_vita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_video_vita.c -------------------------------------------------------------------------------- /src/gboy_video_vita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_video_vita.h -------------------------------------------------------------------------------- /src/gboy_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_vm.c -------------------------------------------------------------------------------- /src/gboy_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_vm.h -------------------------------------------------------------------------------- /src/gboy_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gboy_x86_64.S -------------------------------------------------------------------------------- /src/gddb_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gddb_funcs.c -------------------------------------------------------------------------------- /src/gddb_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/gddb_main.c -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/main.h -------------------------------------------------------------------------------- /src/main_vita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/main_vita.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vita_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/vita_audio.c -------------------------------------------------------------------------------- /src/vita_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerpi/realboy-vita/HEAD/src/vita_audio.h --------------------------------------------------------------------------------