├── CMakeLists.txt ├── README.md ├── resources ├── C64 │ ├── basic │ ├── c64hq.vpl │ ├── c64s.vpl │ ├── ccs64.vpl │ ├── chargen │ ├── colodore.vpl │ ├── community-colors.vpl │ ├── deekay.vpl │ ├── frodo.vpl │ ├── godot.vpl │ ├── kernal │ ├── pc64.vpl │ ├── pepto-ntsc-sony.vpl │ ├── pepto-ntsc.vpl │ ├── pepto-pal.vpl │ ├── ptoing.vpl │ ├── rgb.vpl │ ├── vice.vpl │ └── x11_sym.vkm ├── DRIVES │ ├── d1541II │ ├── d1571cr │ ├── dos1001 │ ├── dos1540 │ ├── dos1541 │ ├── dos1551 │ ├── dos1570 │ ├── dos1571 │ ├── dos1581 │ ├── dos2000 │ ├── dos2031 │ ├── dos2040 │ ├── dos3040 │ ├── dos4000 │ └── dos4040 └── PRINTER │ ├── 1520.vpl │ ├── cbm1526 │ ├── mps801 │ ├── mps803 │ ├── mps803.vpl │ ├── nl10-cbm │ └── nl10.vpl ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml └── src ├── 6510core.c ├── 6510core.h ├── 6510dtvcore.c ├── 65816core.c ├── 65c02core.c ├── ChangeLog ├── ChangeLog.1 ├── ChangeLog.2 ├── ChangeLog.3 ├── ChangeLog.4 ├── ChangeLog.5 ├── ChangeLog.6 ├── Makefile.am ├── Makefile.in ├── acia.h ├── aciacore.c ├── alarm.c ├── alarm.h ├── arch └── psvita │ ├── archdep.c │ ├── archdep.h │ ├── blockdev.c │ ├── console.c │ ├── controller │ ├── controller.cpp │ ├── controller.h │ └── ctrl_defs.h │ ├── debug_psv.h │ ├── joy.c │ ├── joy.h │ ├── kbd.h │ ├── main_psv.cpp │ ├── minizip │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h │ ├── mousedrv.c │ ├── mousedrv.h │ ├── signals.c │ ├── ui.c │ ├── ui.h │ ├── uimon.c │ ├── video_psv.c │ ├── videoarch.h │ ├── view │ ├── about.cpp │ ├── about.h │ ├── app_defs.h │ ├── control_pad.cpp │ ├── control_pad.h │ ├── controls.cpp │ ├── controls.h │ ├── dialog_box.cpp │ ├── dialog_box.h │ ├── extractor.cpp │ ├── extractor.h │ ├── file_explorer.cpp │ ├── file_explorer.h │ ├── guitools.cpp │ ├── guitools.h │ ├── iRenderable.h │ ├── ini_parser.cpp │ ├── ini_parser.h │ ├── list_box.cpp │ ├── list_box.h │ ├── menu.cpp │ ├── menu.h │ ├── navigator.cpp │ ├── navigator.h │ ├── peripherals.cpp │ ├── peripherals.h │ ├── resources.cpp │ ├── resources.h │ ├── save_slots.cpp │ ├── save_slots.cpp.bak │ ├── save_slots.h │ ├── scroll_bar.cpp │ ├── scroll_bar.h │ ├── settings.cpp │ ├── settings.h │ ├── statusbar.cpp │ ├── statusbar.h │ ├── stockfont.c │ ├── stockfont.h │ ├── texter.cpp │ ├── texter.h │ ├── view.cpp │ ├── view.h │ ├── vkeyboard.cpp │ └── vkeyboard.h │ ├── vsidui.c │ └── vsyncarch.c ├── archapi.h ├── attach.c ├── attach.h ├── autostart-prg.c ├── autostart-prg.h ├── autostart.c ├── autostart.h ├── blockdev.h ├── buildtools ├── Makefile.am ├── Makefile.in ├── bin2c.c ├── bin2c.sh ├── convert_owcc_libs.sh ├── dat2h.c ├── geninfocontrib.c ├── geninfocontrib_h.sh ├── gensvnversion.sh ├── infocontrib.sed ├── od2c.sh ├── palette2c.c └── palette2c.sh ├── c128 ├── Makefile.am ├── Makefile.in ├── c128-cmdline-options.c ├── c128-cmdline-options.h ├── c128-resources.c ├── c128-resources.h ├── c128-snapshot.c ├── c128-snapshot.h ├── c128.c ├── c128.h ├── c128cia1.c ├── c128cpu.c ├── c128drive.c ├── c128embedded.c ├── c128fastiec.c ├── c128fastiec.h ├── c128mem.c ├── c128mem.h ├── c128meminit.c ├── c128meminit.h ├── c128memlimit.c ├── c128memlimit.h ├── c128memrom.c ├── c128memrom.h ├── c128memsnapshot.c ├── c128memsnapshot.h ├── c128mmu.c ├── c128mmu.h ├── c128model.c ├── c128model.h ├── c128rom.c ├── c128rom.h ├── c128romset.c ├── c128video.c ├── functionrom.c ├── functionrom.h ├── z80.c ├── z80.h ├── z80mem.c └── z80mem.h ├── c128ui.h ├── c1541.c ├── c64 ├── Makefile.am ├── Makefile.in ├── c64-cmdline-options.c ├── c64-cmdline-options.h ├── c64-memory-hacks.c ├── c64-memory-hacks.h ├── c64-resources.c ├── c64-resources.h ├── c64-snapshot.c ├── c64-snapshot.h ├── c64.c ├── c64.h ├── c64_256k.c ├── c64_256k.h ├── c64bus.c ├── c64cart.h ├── c64cia.h ├── c64cia1.c ├── c64cia2.c ├── c64cpu.c ├── c64cpusc.c ├── c64datasette.c ├── c64drive.c ├── c64embedded.c ├── c64export.c ├── c64fastiec.c ├── c64fastiec.h ├── c64gluelogic.c ├── c64gluelogic.h ├── c64iec.c ├── c64iec.h ├── c64io.c ├── c64keyboard.c ├── c64keyboard.h ├── c64mem.c ├── c64mem.h ├── c64meminit.c ├── c64meminit.h ├── c64memlimit.c ├── c64memlimit.h ├── c64memrom.c ├── c64memrom.h ├── c64memsc.c ├── c64memsnapshot.c ├── c64memsnapshot.h ├── c64model.c ├── c64model.h ├── c64parallel.c ├── c64parallel.h ├── c64pla.c ├── c64pla.h ├── c64printer.c ├── c64rom.c ├── c64rom.h ├── c64romset.c ├── c64rsuser.c ├── c64rsuser.h ├── c64scmodel.c ├── c64sound.c ├── c64video.c ├── cart │ ├── Makefile.am │ ├── Makefile.in │ ├── actionreplay.c │ ├── actionreplay.h │ ├── actionreplay2.c │ ├── actionreplay2.h │ ├── actionreplay3.c │ ├── actionreplay3.h │ ├── actionreplay4.c │ ├── actionreplay4.h │ ├── atomicpower.c │ ├── atomicpower.h │ ├── c64-generic.c │ ├── c64-generic.h │ ├── c64-midi.c │ ├── c64-midi.h │ ├── c64acia.h │ ├── c64acia1.c │ ├── c64cart.c │ ├── c64carthooks.c │ ├── c64cartmem.c │ ├── c64cartmem.h │ ├── c64cartsystem.h │ ├── c64tpi.c │ ├── c64tpi.h │ ├── capture.c │ ├── capture.h │ ├── clockport-mp3at64.c │ ├── clockport-mp3at64.h │ ├── clockport-rrnet.c │ ├── clockport-rrnet.h │ ├── clockport.c │ ├── clockport.h │ ├── comal80.c │ ├── comal80.h │ ├── cpmcart.c │ ├── cpmcart.h │ ├── crt.c │ ├── crt.h │ ├── cs8900io.c │ ├── cs8900io.h │ ├── daa.c │ ├── daa.h │ ├── debugcart.c │ ├── debugcart.h │ ├── delaep256.c │ ├── delaep256.h │ ├── delaep64.c │ ├── delaep64.h │ ├── delaep7x8.c │ ├── delaep7x8.h │ ├── diashowmaker.c │ ├── diashowmaker.h │ ├── digimax.c │ ├── digimax.h │ ├── dinamic.c │ ├── dinamic.h │ ├── dqbb.c │ ├── dqbb.h │ ├── ds12c887rtc.c │ ├── ds12c887rtc.h │ ├── easycalc.c │ ├── easycalc.h │ ├── easyflash.c │ ├── easyflash.h │ ├── epyxfastload.c │ ├── epyxfastload.h │ ├── ethernetcart.c │ ├── ethernetcart.h │ ├── exos.c │ ├── exos.h │ ├── expert.c │ ├── expert.h │ ├── final.c │ ├── final.h │ ├── final3.c │ ├── final3.h │ ├── finalplus.c │ ├── finalplus.h │ ├── formel64.c │ ├── formel64.h │ ├── freezeframe.c │ ├── freezeframe.h │ ├── freezemachine.c │ ├── freezemachine.h │ ├── funplay.c │ ├── funplay.h │ ├── gamekiller.c │ ├── gamekiller.h │ ├── georam.c │ ├── georam.h │ ├── gmod2.c │ ├── gmod2.h │ ├── gs.c │ ├── gs.h │ ├── ide64.c │ ├── ide64.h │ ├── isepic.c │ ├── isepic.h │ ├── kcs.c │ ├── kcs.h │ ├── kingsoft.c │ ├── kingsoft.h │ ├── mach5.c │ ├── mach5.h │ ├── magicdesk.c │ ├── magicdesk.h │ ├── magicformel.c │ ├── magicformel.h │ ├── magicvoice.c │ ├── magicvoice.h │ ├── mikroass.c │ ├── mikroass.h │ ├── mmc64.c │ ├── mmc64.h │ ├── mmcreplay.c │ ├── mmcreplay.h │ ├── ocean.c │ ├── ocean.h │ ├── pagefox.c │ ├── pagefox.h │ ├── prophet64.c │ ├── prophet64.h │ ├── ramcart.c │ ├── ramcart.h │ ├── retroreplay.c │ ├── retroreplay.h │ ├── reu.c │ ├── reu.h │ ├── rexep256.c │ ├── rexep256.h │ ├── rexutility.c │ ├── rexutility.h │ ├── rgcd.c │ ├── rgcd.h │ ├── ross.c │ ├── ross.h │ ├── rrnetmk3.c │ ├── rrnetmk3.h │ ├── sfx_soundexpander.c │ ├── sfx_soundexpander.h │ ├── sfx_soundsampler.c │ ├── sfx_soundsampler.h │ ├── shortbus.c │ ├── shortbus.h │ ├── shortbus_digimax.c │ ├── shortbus_digimax.h │ ├── shortbus_etfe.c │ ├── shortbus_etfe.h │ ├── silverrock128.c │ ├── silverrock128.h │ ├── simonsbasic.c │ ├── simonsbasic.h │ ├── snapshot64.c │ ├── snapshot64.h │ ├── stardos.c │ ├── stardos.h │ ├── stb.c │ ├── stb.h │ ├── superexplode5.c │ ├── superexplode5.h │ ├── supergames.c │ ├── supergames.h │ ├── supersnapshot.c │ ├── supersnapshot.h │ ├── supersnapshot4.c │ ├── supersnapshot4.h │ ├── warpspeed.c │ ├── warpspeed.h │ ├── westermann.c │ ├── westermann.h │ ├── zaxxon.c │ └── zaxxon.h ├── musdrv.h ├── patchrom.c ├── patchrom.h ├── plus256k.c ├── plus256k.h ├── plus60k.c ├── plus60k.h ├── psid.c ├── psid.h ├── psiddrv.a65 ├── psiddrv.h ├── reloc65.c ├── vsid-cmdline-options.c ├── vsid-cmdline-options.h ├── vsid-debugcart.c ├── vsid-debugcart.h ├── vsid-resources.c ├── vsid-snapshot.c ├── vsid.c ├── vsidcia1.c ├── vsidcia2.c ├── vsidcpu.c ├── vsidmem.c ├── vsidmeminit.c ├── vsidmemsnapshot.c ├── vsidpla.c ├── vsidsound.c └── vsidstubs.c ├── c64basic.h ├── c64chargen.h ├── c64dtv ├── Makefile.am ├── Makefile.in ├── c64dtv-cmdline-options.c ├── c64dtv-cmdline-options.h ├── c64dtv-resources.c ├── c64dtv-resources.h ├── c64dtv-snapshot.c ├── c64dtv-snapshot.h ├── c64dtv.c ├── c64dtv.h ├── c64dtvblitter.c ├── c64dtvblitter.h ├── c64dtvcart.c ├── c64dtvcia1.c ├── c64dtvcia2.c ├── c64dtvcpu.c ├── c64dtvcpu.h ├── c64dtvdma.c ├── c64dtvdma.h ├── c64dtvembedded.c ├── c64dtvflash.c ├── c64dtvflash.h ├── c64dtviec.c ├── c64dtvmem.c ├── c64dtvmem.h ├── c64dtvmeminit.c ├── c64dtvmeminit.h ├── c64dtvmemrom.c ├── c64dtvmemsnapshot.c ├── c64dtvmemsnapshot.h ├── c64dtvmodel.c ├── c64dtvmodel.h ├── c64dtvpla.c ├── c64dtvprinter.c ├── c64dtvsound.c ├── debugcart.c ├── debugcart.h ├── flash-trap.c ├── flash-trap.h ├── hummeradc.c └── hummeradc.h ├── c64kernal.h ├── c64ui.h ├── cartconv.c ├── cartio.h ├── cartridge.h ├── catweaselmkiii.h ├── cbm2 ├── Makefile.am ├── Makefile.in ├── cbm2-cmdline-options.c ├── cbm2-cmdline-options.h ├── cbm2-common-resources.c ├── cbm2-resources.c ├── cbm2-resources.h ├── cbm2-snapshot.c ├── cbm2-snapshot.h ├── cbm2.c ├── cbm2.h ├── cbm2acia.h ├── cbm2acia1.c ├── cbm2bus.c ├── cbm2cart.c ├── cbm2cart.h ├── cbm2cia.h ├── cbm2cia1.c ├── cbm2cpu.c ├── cbm2datasette.c ├── cbm2drive.c ├── cbm2embedded.c ├── cbm2iec.c ├── cbm2iec.h ├── cbm2io.c ├── cbm2mem.c ├── cbm2mem.h ├── cbm2memsnapshot.c ├── cbm2memsnapshot.h ├── cbm2model.c ├── cbm2model.h ├── cbm2printer.c ├── cbm2rom.c ├── cbm2rom.h ├── cbm2romset.c ├── cbm2sound.c ├── cbm2tpi.h ├── cbm2tpi1.c ├── cbm2tpi2.c ├── cbm2video.c ├── cbm5x0-resources.c ├── cbm5x0-snapshot.c ├── cbm5x0.c ├── cbm5x0cia1.c ├── cbm5x0embedded.c ├── cbm5x0mem.c ├── cbm5x0printer.c ├── cbm5x0rom.c ├── cbm5x0video.c ├── debugcart.c └── debugcart.h ├── cbm2ui.h ├── cbmdos.c ├── cbmdos.h ├── cbmimage.c ├── cbmimage.h ├── charset.c ├── charset.h ├── cia.h ├── clipboard.c ├── clipboard.h ├── clkguard.c ├── clkguard.h ├── cmdline.c ├── cmdline.h ├── color.c ├── color.h ├── config.h ├── console.h ├── core ├── Makefile.am ├── Makefile.in ├── ata.c ├── ata.h ├── ciacore.c ├── ciatimer.c ├── ciatimer.h ├── cs8900.c ├── cs8900.h ├── flash040core.c ├── fmopl.c ├── fmopl.h ├── m93c86.c ├── m93c86.h ├── mc6821core.c ├── mc6821core.h ├── riotcore.c ├── ser-eeprom.c ├── ser-eeprom.h ├── spi-sdcard.c ├── spi-sdcard.h ├── t6721.c ├── t6721.h ├── tpicore.c └── viacore.c ├── crc32.c ├── crc32.h ├── crtc ├── Makefile.am ├── Makefile.in ├── crtc-cmdline-options.c ├── crtc-cmdline-options.h ├── crtc-color.c ├── crtc-color.h ├── crtc-draw.c ├── crtc-draw.h ├── crtc-mem.c ├── crtc-mem.h ├── crtc-resources.c ├── crtc-resources.h ├── crtc-snapshot.c ├── crtc.c ├── crtc.h └── crtctypes.h ├── datasette.c ├── datasette.h ├── debug.c ├── debug.h ├── debug.h.in ├── diag ├── Makefile.am ├── Makefile.in ├── c64_diag_586220_harness.c └── c64_diag_586220_harness.h ├── digimaxcore.c ├── diskconstants.h ├── diskimage.h ├── diskimage ├── Makefile.am ├── Makefile.in ├── diskimage.c ├── fsimage-check.c ├── fsimage-check.h ├── fsimage-create.c ├── fsimage-create.h ├── fsimage-dxx.c ├── fsimage-dxx.h ├── fsimage-gcr.c ├── fsimage-gcr.h ├── fsimage-p64.c ├── fsimage-p64.h ├── fsimage-probe.c ├── fsimage-probe.h ├── fsimage.c ├── fsimage.h ├── rawimage.c ├── rawimage.h ├── realimage.c ├── realimage.h └── x64.h ├── dma.c ├── dma.h ├── drive ├── Makefile.am ├── Makefile.in ├── drive-check.c ├── drive-check.h ├── drive-cmdline-options.c ├── drive-cmdline-options.h ├── drive-overflow.c ├── drive-overflow.h ├── drive-resources.c ├── drive-resources.h ├── drive-snapshot.c ├── drive-snapshot.h ├── drive-sound.c ├── drive-sound.h ├── drive-writeprotect.c ├── drive-writeprotect.h ├── drive.c ├── drive.h ├── drivecpu.c ├── drivecpu.h ├── drivecpu65c02.c ├── drivecpu65c02.h ├── driveimage.c ├── driveimage.h ├── drivemem.c ├── drivemem.h ├── driverom.c ├── driverom.h ├── drivesync.c ├── drivesync.h ├── drivetypes.h ├── iec-c64exp.h ├── iec-plus4exp.h ├── iec.h ├── iec │ ├── Makefile.am │ ├── Makefile.in │ ├── c64exp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── c64exp-cmdline-options.c │ │ ├── c64exp-cmdline-options.h │ │ ├── c64exp-resources.c │ │ ├── c64exp-resources.h │ │ ├── dolphindos3.c │ │ ├── dolphindos3.h │ │ ├── iec-c64exp.c │ │ ├── profdos.c │ │ ├── profdos.h │ │ ├── stardos-exp.c │ │ ├── stardos-exp.h │ │ ├── supercard.c │ │ └── supercard.h │ ├── cia1571d.c │ ├── cia1581d.c │ ├── ciad.h │ ├── fdd.c │ ├── fdd.h │ ├── glue1571.c │ ├── glue1571.h │ ├── iec-cmdline-options.c │ ├── iec-cmdline-options.h │ ├── iec-resources.c │ ├── iec-resources.h │ ├── iec.c │ ├── iecrom.c │ ├── iecrom.h │ ├── memiec.c │ ├── memiec.h │ ├── pc8477.c │ ├── pc8477.h │ ├── plus4exp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── iec-plus4exp.c │ │ ├── plus4exp-cmdline-options.c │ │ ├── plus4exp-cmdline-options.h │ │ ├── plus4exp-resources.c │ │ └── plus4exp-resources.h │ ├── via1d1541.c │ ├── via1d1541.h │ ├── via4000.c │ ├── via4000.h │ ├── wd1770.c │ └── wd1770.h ├── iec128dcr.h ├── iec128dcr │ ├── Makefile.am │ ├── Makefile.in │ ├── iec128dcr-cmdline-options.c │ ├── iec128dcr-cmdline-options.h │ ├── iec128dcr-resources.c │ ├── iec128dcr-resources.h │ ├── iec128dcr.c │ ├── iec128dcrrom.c │ └── iec128dcrrom.h ├── iecieee.h ├── iecieee │ ├── Makefile.am │ ├── Makefile.in │ ├── iecieee.c │ └── via2d.c ├── ieee.h ├── ieee │ ├── Makefile.am │ ├── Makefile.in │ ├── fdc.c │ ├── fdc.h │ ├── ieee-cmdline-options.c │ ├── ieee-cmdline-options.h │ ├── ieee-resources.c │ ├── ieee-resources.h │ ├── ieee.c │ ├── ieeerom.c │ ├── ieeerom.h │ ├── memieee.c │ ├── memieee.h │ ├── riot1d.c │ ├── riot2d.c │ ├── riotd.h │ ├── via1d2031.c │ └── via1d2031.h ├── rotation.c ├── rotation.h ├── tcbm.h ├── tcbm │ ├── Makefile.am │ ├── Makefile.in │ ├── glue1551.c │ ├── glue1551.h │ ├── mem1551.c │ ├── mem1551.h │ ├── tcbm-cmdline-options.c │ ├── tcbm-cmdline-options.h │ ├── tcbm-resources.c │ ├── tcbm-resources.h │ ├── tcbm.c │ ├── tcbmrom.c │ ├── tcbmrom.h │ ├── tpid.c │ └── tpid.h └── viad.h ├── drived1541II.h ├── drivedos1001.h ├── drivedos1540.h ├── drivedos1541.h ├── drivedos1551.h ├── drivedos1570.h ├── drivedos1571.h ├── drivedos1581.h ├── drivedos2031.h ├── drivedos2040.h ├── drivedos3040.h ├── drivedos4040.h ├── dynlib.h ├── embedded.c ├── embedded.h ├── event.c ├── export.h ├── fileio.h ├── fileio ├── Makefile.am ├── Makefile.in ├── cbmfile.c ├── cbmfile.h ├── fileio.c ├── p00.c └── p00.h ├── findpath.c ├── findpath.h ├── fixpoint.c ├── fixpoint.h ├── flash040.h ├── fliplist.c ├── fliplist.h ├── fsdevice.h ├── fsdevice ├── Makefile.am ├── Makefile.in ├── fsdevice-close.c ├── fsdevice-close.h ├── fsdevice-cmdline-options.c ├── fsdevice-cmdline-options.h ├── fsdevice-flush.c ├── fsdevice-flush.h ├── fsdevice-open.c ├── fsdevice-open.h ├── fsdevice-read.c ├── fsdevice-read.h ├── fsdevice-resources.c ├── fsdevice-resources.h ├── fsdevice-write.c ├── fsdevice-write.h ├── fsdevice.c └── fsdevicetypes.h ├── fullscreen.h ├── gcr.c ├── gcr.h ├── gfxoutput.h ├── gfxoutputdrv ├── Makefile.am ├── Makefile.in ├── bmpdrv.c ├── bmpdrv.h ├── doodledrv.c ├── ffmpegdrv.c ├── ffmpegdrv.h ├── ffmpeglib.c ├── ffmpeglib.h ├── gfxoutput.c ├── gifdrv.c ├── gifdrv.h ├── godotdrv.c ├── godotdrv.h ├── iffdrv.c ├── iffdrv.h ├── jpegdrv.c ├── jpegdrv.h ├── koaladrv.c ├── nativedrv.c ├── nativedrv.h ├── pcxdrv.c ├── pcxdrv.h ├── pngdrv.c ├── pngdrv.h ├── ppmdrv.c ├── ppmdrv.h ├── quicktimedrv.c └── quicktimedrv.h ├── h6809regs.h ├── hardsid.h ├── hvsc ├── Makefile.am ├── Makefile.in ├── base.c ├── base.h ├── bugs.c ├── bugs.h ├── hvsc.h ├── hvsc_defs.h ├── main.c ├── main.h ├── psid.c ├── psid.h ├── sldb.c ├── sldb.h ├── stil.c └── stil.h ├── hwsiddrv ├── Makefile.am ├── Makefile.in ├── catweaselmkiii-amiga-drv.c ├── catweaselmkiii-beos-drv.c ├── catweaselmkiii-unix-drv.c ├── catweaselmkiii-win32-drv.c ├── cw-amiga-clockport.c ├── cw-amiga-device.c ├── cw-amiga-openpci.c ├── cw-amiga-os4.c ├── cw-amiga-zorro.c ├── cw-amiga.h ├── cw-unix-device.c ├── cw-unix-pci.c ├── cw-unix.h ├── cw-win32-dll.c ├── cw-win32-pci.c ├── cw-win32.h ├── hardsid-amiga-drv.c ├── hardsid-beos-drv.c ├── hardsid-unix-drv.c ├── hardsid-win32-drv.c ├── hs-amiga-gg2isa.c ├── hs-amiga-openpci.c ├── hs-amiga-os4.c ├── hs-amiga.h ├── hs-beos-isa.c ├── hs-beos-pci.c ├── hs-beos.h ├── hs-unix-isa.c ├── hs-unix-linux.c ├── hs-unix-pci.c ├── hs-unix.h ├── hs-win32-dll.c ├── hs-win32-isa.c ├── hs-win32-pci.c ├── hs-win32.h ├── parsid-beos-drv.c ├── parsid-unix-drv.c ├── parsid-win32-drv.c ├── ps-ieee1284.c ├── ps-unix-file.c ├── ps-unix-io.c ├── ps-unix.h ├── ps-win32-dll.c ├── ps-win32-io.c ├── ps-win32.h ├── ssi2001-amiga-drv.c ├── ssi2001-beos-drv.c ├── ssi2001-unix-drv.c ├── ssi2001-win32-drv.c └── wininpoutp.h ├── iecbus.h ├── iecbus ├── Makefile.am ├── Makefile.in └── iecbus.c ├── iecdrive.h ├── imagecontents.h ├── imagecontents ├── Makefile.am ├── Makefile.in ├── diskcontents-block.c ├── diskcontents-block.h ├── diskcontents-iec.c ├── diskcontents-iec.h ├── diskcontents.c ├── diskcontents.h ├── imagecontents.c ├── tapecontents.c └── tapecontents.h ├── info.c ├── info.h ├── infocontrib.h ├── init.c ├── init.h ├── initcmdline.c ├── initcmdline.h ├── interrupt.c ├── interrupt.h ├── iodrv ├── Makefile.am ├── Makefile.in ├── io-access.h ├── io-beos-access.c ├── io-unix-access.c ├── pci-beos-drv.c ├── pci-beos-drv.h ├── pci-unix-drv.c └── pci-unix-drv.h ├── ioutil.c ├── ioutil.h ├── joyport ├── Makefile.am ├── Makefile.in ├── bbrtc.c ├── bbrtc.h ├── cardkey.c ├── cardkey.h ├── coplin_keypad.c ├── coplin_keypad.h ├── cx21.c ├── cx21.h ├── cx85.c ├── cx85.h ├── joyport.c ├── joyport.h ├── joystick.c ├── joystick.h ├── lightpen.c ├── lightpen.h ├── mouse.c ├── mouse.h ├── paperclip64.c ├── paperclip64.h ├── rushware_keypad.c ├── rushware_keypad.h ├── sampler2bit.c ├── sampler2bit.h ├── sampler4bit.c ├── sampler4bit.h ├── script64_dongle.c ├── script64_dongle.h ├── snespad.c ├── snespad.h ├── vizawrite64_dongle.c ├── vizawrite64_dongle.h ├── waasoft_dongle.c └── waasoft_dongle.h ├── kbdbuf.c ├── kbdbuf.h ├── keyboard.c ├── keyboard.h ├── lib.c ├── lib.h ├── lib ├── Makefile.am ├── Makefile.in ├── ffmpeg │ ├── Makefile.am │ ├── Makefile.in │ └── configure.gnu ├── libffmpeg │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── CREDITS │ ├── Changelog │ ├── INSTALL.md │ ├── LICENSE.md │ ├── MAINTAINERS │ ├── Makefile │ ├── README.md │ ├── RELEASE │ ├── RELEASE_NOTES │ ├── VERSION │ ├── arch.mak │ ├── cmdutils.c │ ├── cmdutils.h │ ├── cmdutils_common_opts.h │ ├── cmdutils_opencl.c │ ├── common.mak │ ├── compat │ │ ├── aix │ │ │ └── math.h │ │ ├── avisynth │ │ │ ├── avisynth_c.h │ │ │ ├── avisynth_c_25.h │ │ │ ├── avxsynth_c.h │ │ │ └── windowsPorts │ │ │ │ ├── basicDataTypeConversions.h │ │ │ │ └── windows2linux.h │ │ ├── dos │ │ │ └── inttypes.h │ │ ├── float │ │ │ ├── float.h │ │ │ └── limits.h │ │ ├── getopt.c │ │ ├── msvcrt │ │ │ ├── snprintf.c │ │ │ └── snprintf.h │ │ ├── os2threads.h │ │ ├── plan9 │ │ │ ├── head │ │ │ ├── main.c │ │ │ └── printf │ │ ├── strtod.c │ │ ├── tms470 │ │ │ └── math.h │ │ ├── va_copy.h │ │ ├── w32pthreads.h │ │ └── windows │ │ │ └── makedef │ ├── configure │ ├── doc │ │ ├── APIchanges │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── authors.texi │ │ ├── bitstream_filters.texi │ │ ├── bootstrap.min.css │ │ ├── build_system.txt │ │ ├── codecs.texi │ │ ├── decoders.texi │ │ ├── default.css │ │ ├── demuxers.texi │ │ ├── developer.texi │ │ ├── devices.texi │ │ ├── doxy-wrapper.sh │ │ ├── encoders.texi │ │ ├── errno.txt │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── avio_reading.c │ │ │ ├── decoding_encoding.c │ │ │ ├── demuxing_decoding.c │ │ │ ├── extract_mvs.c │ │ │ ├── filter_audio.c │ │ │ ├── filtering_audio.c │ │ │ ├── filtering_video.c │ │ │ ├── metadata.c │ │ │ ├── muxing.c │ │ │ ├── remuxing.c │ │ │ ├── resampling_audio.c │ │ │ ├── scaling_video.c │ │ │ ├── transcode_aac.c │ │ │ └── transcoding.c │ │ ├── faq.texi │ │ ├── fate.texi │ │ ├── fate_config.sh.template │ │ ├── ffmpeg-bitstream-filters.texi │ │ ├── ffmpeg-codecs.texi │ │ ├── ffmpeg-devices.texi │ │ ├── ffmpeg-filters.texi │ │ ├── ffmpeg-formats.texi │ │ ├── ffmpeg-protocols.texi │ │ ├── ffmpeg-resampler.texi │ │ ├── ffmpeg-scaler.texi │ │ ├── ffmpeg-utils.texi │ │ ├── ffmpeg.texi │ │ ├── ffmpeg.txt │ │ ├── ffplay.texi │ │ ├── ffprobe.texi │ │ ├── ffprobe.xsd │ │ ├── ffserver.conf │ │ ├── ffserver.texi │ │ ├── fftools-common-opts.texi │ │ ├── filter_design.txt │ │ ├── filters.texi │ │ ├── formats.texi │ │ ├── general.texi │ │ ├── git-howto.texi │ │ ├── indevs.texi │ │ ├── issue_tracker.txt │ │ ├── libavcodec.texi │ │ ├── libavdevice.texi │ │ ├── libavfilter.texi │ │ ├── libavformat.texi │ │ ├── libavutil.texi │ │ ├── libswresample.texi │ │ ├── libswscale.texi │ │ ├── metadata.texi │ │ ├── mips.txt │ │ ├── multithreading.txt │ │ ├── muxers.texi │ │ ├── nut.texi │ │ ├── optimization.txt │ │ ├── outdevs.texi │ │ ├── platform.texi │ │ ├── print_options.c │ │ ├── protocols.texi │ │ ├── rate_distortion.txt │ │ ├── resampler.texi │ │ ├── scaler.texi │ │ ├── snow.txt │ │ ├── style.min.css │ │ ├── swresample.txt │ │ ├── swscale.txt │ │ ├── t2h.init │ │ ├── t2h.pm │ │ ├── tablegen.txt │ │ ├── texi2pod.pl │ │ ├── texidep.pl │ │ ├── utils.texi │ │ └── writing_filters.txt │ ├── ffmpeg.c │ ├── ffmpeg.h │ ├── ffmpeg_dxva2.c │ ├── ffmpeg_filter.c │ ├── ffmpeg_opt.c │ ├── ffmpeg_vda.c │ ├── ffmpeg_vdpau.c │ ├── ffplay.c │ ├── ffprobe.c │ ├── ffserver.c │ ├── libavcodec │ │ ├── 012v.c │ │ ├── 4xm.c │ │ ├── 8bps.c │ │ ├── 8svx.c │ │ ├── Makefile │ │ ├── a64colors.h │ │ ├── a64multienc.c │ │ ├── a64tables.h │ │ ├── aac.h │ │ ├── aac_ac3_parser.c │ │ ├── aac_ac3_parser.h │ │ ├── aac_adtstoasc_bsf.c │ │ ├── aac_parser.c │ │ ├── aac_tablegen.c │ │ ├── aac_tablegen.h │ │ ├── aac_tablegen_decl.h │ │ ├── aacadtsdec.c │ │ ├── aacadtsdec.h │ │ ├── aaccoder.c │ │ ├── aacdec.c │ │ ├── aacdectab.h │ │ ├── aacenc.c │ │ ├── aacenc.h │ │ ├── aacps.c │ │ ├── aacps.h │ │ ├── aacps_tablegen.c │ │ ├── aacps_tablegen.h │ │ ├── aacpsdata.c │ │ ├── aacpsdsp.c │ │ ├── aacpsdsp.h │ │ ├── aacpsy.c │ │ ├── aacsbr.c │ │ ├── aacsbr.h │ │ ├── aacsbr_tablegen.c │ │ ├── aacsbr_tablegen.h │ │ ├── aacsbrdata.h │ │ ├── aactab.c │ │ ├── aactab.h │ │ ├── aandcttab.c │ │ ├── aandcttab.h │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── cabac.h │ │ │ ├── fft_init_aarch64.c │ │ │ ├── fft_neon.S │ │ │ ├── h264chroma_init_aarch64.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_aarch64.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264qpel_init_aarch64.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hpeldsp_init_aarch64.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── mdct_neon.S │ │ │ ├── mpegaudiodsp_init.c │ │ │ ├── mpegaudiodsp_neon.S │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── opus_imdct_init.c │ │ │ ├── opus_imdct_neon.S │ │ │ ├── rv40dsp_init_aarch64.c │ │ │ ├── vc1dsp_init_aarch64.c │ │ │ ├── videodsp.S │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp_init.c │ │ │ └── vorbisdsp_neon.S │ │ ├── aasc.c │ │ ├── ac3.c │ │ ├── ac3.h │ │ ├── ac3_parser.c │ │ ├── ac3_parser.h │ │ ├── ac3dec.c │ │ ├── ac3dec.h │ │ ├── ac3dec_data.c │ │ ├── ac3dec_data.h │ │ ├── ac3dec_fixed.c │ │ ├── ac3dec_float.c │ │ ├── ac3dsp.c │ │ ├── ac3dsp.h │ │ ├── ac3enc.c │ │ ├── ac3enc.h │ │ ├── ac3enc_fixed.c │ │ ├── ac3enc_float.c │ │ ├── ac3enc_opts_template.c │ │ ├── ac3enc_template.c │ │ ├── ac3tab.c │ │ ├── ac3tab.h │ │ ├── acelp_filters.c │ │ ├── acelp_filters.h │ │ ├── acelp_pitch_delay.c │ │ ├── acelp_pitch_delay.h │ │ ├── acelp_vectors.c │ │ ├── acelp_vectors.h │ │ ├── adpcm.c │ │ ├── adpcm.h │ │ ├── adpcm_data.c │ │ ├── adpcm_data.h │ │ ├── adpcmenc.c │ │ ├── adx.c │ │ ├── adx.h │ │ ├── adx_parser.c │ │ ├── adxdec.c │ │ ├── adxenc.c │ │ ├── aic.c │ │ ├── alac.c │ │ ├── alac_data.c │ │ ├── alac_data.h │ │ ├── alacenc.c │ │ ├── aliaspixdec.c │ │ ├── aliaspixenc.c │ │ ├── allcodecs.c │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── blockdsp_alpha.c │ │ │ ├── hpeldsp_alpha.c │ │ │ ├── hpeldsp_alpha.h │ │ │ ├── hpeldsp_alpha_asm.S │ │ │ ├── idctdsp_alpha.c │ │ │ ├── idctdsp_alpha.h │ │ │ ├── idctdsp_alpha_asm.S │ │ │ ├── me_cmp_alpha.c │ │ │ ├── me_cmp_mvi_asm.S │ │ │ ├── mpegvideo_alpha.c │ │ │ ├── pixblockdsp_alpha.c │ │ │ ├── regdef.h │ │ │ └── simple_idct_alpha.c │ │ ├── alsdec.c │ │ ├── amr.h │ │ ├── amrnbdata.h │ │ ├── amrnbdec.c │ │ ├── amrwbdata.h │ │ ├── amrwbdec.c │ │ ├── anm.c │ │ ├── ansi.c │ │ ├── apedec.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── aac.h │ │ │ ├── aacpsdsp_init_arm.c │ │ │ ├── aacpsdsp_neon.S │ │ │ ├── ac3dsp_arm.S │ │ │ ├── ac3dsp_armv6.S │ │ │ ├── ac3dsp_init_arm.c │ │ │ ├── ac3dsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── audiodsp_arm.h │ │ │ ├── audiodsp_init_arm.c │ │ │ ├── audiodsp_init_neon.c │ │ │ ├── audiodsp_neon.S │ │ │ ├── blockdsp_arm.h │ │ │ ├── blockdsp_init_arm.c │ │ │ ├── blockdsp_init_neon.c │ │ │ ├── blockdsp_neon.S │ │ │ ├── cabac.h │ │ │ ├── dca.h │ │ │ ├── dcadsp_init_arm.c │ │ │ ├── dcadsp_neon.S │ │ │ ├── dcadsp_vfp.S │ │ │ ├── dct-test.c │ │ │ ├── fft_fixed_init_arm.c │ │ │ ├── fft_fixed_neon.S │ │ │ ├── fft_init_arm.c │ │ │ ├── fft_neon.S │ │ │ ├── fft_vfp.S │ │ │ ├── flacdsp_arm.S │ │ │ ├── flacdsp_init_arm.c │ │ │ ├── fmtconvert_init_arm.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── fmtconvert_vfp.S │ │ │ ├── fmtconvert_vfp_armv6.S │ │ │ ├── h264chroma_init_arm.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_arm.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init_arm.c │ │ │ ├── h264pred_neon.S │ │ │ ├── h264qpel_init_arm.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hpeldsp_arm.S │ │ │ ├── hpeldsp_arm.h │ │ │ ├── hpeldsp_armv6.S │ │ │ ├── hpeldsp_init_arm.c │ │ │ ├── hpeldsp_init_armv6.c │ │ │ ├── hpeldsp_init_neon.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── idct.h │ │ │ ├── idctdsp_arm.S │ │ │ ├── idctdsp_arm.h │ │ │ ├── idctdsp_armv6.S │ │ │ ├── idctdsp_init_arm.c │ │ │ ├── idctdsp_init_armv5te.c │ │ │ ├── idctdsp_init_armv6.c │ │ │ ├── idctdsp_init_neon.c │ │ │ ├── idctdsp_neon.S │ │ │ ├── int_neon.S │ │ │ ├── jrevdct_arm.S │ │ │ ├── lossless_audiodsp_init_arm.c │ │ │ ├── lossless_audiodsp_neon.S │ │ │ ├── mathops.h │ │ │ ├── mdct_fixed_neon.S │ │ │ ├── mdct_neon.S │ │ │ ├── mdct_vfp.S │ │ │ ├── me_cmp_armv6.S │ │ │ ├── me_cmp_init_arm.c │ │ │ ├── mlpdsp_armv5te.S │ │ │ ├── mlpdsp_armv6.S │ │ │ ├── mlpdsp_init_arm.c │ │ │ ├── mpegaudiodsp_fixed_armv6.S │ │ │ ├── mpegaudiodsp_init_arm.c │ │ │ ├── mpegvideo_arm.c │ │ │ ├── mpegvideo_arm.h │ │ │ ├── mpegvideo_armv5te.c │ │ │ ├── mpegvideo_armv5te_s.S │ │ │ ├── mpegvideo_neon.S │ │ │ ├── mpegvideoencdsp_armv6.S │ │ │ ├── mpegvideoencdsp_init_arm.c │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── pixblockdsp_armv6.S │ │ │ ├── pixblockdsp_init_arm.c │ │ │ ├── rdft_neon.S │ │ │ ├── rv34dsp_init_arm.c │ │ │ ├── rv34dsp_neon.S │ │ │ ├── rv40dsp_init_arm.c │ │ │ ├── rv40dsp_neon.S │ │ │ ├── sbrdsp_init_arm.c │ │ │ ├── sbrdsp_neon.S │ │ │ ├── simple_idct_arm.S │ │ │ ├── simple_idct_armv5te.S │ │ │ ├── simple_idct_armv6.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── startcode.h │ │ │ ├── startcode_armv6.S │ │ │ ├── synth_filter_neon.S │ │ │ ├── synth_filter_vfp.S │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init_arm.c │ │ │ ├── vc1dsp_init_neon.c │ │ │ ├── vc1dsp_neon.S │ │ │ ├── videodsp_arm.h │ │ │ ├── videodsp_armv5te.S │ │ │ ├── videodsp_init_arm.c │ │ │ ├── videodsp_init_armv5te.c │ │ │ ├── vorbisdsp_init_arm.c │ │ │ ├── vorbisdsp_neon.S │ │ │ ├── vp3dsp_init_arm.c │ │ │ ├── vp3dsp_neon.S │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp_init_arm.c │ │ │ ├── vp6dsp_neon.S │ │ │ ├── vp8.h │ │ │ ├── vp8_armv6.S │ │ │ ├── vp8dsp.h │ │ │ ├── vp8dsp_armv6.S │ │ │ ├── vp8dsp_init_arm.c │ │ │ ├── vp8dsp_init_armv6.c │ │ │ ├── vp8dsp_init_neon.c │ │ │ └── vp8dsp_neon.S │ │ ├── ass.c │ │ ├── ass.h │ │ ├── ass_split.c │ │ ├── ass_split.h │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── asv.c │ │ ├── asv.h │ │ ├── asvdec.c │ │ ├── asvenc.c │ │ ├── atrac.c │ │ ├── atrac.h │ │ ├── atrac1.c │ │ ├── atrac1data.h │ │ ├── atrac3.c │ │ ├── atrac3data.h │ │ ├── atrac3plus.c │ │ ├── atrac3plus.h │ │ ├── atrac3plus_data.h │ │ ├── atrac3plusdec.c │ │ ├── atrac3plusdsp.c │ │ ├── audio_frame_queue.c │ │ ├── audio_frame_queue.h │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── audiodsp.c │ │ ├── audiodsp.h │ │ ├── aura.c │ │ ├── avcodec.h │ │ ├── avcodecres.rc │ │ ├── avdct.c │ │ ├── avdct.h │ │ ├── avfft.c │ │ ├── avfft.h │ │ ├── avpacket.c │ │ ├── avpicture.c │ │ ├── avr32 │ │ │ └── mathops.h │ │ ├── avrndec.c │ │ ├── avs.c │ │ ├── avuidec.c │ │ ├── avuienc.c │ │ ├── bethsoftvideo.c │ │ ├── bethsoftvideo.h │ │ ├── bfi.c │ │ ├── bfin │ │ │ └── README │ │ ├── bgmc.c │ │ ├── bgmc.h │ │ ├── bink.c │ │ ├── binkaudio.c │ │ ├── binkdata.h │ │ ├── binkdsp.c │ │ ├── binkdsp.h │ │ ├── bintext.c │ │ ├── bintext.h │ │ ├── bit_depth_template.c │ │ ├── bitstream.c │ │ ├── bitstream_filter.c │ │ ├── blockdsp.c │ │ ├── blockdsp.h │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── bmp_parser.c │ │ ├── bmpenc.c │ │ ├── bmvaudio.c │ │ ├── bmvvideo.c │ │ ├── brenderpix.c │ │ ├── bswapdsp.c │ │ ├── bswapdsp.h │ │ ├── bytestream.h │ │ ├── c93.c │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── cabac_functions.h │ │ ├── cabac_tablegen.c │ │ ├── cabac_tablegen.h │ │ ├── cavs.c │ │ ├── cavs.h │ │ ├── cavs_parser.c │ │ ├── cavsdata.c │ │ ├── cavsdec.c │ │ ├── cavsdsp.c │ │ ├── cavsdsp.h │ │ ├── cbrt_tablegen.c │ │ ├── cbrt_tablegen.h │ │ ├── cdgraphics.c │ │ ├── cdxl.c │ │ ├── celp_filters.c │ │ ├── celp_filters.h │ │ ├── celp_math.c │ │ ├── celp_math.h │ │ ├── cga_data.c │ │ ├── cga_data.h │ │ ├── chomp_bsf.c │ │ ├── cinepak.c │ │ ├── cinepakenc.c │ │ ├── cljrdec.c │ │ ├── cljrenc.c │ │ ├── cllc.c │ │ ├── cngdec.c │ │ ├── cngenc.c │ │ ├── codec_desc.c │ │ ├── cook.c │ │ ├── cook_parser.c │ │ ├── cookdata.h │ │ ├── copy_block.h │ │ ├── cos_tablegen.c │ │ ├── cpia.c │ │ ├── crystalhd.c │ │ ├── cscd.c │ │ ├── cyuv.c │ │ ├── dca.c │ │ ├── dca.h │ │ ├── dca_parser.c │ │ ├── dcadata.h │ │ ├── dcadec.c │ │ ├── dcadsp.c │ │ ├── dcadsp.h │ │ ├── dcaenc.c │ │ ├── dcaenc.h │ │ ├── dcahuff.h │ │ ├── dct-test.c │ │ ├── dct.c │ │ ├── dct.h │ │ ├── dct32.h │ │ ├── dct32_fixed.c │ │ ├── dct32_float.c │ │ ├── dct32_template.c │ │ ├── dctref.c │ │ ├── dctref.h │ │ ├── dfa.c │ │ ├── dirac.c │ │ ├── dirac.h │ │ ├── dirac_arith.c │ │ ├── dirac_arith.h │ │ ├── dirac_dwt.c │ │ ├── dirac_dwt.h │ │ ├── dirac_parser.c │ │ ├── diracdec.c │ │ ├── diracdsp.c │ │ ├── diracdsp.h │ │ ├── dnxhd_parser.c │ │ ├── dnxhddata.c │ │ ├── dnxhddata.h │ │ ├── dnxhddec.c │ │ ├── dnxhdenc.c │ │ ├── dnxhdenc.h │ │ ├── dpcm.c │ │ ├── dpx.c │ │ ├── dpx_parser.c │ │ ├── dpxenc.c │ │ ├── dsd_tablegen.c │ │ ├── dsd_tablegen.h │ │ ├── dsddec.c │ │ ├── dsicinaudio.c │ │ ├── dsicinvideo.c │ │ ├── dsputil.h │ │ ├── dsputil_compat.c │ │ ├── dump_extradata_bsf.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dv_profile.c │ │ ├── dv_profile.h │ │ ├── dv_profile_internal.h │ │ ├── dv_tablegen.c │ │ ├── dv_tablegen.h │ │ ├── dvbsub.c │ │ ├── dvbsub_parser.c │ │ ├── dvbsubdec.c │ │ ├── dvd_nav_parser.c │ │ ├── dvdata.c │ │ ├── dvdata.h │ │ ├── dvdec.c │ │ ├── dvdsub_parser.c │ │ ├── dvdsubdec.c │ │ ├── dvdsubenc.c │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── dxtory.c │ │ ├── dxva2.c │ │ ├── dxva2.h │ │ ├── dxva2_h264.c │ │ ├── dxva2_internal.h │ │ ├── dxva2_mpeg2.c │ │ ├── dxva2_vc1.c │ │ ├── eac3_data.c │ │ ├── eac3_data.h │ │ ├── eac3dec.c │ │ ├── eac3enc.c │ │ ├── eac3enc.h │ │ ├── eacmv.c │ │ ├── eaidct.c │ │ ├── eaidct.h │ │ ├── eamad.c │ │ ├── eatgq.c │ │ ├── eatgv.c │ │ ├── eatqi.c │ │ ├── elbg.c │ │ ├── elbg.h │ │ ├── error_resilience.c │ │ ├── error_resilience.h │ │ ├── escape124.c │ │ ├── escape130.c │ │ ├── evrcdata.h │ │ ├── evrcdec.c │ │ ├── exif.c │ │ ├── exif.h │ │ ├── exr.c │ │ ├── faandct.c │ │ ├── faandct.h │ │ ├── faanidct.c │ │ ├── faanidct.h │ │ ├── faxcompr.c │ │ ├── faxcompr.h │ │ ├── fdctdsp.c │ │ ├── fdctdsp.h │ │ ├── fft-fixed-test.c │ │ ├── fft-fixed32-test.c │ │ ├── fft-internal.h │ │ ├── fft-test.c │ │ ├── fft.h │ │ ├── fft_fixed.c │ │ ├── fft_fixed_32.c │ │ ├── fft_float.c │ │ ├── fft_init_table.c │ │ ├── fft_table.h │ │ ├── fft_template.c │ │ ├── ffv1.c │ │ ├── ffv1.h │ │ ├── ffv1dec.c │ │ ├── ffv1enc.c │ │ ├── ffwavesynth.c │ │ ├── fic.c │ │ ├── file_open.c │ │ ├── flac.c │ │ ├── flac.h │ │ ├── flac_parser.c │ │ ├── flacdata.c │ │ ├── flacdata.h │ │ ├── flacdec.c │ │ ├── flacdsp.c │ │ ├── flacdsp.h │ │ ├── flacdsp_lpc_template.c │ │ ├── flacdsp_template.c │ │ ├── flacenc.c │ │ ├── flashsv.c │ │ ├── flashsv2enc.c │ │ ├── flashsvenc.c │ │ ├── flicvideo.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── fmtconvert.c │ │ ├── fmtconvert.h │ │ ├── frame_thread_encoder.c │ │ ├── frame_thread_encoder.h │ │ ├── fraps.c │ │ ├── frwu.c │ │ ├── g2meet.c │ │ ├── g722.c │ │ ├── g722.h │ │ ├── g722dec.c │ │ ├── g722enc.c │ │ ├── g723_1.c │ │ ├── g723_1_data.h │ │ ├── g726.c │ │ ├── g729.h │ │ ├── g729data.h │ │ ├── g729dec.c │ │ ├── g729postfilter.c │ │ ├── g729postfilter.h │ │ ├── get_bits.h │ │ ├── gif.c │ │ ├── gif.h │ │ ├── gifdec.c │ │ ├── golomb-test.c │ │ ├── golomb.c │ │ ├── golomb.h │ │ ├── gsm.h │ │ ├── gsm_parser.c │ │ ├── gsmdec.c │ │ ├── gsmdec_data.c │ │ ├── gsmdec_data.h │ │ ├── gsmdec_template.c │ │ ├── h261.c │ │ ├── h261.h │ │ ├── h261_parser.c │ │ ├── h261data.c │ │ ├── h261dec.c │ │ ├── h261enc.c │ │ ├── h263.c │ │ ├── h263.h │ │ ├── h263_parser.c │ │ ├── h263_parser.h │ │ ├── h263data.h │ │ ├── h263dec.c │ │ ├── h263dsp.c │ │ ├── h263dsp.h │ │ ├── h264.c │ │ ├── h264.h │ │ ├── h264_cabac.c │ │ ├── h264_cavlc.c │ │ ├── h264_direct.c │ │ ├── h264_loopfilter.c │ │ ├── h264_mb.c │ │ ├── h264_mb_template.c │ │ ├── h264_mc_template.c │ │ ├── h264_mp4toannexb_bsf.c │ │ ├── h264_mvpred.h │ │ ├── h264_parser.c │ │ ├── h264_picture.c │ │ ├── h264_ps.c │ │ ├── h264_refs.c │ │ ├── h264_sei.c │ │ ├── h264_slice.c │ │ ├── h264addpx_template.c │ │ ├── h264chroma.c │ │ ├── h264chroma.h │ │ ├── h264chroma_template.c │ │ ├── h264data.h │ │ ├── h264dsp.c │ │ ├── h264dsp.h │ │ ├── h264dsp_template.c │ │ ├── h264idct.c │ │ ├── h264idct.h │ │ ├── h264idct_template.c │ │ ├── h264pred.c │ │ ├── h264pred.h │ │ ├── h264pred_template.c │ │ ├── h264qpel.c │ │ ├── h264qpel.h │ │ ├── h264qpel_template.c │ │ ├── hevc.c │ │ ├── hevc.h │ │ ├── hevc_cabac.c │ │ ├── hevc_filter.c │ │ ├── hevc_mvs.c │ │ ├── hevc_parser.c │ │ ├── hevc_ps.c │ │ ├── hevc_refs.c │ │ ├── hevc_sei.c │ │ ├── hevcdsp.c │ │ ├── hevcdsp.h │ │ ├── hevcdsp_template.c │ │ ├── hevcpred.c │ │ ├── hevcpred.h │ │ ├── hevcpred_template.c │ │ ├── hnm4video.c │ │ ├── hpel_template.c │ │ ├── hpeldsp.c │ │ ├── hpeldsp.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffyuv.c │ │ ├── huffyuv.h │ │ ├── huffyuvdec.c │ │ ├── huffyuvdsp.c │ │ ├── huffyuvdsp.h │ │ ├── huffyuvenc.c │ │ ├── huffyuvencdsp.c │ │ ├── huffyuvencdsp.h │ │ ├── idcinvideo.c │ │ ├── idctdsp.c │ │ ├── idctdsp.h │ │ ├── iff.c │ │ ├── iirfilter.c │ │ ├── iirfilter.h │ │ ├── imc.c │ │ ├── imcdata.h │ │ ├── imgconvert.c │ │ ├── imgconvert.h │ │ ├── imx_dump_header_bsf.c │ │ ├── indeo2.c │ │ ├── indeo2data.h │ │ ├── indeo3.c │ │ ├── indeo3data.h │ │ ├── indeo4.c │ │ ├── indeo4data.h │ │ ├── indeo5.c │ │ ├── indeo5data.h │ │ ├── intelh263dec.c │ │ ├── internal.h │ │ ├── interplayvideo.c │ │ ├── intrax8.c │ │ ├── intrax8.h │ │ ├── intrax8dsp.c │ │ ├── intrax8dsp.h │ │ ├── intrax8huf.h │ │ ├── ituh263dec.c │ │ ├── ituh263enc.c │ │ ├── ivi_common.c │ │ ├── ivi_common.h │ │ ├── ivi_dsp.c │ │ ├── ivi_dsp.h │ │ ├── j2kenc.c │ │ ├── jacosub.h │ │ ├── jacosubdec.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jfdctint_template.c │ │ ├── jpeg2000.c │ │ ├── jpeg2000.h │ │ ├── jpeg2000dec.c │ │ ├── jpeg2000dwt.c │ │ ├── jpeg2000dwt.h │ │ ├── jpegls.c │ │ ├── jpegls.h │ │ ├── jpeglsdec.c │ │ ├── jpeglsdec.h │ │ ├── jpeglsenc.c │ │ ├── jrevdct.c │ │ ├── jvdec.c │ │ ├── kbdwin.c │ │ ├── kbdwin.h │ │ ├── kgv1dec.c │ │ ├── kmvc.c │ │ ├── lagarith.c │ │ ├── lagarithrac.c │ │ ├── lagarithrac.h │ │ ├── latm_parser.c │ │ ├── lcl.h │ │ ├── lcldec.c │ │ ├── lclenc.c │ │ ├── libaacplus.c │ │ ├── libavcodec.v │ │ ├── libcelt_dec.c │ │ ├── libfaac.c │ │ ├── libfdk-aacdec.c │ │ ├── libfdk-aacenc.c │ │ ├── libgsmdec.c │ │ ├── libgsmenc.c │ │ ├── libilbc.c │ │ ├── libmp3lame.c │ │ ├── libopencore-amr.c │ │ ├── libopenjpegdec.c │ │ ├── libopenjpegenc.c │ │ ├── libopus.c │ │ ├── libopus.h │ │ ├── libopusdec.c │ │ ├── libopusenc.c │ │ ├── libschroedinger.c │ │ ├── libschroedinger.h │ │ ├── libschroedingerdec.c │ │ ├── libschroedingerenc.c │ │ ├── libshine.c │ │ ├── libspeexdec.c │ │ ├── libspeexenc.c │ │ ├── libstagefright.cpp │ │ ├── libtheoraenc.c │ │ ├── libtwolame.c │ │ ├── libutvideo.h │ │ ├── libutvideodec.cpp │ │ ├── libutvideoenc.cpp │ │ ├── libvo-aacenc.c │ │ ├── libvo-amrwbenc.c │ │ ├── libvorbisdec.c │ │ ├── libvorbisenc.c │ │ ├── libvpx.c │ │ ├── libvpx.h │ │ ├── libvpxdec.c │ │ ├── libvpxenc.c │ │ ├── libwavpackenc.c │ │ ├── libwebpenc.c │ │ ├── libx264.c │ │ ├── libx265.c │ │ ├── libxavs.c │ │ ├── libxvid.c │ │ ├── libxvid.h │ │ ├── libxvid_rc.c │ │ ├── libzvbi-teletextdec.c │ │ ├── ljpegenc.c │ │ ├── loco.c │ │ ├── log2_tab.c │ │ ├── lossless_audiodsp.c │ │ ├── lossless_audiodsp.h │ │ ├── lossless_videodsp.c │ │ ├── lossless_videodsp.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── lzwenc.c │ │ ├── mace.c │ │ ├── mathops.h │ │ ├── mathtables.c │ │ ├── mdct_fixed.c │ │ ├── mdct_fixed_32.c │ │ ├── mdct_float.c │ │ ├── mdct_template.c │ │ ├── mdec.c │ │ ├── me_cmp.c │ │ ├── me_cmp.h │ │ ├── metasound.c │ │ ├── metasound_data.c │ │ ├── metasound_data.h │ │ ├── microdvddec.c │ │ ├── mimic.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── aaccoder_mips.c │ │ │ ├── aacdec_mips.c │ │ │ ├── aacdec_mips.h │ │ │ ├── aacpsdsp_mips.c │ │ │ ├── aacpsy_mips.h │ │ │ ├── aacsbr_mips.c │ │ │ ├── aacsbr_mips.h │ │ │ ├── ac3dsp_mips.c │ │ │ ├── acelp_filters_mips.c │ │ │ ├── acelp_vectors_mips.c │ │ │ ├── amrwbdec_mips.c │ │ │ ├── amrwbdec_mips.h │ │ │ ├── celp_filters_mips.c │ │ │ ├── celp_math_mips.c │ │ │ ├── compute_antialias_fixed.h │ │ │ ├── compute_antialias_float.h │ │ │ ├── fft_mips.c │ │ │ ├── fmtconvert_mips.c │ │ │ ├── iirfilter_mips.c │ │ │ ├── lsp_mips.h │ │ │ ├── mathops.h │ │ │ ├── mpegaudiodsp_mips_fixed.c │ │ │ ├── mpegaudiodsp_mips_float.c │ │ │ └── sbrdsp_mips.c │ │ ├── mjpeg.c │ │ ├── mjpeg.h │ │ ├── mjpeg2jpeg_bsf.c │ │ ├── mjpeg_parser.c │ │ ├── mjpega_dump_header_bsf.c │ │ ├── mjpegbdec.c │ │ ├── mjpegdec.c │ │ ├── mjpegdec.h │ │ ├── mjpegenc.c │ │ ├── mjpegenc.h │ │ ├── mjpegenc_common.c │ │ ├── mjpegenc_common.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_parser.c │ │ ├── mlp_parser.h │ │ ├── mlpdec.c │ │ ├── mlpdsp.c │ │ ├── mlpdsp.h │ │ ├── mmvideo.c │ │ ├── motion-test.c │ │ ├── motion_est.c │ │ ├── motion_est_template.c │ │ ├── motionpixels.c │ │ ├── motionpixels_tablegen.c │ │ ├── motionpixels_tablegen.h │ │ ├── movsub_bsf.c │ │ ├── movtextdec.c │ │ ├── movtextenc.c │ │ ├── mp3_header_decompress_bsf.c │ │ ├── mpc.c │ │ ├── mpc.h │ │ ├── mpc7.c │ │ ├── mpc7data.h │ │ ├── mpc8.c │ │ ├── mpc8data.h │ │ ├── mpc8huff.h │ │ ├── mpcdata.h │ │ ├── mpeg12.c │ │ ├── mpeg12.h │ │ ├── mpeg12data.c │ │ ├── mpeg12data.h │ │ ├── mpeg12dec.c │ │ ├── mpeg12enc.c │ │ ├── mpeg4audio.c │ │ ├── mpeg4audio.h │ │ ├── mpeg4data.h │ │ ├── mpeg4video.c │ │ ├── mpeg4video.h │ │ ├── mpeg4video_parser.c │ │ ├── mpeg4video_parser.h │ │ ├── mpeg4videodec.c │ │ ├── mpeg4videoenc.c │ │ ├── mpeg_er.c │ │ ├── mpeg_er.h │ │ ├── mpegaudio.c │ │ ├── mpegaudio.h │ │ ├── mpegaudio_parser.c │ │ ├── mpegaudio_tablegen.c │ │ ├── mpegaudio_tablegen.h │ │ ├── mpegaudiodata.c │ │ ├── mpegaudiodata.h │ │ ├── mpegaudiodec_fixed.c │ │ ├── mpegaudiodec_float.c │ │ ├── mpegaudiodec_template.c │ │ ├── mpegaudiodecheader.c │ │ ├── mpegaudiodecheader.h │ │ ├── mpegaudiodectab.h │ │ ├── mpegaudiodsp.c │ │ ├── mpegaudiodsp.h │ │ ├── mpegaudiodsp_data.c │ │ ├── mpegaudiodsp_fixed.c │ │ ├── mpegaudiodsp_float.c │ │ ├── mpegaudiodsp_template.c │ │ ├── mpegaudioenc_fixed.c │ │ ├── mpegaudioenc_float.c │ │ ├── mpegaudioenc_template.c │ │ ├── mpegaudiotab.h │ │ ├── mpegutils.c │ │ ├── mpegutils.h │ │ ├── mpegvideo.c │ │ ├── mpegvideo.h │ │ ├── mpegvideo_enc.c │ │ ├── mpegvideo_motion.c │ │ ├── mpegvideo_parser.c │ │ ├── mpegvideo_xvmc.c │ │ ├── mpegvideodsp.c │ │ ├── mpegvideodsp.h │ │ ├── mpegvideoencdsp.c │ │ ├── mpegvideoencdsp.h │ │ ├── mpl2dec.c │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqcdec.c │ │ ├── mqcenc.c │ │ ├── msgsmdec.c │ │ ├── msgsmdec.h │ │ ├── msmpeg4.c │ │ ├── msmpeg4.h │ │ ├── msmpeg4data.c │ │ ├── msmpeg4data.h │ │ ├── msmpeg4dec.c │ │ ├── msmpeg4enc.c │ │ ├── msrle.c │ │ ├── msrledec.c │ │ ├── msrledec.h │ │ ├── mss1.c │ │ ├── mss12.c │ │ ├── mss12.h │ │ ├── mss2.c │ │ ├── mss2dsp.c │ │ ├── mss2dsp.h │ │ ├── mss3.c │ │ ├── mss34dsp.c │ │ ├── mss34dsp.h │ │ ├── mss4.c │ │ ├── msvideo1.c │ │ ├── msvideo1enc.c │ │ ├── mvcdec.c │ │ ├── mxpegdec.c │ │ ├── nellymoser.c │ │ ├── nellymoser.h │ │ ├── nellymoserdec.c │ │ ├── nellymoserenc.c │ │ ├── neon │ │ │ ├── Makefile │ │ │ └── mpegvideo.c │ │ ├── noise_bsf.c │ │ ├── nuv.c │ │ ├── old_codec_ids.h │ │ ├── on2avc.c │ │ ├── on2avcdata.c │ │ ├── on2avcdata.h │ │ ├── options.c │ │ ├── options_table.h │ │ ├── opus.c │ │ ├── opus.h │ │ ├── opus_celt.c │ │ ├── opus_imdct.c │ │ ├── opus_imdct.h │ │ ├── opus_parser.c │ │ ├── opus_silk.c │ │ ├── opusdec.c │ │ ├── paf.h │ │ ├── pafaudio.c │ │ ├── pafvideo.c │ │ ├── pamenc.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── pcm-bluray.c │ │ ├── pcm-dvd.c │ │ ├── pcm.c │ │ ├── pcm_tablegen.c │ │ ├── pcm_tablegen.h │ │ ├── pcx.c │ │ ├── pcxenc.c │ │ ├── pel_template.c │ │ ├── pgssubdec.c │ │ ├── pictordec.c │ │ ├── pixblockdsp.c │ │ ├── pixblockdsp.h │ │ ├── pixblockdsp_template.c │ │ ├── pixels.h │ │ ├── png.c │ │ ├── png.h │ │ ├── png_parser.c │ │ ├── pngdec.c │ │ ├── pngdsp.c │ │ ├── pngdsp.h │ │ ├── pngenc.c │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── pnm_parser.c │ │ ├── pnmdec.c │ │ ├── pnmenc.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── audiodsp.c │ │ │ ├── blockdsp.c │ │ │ ├── dct-test.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp.c │ │ │ ├── fft_altivec.S │ │ │ ├── fft_init.c │ │ │ ├── fft_vsx.c │ │ │ ├── fft_vsx.h │ │ │ ├── fmtconvert_altivec.c │ │ │ ├── h264chroma_init.c │ │ │ ├── h264chroma_template.c │ │ │ ├── h264dsp.c │ │ │ ├── h264qpel.c │ │ │ ├── h264qpel_template.c │ │ │ ├── hpeldsp_altivec.c │ │ │ ├── hpeldsp_altivec.h │ │ │ ├── huffyuvdsp_altivec.c │ │ │ ├── idctdsp.c │ │ │ ├── lossless_audiodsp_altivec.c │ │ │ ├── mathops.h │ │ │ ├── me_cmp.c │ │ │ ├── mpegaudiodsp_altivec.c │ │ │ ├── mpegvideo_altivec.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoencdsp.c │ │ │ ├── pixblockdsp.c │ │ │ ├── svq1enc_altivec.c │ │ │ ├── vc1dsp_altivec.c │ │ │ ├── videodsp_ppc.c │ │ │ ├── vorbisdsp_altivec.c │ │ │ ├── vp3dsp_altivec.c │ │ │ └── vp8dsp_altivec.c │ │ ├── proresdata.c │ │ ├── proresdata.h │ │ ├── proresdec.h │ │ ├── proresdec2.c │ │ ├── proresdec_lgpl.c │ │ ├── proresdsp.c │ │ ├── proresdsp.h │ │ ├── proresenc_anatoliy.c │ │ ├── proresenc_kostya.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── pthread.c │ │ ├── pthread_frame.c │ │ ├── pthread_internal.h │ │ ├── pthread_slice.c │ │ ├── ptx.c │ │ ├── put_bits.h │ │ ├── qcelpdata.h │ │ ├── qcelpdec.c │ │ ├── qdm2.c │ │ ├── qdm2_tablegen.c │ │ ├── qdm2_tablegen.h │ │ ├── qdm2data.h │ │ ├── qdrw.c │ │ ├── qpeg.c │ │ ├── qpel_template.c │ │ ├── qpeldsp.c │ │ ├── qpeldsp.h │ │ ├── qtrle.c │ │ ├── qtrleenc.c │ │ ├── r210dec.c │ │ ├── r210enc.c │ │ ├── ra144.c │ │ ├── ra144.h │ │ ├── ra144dec.c │ │ ├── ra144enc.c │ │ ├── ra288.c │ │ ├── ra288.h │ │ ├── ralf.c │ │ ├── ralfdata.h │ │ ├── rangecoder.c │ │ ├── rangecoder.h │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── rawdec.c │ │ ├── rawenc.c │ │ ├── rdft.c │ │ ├── rdft.h │ │ ├── realtextdec.c │ │ ├── rectangle.h │ │ ├── remove_extradata_bsf.c │ │ ├── resample.c │ │ ├── resample2.c │ │ ├── rl.h │ │ ├── rl2.c │ │ ├── rle.c │ │ ├── rle.h │ │ ├── rnd_avg.h │ │ ├── roqaudioenc.c │ │ ├── roqvideo.c │ │ ├── roqvideo.h │ │ ├── roqvideodec.c │ │ ├── roqvideoenc.c │ │ ├── rpza.c │ │ ├── rtjpeg.c │ │ ├── rtjpeg.h │ │ ├── rv10.c │ │ ├── rv10enc.c │ │ ├── rv20enc.c │ │ ├── rv30.c │ │ ├── rv30data.h │ │ ├── rv30dsp.c │ │ ├── rv34.c │ │ ├── rv34.h │ │ ├── rv34_parser.c │ │ ├── rv34data.h │ │ ├── rv34dsp.c │ │ ├── rv34dsp.h │ │ ├── rv34vlc.h │ │ ├── rv40.c │ │ ├── rv40data.h │ │ ├── rv40dsp.c │ │ ├── rv40vlc2.h │ │ ├── s302m.c │ │ ├── s302menc.c │ │ ├── s3tc.c │ │ ├── s3tc.h │ │ ├── samidec.c │ │ ├── sanm.c │ │ ├── sbr.h │ │ ├── sbrdsp.c │ │ ├── sbrdsp.h │ │ ├── sgi.h │ │ ├── sgidec.c │ │ ├── sgienc.c │ │ ├── sgirledec.c │ │ ├── sh4 │ │ │ └── README │ │ ├── shorten.c │ │ ├── simple_idct.c │ │ ├── simple_idct.h │ │ ├── simple_idct_template.c │ │ ├── sinewin.c │ │ ├── sinewin.h │ │ ├── sinewin_tablegen.c │ │ ├── sinewin_tablegen.h │ │ ├── sipr.c │ │ ├── sipr.h │ │ ├── sipr16k.c │ │ ├── sipr16kdata.h │ │ ├── siprdata.h │ │ ├── smacker.c │ │ ├── smc.c │ │ ├── smvjpegdec.c │ │ ├── snow.c │ │ ├── snow.h │ │ ├── snow_dwt.c │ │ ├── snow_dwt.h │ │ ├── snowdata.h │ │ ├── snowdec.c │ │ ├── snowenc.c │ │ ├── sonic.c │ │ ├── sp5x.h │ │ ├── sp5xdec.c │ │ ├── sparc │ │ │ └── README │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── startcode.c │ │ ├── startcode.h │ │ ├── subviewerdec.c │ │ ├── sunrast.c │ │ ├── sunrast.h │ │ ├── sunrastenc.c │ │ ├── svq1.c │ │ ├── svq1.h │ │ ├── svq13.c │ │ ├── svq1_cb.h │ │ ├── svq1_vlc.h │ │ ├── svq1dec.c │ │ ├── svq1enc.c │ │ ├── svq1enc.h │ │ ├── svq1enc_cb.h │ │ ├── svq3.c │ │ ├── svq3.h │ │ ├── synth_filter.c │ │ ├── synth_filter.h │ │ ├── tableprint.h │ │ ├── tak.c │ │ ├── tak.h │ │ ├── tak_parser.c │ │ ├── takdec.c │ │ ├── targa.c │ │ ├── targa.h │ │ ├── targa_y216dec.c │ │ ├── targaenc.c │ │ ├── textdec.c │ │ ├── thread.h │ │ ├── tiertexseqv.c │ │ ├── tiff.c │ │ ├── tiff.h │ │ ├── tiff_common.c │ │ ├── tiff_common.h │ │ ├── tiff_data.c │ │ ├── tiff_data.h │ │ ├── tiffenc.c │ │ ├── tmv.c │ │ ├── tpeldsp.c │ │ ├── tpeldsp.h │ │ ├── truemotion1.c │ │ ├── truemotion1data.h │ │ ├── truemotion2.c │ │ ├── truespeech.c │ │ ├── truespeech_data.h │ │ ├── tscc.c │ │ ├── tscc2.c │ │ ├── tscc2data.h │ │ ├── tta.c │ │ ├── ttadata.c │ │ ├── ttadata.h │ │ ├── ttadsp.c │ │ ├── ttadsp.h │ │ ├── ttaenc.c │ │ ├── twinvq.c │ │ ├── twinvq.h │ │ ├── twinvq_data.h │ │ ├── twinvqdec.c │ │ ├── txd.c │ │ ├── ulti.c │ │ ├── ulti_cb.h │ │ ├── unary.h │ │ ├── utils.c │ │ ├── utvideo.c │ │ ├── utvideo.h │ │ ├── utvideodec.c │ │ ├── utvideoenc.c │ │ ├── v210dec.c │ │ ├── v210dec.h │ │ ├── v210enc.c │ │ ├── v210x.c │ │ ├── v308dec.c │ │ ├── v308enc.c │ │ ├── v408dec.c │ │ ├── v408enc.c │ │ ├── v410dec.c │ │ ├── v410enc.c │ │ ├── vaapi.c │ │ ├── vaapi.h │ │ ├── vaapi_h264.c │ │ ├── vaapi_internal.h │ │ ├── vaapi_mpeg.c │ │ ├── vaapi_mpeg2.c │ │ ├── vaapi_mpeg4.c │ │ ├── vaapi_vc1.c │ │ ├── vb.c │ │ ├── vble.c │ │ ├── vc1.c │ │ ├── vc1.h │ │ ├── vc1_common.h │ │ ├── vc1_parser.c │ │ ├── vc1acdata.h │ │ ├── vc1data.c │ │ ├── vc1data.h │ │ ├── vc1dec.c │ │ ├── vc1dsp.c │ │ ├── vc1dsp.h │ │ ├── vcr1.c │ │ ├── vda.c │ │ ├── vda.h │ │ ├── vda_h264.c │ │ ├── vda_h264_dec.c │ │ ├── vda_internal.h │ │ ├── vdpau.c │ │ ├── vdpau.h │ │ ├── vdpau_h264.c │ │ ├── vdpau_internal.h │ │ ├── vdpau_mpeg12.c │ │ ├── vdpau_mpeg4.c │ │ ├── vdpau_vc1.c │ │ ├── version.h │ │ ├── videodsp.c │ │ ├── videodsp.h │ │ ├── videodsp_template.c │ │ ├── vima.c │ │ ├── vmdaudio.c │ │ ├── vmdvideo.c │ │ ├── vmnc.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── vorbis_data.c │ │ ├── vorbis_enc_data.h │ │ ├── vorbis_parser.c │ │ ├── vorbis_parser.h │ │ ├── vorbisdec.c │ │ ├── vorbisdsp.c │ │ ├── vorbisdsp.h │ │ ├── vorbisenc.c │ │ ├── vp3.c │ │ ├── vp3_parser.c │ │ ├── vp3data.h │ │ ├── vp3dsp.c │ │ ├── vp3dsp.h │ │ ├── vp5.c │ │ ├── vp56.c │ │ ├── vp56.h │ │ ├── vp56data.c │ │ ├── vp56data.h │ │ ├── vp56dsp.c │ │ ├── vp56dsp.h │ │ ├── vp56rac.c │ │ ├── vp5data.h │ │ ├── vp6.c │ │ ├── vp6data.h │ │ ├── vp6dsp.c │ │ ├── vp8.c │ │ ├── vp8.h │ │ ├── vp8_parser.c │ │ ├── vp8data.h │ │ ├── vp8dsp.c │ │ ├── vp8dsp.h │ │ ├── vp9.c │ │ ├── vp9.h │ │ ├── vp9_parser.c │ │ ├── vp9data.h │ │ ├── vp9dsp.c │ │ ├── vp9dsp.h │ │ ├── vqavideo.c │ │ ├── wavpack.c │ │ ├── wavpack.h │ │ ├── wavpackenc.c │ │ ├── wavpackenc.h │ │ ├── webp.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── wma.c │ │ ├── wma.h │ │ ├── wma_common.c │ │ ├── wma_common.h │ │ ├── wma_freqs.c │ │ ├── wma_freqs.h │ │ ├── wmadata.h │ │ ├── wmadec.c │ │ ├── wmaenc.c │ │ ├── wmalosslessdec.c │ │ ├── wmaprodata.h │ │ ├── wmaprodec.c │ │ ├── wmavoice.c │ │ ├── wmavoice_data.h │ │ ├── wmv2.c │ │ ├── wmv2.h │ │ ├── wmv2dec.c │ │ ├── wmv2dsp.c │ │ ├── wmv2dsp.h │ │ ├── wmv2enc.c │ │ ├── wnv1.c │ │ ├── ws-snd1.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── ac3dsp.asm │ │ │ ├── ac3dsp_init.c │ │ │ ├── audiodsp.asm │ │ │ ├── audiodsp_init.c │ │ │ ├── blockdsp.asm │ │ │ ├── blockdsp_init.c │ │ │ ├── bswapdsp.asm │ │ │ ├── bswapdsp_init.c │ │ │ ├── cabac.h │ │ │ ├── cavsdsp.c │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── dcadsp.asm │ │ │ ├── dcadsp_init.c │ │ │ ├── dct-test.c │ │ │ ├── dct32.asm │ │ │ ├── dct_init.c │ │ │ ├── deinterlace.asm │ │ │ ├── dirac_dwt.c │ │ │ ├── dirac_dwt.h │ │ │ ├── diracdsp_mmx.c │ │ │ ├── diracdsp_mmx.h │ │ │ ├── diracdsp_yasm.asm │ │ │ ├── dnxhdenc.asm │ │ │ ├── dnxhdenc_init.c │ │ │ ├── dwt_yasm.asm │ │ │ ├── fdct.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp_init.c │ │ │ ├── fft.asm │ │ │ ├── fft.h │ │ │ ├── fft_init.c │ │ │ ├── flac_dsp_gpl.asm │ │ │ ├── flacdsp.asm │ │ │ ├── flacdsp_init.c │ │ │ ├── fmtconvert.asm │ │ │ ├── fmtconvert_init.c │ │ │ ├── fpel.asm │ │ │ ├── fpel.h │ │ │ ├── h263_loopfilter.asm │ │ │ ├── h263dsp_init.c │ │ │ ├── h264_chromamc.asm │ │ │ ├── h264_chromamc_10bit.asm │ │ │ ├── h264_deblock.asm │ │ │ ├── h264_deblock_10bit.asm │ │ │ ├── h264_i386.h │ │ │ ├── h264_idct.asm │ │ │ ├── h264_idct_10bit.asm │ │ │ ├── h264_intrapred.asm │ │ │ ├── h264_intrapred_10bit.asm │ │ │ ├── h264_intrapred_init.c │ │ │ ├── h264_qpel.c │ │ │ ├── h264_qpel_10bit.asm │ │ │ ├── h264_qpel_8bit.asm │ │ │ ├── h264_weight.asm │ │ │ ├── h264_weight_10bit.asm │ │ │ ├── h264chroma_init.c │ │ │ ├── h264dsp_init.c │ │ │ ├── hevc_deblock.asm │ │ │ ├── hevc_idct.asm │ │ │ ├── hevc_mc.asm │ │ │ ├── hevc_res_add.asm │ │ │ ├── hevcdsp.h │ │ │ ├── hevcdsp_init.c │ │ │ ├── hpeldsp.asm │ │ │ ├── hpeldsp.h │ │ │ ├── hpeldsp_init.c │ │ │ ├── hpeldsp_rnd_template.c │ │ │ ├── huffyuvdsp.asm │ │ │ ├── huffyuvdsp_init.c │ │ │ ├── huffyuvencdsp_mmx.c │ │ │ ├── idctdsp.asm │ │ │ ├── idctdsp.h │ │ │ ├── idctdsp_init.c │ │ │ ├── idctdsp_mmx.c │ │ │ ├── imdct36.asm │ │ │ ├── inline_asm.h │ │ │ ├── lossless_audiodsp.asm │ │ │ ├── lossless_audiodsp_init.c │ │ │ ├── lossless_videodsp.asm │ │ │ ├── lossless_videodsp_init.c │ │ │ ├── lpc.c │ │ │ ├── mathops.h │ │ │ ├── me_cmp.asm │ │ │ ├── me_cmp_init.c │ │ │ ├── mlpdsp.c │ │ │ ├── mpegaudiodsp.c │ │ │ ├── mpegvideo.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoenc.c │ │ │ ├── mpegvideoenc_qns_template.c │ │ │ ├── mpegvideoenc_template.c │ │ │ ├── mpegvideoencdsp.asm │ │ │ ├── mpegvideoencdsp_init.c │ │ │ ├── pixblockdsp.asm │ │ │ ├── pixblockdsp_init.c │ │ │ ├── pngdsp.asm │ │ │ ├── pngdsp_init.c │ │ │ ├── proresdsp.asm │ │ │ ├── proresdsp_init.c │ │ │ ├── qpel.asm │ │ │ ├── qpeldsp.asm │ │ │ ├── qpeldsp_init.c │ │ │ ├── rnd_template.c │ │ │ ├── rv34dsp.asm │ │ │ ├── rv34dsp_init.c │ │ │ ├── rv40dsp.asm │ │ │ ├── rv40dsp_init.c │ │ │ ├── sbrdsp.asm │ │ │ ├── sbrdsp_init.c │ │ │ ├── simple_idct.c │ │ │ ├── simple_idct.h │ │ │ ├── snowdsp.c │ │ │ ├── svq1enc.asm │ │ │ ├── svq1enc_init.c │ │ │ ├── ttadsp.asm │ │ │ ├── ttadsp_init.c │ │ │ ├── v210-init.c │ │ │ ├── v210.asm │ │ │ ├── vc1dsp.asm │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init.c │ │ │ ├── vc1dsp_mmx.c │ │ │ ├── videodsp.asm │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp.asm │ │ │ ├── vorbisdsp_init.c │ │ │ ├── vp3dsp.asm │ │ │ ├── vp3dsp_init.c │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp.asm │ │ │ ├── vp6dsp_init.c │ │ │ ├── vp8dsp.asm │ │ │ ├── vp8dsp_init.c │ │ │ ├── vp8dsp_loopfilter.asm │ │ │ ├── vp9dsp_init.c │ │ │ ├── vp9intrapred.asm │ │ │ ├── vp9itxfm.asm │ │ │ ├── vp9lpf.asm │ │ │ ├── vp9mc.asm │ │ │ ├── w64xmmtest.c │ │ │ ├── xvididct.h │ │ │ ├── xvididct_init.c │ │ │ ├── xvididct_mmx.c │ │ │ └── xvididct_sse2.c │ │ ├── xan.c │ │ ├── xbmdec.c │ │ ├── xbmenc.c │ │ ├── xface.c │ │ ├── xface.h │ │ ├── xfacedec.c │ │ ├── xfaceenc.c │ │ ├── xiph.c │ │ ├── xiph.h │ │ ├── xl.c │ │ ├── xsubdec.c │ │ ├── xsubenc.c │ │ ├── xvididct.c │ │ ├── xvididct.h │ │ ├── xvmc.h │ │ ├── xvmc_internal.h │ │ ├── xwd.h │ │ ├── xwddec.c │ │ ├── xwdenc.c │ │ ├── xxan.c │ │ ├── y41pdec.c │ │ ├── y41penc.c │ │ ├── yop.c │ │ ├── yuv4dec.c │ │ ├── yuv4enc.c │ │ ├── zerocodec.c │ │ ├── zmbv.c │ │ └── zmbvenc.c │ ├── libavdevice │ │ ├── Makefile │ │ ├── alldevices.c │ │ ├── alsa-audio-common.c │ │ ├── alsa-audio-dec.c │ │ ├── alsa-audio-enc.c │ │ ├── alsa-audio.h │ │ ├── avdevice.c │ │ ├── avdevice.h │ │ ├── avdeviceres.rc │ │ ├── avfoundation.m │ │ ├── bktr.c │ │ ├── caca.c │ │ ├── decklink_enc.cpp │ │ ├── decklink_enc.h │ │ ├── decklink_enc_c.c │ │ ├── dshow.c │ │ ├── dshow_capture.h │ │ ├── dshow_common.c │ │ ├── dshow_enummediatypes.c │ │ ├── dshow_enumpins.c │ │ ├── dshow_filter.c │ │ ├── dshow_pin.c │ │ ├── dv1394.c │ │ ├── dv1394.h │ │ ├── fbdev_common.c │ │ ├── fbdev_common.h │ │ ├── fbdev_dec.c │ │ ├── fbdev_enc.c │ │ ├── file_open.c │ │ ├── gdigrab.c │ │ ├── iec61883.c │ │ ├── jack_audio.c │ │ ├── lavfi.c │ │ ├── libavdevice.v │ │ ├── libcdio.c │ │ ├── libdc1394.c │ │ ├── openal-dec.c │ │ ├── opengl_enc.c │ │ ├── opengl_enc_shaders.h │ │ ├── oss_audio.c │ │ ├── oss_audio.h │ │ ├── oss_audio_dec.c │ │ ├── oss_audio_enc.c │ │ ├── pulse_audio_common.c │ │ ├── pulse_audio_common.h │ │ ├── pulse_audio_dec.c │ │ ├── pulse_audio_enc.c │ │ ├── qtkit.m │ │ ├── sdl.c │ │ ├── sndio_common.c │ │ ├── sndio_common.h │ │ ├── sndio_dec.c │ │ ├── sndio_enc.c │ │ ├── timefilter.c │ │ ├── timefilter.h │ │ ├── v4l.c │ │ ├── v4l2-common.c │ │ ├── v4l2-common.h │ │ ├── v4l2.c │ │ ├── v4l2enc.c │ │ ├── version.h │ │ ├── vfwcap.c │ │ ├── x11grab.c │ │ └── xv.c │ ├── libavfilter │ │ ├── Makefile │ │ ├── aeval.c │ │ ├── af_aconvert.c │ │ ├── af_adelay.c │ │ ├── af_aecho.c │ │ ├── af_afade.c │ │ ├── af_aformat.c │ │ ├── af_amerge.c │ │ ├── af_amix.c │ │ ├── af_anull.c │ │ ├── af_apad.c │ │ ├── af_aphaser.c │ │ ├── af_aresample.c │ │ ├── af_asetnsamples.c │ │ ├── af_asetrate.c │ │ ├── af_ashowinfo.c │ │ ├── af_astats.c │ │ ├── af_astreamsync.c │ │ ├── af_asyncts.c │ │ ├── af_atempo.c │ │ ├── af_biquads.c │ │ ├── af_bs2b.c │ │ ├── af_channelmap.c │ │ ├── af_channelsplit.c │ │ ├── af_compand.c │ │ ├── af_earwax.c │ │ ├── af_flanger.c │ │ ├── af_join.c │ │ ├── af_ladspa.c │ │ ├── af_pan.c │ │ ├── af_replaygain.c │ │ ├── af_resample.c │ │ ├── af_silencedetect.c │ │ ├── af_silenceremove.c │ │ ├── af_volume.c │ │ ├── af_volume.h │ │ ├── af_volumedetect.c │ │ ├── all_channel_layouts.inc │ │ ├── allfilters.c │ │ ├── asink_anullsink.c │ │ ├── asrc_abuffer.h │ │ ├── asrc_anullsrc.c │ │ ├── asrc_flite.c │ │ ├── asrc_sine.c │ │ ├── audio.c │ │ ├── audio.h │ │ ├── avcodec.c │ │ ├── avcodec.h │ │ ├── avf_avectorscope.c │ │ ├── avf_concat.c │ │ ├── avf_showcqt.c │ │ ├── avf_showspectrum.c │ │ ├── avf_showwaves.c │ │ ├── avfilter.c │ │ ├── avfilter.h │ │ ├── avfiltergraph.c │ │ ├── avfiltergraph.h │ │ ├── avfilterres.rc │ │ ├── bbox.c │ │ ├── bbox.h │ │ ├── buffer.c │ │ ├── bufferqueue.h │ │ ├── buffersink.c │ │ ├── buffersink.h │ │ ├── buffersrc.c │ │ ├── buffersrc.h │ │ ├── deshake.h │ │ ├── deshake_opencl.c │ │ ├── deshake_opencl.h │ │ ├── deshake_opencl_kernel.h │ │ ├── drawutils.c │ │ ├── drawutils.h │ │ ├── dualinput.c │ │ ├── dualinput.h │ │ ├── f_ebur128.c │ │ ├── f_interleave.c │ │ ├── f_perms.c │ │ ├── f_select.c │ │ ├── f_sendcmd.c │ │ ├── f_zmq.c │ │ ├── fifo.c │ │ ├── filtfmts.c │ │ ├── formats.c │ │ ├── formats.h │ │ ├── framesync.c │ │ ├── framesync.h │ │ ├── generate_wave_table.c │ │ ├── generate_wave_table.h │ │ ├── gradfun.h │ │ ├── graphdump.c │ │ ├── graphparser.c │ │ ├── internal.h │ │ ├── lavfutils.c │ │ ├── lavfutils.h │ │ ├── libavfilter.v │ │ ├── libmpcodecs │ │ │ ├── av_helpers.h │ │ │ ├── cpudetect.h │ │ │ ├── img_format.c │ │ │ ├── img_format.h │ │ │ ├── libvo │ │ │ │ ├── fastmemcpy.h │ │ │ │ └── video_out.h │ │ │ ├── mp_image.c │ │ │ ├── mp_image.h │ │ │ ├── mp_msg.h │ │ │ ├── mpc_info.h │ │ │ ├── vf.h │ │ │ ├── vf_eq.c │ │ │ ├── vf_eq2.c │ │ │ ├── vf_fspp.c │ │ │ ├── vf_ilpack.c │ │ │ ├── vf_pp7.c │ │ │ ├── vf_softpulldown.c │ │ │ ├── vf_uspp.c │ │ │ └── vfcap.h │ │ ├── log2_tab.c │ │ ├── lswsutils.c │ │ ├── lswsutils.h │ │ ├── opencl_allkernels.c │ │ ├── opencl_allkernels.h │ │ ├── pthread.c │ │ ├── setpts.c │ │ ├── settb.c │ │ ├── split.c │ │ ├── src_movie.c │ │ ├── thread.h │ │ ├── transform.c │ │ ├── transform.h │ │ ├── trim.c │ │ ├── unsharp.h │ │ ├── unsharp_opencl.c │ │ ├── unsharp_opencl.h │ │ ├── unsharp_opencl_kernel.h │ │ ├── version.h │ │ ├── vf_alphamerge.c │ │ ├── vf_aspect.c │ │ ├── vf_bbox.c │ │ ├── vf_blackdetect.c │ │ ├── vf_blackframe.c │ │ ├── vf_blend.c │ │ ├── vf_boxblur.c │ │ ├── vf_codecview.c │ │ ├── vf_colorbalance.c │ │ ├── vf_colorchannelmixer.c │ │ ├── vf_colormatrix.c │ │ ├── vf_copy.c │ │ ├── vf_crop.c │ │ ├── vf_cropdetect.c │ │ ├── vf_curves.c │ │ ├── vf_dctdnoiz.c │ │ ├── vf_decimate.c │ │ ├── vf_dejudder.c │ │ ├── vf_delogo.c │ │ ├── vf_deshake.c │ │ ├── vf_drawbox.c │ │ ├── vf_drawtext.c │ │ ├── vf_edgedetect.c │ │ ├── vf_elbg.c │ │ ├── vf_extractplanes.c │ │ ├── vf_fade.c │ │ ├── vf_field.c │ │ ├── vf_fieldmatch.c │ │ ├── vf_fieldorder.c │ │ ├── vf_format.c │ │ ├── vf_fps.c │ │ ├── vf_framepack.c │ │ ├── vf_framestep.c │ │ ├── vf_frei0r.c │ │ ├── vf_geq.c │ │ ├── vf_gradfun.c │ │ ├── vf_hflip.c │ │ ├── vf_histeq.c │ │ ├── vf_histogram.c │ │ ├── vf_hqdn3d.c │ │ ├── vf_hqdn3d.h │ │ ├── vf_hqx.c │ │ ├── vf_hue.c │ │ ├── vf_idet.c │ │ ├── vf_idet.h │ │ ├── vf_il.c │ │ ├── vf_interlace.c │ │ ├── vf_kerndeint.c │ │ ├── vf_lenscorrection.c │ │ ├── vf_libopencv.c │ │ ├── vf_lut.c │ │ ├── vf_lut3d.c │ │ ├── vf_mcdeint.c │ │ ├── vf_mergeplanes.c │ │ ├── vf_mp.c │ │ ├── vf_mpdecimate.c │ │ ├── vf_noise.c │ │ ├── vf_null.c │ │ ├── vf_overlay.c │ │ ├── vf_owdenoise.c │ │ ├── vf_pad.c │ │ ├── vf_perspective.c │ │ ├── vf_phase.c │ │ ├── vf_pixdesctest.c │ │ ├── vf_pp.c │ │ ├── vf_psnr.c │ │ ├── vf_pullup.c │ │ ├── vf_pullup.h │ │ ├── vf_removelogo.c │ │ ├── vf_rotate.c │ │ ├── vf_sab.c │ │ ├── vf_scale.c │ │ ├── vf_separatefields.c │ │ ├── vf_setfield.c │ │ ├── vf_showinfo.c │ │ ├── vf_shuffleplanes.c │ │ ├── vf_signalstats.c │ │ ├── vf_smartblur.c │ │ ├── vf_spp.c │ │ ├── vf_spp.h │ │ ├── vf_stereo3d.c │ │ ├── vf_subtitles.c │ │ ├── vf_super2xsai.c │ │ ├── vf_swapuv.c │ │ ├── vf_telecine.c │ │ ├── vf_thumbnail.c │ │ ├── vf_tile.c │ │ ├── vf_tinterlace.c │ │ ├── vf_transpose.c │ │ ├── vf_unsharp.c │ │ ├── vf_vflip.c │ │ ├── vf_vidstabdetect.c │ │ ├── vf_vidstabtransform.c │ │ ├── vf_vignette.c │ │ ├── vf_w3fdif.c │ │ ├── vf_yadif.c │ │ ├── vf_zoompan.c │ │ ├── video.c │ │ ├── video.h │ │ ├── vidstabutils.c │ │ ├── vidstabutils.h │ │ ├── vsink_nullsink.c │ │ ├── vsrc_cellauto.c │ │ ├── vsrc_life.c │ │ ├── vsrc_mandelbrot.c │ │ ├── vsrc_mptestsrc.c │ │ ├── vsrc_testsrc.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── af_volume.asm │ │ │ ├── af_volume_init.c │ │ │ ├── vf_gradfun.asm │ │ │ ├── vf_gradfun_init.c │ │ │ ├── vf_hqdn3d.asm │ │ │ ├── vf_hqdn3d_init.c │ │ │ ├── vf_idet.asm │ │ │ ├── vf_idet_init.c │ │ │ ├── vf_pullup.asm │ │ │ ├── vf_pullup_init.c │ │ │ ├── vf_spp.c │ │ │ ├── vf_yadif.asm │ │ │ ├── vf_yadif_init.c │ │ │ ├── yadif-10.asm │ │ │ └── yadif-16.asm │ │ └── yadif.h │ ├── libavformat │ │ ├── 4xm.c │ │ ├── Makefile │ │ ├── a64.c │ │ ├── aacdec.c │ │ ├── ac3dec.c │ │ ├── act.c │ │ ├── adp.c │ │ ├── adtsenc.c │ │ ├── adxdec.c │ │ ├── aea.c │ │ ├── afc.c │ │ ├── aiff.h │ │ ├── aiffdec.c │ │ ├── aiffenc.c │ │ ├── allformats.c │ │ ├── amr.c │ │ ├── anm.c │ │ ├── apc.c │ │ ├── ape.c │ │ ├── apetag.c │ │ ├── apetag.h │ │ ├── aqtitledec.c │ │ ├── asf.c │ │ ├── asf.h │ │ ├── asfcrypt.c │ │ ├── asfcrypt.h │ │ ├── asfdec.c │ │ ├── asfenc.c │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── ast.c │ │ ├── ast.h │ │ ├── astdec.c │ │ ├── astenc.c │ │ ├── au.c │ │ ├── audiointerleave.c │ │ ├── audiointerleave.h │ │ ├── avc.c │ │ ├── avc.h │ │ ├── avformat.h │ │ ├── avformatres.rc │ │ ├── avi.h │ │ ├── avidec.c │ │ ├── avienc.c │ │ ├── avio.c │ │ ├── avio.h │ │ ├── avio_internal.h │ │ ├── aviobuf.c │ │ ├── avisynth.c │ │ ├── avlanguage.c │ │ ├── avlanguage.h │ │ ├── avr.c │ │ ├── avs.c │ │ ├── bethsoftvid.c │ │ ├── bfi.c │ │ ├── bink.c │ │ ├── bintext.c │ │ ├── bit.c │ │ ├── bluray.c │ │ ├── bmv.c │ │ ├── boadec.c │ │ ├── brstm.c │ │ ├── c93.c │ │ ├── cache.c │ │ ├── caf.c │ │ ├── caf.h │ │ ├── cafdec.c │ │ ├── cafenc.c │ │ ├── cavsvideodec.c │ │ ├── cdg.c │ │ ├── cdxl.c │ │ ├── cinedec.c │ │ ├── concat.c │ │ ├── concatdec.c │ │ ├── crcenc.c │ │ ├── crypto.c │ │ ├── cutils.c │ │ ├── data_uri.c │ │ ├── dauddec.c │ │ ├── daudenc.c │ │ ├── dfa.c │ │ ├── diracdec.c │ │ ├── dnxhddec.c │ │ ├── dsfdec.c │ │ ├── dsicin.c │ │ ├── dtsdec.c │ │ ├── dtshddec.c │ │ ├── dump.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── eacdata.c │ │ ├── electronicarts.c │ │ ├── epafdec.c │ │ ├── ffm.h │ │ ├── ffmdec.c │ │ ├── ffmenc.c │ │ ├── ffmeta.h │ │ ├── ffmetadec.c │ │ ├── ffmetaenc.c │ │ ├── file.c │ │ ├── file_open.c │ │ ├── filmstripdec.c │ │ ├── filmstripenc.c │ │ ├── flac_picture.c │ │ ├── flac_picture.h │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flacenc.h │ │ ├── flacenc_header.c │ │ ├── flic.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── format.c │ │ ├── framecrcenc.c │ │ ├── framehash.c │ │ ├── frmdec.c │ │ ├── ftp.c │ │ ├── g722.c │ │ ├── g723_1.c │ │ ├── g729dec.c │ │ ├── gif.c │ │ ├── gifdec.c │ │ ├── golomb_tab.c │ │ ├── gopher.c │ │ ├── gsmdec.c │ │ ├── gxf.c │ │ ├── gxf.h │ │ ├── gxfenc.c │ │ ├── h261dec.c │ │ ├── h263dec.c │ │ ├── h264dec.c │ │ ├── hdsenc.c │ │ ├── hevc.c │ │ ├── hevc.h │ │ ├── hevcdec.c │ │ ├── hls.c │ │ ├── hlsenc.c │ │ ├── hlsproto.c │ │ ├── hnm.c │ │ ├── http.c │ │ ├── http.h │ │ ├── httpauth.c │ │ ├── httpauth.h │ │ ├── icecast.c │ │ ├── icodec.c │ │ ├── icoenc.c │ │ ├── id3v1.c │ │ ├── id3v1.h │ │ ├── id3v2.c │ │ ├── id3v2.h │ │ ├── id3v2enc.c │ │ ├── idcin.c │ │ ├── idroqdec.c │ │ ├── idroqenc.c │ │ ├── iff.c │ │ ├── ilbc.c │ │ ├── img2.c │ │ ├── img2.h │ │ ├── img2_alias_pix.c │ │ ├── img2_brender_pix.c │ │ ├── img2dec.c │ │ ├── img2enc.c │ │ ├── ingenientdec.c │ │ ├── internal.h │ │ ├── ipmovie.c │ │ ├── ircam.c │ │ ├── ircam.h │ │ ├── ircamdec.c │ │ ├── ircamenc.c │ │ ├── isom.c │ │ ├── isom.h │ │ ├── iss.c │ │ ├── iv8.c │ │ ├── ivfdec.c │ │ ├── ivfenc.c │ │ ├── jacosubdec.c │ │ ├── jacosubenc.c │ │ ├── jvdec.c │ │ ├── latmenc.c │ │ ├── libavformat.v │ │ ├── libgme.c │ │ ├── libmodplug.c │ │ ├── libnut.c │ │ ├── libquvi.c │ │ ├── librtmp.c │ │ ├── libsmbclient.c │ │ ├── libssh.c │ │ ├── lmlm4.c │ │ ├── loasdec.c │ │ ├── log2_tab.c │ │ ├── lrc.c │ │ ├── lrc.h │ │ ├── lrcdec.c │ │ ├── lrcenc.c │ │ ├── lvfdec.c │ │ ├── lxfdec.c │ │ ├── m4vdec.c │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── matroskadec.c │ │ ├── matroskaenc.c │ │ ├── md5enc.c │ │ ├── md5proto.c │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── mgsts.c │ │ ├── microdvddec.c │ │ ├── microdvdenc.c │ │ ├── mkvtimestamp_v2.c │ │ ├── mlvdec.c │ │ ├── mm.c │ │ ├── mmf.c │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmst.c │ │ ├── mov.c │ │ ├── mov_chan.c │ │ ├── mov_chan.h │ │ ├── movenc.c │ │ ├── movenc.h │ │ ├── movenchint.c │ │ ├── mp3dec.c │ │ ├── mp3enc.c │ │ ├── mpc.c │ │ ├── mpc8.c │ │ ├── mpeg.c │ │ ├── mpeg.h │ │ ├── mpegenc.c │ │ ├── mpegts.c │ │ ├── mpegts.h │ │ ├── mpegtsenc.c │ │ ├── mpegvideodec.c │ │ ├── mpjpeg.c │ │ ├── mpl2dec.c │ │ ├── mpsubdec.c │ │ ├── msnwc_tcp.c │ │ ├── mtv.c │ │ ├── mux.c │ │ ├── mvdec.c │ │ ├── mvi.c │ │ ├── mxf.c │ │ ├── mxf.h │ │ ├── mxfdec.c │ │ ├── mxfenc.c │ │ ├── mxg.c │ │ ├── ncdec.c │ │ ├── network.c │ │ ├── network.h │ │ ├── nistspheredec.c │ │ ├── noproxy-test.c │ │ ├── nsvdec.c │ │ ├── nullenc.c │ │ ├── nut.c │ │ ├── nut.h │ │ ├── nutdec.c │ │ ├── nutenc.c │ │ ├── nuv.c │ │ ├── oggdec.c │ │ ├── oggdec.h │ │ ├── oggenc.c │ │ ├── oggparsecelt.c │ │ ├── oggparsedirac.c │ │ ├── oggparseflac.c │ │ ├── oggparseogm.c │ │ ├── oggparseopus.c │ │ ├── oggparseskeleton.c │ │ ├── oggparsespeex.c │ │ ├── oggparsetheora.c │ │ ├── oggparsevorbis.c │ │ ├── oggparsevp8.c │ │ ├── oma.c │ │ ├── oma.h │ │ ├── omadec.c │ │ ├── omaenc.c │ │ ├── options.c │ │ ├── options_table.h │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── paf.c │ │ ├── pcm.c │ │ ├── pcm.h │ │ ├── pcmdec.c │ │ ├── pcmenc.c │ │ ├── pjsdec.c │ │ ├── pmpdec.c │ │ ├── psxstr.c │ │ ├── pva.c │ │ ├── pvfdec.c │ │ ├── qcp.c │ │ ├── qtpalette.h │ │ ├── r3d.c │ │ ├── rawdec.c │ │ ├── rawdec.h │ │ ├── rawenc.c │ │ ├── rawenc.h │ │ ├── rawvideodec.c │ │ ├── rdt.c │ │ ├── rdt.h │ │ ├── realtextdec.c │ │ ├── redspark.c │ │ ├── replaygain.c │ │ ├── replaygain.h │ │ ├── riff.c │ │ ├── riff.h │ │ ├── riffdec.c │ │ ├── riffenc.c │ │ ├── rl2.c │ │ ├── rm.c │ │ ├── rm.h │ │ ├── rmdec.c │ │ ├── rmenc.c │ │ ├── rmsipr.c │ │ ├── rmsipr.h │ │ ├── rpl.c │ │ ├── rsd.c │ │ ├── rso.c │ │ ├── rso.h │ │ ├── rsodec.c │ │ ├── rsoenc.c │ │ ├── rtmp.h │ │ ├── rtmpcrypt.c │ │ ├── rtmpcrypt.h │ │ ├── rtmpdh.c │ │ ├── rtmpdh.h │ │ ├── rtmphttp.c │ │ ├── rtmppkt.c │ │ ├── rtmppkt.h │ │ ├── rtmpproto.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtpdec.c │ │ ├── rtpdec.h │ │ ├── rtpdec_amr.c │ │ ├── rtpdec_asf.c │ │ ├── rtpdec_formats.h │ │ ├── rtpdec_g726.c │ │ ├── rtpdec_h261.c │ │ ├── rtpdec_h263.c │ │ ├── rtpdec_h263_rfc2190.c │ │ ├── rtpdec_h264.c │ │ ├── rtpdec_hevc.c │ │ ├── rtpdec_ilbc.c │ │ ├── rtpdec_jpeg.c │ │ ├── rtpdec_latm.c │ │ ├── rtpdec_mpeg12.c │ │ ├── rtpdec_mpeg4.c │ │ ├── rtpdec_mpegts.c │ │ ├── rtpdec_qcelp.c │ │ ├── rtpdec_qdm2.c │ │ ├── rtpdec_qt.c │ │ ├── rtpdec_svq3.c │ │ ├── rtpdec_vp8.c │ │ ├── rtpdec_xiph.c │ │ ├── rtpenc.c │ │ ├── rtpenc.h │ │ ├── rtpenc_aac.c │ │ ├── rtpenc_amr.c │ │ ├── rtpenc_chain.c │ │ ├── rtpenc_chain.h │ │ ├── rtpenc_h261.c │ │ ├── rtpenc_h263.c │ │ ├── rtpenc_h263_rfc2190.c │ │ ├── rtpenc_h264.c │ │ ├── rtpenc_jpeg.c │ │ ├── rtpenc_latm.c │ │ ├── rtpenc_mpv.c │ │ ├── rtpenc_vp8.c │ │ ├── rtpenc_xiph.c │ │ ├── rtpproto.c │ │ ├── rtpproto.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── rtspcodes.h │ │ ├── rtspdec.c │ │ ├── rtspenc.c │ │ ├── samidec.c │ │ ├── sapdec.c │ │ ├── sapenc.c │ │ ├── sauce.c │ │ ├── sauce.h │ │ ├── sbgdec.c │ │ ├── sctp.c │ │ ├── sdp.c │ │ ├── sdr2.c │ │ ├── seek-test.c │ │ ├── seek.c │ │ ├── seek.h │ │ ├── segafilm.c │ │ ├── segment.c │ │ ├── sierravmd.c │ │ ├── siff.c │ │ ├── smacker.c │ │ ├── smjpeg.c │ │ ├── smjpeg.h │ │ ├── smjpegdec.c │ │ ├── smjpegenc.c │ │ ├── smoothstreamingenc.c │ │ ├── smush.c │ │ ├── sol.c │ │ ├── sox.h │ │ ├── soxdec.c │ │ ├── soxenc.c │ │ ├── spdif.c │ │ ├── spdif.h │ │ ├── spdifdec.c │ │ ├── spdifenc.c │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── srtp.c │ │ ├── srtp.h │ │ ├── srtpproto.c │ │ ├── subfile.c │ │ ├── subtitles.c │ │ ├── subtitles.h │ │ ├── subviewer1dec.c │ │ ├── subviewerdec.c │ │ ├── swf.c │ │ ├── swf.h │ │ ├── swfdec.c │ │ ├── swfenc.c │ │ ├── takdec.c │ │ ├── tcp.c │ │ ├── tedcaptionsdec.c │ │ ├── tee.c │ │ ├── thp.c │ │ ├── tiertexseq.c │ │ ├── tls.c │ │ ├── tmv.c │ │ ├── tta.c │ │ ├── tty.c │ │ ├── txd.c │ │ ├── udp.c │ │ ├── uncodedframecrcenc.c │ │ ├── unix.c │ │ ├── url-test.c │ │ ├── url.c │ │ ├── url.h │ │ ├── urldecode.c │ │ ├── urldecode.h │ │ ├── utils.c │ │ ├── vc1test.c │ │ ├── vc1testenc.c │ │ ├── version.h │ │ ├── vivo.c │ │ ├── voc.c │ │ ├── voc.h │ │ ├── vocdec.c │ │ ├── vocenc.c │ │ ├── vorbiscomment.c │ │ ├── vorbiscomment.h │ │ ├── vplayerdec.c │ │ ├── vqf.c │ │ ├── w64.c │ │ ├── w64.h │ │ ├── wavdec.c │ │ ├── wavenc.c │ │ ├── wc3movie.c │ │ ├── webmdashenc.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── westwood_aud.c │ │ ├── westwood_vqa.c │ │ ├── wtv.h │ │ ├── wtv_common.c │ │ ├── wtvdec.c │ │ ├── wtvenc.c │ │ ├── wv.c │ │ ├── wv.h │ │ ├── wvdec.c │ │ ├── wvenc.c │ │ ├── xa.c │ │ ├── xmv.c │ │ ├── xwma.c │ │ ├── yop.c │ │ ├── yuv4mpeg.h │ │ ├── yuv4mpegdec.c │ │ └── yuv4mpegenc.c │ ├── libavresample │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm-offsets.h │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ ├── neontest.c │ │ │ ├── resample_init.c │ │ │ └── resample_neon.S │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ └── neontest.c │ │ ├── audio_convert.c │ │ ├── audio_convert.h │ │ ├── audio_data.c │ │ ├── audio_data.h │ │ ├── audio_mix.c │ │ ├── audio_mix.h │ │ ├── audio_mix_matrix.c │ │ ├── avresample-test.c │ │ ├── avresample.h │ │ ├── avresampleres.rc │ │ ├── dither.c │ │ ├── dither.h │ │ ├── internal.h │ │ ├── libavresample.v │ │ ├── options.c │ │ ├── resample.c │ │ ├── resample.h │ │ ├── resample_template.c │ │ ├── utils.c │ │ ├── version.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── audio_convert.asm │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_mix.asm │ │ │ ├── audio_mix_init.c │ │ │ ├── dither.asm │ │ │ ├── dither_init.c │ │ │ ├── util.asm │ │ │ └── w64xmmtest.c │ ├── libavutil │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_init.c │ │ │ ├── float_dsp_neon.S │ │ │ └── neontest.h │ │ ├── adler32.c │ │ ├── adler32.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_arm.h │ │ │ ├── float_dsp_init_arm.c │ │ │ ├── float_dsp_init_neon.c │ │ │ ├── float_dsp_init_vfp.c │ │ │ ├── float_dsp_neon.S │ │ │ ├── float_dsp_vfp.S │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── neontest.h │ │ │ └── timer.h │ │ ├── atomic.c │ │ ├── atomic.h │ │ ├── atomic_gcc.h │ │ ├── atomic_suncc.h │ │ ├── atomic_win32.h │ │ ├── attributes.h │ │ ├── audio_fifo.c │ │ ├── audio_fifo.h │ │ ├── audioconvert.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avr32 │ │ │ ├── bswap.h │ │ │ └── intreadwrite.h │ │ ├── avstring.c │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── avutilres.rc │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bfin │ │ │ ├── bswap.h │ │ │ └── timer.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── bprint.c │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buffer_internal.h │ │ ├── channel_layout.c │ │ ├── channel_layout.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_internal.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── des.c │ │ ├── des.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── display.c │ │ ├── display.h │ │ ├── downmix_info.c │ │ ├── downmix_info.h │ │ ├── dynarray.h │ │ ├── error.c │ │ ├── error.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── file.c │ │ ├── file.h │ │ ├── file_open.c │ │ ├── fixed_dsp.c │ │ ├── fixed_dsp.h │ │ ├── float_dsp.c │ │ ├── float_dsp.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── imgutils.c │ │ ├── imgutils.h │ │ ├── integer.c │ │ ├── integer.h │ │ ├── internal.h │ │ ├── intfloat.h │ │ ├── intfloat_readwrite.c │ │ ├── intfloat_readwrite.h │ │ ├── intmath.c │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── lfg.c │ │ ├── lfg.h │ │ ├── libavutil.v │ │ ├── libm.h │ │ ├── lls.c │ │ ├── lls.h │ │ ├── log.c │ │ ├── log.h │ │ ├── log2_tab.c │ │ ├── lzo.c │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mathematics.c │ │ ├── mathematics.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── float_dsp_mips.c │ │ │ ├── intreadwrite.h │ │ │ └── libm_mips.h │ │ ├── motion_vector.h │ │ ├── murmur3.c │ │ ├── murmur3.h │ │ ├── old_pix_fmts.h │ │ ├── opencl.c │ │ ├── opencl.h │ │ ├── opencl_internal.c │ │ ├── opencl_internal.h │ │ ├── opt.c │ │ ├── opt.h │ │ ├── parseutils.c │ │ ├── parseutils.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── pixdesc.c │ │ ├── pixdesc.h │ │ ├── pixelutils.c │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_altivec.c │ │ │ ├── float_dsp_altivec.h │ │ │ ├── float_dsp_init.c │ │ │ ├── intreadwrite.h │ │ │ ├── timer.h │ │ │ ├── types_altivec.h │ │ │ └── util_altivec.h │ │ ├── qsort.h │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── rational.c │ │ ├── rational.h │ │ ├── rc4.c │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.c │ │ ├── ripemd.h │ │ ├── samplefmt.c │ │ ├── samplefmt.h │ │ ├── sh4 │ │ │ └── bswap.h │ │ ├── sha.c │ │ ├── sha.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── softfloat.c │ │ ├── softfloat.h │ │ ├── stereo3d.c │ │ ├── stereo3d.h │ │ ├── threadmessage.c │ │ ├── threadmessage.h │ │ ├── time.c │ │ ├── time.h │ │ ├── timecode.c │ │ ├── timecode.h │ │ ├── timer.h │ │ ├── timestamp.h │ │ ├── tomi │ │ │ └── intreadwrite.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── utf8.c │ │ ├── utils.c │ │ ├── version.h │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpuid.asm │ │ │ ├── emms.asm │ │ │ ├── emms.h │ │ │ ├── float_dsp.asm │ │ │ ├── float_dsp_init.c │ │ │ ├── intreadwrite.h │ │ │ ├── lls.asm │ │ │ ├── lls_init.c │ │ │ ├── pixelutils.asm │ │ │ ├── pixelutils.h │ │ │ ├── pixelutils_init.c │ │ │ ├── timer.h │ │ │ ├── w64xmmtest.h │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ │ ├── x86_cpu.h │ │ ├── xga_font_data.c │ │ ├── xga_font_data.h │ │ ├── xtea.c │ │ └── xtea.h │ ├── libpostproc │ │ ├── Makefile │ │ ├── libpostproc.v │ │ ├── postprocess.c │ │ ├── postprocess.h │ │ ├── postprocess_altivec_template.c │ │ ├── postprocess_internal.h │ │ ├── postprocess_template.c │ │ ├── postprocres.rc │ │ └── version.h │ ├── library.mak │ ├── libswresample │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ └── neontest.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── audio_convert_init.c │ │ │ ├── audio_convert_neon.S │ │ │ └── neontest.c │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── dither.c │ │ ├── dither_template.c │ │ ├── libswresample.v │ │ ├── log2_tab.c │ │ ├── noise_shaping_data.c │ │ ├── options.c │ │ ├── rematrix.c │ │ ├── rematrix_template.c │ │ ├── resample.c │ │ ├── resample.h │ │ ├── resample_dsp.c │ │ ├── resample_template.c │ │ ├── soxr_resample.c │ │ ├── swresample-test.c │ │ ├── swresample.c │ │ ├── swresample.h │ │ ├── swresample_frame.c │ │ ├── swresample_internal.h │ │ ├── swresampleres.rc │ │ ├── version.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── audio_convert.asm │ │ │ ├── audio_convert_init.c │ │ │ ├── rematrix.asm │ │ │ ├── rematrix_init.c │ │ │ ├── resample.asm │ │ │ ├── resample_init.c │ │ │ └── w64xmmtest.c │ ├── libswscale │ │ ├── Makefile │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── rgb2yuv_neon_16.S │ │ │ ├── rgb2yuv_neon_32.S │ │ │ ├── rgb2yuv_neon_common.S │ │ │ └── swscale_unscaled.c │ │ ├── bayer_template.c │ │ ├── colorspace-test.c │ │ ├── hscale_fast_bilinear.c │ │ ├── input.c │ │ ├── libswscale.v │ │ ├── log2_tab.c │ │ ├── options.c │ │ ├── output.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── swscale_altivec.c │ │ │ ├── yuv2rgb_altivec.c │ │ │ ├── yuv2rgb_altivec.h │ │ │ └── yuv2yuv_altivec.c │ │ ├── rgb2rgb.c │ │ ├── rgb2rgb.h │ │ ├── rgb2rgb_template.c │ │ ├── swscale-test.c │ │ ├── swscale.c │ │ ├── swscale.h │ │ ├── swscale_internal.h │ │ ├── swscale_unscaled.c │ │ ├── swscaleres.rc │ │ ├── utils.c │ │ ├── version.h │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── hscale_fast_bilinear_simd.c │ │ │ ├── input.asm │ │ │ ├── output.asm │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_template.c │ │ │ ├── scale.asm │ │ │ ├── swscale.c │ │ │ ├── swscale_template.c │ │ │ ├── w64xmmtest.c │ │ │ ├── yuv2rgb.c │ │ │ └── yuv2rgb_template.c │ │ └── yuv2rgb.c │ ├── presets │ │ ├── libvpx-1080p.ffpreset │ │ ├── libvpx-1080p50_60.ffpreset │ │ ├── libvpx-360p.ffpreset │ │ ├── libvpx-720p.ffpreset │ │ └── libvpx-720p50_60.ffpreset │ ├── tools │ │ ├── aviocat.c │ │ ├── bisect-create │ │ ├── bookmarklets.html │ │ ├── build_libstagefright │ │ ├── clean-diff │ │ ├── crypto_bench.c │ │ ├── cws2fws.c │ │ ├── dvd2concat │ │ ├── enum_options.c │ │ ├── ffescape.c │ │ ├── ffeval.c │ │ ├── ffhash.c │ │ ├── fourcc2pixfmt.c │ │ ├── gen-rc │ │ ├── graph2dot.c │ │ ├── ismindex.c │ │ ├── make_chlayout_test │ │ ├── missing_codec_desc │ │ ├── normalize.py │ │ ├── patcheck │ │ ├── pktdumper.c │ │ ├── plotframes │ │ ├── probetest.c │ │ ├── qt-faststart.c │ │ ├── seek_print.c │ │ ├── trasher.c │ │ ├── uncoded_frame.c │ │ ├── unwrap-diff │ │ ├── yuvcmp.c │ │ ├── zmqsend.c │ │ └── zmqshell.py │ └── version.sh ├── liblame │ ├── ACM │ │ ├── ACM.cpp │ │ ├── ACM.h │ │ ├── ACMStream.cpp │ │ ├── ACMStream.h │ │ ├── ADbg │ │ │ ├── ADbg.cpp │ │ │ ├── ADbg.h │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── AEncodeProperties.cpp │ │ ├── AEncodeProperties.h │ │ ├── DecodeStream.cpp │ │ ├── DecodeStream.h │ │ ├── LameACM.inf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── TODO │ │ ├── acm.rc │ │ ├── adebug.h │ │ ├── ddk │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── msacmdrv.h │ │ ├── lame.ico │ │ ├── lameACM.def │ │ ├── lame_acm.xml │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── resource.h │ │ └── tinyxml │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.tinyxml │ │ │ ├── changes.txt │ │ │ ├── dox │ │ │ ├── makedistlinux │ │ │ ├── makedistwin.bat │ │ │ ├── readme.txt │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ ├── tinyxmlparser.cpp │ │ │ └── xmltest.cpp │ ├── API │ ├── COPYING │ ├── ChangeLog │ ├── DEFINES │ ├── Dll │ │ ├── BladeMP3EncDLL.c │ │ ├── BladeMP3EncDLL.def │ │ ├── BladeMP3EncDLL.h │ │ ├── Example.cpp │ │ ├── LameDLLInterface.htm │ │ ├── MP3export.pas │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mingw32 │ │ └── README │ ├── HACKING │ ├── INSTALL │ ├── INSTALL.configure │ ├── LICENSE │ ├── Makefile.MSVC │ ├── Makefile.am │ ├── Makefile.am.global │ ├── Makefile.in │ ├── Makefile.unix │ ├── README │ ├── README.WINGTK │ ├── STYLEGUIDE │ ├── TODO │ ├── USAGE │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configMS.h │ ├── configure │ ├── configure.in │ ├── debian │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── lame.docs │ │ ├── lame.install │ │ ├── lame.manpages │ │ ├── libmp3lame-dev.install │ │ ├── libmp3lame0.install │ │ ├── rules │ │ └── watch │ ├── depcomp │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── html │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── about.html │ │ │ ├── abr.html │ │ │ ├── cbr.html │ │ │ ├── contact.html │ │ │ ├── contributors.html │ │ │ ├── detailed.html │ │ │ ├── history.html │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ ├── links.html │ │ │ ├── list.html │ │ │ ├── ms_stereo.html │ │ │ ├── usage.html │ │ │ └── vbr.html │ │ └── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── lame.1 │ ├── dshow │ │ ├── Encoder.cpp │ │ ├── Encoder.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Mpegac.cpp │ │ ├── Mpegac.def │ │ ├── Mpegac.h │ │ ├── PropPage.cpp │ │ ├── PropPage.h │ │ ├── PropPage_adv.cpp │ │ ├── PropPage_adv.h │ │ ├── Property.rc │ │ ├── README │ │ ├── REG.CPP │ │ ├── REG.H │ │ ├── UIDS.H │ │ ├── aboutprp.cpp │ │ ├── aboutprp.h │ │ ├── elogo.ico │ │ ├── iaudioprops.h │ │ └── resource.h │ ├── frontend │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── amiga_mpega.c │ │ ├── brhist.c │ │ ├── brhist.h │ │ ├── console.c │ │ ├── console.h │ │ ├── depcomp │ │ ├── get_audio.c │ │ ├── get_audio.h │ │ ├── gpkplotting.c │ │ ├── gpkplotting.h │ │ ├── gtkanal.c │ │ ├── gtkanal.h │ │ ├── lame_main.c │ │ ├── lametime.c │ │ ├── lametime.h │ │ ├── main.c │ │ ├── main.h │ │ ├── mp3rtp.c │ │ ├── mp3x.c │ │ ├── parse.c │ │ ├── parse.h │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── timestatus.c │ │ └── timestatus.h │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lame.def │ │ ├── lame.h │ │ └── libmp3lame.sym │ ├── install-sh │ ├── lame.bat │ ├── lame.spec │ ├── lame.spec.in │ ├── libmp3lame │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VbrTag.c │ │ ├── VbrTag.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── depcomp │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── gain_analysis.c │ │ ├── gain_analysis.h │ │ ├── i386 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── choose_table.nas │ │ │ ├── cpu_feat.nas │ │ │ ├── fft.nas │ │ │ ├── fft3dn.nas │ │ │ ├── fftfpu.nas │ │ │ ├── fftsse.nas │ │ │ ├── ffttbl.nas │ │ │ ├── nasm.h │ │ │ └── scalar.nas │ │ ├── id3tag.c │ │ ├── id3tag.h │ │ ├── l3side.h │ │ ├── lame-analysis.h │ │ ├── lame-machine.h │ │ ├── lame.c │ │ ├── lame.rc │ │ ├── lame_global_flags.h │ │ ├── lameerror.h │ │ ├── logoe.ico │ │ ├── mpglib_interface.c │ │ ├── newmdct.c │ │ ├── newmdct.h │ │ ├── presets.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── quantize_pvt.c │ │ ├── quantize_pvt.h │ │ ├── reservoir.c │ │ ├── reservoir.h │ │ ├── set_get.c │ │ ├── set_get.h │ │ ├── tables.c │ │ ├── tables.h │ │ ├── takehiro.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vbrquantize.c │ │ ├── vbrquantize.h │ │ ├── vector │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lame_intrin.h │ │ │ └── xmm_quantize_sub.c │ │ ├── version.c │ │ └── version.h │ ├── ltmain.sh │ ├── mac │ │ ├── .DS_Store │ │ ├── LAME.mcp │ │ ├── LAME_Carbon_Debug.pch │ │ ├── LAME_Carbon_Final.pch │ │ ├── LAME_Classic_Debug.pch │ │ ├── LAME_Classic_Final.pch │ │ ├── MacDLLMain.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── Precompile_Common.h │ ├── macosx │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ ├── Info.plist │ │ ├── LAME.xcodeproj │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── project.pbxproj │ │ ├── LAME_Prefix.pch │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── misc │ │ ├── Lame.vbs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── abx.c │ │ ├── ath.c │ │ ├── auenc │ │ ├── depcomp │ │ ├── lame4dos.bat │ │ ├── lameGUI.html │ │ ├── lameid3.pl │ │ ├── mk_mp3.sh │ │ ├── mlame │ │ ├── mlame_corr.c │ │ ├── mugeco.sh │ │ └── scalartest.c │ ├── missing │ ├── mpglib │ │ ├── AUTHORS │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── common.c │ │ ├── common.h │ │ ├── dct64_i386.c │ │ ├── dct64_i386.h │ │ ├── decode_i386.c │ │ ├── decode_i386.h │ │ ├── depcomp │ │ ├── huffman.h │ │ ├── interface.c │ │ ├── interface.h │ │ ├── l2tables.h │ │ ├── layer1.c │ │ ├── layer1.h │ │ ├── layer2.c │ │ ├── layer2.h │ │ ├── layer3.c │ │ ├── layer3.h │ │ ├── mpg123.h │ │ ├── mpglib.h │ │ ├── tabinit.c │ │ └── tabinit.h │ ├── testcase.mp3 │ ├── testcase.wav │ └── vc_solution │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── arch_nasm.vsprops │ │ ├── arch_sse2.vsprops │ │ ├── arch_x87.vsprops │ │ ├── vc9_lame.sln │ │ ├── vc9_lame_acm.vcproj │ │ ├── vc9_lame_acm_adbg.vcproj │ │ ├── vc9_lame_acm_tinyxml.vcproj │ │ ├── vc9_lame_clients.sln │ │ ├── vc9_lame_config.vsprops │ │ ├── vc9_lame_dll.vcproj │ │ ├── vc9_lame_dll_example.vcproj │ │ ├── vc9_lame_dshow.vcproj │ │ ├── vc9_lame_lame.vcproj │ │ ├── vc9_lame_mp3rtp.vcproj │ │ ├── vc9_lame_mp3x.vcproj │ │ ├── vc9_lame_test.vcproj │ │ ├── vc9_libmp3lame.vcproj │ │ ├── vc9_libmp3lame_dll.vcproj │ │ ├── vc9_mpglib.vcproj │ │ └── vc9_nasm.rules ├── libx264 │ ├── AUTHORS │ ├── COPYING │ ├── Makefile │ ├── common │ │ ├── aarch64 │ │ │ ├── asm.S │ │ │ ├── dct-a.S │ │ │ ├── dct.h │ │ │ ├── deblock-a.S │ │ │ ├── mc-a.S │ │ │ ├── mc-c.c │ │ │ ├── mc.h │ │ │ ├── pixel-a.S │ │ │ ├── pixel.h │ │ │ ├── predict-a.S │ │ │ ├── predict-c.c │ │ │ ├── predict.h │ │ │ ├── quant-a.S │ │ │ └── quant.h │ │ ├── arm │ │ │ ├── asm.S │ │ │ ├── cpu-a.S │ │ │ ├── dct-a.S │ │ │ ├── dct.h │ │ │ ├── deblock-a.S │ │ │ ├── mc-a.S │ │ │ ├── mc-c.c │ │ │ ├── mc.h │ │ │ ├── pixel-a.S │ │ │ ├── pixel.h │ │ │ ├── predict-a.S │ │ │ ├── predict-c.c │ │ │ ├── predict.h │ │ │ ├── quant-a.S │ │ │ └── quant.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── common.c │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── dct.c │ │ ├── dct.h │ │ ├── deblock.c │ │ ├── frame.c │ │ ├── frame.h │ │ ├── macroblock.c │ │ ├── macroblock.h │ │ ├── mc.c │ │ ├── mc.h │ │ ├── mvpred.c │ │ ├── oclobj-msvc.h │ │ ├── opencl.c │ │ ├── opencl.h │ │ ├── opencl │ │ │ ├── bidir.cl │ │ │ ├── downscale.cl │ │ │ ├── intra.cl │ │ │ ├── motionsearch.cl │ │ │ ├── subpel.cl │ │ │ ├── weightp.cl │ │ │ └── x264-cl.h │ │ ├── osdep.c │ │ ├── osdep.h │ │ ├── pixel.c │ │ ├── pixel.h │ │ ├── ppc │ │ │ ├── dct.c │ │ │ ├── dct.h │ │ │ ├── deblock.c │ │ │ ├── mc.c │ │ │ ├── mc.h │ │ │ ├── pixel.c │ │ │ ├── pixel.h │ │ │ ├── ppccommon.h │ │ │ ├── predict.c │ │ │ ├── predict.h │ │ │ ├── quant.c │ │ │ └── quant.h │ │ ├── predict.c │ │ ├── predict.h │ │ ├── quant.c │ │ ├── quant.h │ │ ├── rectangle.c │ │ ├── rectangle.h │ │ ├── set.c │ │ ├── set.h │ │ ├── threadpool.c │ │ ├── threadpool.h │ │ ├── vlc.c │ │ ├── win32thread.c │ │ ├── win32thread.h │ │ └── x86 │ │ │ ├── bitstream-a.asm │ │ │ ├── cabac-a.asm │ │ │ ├── const-a.asm │ │ │ ├── cpu-a.asm │ │ │ ├── dct-32.asm │ │ │ ├── dct-64.asm │ │ │ ├── dct-a.asm │ │ │ ├── dct.h │ │ │ ├── deblock-a.asm │ │ │ ├── mc-a.asm │ │ │ ├── mc-a2.asm │ │ │ ├── mc-c.c │ │ │ ├── mc.h │ │ │ ├── pixel-32.asm │ │ │ ├── pixel-a.asm │ │ │ ├── pixel.h │ │ │ ├── predict-a.asm │ │ │ ├── predict-c.c │ │ │ ├── predict.h │ │ │ ├── quant-a.asm │ │ │ ├── quant.h │ │ │ ├── sad-a.asm │ │ │ ├── sad16-a.asm │ │ │ ├── trellis-64.asm │ │ │ ├── util.h │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── doc │ │ ├── ratecontrol.txt │ │ ├── regression_test.txt │ │ ├── standards.txt │ │ ├── threads.txt │ │ └── vui.txt │ ├── dos │ │ └── getopt.h │ ├── encoder │ │ ├── analyse.c │ │ ├── analyse.h │ │ ├── cabac.c │ │ ├── cavlc.c │ │ ├── encoder.c │ │ ├── lookahead.c │ │ ├── macroblock.c │ │ ├── macroblock.h │ │ ├── me.c │ │ ├── me.h │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── rdo.c │ │ ├── set.c │ │ ├── set.h │ │ ├── slicetype-cl.c │ │ └── slicetype.c │ ├── extras │ │ ├── avisynth_c.h │ │ ├── avxsynth_c.h │ │ ├── cl.h │ │ ├── cl_platform.h │ │ ├── gas-preprocessor.pl │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── inttypes.h │ │ ├── stdint.h │ │ └── windowsPorts │ │ │ ├── basicDataTypeConversions.h │ │ │ └── windows2linux.h │ ├── filters │ │ ├── filters.c │ │ ├── filters.h │ │ └── video │ │ │ ├── cache.c │ │ │ ├── crop.c │ │ │ ├── depth.c │ │ │ ├── fix_vfr_pts.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── resize.c │ │ │ ├── select_every.c │ │ │ ├── source.c │ │ │ ├── video.c │ │ │ └── video.h │ ├── input │ │ ├── avs.c │ │ ├── ffms.c │ │ ├── input.c │ │ ├── input.h │ │ ├── lavf.c │ │ ├── raw.c │ │ ├── thread.c │ │ ├── timecode.c │ │ └── y4m.c │ ├── output │ │ ├── flv.c │ │ ├── flv_bytestream.c │ │ ├── flv_bytestream.h │ │ ├── matroska.c │ │ ├── matroska_ebml.c │ │ ├── matroska_ebml.h │ │ ├── mp4.c │ │ ├── mp4_lsmash.c │ │ ├── output.h │ │ └── raw.c │ ├── tools │ │ ├── checkasm-a.asm │ │ ├── checkasm.c │ │ ├── cltostr.sh │ │ ├── countquant_x264.pl │ │ ├── digress │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── comparers.py │ │ │ ├── constants.py │ │ │ ├── errors.py │ │ │ ├── scm │ │ │ │ ├── __init__.py │ │ │ │ ├── dummy.py │ │ │ │ └── git.py │ │ │ └── testing.py │ │ ├── msvsdepend.sh │ │ ├── q_matrix_jvt.cfg │ │ └── test_x264.py │ ├── version.sh │ ├── x264.c │ ├── x264.h │ ├── x264cli.h │ ├── x264dll.c │ └── x264res.rc └── p64 │ ├── Makefile.am │ ├── Makefile.in │ ├── p64.c │ ├── p64.h │ └── p64config.h ├── libm_math.c ├── libm_math.h ├── log.c ├── log.h ├── machine-bus.c ├── machine-bus.h ├── machine-drive.h ├── machine-printer.h ├── machine-video.h ├── machine.c ├── machine.h ├── main.c ├── main.h ├── main65816cpu.c ├── main65816cpu.h ├── mainc64cpu.c ├── mainc64cpu.h ├── maincpu.c ├── maincpu.h ├── mainviccpu.c ├── mem.h ├── midi.c ├── midi.h ├── mididrv.h ├── mididrv ├── Makefile.am ├── Makefile.in ├── midi-osx-drv.c ├── midi-unix-drv.c └── midi-win32-drv.c ├── monitor.h ├── monitor ├── Makefile.am ├── Makefile.in ├── asm.h ├── asm6502.c ├── asm6502dtv.c ├── asm65816.c ├── asm6809.c ├── asmR65C02.c ├── asmz80.c ├── mon_assemble.h ├── mon_assemble6502.c ├── mon_assemble65816.c ├── mon_assemble6809.c ├── mon_assembleR65C02.c ├── mon_assemblez80.c ├── mon_breakpoint.c ├── mon_breakpoint.h ├── mon_command.c ├── mon_command.h ├── mon_disassemble.c ├── mon_disassemble.h ├── mon_drive.c ├── mon_drive.h ├── mon_file.c ├── mon_file.h ├── mon_lex.c ├── mon_lex.l ├── mon_memmap.c ├── mon_memmap.h ├── mon_memory.c ├── mon_memory.h ├── mon_parse.c ├── mon_parse.h ├── mon_parse.y ├── mon_register.c ├── mon_register.h ├── mon_register6502.c ├── mon_register6502dtv.c ├── mon_register65816.c ├── mon_register6809.c ├── mon_registerR65C02.c ├── mon_registerz80.c ├── mon_ui.c ├── mon_ui.h ├── mon_util.c ├── mon_util.h ├── monitor.c ├── monitor_network.c ├── monitor_network.h └── montypes.h ├── mos6510.h ├── mos6510dtv.h ├── network.c ├── network.h ├── opencbm.h ├── opencbmlib.c ├── opencbmlib.h ├── palette.c ├── palette.h ├── parallel.h ├── parallel ├── Makefile.am ├── Makefile.in ├── parallel-trap.c ├── parallel-trap.h └── parallel.c ├── parsid.h ├── pet ├── 6809.c ├── 6809.h ├── Makefile.am ├── Makefile.in ├── debugcart.c ├── debugcart.h ├── pet-cmdline-options.c ├── pet-cmdline-options.h ├── pet-resources.c ├── pet-resources.h ├── pet-sidcart.c ├── pet-snapshot.c ├── pet-snapshot.h ├── pet.c ├── pet.h ├── petacia.h ├── petacia1.c ├── petbus.c ├── petcolour.c ├── petcolour.h ├── petcpu.c ├── petdatasette.c ├── petdrive.c ├── petdww.c ├── petdww.h ├── petembedded.c ├── pethre.c ├── pethre.h ├── petiec.c ├── petiec.h ├── petio.c ├── petmem.c ├── petmem.h ├── petmemsnapshot.c ├── petmemsnapshot.h ├── petmodel.c ├── petmodel.h ├── petpia.h ├── petpia1.c ├── petpia2.c ├── petprinter.c ├── petreu.c ├── petreu.h ├── petrom.c ├── petrom.h ├── petromset.c ├── pets.h ├── petsound.c ├── petsound.h ├── petvia.c ├── petvia.h └── petvideo.c ├── petcat.c ├── petui.h ├── piacore.c ├── piacore.h ├── plus4 ├── Makefile.am ├── Makefile.in ├── debugcart.c ├── debugcart.h ├── digiblaster.c ├── digiblaster.h ├── plus4-cmdline-options.c ├── plus4-cmdline-options.h ├── plus4-resources.c ├── plus4-resources.h ├── plus4-sidcart.c ├── plus4-snapshot.c ├── plus4-snapshot.h ├── plus4.c ├── plus4.h ├── plus4acia.c ├── plus4acia.h ├── plus4bus.c ├── plus4cart.c ├── plus4cart.h ├── plus4cpu.c ├── plus4datasette.c ├── plus4drive.c ├── plus4embedded.c ├── plus4iec.c ├── plus4iec.h ├── plus4io.c ├── plus4mem.c ├── plus4mem.h ├── plus4memcsory256k.c ├── plus4memcsory256k.h ├── plus4memhacks.c ├── plus4memhacks.h ├── plus4memhannes256k.c ├── plus4memhannes256k.h ├── plus4memlimit.c ├── plus4memlimit.h ├── plus4memrom.c ├── plus4memrom.h ├── plus4memsnapshot.c ├── plus4memsnapshot.h ├── plus4model.c ├── plus4model.h ├── plus4parallel.c ├── plus4parallel.h ├── plus4pio1.c ├── plus4pio1.h ├── plus4pio2.c ├── plus4pio2.h ├── plus4printer.c ├── plus4rom.c ├── plus4rom.h ├── plus4romset.c ├── plus4speech.c ├── plus4speech.h ├── plus4tcbm.c ├── plus4tcbm.h ├── plus4video.c ├── ted-badline.c ├── ted-badline.h ├── ted-cmdline-options.c ├── ted-cmdline-options.h ├── ted-color.c ├── ted-color.h ├── ted-draw.c ├── ted-draw.h ├── ted-fetch.c ├── ted-fetch.h ├── ted-irq.c ├── ted-irq.h ├── ted-mem.c ├── ted-mem.h ├── ted-resources.c ├── ted-resources.h ├── ted-snapshot.c ├── ted-snapshot.h ├── ted-sound.c ├── ted-sound.h ├── ted-timer.c ├── ted-timer.h ├── ted-timing.c ├── ted-timing.h ├── ted.c ├── ted.h └── tedtypes.h ├── plus4ui.h ├── printer.h ├── printerdrv ├── Makefile.am ├── Makefile.in ├── driver-select.c ├── driver-select.h ├── drv-1520.c ├── drv-1520.h ├── drv-ascii.c ├── drv-ascii.h ├── drv-mps803.c ├── drv-mps803.h ├── drv-nl10.c ├── drv-nl10.h ├── drv-raw.c ├── drv-raw.h ├── interface-serial.c ├── interface-serial.h ├── interface-userport.c ├── interface-userport.h ├── output-graphics.c ├── output-graphics.h ├── output-select.c ├── output-select.h ├── output-text.c ├── output-text.h ├── output.h ├── printer-serial.c ├── printer-userport.c └── printer.c ├── printermps803.h ├── printernl10cbm.h ├── ps2mouse.c ├── ps2mouse.h ├── r65c02.h ├── ram.c ├── ram.h ├── raster ├── Makefile.am ├── Makefile.in ├── raster-cache-const.h ├── raster-cache-fill-1fff.h ├── raster-cache-fill-39ff.h ├── raster-cache-fill.h ├── raster-cache-nibbles.h ├── raster-cache-text-ext.h ├── raster-cache-text-std.h ├── raster-cache.c ├── raster-cache.h ├── raster-canvas.c ├── raster-canvas.h ├── raster-changes.c ├── raster-changes.h ├── raster-cmdline-options.c ├── raster-cmdline-options.h ├── raster-line-changes-sprite.c ├── raster-line-changes.c ├── raster-line.c ├── raster-line.h ├── raster-modes.c ├── raster-modes.h ├── raster-resources.c ├── raster-resources.h ├── raster-sprite-cache.c ├── raster-sprite-cache.h ├── raster-sprite-status.c ├── raster-sprite-status.h ├── raster-sprite.c ├── raster-sprite.h ├── raster.c └── raster.h ├── rawfile.c ├── rawfile.h ├── rawnet.c ├── rawnet.h ├── rawnetarch.h ├── resid-dtv ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── bittrain.h ├── configure ├── configure.in ├── envelope.cc ├── envelope.h ├── extfilt.cc ├── extfilt.h ├── filter.cc ├── filter.h ├── residdtv-config.h ├── sid.cc ├── sid.h ├── siddtvdefs.h.in ├── version.cc ├── voice.cc ├── voice.h ├── wave.cc └── wave.h ├── resid ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.VICE ├── THANKS ├── TODO ├── aclocal.m4 ├── config.log ├── configure ├── configure.in ├── dac.cc ├── dac.h ├── envelope.cc ├── envelope.h ├── extfilt.cc ├── extfilt.h ├── filter.cc ├── filter.h ├── pot.cc ├── pot.h ├── resid-config.h ├── samp2src.pl ├── sid.cc ├── sid.h ├── siddefs.h ├── siddefs.h.in ├── spline.h ├── version.cc ├── voice.cc ├── voice.h ├── wave.cc ├── wave.h ├── wave6581_PST.dat ├── wave6581_PST.h ├── wave6581_PS_.dat ├── wave6581_PS_.h ├── wave6581_P_T.dat ├── wave6581_P_T.h ├── wave6581__ST.dat ├── wave6581__ST.h ├── wave8580_PST.dat ├── wave8580_PST.h ├── wave8580_PS_.dat ├── wave8580_PS_.h ├── wave8580_P_T.dat ├── wave8580_P_T.h ├── wave8580__ST.dat └── wave8580__ST.h ├── resources.c ├── resources.h ├── riot.h ├── romset.c ├── romset.h ├── rs232dev.h ├── rs232drv.h ├── rs232drv ├── Makefile.am ├── Makefile.in ├── rs232.c ├── rs232.h ├── rs232drv.c ├── rs232net.c └── rsuser.c ├── rs232net.h ├── rsuser.h ├── rtc ├── Makefile.am ├── Makefile.in ├── bq4830y.c ├── bq4830y.h ├── ds1202_1302.c ├── ds1202_1302.h ├── ds1216e.c ├── ds1216e.h ├── ds12c887.c ├── ds12c887.h ├── ds1307.c ├── ds1307.h ├── ds1602.c ├── ds1602.h ├── pcf8583.c ├── pcf8583.h ├── rtc-58321a.c ├── rtc-58321a.h ├── rtc-72421.c ├── rtc-72421.h ├── rtc.c └── rtc.h ├── samplerdrv ├── Makefile.am ├── Makefile.in ├── file_drv.c ├── file_drv.h ├── portaudio_drv.c ├── portaudio_drv.h ├── sampler.c └── sampler.h ├── scpu64 ├── Makefile.am ├── Makefile.in ├── scpu64-cmdline-options.c ├── scpu64-cmdline-options.h ├── scpu64-resources.c ├── scpu64-resources.h ├── scpu64-snapshot.c ├── scpu64-snapshot.h ├── scpu64.c ├── scpu64.h ├── scpu64cpu.c ├── scpu64cpu.h ├── scpu64gluelogic.c ├── scpu64gluelogic.h ├── scpu64mem.c ├── scpu64mem.h ├── scpu64meminit.c ├── scpu64meminit.h ├── scpu64memsnapshot.c ├── scpu64memsnapshot.h ├── scpu64model.c ├── scpu64rom.c ├── scpu64rom.h └── scpu64stubs.c ├── scpu64ui.h ├── screenshot.c ├── screenshot.h ├── sedinfocontrib_h.sh ├── serial.h ├── serial ├── Makefile.am ├── Makefile.in ├── fsdrive.c ├── fsdrive.h ├── realdevice.c ├── realdevice.h ├── serial-device.c ├── serial-iec-bus.c ├── serial-iec-bus.h ├── serial-iec-device.c ├── serial-iec-device.h ├── serial-iec-lib.c ├── serial-iec.c ├── serial-iec.h ├── serial-realdevice.c ├── serial-trap.c ├── serial-trap.h └── serial.c ├── sid ├── Makefile.am ├── Makefile.in ├── catweaselmkiii.c ├── fastsid.c ├── fastsid.h ├── hardsid.c ├── parsid.c ├── resid-dtv.cc ├── resid.cc ├── resid.h ├── sid-cmdline-options.c ├── sid-cmdline-options.h ├── sid-resources.c ├── sid-resources.h ├── sid-snapshot.c ├── sid-snapshot.h ├── sid.c ├── sid.h ├── ssi2001.c ├── wave6581.h └── wave8580.h ├── sidcart.h ├── signals.h ├── snapshot.c ├── snapshot.h ├── socket.c ├── socketdrv ├── Makefile.am ├── Makefile.in ├── socket-amiga-drv.c ├── socket-amiga-impl.h ├── socket-beos-impl.h ├── socket-unix-impl.h ├── socket-win32-drv.c ├── socket-win32-impl.h ├── socketdrv.c └── socketimpl.h ├── sound.c ├── sound.h ├── sounddrv ├── Makefile.am ├── Makefile.in ├── lamelib.c ├── lamelib.h ├── soundahi.c ├── soundaiff.c ├── soundaix.c ├── soundalsa.c ├── soundarts.c ├── soundbeos.cc ├── soundbsp.cc ├── soundcoreaudio.c ├── sounddart.c ├── sounddummy.c ├── sounddump.c ├── sounddx.c ├── soundflac.c ├── soundfs.c ├── soundhpux.c ├── soundiff.c ├── soundmovie.c ├── soundmovie.h ├── soundmp3.c ├── soundpulse.c ├── soundsdl.c ├── soundsgi.c ├── soundsun.c ├── sounduss.c ├── soundvoc.c ├── soundvorbis.c ├── soundwav.c └── soundwmm.c ├── ssi2001.h ├── sysfile.c ├── sysfile.h ├── tap.h ├── tape.h ├── tape ├── Makefile.am ├── Makefile.in ├── t64.c ├── t64.h ├── tap.c ├── tape-internal.c ├── tape-internal.h ├── tape-snapshot.c ├── tape-snapshot.h ├── tape.c ├── tapeimage.c └── tapeimage.h ├── tapeport ├── Makefile.am ├── Makefile.in ├── cp-clockf83.c ├── cp-clockf83.h ├── dtl-basic-dongle.c ├── dtl-basic-dongle.h ├── sense-dongle.c ├── sense-dongle.h ├── tape_diag_586220_harness.c ├── tape_diag_586220_harness.h ├── tapecart-loader.h ├── tapecart.c ├── tapecart.h ├── tapelog.c ├── tapelog.h ├── tapeport.c └── tapeport.h ├── tpi.h ├── traps.c ├── traps.h ├── types.h ├── uiapi.h ├── uicmdline.h ├── uicolor.h ├── uimon.h ├── userport ├── Makefile.am ├── Makefile.in ├── userport.c ├── userport.h ├── userport_4bit_sampler.c ├── userport_4bit_sampler.h ├── userport_8bss.c ├── userport_8bss.h ├── userport_dac.c ├── userport_dac.h ├── userport_diag_586220_harness.c ├── userport_diag_586220_harness.h ├── userport_digimax.c ├── userport_digimax.h ├── userport_joystick.c ├── userport_joystick.h ├── userport_rtc_58321a.c ├── userport_rtc_58321a.h ├── userport_rtc_ds1307.c └── userport_rtc_ds1307.h ├── usleep.c ├── usleep.h ├── util.c ├── util.h ├── vdc ├── Makefile.am ├── Makefile.in ├── vdc-cmdline-options.c ├── vdc-cmdline-options.h ├── vdc-color.c ├── vdc-color.h ├── vdc-draw.c ├── vdc-draw.h ├── vdc-mem.c ├── vdc-mem.h ├── vdc-resources.c ├── vdc-resources.h ├── vdc-snapshot.c ├── vdc-snapshot.h ├── vdc.c ├── vdc.h └── vdctypes.h ├── vdrive ├── Makefile.am ├── Makefile.in ├── vdrive-bam.c ├── vdrive-bam.h ├── vdrive-command.c ├── vdrive-command.h ├── vdrive-dir.c ├── vdrive-dir.h ├── vdrive-iec.c ├── vdrive-iec.h ├── vdrive-internal.c ├── vdrive-internal.h ├── vdrive-rel.c ├── vdrive-rel.h ├── vdrive-snapshot.c ├── vdrive-snapshot.h ├── vdrive.c └── vdrive.h ├── version.h ├── version.h.in ├── via.h ├── vic20 ├── Makefile.am ├── Makefile.in ├── cart │ ├── Makefile.am │ ├── Makefile.in │ ├── behrbonz.c │ ├── behrbonz.h │ ├── debugcart.c │ ├── debugcart.h │ ├── finalexpansion.c │ ├── finalexpansion.h │ ├── ioramcart.c │ ├── ioramcart.h │ ├── mascuerade-stubs.c │ ├── mascuerade-stubs.h │ ├── megacart.c │ ├── megacart.h │ ├── ultimem.c │ ├── ultimem.h │ ├── vic-fp.c │ ├── vic-fp.h │ ├── vic20-generic.c │ ├── vic20-generic.h │ ├── vic20-ieee488.c │ ├── vic20-ieee488.h │ ├── vic20-midi.c │ ├── vic20-midi.h │ ├── vic20-sidcart.c │ ├── vic20cart.c │ ├── vic20cart.h │ ├── vic20cartmem.c │ └── vic20cartmem.h ├── vic-cmdline-options.c ├── vic-cmdline-options.h ├── vic-color.c ├── vic-color.h ├── vic-cycle.c ├── vic-cycle.h ├── vic-draw.c ├── vic-draw.h ├── vic-mem.c ├── vic-mem.h ├── vic-resources.c ├── vic-resources.h ├── vic-snapshot.c ├── vic-snapshot.h ├── vic-timing.c ├── vic-timing.h ├── vic.c ├── vic.h ├── vic20-cmdline-options.c ├── vic20-cmdline-options.h ├── vic20-resources.c ├── vic20-resources.h ├── vic20-snapshot.c ├── vic20-snapshot.h ├── vic20.c ├── vic20.h ├── vic20bus.c ├── vic20cpu.c ├── vic20datasette.c ├── vic20drive.c ├── vic20embedded.c ├── vic20export.c ├── vic20iec.c ├── vic20iec.h ├── vic20ieeevia.h ├── vic20ieeevia1.c ├── vic20ieeevia2.c ├── vic20io.c ├── vic20mem.c ├── vic20mem.h ├── vic20memrom.c ├── vic20memrom.h ├── vic20memsnapshot.c ├── vic20memsnapshot.h ├── vic20model.c ├── vic20model.h ├── vic20printer.c ├── vic20rom.c ├── vic20rom.h ├── vic20romset.c ├── vic20rsuser.c ├── vic20rsuser.h ├── vic20sound.c ├── vic20sound.h ├── vic20via.h ├── vic20via1.c ├── vic20via2.c ├── vic20video.c └── victypes.h ├── vic20ui.h ├── vice-event.h ├── vice-version.sh ├── vice-version.sh.in ├── vice.h ├── vice_sdl.h ├── vicefeatures.c ├── vicefeatures.h ├── vicemaxpath.h ├── vicesocket.h ├── vicii.h ├── vicii ├── Makefile.am ├── Makefile.in ├── vicii-badline.c ├── vicii-badline.h ├── vicii-clock-stretch.c ├── vicii-cmdline-options.c ├── vicii-cmdline-options.h ├── vicii-color.c ├── vicii-color.h ├── vicii-draw.c ├── vicii-draw.h ├── vicii-fetch.c ├── vicii-fetch.h ├── vicii-irq.c ├── vicii-irq.h ├── vicii-mem.c ├── vicii-mem.h ├── vicii-phi1.c ├── vicii-phi1.h ├── vicii-resources.c ├── vicii-resources.h ├── vicii-snapshot.c ├── vicii-snapshot.h ├── vicii-sprites.c ├── vicii-sprites.h ├── vicii-stubs.c ├── vicii-timing.c ├── vicii-timing.h ├── vicii.c ├── viciidtv-color.c ├── viciidtv-draw.c ├── viciidtv-snapshot.c └── viciitypes.h ├── vicii_c64hq_vpl.h ├── vicii_c64s_vpl.h ├── vicii_ccs64_vpl.h ├── vicii_colodore_vpl.h ├── vicii_community_colors_vpl.h ├── vicii_deekay_vpl.h ├── vicii_frodo_vpl.h ├── vicii_godot_vpl.h ├── vicii_pc64_vpl.h ├── vicii_pepto_ntsc_sony_vpl.h ├── vicii_pepto_ntsc_vpl.h ├── vicii_pepto_pal_vpl.h ├── vicii_pepto_palold_vpl.h ├── vicii_ptoing_vpl.h ├── vicii_rgb_vpl.h ├── vicii_vice_vpl.h ├── viciisc ├── Makefile.am ├── Makefile.in ├── vicii-chip-model.c ├── vicii-chip-model.h ├── vicii-cmdline-options.c ├── vicii-cmdline-options.h ├── vicii-color.c ├── vicii-color.h ├── vicii-cycle.c ├── vicii-cycle.h ├── vicii-draw-cycle.c ├── vicii-draw-cycle.h ├── vicii-draw.c ├── vicii-draw.h ├── vicii-fetch.c ├── vicii-fetch.h ├── vicii-irq.c ├── vicii-irq.h ├── vicii-lightpen.c ├── vicii-lightpen.h ├── vicii-mem.c ├── vicii-mem.h ├── vicii-phi1.c ├── vicii-phi1.h ├── vicii-resources.c ├── vicii-resources.h ├── vicii-snapshot.c ├── vicii-snapshot.h ├── vicii-timing.c ├── vicii-timing.h ├── vicii.c └── viciitypes.h ├── viciivsid ├── Makefile.am ├── Makefile.in ├── vicii-badline.h ├── vicii-cmdline-options.h ├── vicii-color.h ├── vicii-draw.h ├── vicii-fetch.h ├── vicii-irq.h ├── vicii-mem.h ├── vicii-phi1.h ├── vicii-resources.h ├── vicii-snapshot.h ├── vicii-sprites.h ├── vicii-timing.h ├── viciitypes.h ├── viciivsid-badline.c ├── viciivsid-cmdline-options.c ├── viciivsid-color.c ├── viciivsid-draw.c ├── viciivsid-fetch.c ├── viciivsid-irq.c ├── viciivsid-mem.c ├── viciivsid-phi1.c ├── viciivsid-resources.c ├── viciivsid-snapshot.c ├── viciivsid-sprites.c ├── viciivsid-timing.c ├── viciivsid.c └── viciivsid.h ├── video.h ├── video ├── Makefile.am ├── Makefile.in ├── render1x1.c ├── render1x1.h ├── render1x1crt.c ├── render1x1crt.h ├── render1x1ntsc.c ├── render1x1ntsc.h ├── render1x1pal.c ├── render1x1pal.h ├── render1x2.c ├── render1x2.h ├── render1x2crt.c ├── render1x2crt.h ├── render2x2.c ├── render2x2.h ├── render2x2crt.c ├── render2x2crt.h ├── render2x2ntsc.c ├── render2x2ntsc.h ├── render2x2pal.c ├── render2x2pal.h ├── render2x4.c ├── render2x4.h ├── render2x4crt.c ├── render2x4crt.h ├── renderscale2x.c ├── renderscale2x.h ├── renderyuv.c ├── renderyuv.h ├── video-canvas.c ├── video-canvas.h ├── video-cmdline-options.c ├── video-color.c ├── video-color.h ├── video-render-1x2.c ├── video-render-2x2.c ├── video-render-crt.c ├── video-render-pal.c ├── video-render.c ├── video-render.h ├── video-resources.c ├── video-resources.h ├── video-sound.c ├── video-sound.h └── video-viewport.c ├── viewport.h ├── vsidui.h ├── vsync.c ├── vsync.h ├── vsyncapi.h ├── wdc65816.h ├── wrap-u-ar.sh ├── z80regs.h ├── zfile.c ├── zfile.h ├── zipcode.c └── zipcode.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/README.md -------------------------------------------------------------------------------- /resources/C64/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/basic -------------------------------------------------------------------------------- /resources/C64/c64hq.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/c64hq.vpl -------------------------------------------------------------------------------- /resources/C64/c64s.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/c64s.vpl -------------------------------------------------------------------------------- /resources/C64/ccs64.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/ccs64.vpl -------------------------------------------------------------------------------- /resources/C64/chargen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/chargen -------------------------------------------------------------------------------- /resources/C64/frodo.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/frodo.vpl -------------------------------------------------------------------------------- /resources/C64/godot.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/godot.vpl -------------------------------------------------------------------------------- /resources/C64/kernal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/kernal -------------------------------------------------------------------------------- /resources/C64/pc64.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/pc64.vpl -------------------------------------------------------------------------------- /resources/C64/rgb.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/rgb.vpl -------------------------------------------------------------------------------- /resources/C64/vice.vpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/resources/C64/vice.vpl -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /src/6510core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/6510core.c -------------------------------------------------------------------------------- /src/6510core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/6510core.h -------------------------------------------------------------------------------- /src/6510dtvcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/6510dtvcore.c -------------------------------------------------------------------------------- /src/65816core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/65816core.c -------------------------------------------------------------------------------- /src/65c02core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/65c02core.c -------------------------------------------------------------------------------- /src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog -------------------------------------------------------------------------------- /src/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.1 -------------------------------------------------------------------------------- /src/ChangeLog.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.2 -------------------------------------------------------------------------------- /src/ChangeLog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.3 -------------------------------------------------------------------------------- /src/ChangeLog.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.4 -------------------------------------------------------------------------------- /src/ChangeLog.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.5 -------------------------------------------------------------------------------- /src/ChangeLog.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ChangeLog.6 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/acia.h -------------------------------------------------------------------------------- /src/aciacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/aciacore.c -------------------------------------------------------------------------------- /src/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/alarm.c -------------------------------------------------------------------------------- /src/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/alarm.h -------------------------------------------------------------------------------- /src/arch/psvita/joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/joy.c -------------------------------------------------------------------------------- /src/arch/psvita/joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/joy.h -------------------------------------------------------------------------------- /src/arch/psvita/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/kbd.h -------------------------------------------------------------------------------- /src/arch/psvita/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/ui.c -------------------------------------------------------------------------------- /src/arch/psvita/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/ui.h -------------------------------------------------------------------------------- /src/arch/psvita/uimon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/arch/psvita/uimon.c -------------------------------------------------------------------------------- /src/archapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/archapi.h -------------------------------------------------------------------------------- /src/attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/attach.c -------------------------------------------------------------------------------- /src/attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/attach.h -------------------------------------------------------------------------------- /src/autostart-prg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/autostart-prg.c -------------------------------------------------------------------------------- /src/autostart-prg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/autostart-prg.h -------------------------------------------------------------------------------- /src/autostart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/autostart.c -------------------------------------------------------------------------------- /src/autostart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/autostart.h -------------------------------------------------------------------------------- /src/blockdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/blockdev.h -------------------------------------------------------------------------------- /src/buildtools/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/buildtools/bin2c.c -------------------------------------------------------------------------------- /src/buildtools/bin2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/buildtools/bin2c.sh -------------------------------------------------------------------------------- /src/buildtools/dat2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/buildtools/dat2h.c -------------------------------------------------------------------------------- /src/buildtools/od2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/buildtools/od2c.sh -------------------------------------------------------------------------------- /src/c128/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/Makefile.am -------------------------------------------------------------------------------- /src/c128/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/Makefile.in -------------------------------------------------------------------------------- /src/c128/c128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128.c -------------------------------------------------------------------------------- /src/c128/c128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128.h -------------------------------------------------------------------------------- /src/c128/c128cia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128cia1.c -------------------------------------------------------------------------------- /src/c128/c128cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128cpu.c -------------------------------------------------------------------------------- /src/c128/c128drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128drive.c -------------------------------------------------------------------------------- /src/c128/c128embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128embedded.c -------------------------------------------------------------------------------- /src/c128/c128fastiec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128fastiec.c -------------------------------------------------------------------------------- /src/c128/c128fastiec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128fastiec.h -------------------------------------------------------------------------------- /src/c128/c128mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128mem.c -------------------------------------------------------------------------------- /src/c128/c128mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128mem.h -------------------------------------------------------------------------------- /src/c128/c128meminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128meminit.c -------------------------------------------------------------------------------- /src/c128/c128meminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128meminit.h -------------------------------------------------------------------------------- /src/c128/c128memlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128memlimit.c -------------------------------------------------------------------------------- /src/c128/c128memlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128memlimit.h -------------------------------------------------------------------------------- /src/c128/c128memrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128memrom.c -------------------------------------------------------------------------------- /src/c128/c128memrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128memrom.h -------------------------------------------------------------------------------- /src/c128/c128mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128mmu.c -------------------------------------------------------------------------------- /src/c128/c128mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128mmu.h -------------------------------------------------------------------------------- /src/c128/c128model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128model.c -------------------------------------------------------------------------------- /src/c128/c128model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128model.h -------------------------------------------------------------------------------- /src/c128/c128rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128rom.c -------------------------------------------------------------------------------- /src/c128/c128rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128rom.h -------------------------------------------------------------------------------- /src/c128/c128romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128romset.c -------------------------------------------------------------------------------- /src/c128/c128video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/c128video.c -------------------------------------------------------------------------------- /src/c128/functionrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/functionrom.c -------------------------------------------------------------------------------- /src/c128/functionrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/functionrom.h -------------------------------------------------------------------------------- /src/c128/z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/z80.c -------------------------------------------------------------------------------- /src/c128/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/z80.h -------------------------------------------------------------------------------- /src/c128/z80mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/z80mem.c -------------------------------------------------------------------------------- /src/c128/z80mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128/z80mem.h -------------------------------------------------------------------------------- /src/c128ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c128ui.h -------------------------------------------------------------------------------- /src/c1541.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c1541.c -------------------------------------------------------------------------------- /src/c64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/Makefile.am -------------------------------------------------------------------------------- /src/c64/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/Makefile.in -------------------------------------------------------------------------------- /src/c64/c64-resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64-resources.c -------------------------------------------------------------------------------- /src/c64/c64-resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64-resources.h -------------------------------------------------------------------------------- /src/c64/c64-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64-snapshot.c -------------------------------------------------------------------------------- /src/c64/c64-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64-snapshot.h -------------------------------------------------------------------------------- /src/c64/c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64.c -------------------------------------------------------------------------------- /src/c64/c64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64.h -------------------------------------------------------------------------------- /src/c64/c64_256k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64_256k.c -------------------------------------------------------------------------------- /src/c64/c64_256k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64_256k.h -------------------------------------------------------------------------------- /src/c64/c64bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64bus.c -------------------------------------------------------------------------------- /src/c64/c64cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cart.h -------------------------------------------------------------------------------- /src/c64/c64cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cia.h -------------------------------------------------------------------------------- /src/c64/c64cia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cia1.c -------------------------------------------------------------------------------- /src/c64/c64cia2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cia2.c -------------------------------------------------------------------------------- /src/c64/c64cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cpu.c -------------------------------------------------------------------------------- /src/c64/c64cpusc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64cpusc.c -------------------------------------------------------------------------------- /src/c64/c64datasette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64datasette.c -------------------------------------------------------------------------------- /src/c64/c64drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64drive.c -------------------------------------------------------------------------------- /src/c64/c64embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64embedded.c -------------------------------------------------------------------------------- /src/c64/c64export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64export.c -------------------------------------------------------------------------------- /src/c64/c64fastiec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64fastiec.c -------------------------------------------------------------------------------- /src/c64/c64fastiec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64fastiec.h -------------------------------------------------------------------------------- /src/c64/c64gluelogic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64gluelogic.c -------------------------------------------------------------------------------- /src/c64/c64gluelogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64gluelogic.h -------------------------------------------------------------------------------- /src/c64/c64iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64iec.c -------------------------------------------------------------------------------- /src/c64/c64iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64iec.h -------------------------------------------------------------------------------- /src/c64/c64io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64io.c -------------------------------------------------------------------------------- /src/c64/c64keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64keyboard.c -------------------------------------------------------------------------------- /src/c64/c64keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64keyboard.h -------------------------------------------------------------------------------- /src/c64/c64mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64mem.c -------------------------------------------------------------------------------- /src/c64/c64mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64mem.h -------------------------------------------------------------------------------- /src/c64/c64meminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64meminit.c -------------------------------------------------------------------------------- /src/c64/c64meminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64meminit.h -------------------------------------------------------------------------------- /src/c64/c64memlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64memlimit.c -------------------------------------------------------------------------------- /src/c64/c64memlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64memlimit.h -------------------------------------------------------------------------------- /src/c64/c64memrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64memrom.c -------------------------------------------------------------------------------- /src/c64/c64memrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64memrom.h -------------------------------------------------------------------------------- /src/c64/c64memsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64memsc.c -------------------------------------------------------------------------------- /src/c64/c64model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64model.c -------------------------------------------------------------------------------- /src/c64/c64model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64model.h -------------------------------------------------------------------------------- /src/c64/c64parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64parallel.c -------------------------------------------------------------------------------- /src/c64/c64parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64parallel.h -------------------------------------------------------------------------------- /src/c64/c64pla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64pla.c -------------------------------------------------------------------------------- /src/c64/c64pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64pla.h -------------------------------------------------------------------------------- /src/c64/c64printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64printer.c -------------------------------------------------------------------------------- /src/c64/c64rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64rom.c -------------------------------------------------------------------------------- /src/c64/c64rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64rom.h -------------------------------------------------------------------------------- /src/c64/c64romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64romset.c -------------------------------------------------------------------------------- /src/c64/c64rsuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64rsuser.c -------------------------------------------------------------------------------- /src/c64/c64rsuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64rsuser.h -------------------------------------------------------------------------------- /src/c64/c64scmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64scmodel.c -------------------------------------------------------------------------------- /src/c64/c64sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64sound.c -------------------------------------------------------------------------------- /src/c64/c64video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/c64video.c -------------------------------------------------------------------------------- /src/c64/cart/c64-midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64-midi.c -------------------------------------------------------------------------------- /src/c64/cart/c64-midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64-midi.h -------------------------------------------------------------------------------- /src/c64/cart/c64acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64acia.h -------------------------------------------------------------------------------- /src/c64/cart/c64acia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64acia1.c -------------------------------------------------------------------------------- /src/c64/cart/c64cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64cart.c -------------------------------------------------------------------------------- /src/c64/cart/c64tpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64tpi.c -------------------------------------------------------------------------------- /src/c64/cart/c64tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/c64tpi.h -------------------------------------------------------------------------------- /src/c64/cart/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/capture.c -------------------------------------------------------------------------------- /src/c64/cart/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/capture.h -------------------------------------------------------------------------------- /src/c64/cart/comal80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/comal80.c -------------------------------------------------------------------------------- /src/c64/cart/comal80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/comal80.h -------------------------------------------------------------------------------- /src/c64/cart/cpmcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/cpmcart.c -------------------------------------------------------------------------------- /src/c64/cart/cpmcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/cpmcart.h -------------------------------------------------------------------------------- /src/c64/cart/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/crt.c -------------------------------------------------------------------------------- /src/c64/cart/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/crt.h -------------------------------------------------------------------------------- /src/c64/cart/cs8900io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/cs8900io.c -------------------------------------------------------------------------------- /src/c64/cart/cs8900io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/cs8900io.h -------------------------------------------------------------------------------- /src/c64/cart/daa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/daa.c -------------------------------------------------------------------------------- /src/c64/cart/daa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/daa.h -------------------------------------------------------------------------------- /src/c64/cart/delaep64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/delaep64.c -------------------------------------------------------------------------------- /src/c64/cart/delaep64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/delaep64.h -------------------------------------------------------------------------------- /src/c64/cart/digimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/digimax.c -------------------------------------------------------------------------------- /src/c64/cart/digimax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/digimax.h -------------------------------------------------------------------------------- /src/c64/cart/dinamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/dinamic.c -------------------------------------------------------------------------------- /src/c64/cart/dinamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/dinamic.h -------------------------------------------------------------------------------- /src/c64/cart/dqbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/dqbb.c -------------------------------------------------------------------------------- /src/c64/cart/dqbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/dqbb.h -------------------------------------------------------------------------------- /src/c64/cart/easycalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/easycalc.c -------------------------------------------------------------------------------- /src/c64/cart/easycalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/easycalc.h -------------------------------------------------------------------------------- /src/c64/cart/exos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/exos.c -------------------------------------------------------------------------------- /src/c64/cart/exos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/exos.h -------------------------------------------------------------------------------- /src/c64/cart/expert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/expert.c -------------------------------------------------------------------------------- /src/c64/cart/expert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/expert.h -------------------------------------------------------------------------------- /src/c64/cart/final.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/final.c -------------------------------------------------------------------------------- /src/c64/cart/final.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/final.h -------------------------------------------------------------------------------- /src/c64/cart/final3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/final3.c -------------------------------------------------------------------------------- /src/c64/cart/final3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/final3.h -------------------------------------------------------------------------------- /src/c64/cart/formel64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/formel64.c -------------------------------------------------------------------------------- /src/c64/cart/formel64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/formel64.h -------------------------------------------------------------------------------- /src/c64/cart/funplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/funplay.c -------------------------------------------------------------------------------- /src/c64/cart/funplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/funplay.h -------------------------------------------------------------------------------- /src/c64/cart/georam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/georam.c -------------------------------------------------------------------------------- /src/c64/cart/georam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/georam.h -------------------------------------------------------------------------------- /src/c64/cart/gmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/gmod2.c -------------------------------------------------------------------------------- /src/c64/cart/gmod2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/gmod2.h -------------------------------------------------------------------------------- /src/c64/cart/gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/gs.c -------------------------------------------------------------------------------- /src/c64/cart/gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/gs.h -------------------------------------------------------------------------------- /src/c64/cart/ide64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ide64.c -------------------------------------------------------------------------------- /src/c64/cart/ide64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ide64.h -------------------------------------------------------------------------------- /src/c64/cart/isepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/isepic.c -------------------------------------------------------------------------------- /src/c64/cart/isepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/isepic.h -------------------------------------------------------------------------------- /src/c64/cart/kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/kcs.c -------------------------------------------------------------------------------- /src/c64/cart/kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/kcs.h -------------------------------------------------------------------------------- /src/c64/cart/kingsoft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/kingsoft.c -------------------------------------------------------------------------------- /src/c64/cart/kingsoft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/kingsoft.h -------------------------------------------------------------------------------- /src/c64/cart/mach5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mach5.c -------------------------------------------------------------------------------- /src/c64/cart/mach5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mach5.h -------------------------------------------------------------------------------- /src/c64/cart/mikroass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mikroass.c -------------------------------------------------------------------------------- /src/c64/cart/mikroass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mikroass.h -------------------------------------------------------------------------------- /src/c64/cart/mmc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mmc64.c -------------------------------------------------------------------------------- /src/c64/cart/mmc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/mmc64.h -------------------------------------------------------------------------------- /src/c64/cart/ocean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ocean.c -------------------------------------------------------------------------------- /src/c64/cart/ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ocean.h -------------------------------------------------------------------------------- /src/c64/cart/pagefox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/pagefox.c -------------------------------------------------------------------------------- /src/c64/cart/pagefox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/pagefox.h -------------------------------------------------------------------------------- /src/c64/cart/ramcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ramcart.c -------------------------------------------------------------------------------- /src/c64/cart/ramcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ramcart.h -------------------------------------------------------------------------------- /src/c64/cart/reu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/reu.c -------------------------------------------------------------------------------- /src/c64/cart/reu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/reu.h -------------------------------------------------------------------------------- /src/c64/cart/rexep256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rexep256.c -------------------------------------------------------------------------------- /src/c64/cart/rexep256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rexep256.h -------------------------------------------------------------------------------- /src/c64/cart/rgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rgcd.c -------------------------------------------------------------------------------- /src/c64/cart/rgcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rgcd.h -------------------------------------------------------------------------------- /src/c64/cart/ross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ross.c -------------------------------------------------------------------------------- /src/c64/cart/ross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/ross.h -------------------------------------------------------------------------------- /src/c64/cart/rrnetmk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rrnetmk3.c -------------------------------------------------------------------------------- /src/c64/cart/rrnetmk3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/rrnetmk3.h -------------------------------------------------------------------------------- /src/c64/cart/shortbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/shortbus.c -------------------------------------------------------------------------------- /src/c64/cart/shortbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/shortbus.h -------------------------------------------------------------------------------- /src/c64/cart/stardos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/stardos.c -------------------------------------------------------------------------------- /src/c64/cart/stardos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/stardos.h -------------------------------------------------------------------------------- /src/c64/cart/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/stb.c -------------------------------------------------------------------------------- /src/c64/cart/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/stb.h -------------------------------------------------------------------------------- /src/c64/cart/zaxxon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/zaxxon.c -------------------------------------------------------------------------------- /src/c64/cart/zaxxon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/cart/zaxxon.h -------------------------------------------------------------------------------- /src/c64/musdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/musdrv.h -------------------------------------------------------------------------------- /src/c64/patchrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/patchrom.c -------------------------------------------------------------------------------- /src/c64/patchrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/patchrom.h -------------------------------------------------------------------------------- /src/c64/plus256k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/plus256k.c -------------------------------------------------------------------------------- /src/c64/plus256k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/plus256k.h -------------------------------------------------------------------------------- /src/c64/plus60k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/plus60k.c -------------------------------------------------------------------------------- /src/c64/plus60k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/plus60k.h -------------------------------------------------------------------------------- /src/c64/psid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/psid.c -------------------------------------------------------------------------------- /src/c64/psid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/psid.h -------------------------------------------------------------------------------- /src/c64/psiddrv.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/psiddrv.a65 -------------------------------------------------------------------------------- /src/c64/psiddrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/psiddrv.h -------------------------------------------------------------------------------- /src/c64/reloc65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/reloc65.c -------------------------------------------------------------------------------- /src/c64/vsid-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsid-snapshot.c -------------------------------------------------------------------------------- /src/c64/vsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsid.c -------------------------------------------------------------------------------- /src/c64/vsidcia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidcia1.c -------------------------------------------------------------------------------- /src/c64/vsidcia2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidcia2.c -------------------------------------------------------------------------------- /src/c64/vsidcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidcpu.c -------------------------------------------------------------------------------- /src/c64/vsidmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidmem.c -------------------------------------------------------------------------------- /src/c64/vsidmeminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidmeminit.c -------------------------------------------------------------------------------- /src/c64/vsidpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidpla.c -------------------------------------------------------------------------------- /src/c64/vsidsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidsound.c -------------------------------------------------------------------------------- /src/c64/vsidstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64/vsidstubs.c -------------------------------------------------------------------------------- /src/c64basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64basic.h -------------------------------------------------------------------------------- /src/c64chargen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64chargen.h -------------------------------------------------------------------------------- /src/c64dtv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/Makefile.am -------------------------------------------------------------------------------- /src/c64dtv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/Makefile.in -------------------------------------------------------------------------------- /src/c64dtv/c64dtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtv.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtv.h -------------------------------------------------------------------------------- /src/c64dtv/c64dtvcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvcart.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvcia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvcia1.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvcia2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvcia2.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvcpu.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvcpu.h -------------------------------------------------------------------------------- /src/c64dtv/c64dtvdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvdma.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvdma.h -------------------------------------------------------------------------------- /src/c64dtv/c64dtviec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtviec.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvmem.c -------------------------------------------------------------------------------- /src/c64dtv/c64dtvmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvmem.h -------------------------------------------------------------------------------- /src/c64dtv/c64dtvpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/c64dtvpla.c -------------------------------------------------------------------------------- /src/c64dtv/debugcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/debugcart.c -------------------------------------------------------------------------------- /src/c64dtv/debugcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/debugcart.h -------------------------------------------------------------------------------- /src/c64dtv/flash-trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/flash-trap.c -------------------------------------------------------------------------------- /src/c64dtv/flash-trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/flash-trap.h -------------------------------------------------------------------------------- /src/c64dtv/hummeradc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/hummeradc.c -------------------------------------------------------------------------------- /src/c64dtv/hummeradc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64dtv/hummeradc.h -------------------------------------------------------------------------------- /src/c64kernal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64kernal.h -------------------------------------------------------------------------------- /src/c64ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/c64ui.h -------------------------------------------------------------------------------- /src/cartconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cartconv.c -------------------------------------------------------------------------------- /src/cartio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cartio.h -------------------------------------------------------------------------------- /src/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cartridge.h -------------------------------------------------------------------------------- /src/catweaselmkiii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/catweaselmkiii.h -------------------------------------------------------------------------------- /src/cbm2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/Makefile.am -------------------------------------------------------------------------------- /src/cbm2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/Makefile.in -------------------------------------------------------------------------------- /src/cbm2/cbm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2.c -------------------------------------------------------------------------------- /src/cbm2/cbm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2.h -------------------------------------------------------------------------------- /src/cbm2/cbm2acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2acia.h -------------------------------------------------------------------------------- /src/cbm2/cbm2acia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2acia1.c -------------------------------------------------------------------------------- /src/cbm2/cbm2bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2bus.c -------------------------------------------------------------------------------- /src/cbm2/cbm2cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2cart.c -------------------------------------------------------------------------------- /src/cbm2/cbm2cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2cart.h -------------------------------------------------------------------------------- /src/cbm2/cbm2cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2cia.h -------------------------------------------------------------------------------- /src/cbm2/cbm2cia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2cia1.c -------------------------------------------------------------------------------- /src/cbm2/cbm2cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2cpu.c -------------------------------------------------------------------------------- /src/cbm2/cbm2drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2drive.c -------------------------------------------------------------------------------- /src/cbm2/cbm2embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2embedded.c -------------------------------------------------------------------------------- /src/cbm2/cbm2iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2iec.c -------------------------------------------------------------------------------- /src/cbm2/cbm2iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2iec.h -------------------------------------------------------------------------------- /src/cbm2/cbm2io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2io.c -------------------------------------------------------------------------------- /src/cbm2/cbm2mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2mem.c -------------------------------------------------------------------------------- /src/cbm2/cbm2mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2mem.h -------------------------------------------------------------------------------- /src/cbm2/cbm2model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2model.c -------------------------------------------------------------------------------- /src/cbm2/cbm2model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2model.h -------------------------------------------------------------------------------- /src/cbm2/cbm2printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2printer.c -------------------------------------------------------------------------------- /src/cbm2/cbm2rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2rom.c -------------------------------------------------------------------------------- /src/cbm2/cbm2rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2rom.h -------------------------------------------------------------------------------- /src/cbm2/cbm2romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2romset.c -------------------------------------------------------------------------------- /src/cbm2/cbm2sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2sound.c -------------------------------------------------------------------------------- /src/cbm2/cbm2tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2tpi.h -------------------------------------------------------------------------------- /src/cbm2/cbm2tpi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2tpi1.c -------------------------------------------------------------------------------- /src/cbm2/cbm2tpi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2tpi2.c -------------------------------------------------------------------------------- /src/cbm2/cbm2video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm2video.c -------------------------------------------------------------------------------- /src/cbm2/cbm5x0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm5x0.c -------------------------------------------------------------------------------- /src/cbm2/cbm5x0cia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm5x0cia1.c -------------------------------------------------------------------------------- /src/cbm2/cbm5x0mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm5x0mem.c -------------------------------------------------------------------------------- /src/cbm2/cbm5x0rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm5x0rom.c -------------------------------------------------------------------------------- /src/cbm2/cbm5x0video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/cbm5x0video.c -------------------------------------------------------------------------------- /src/cbm2/debugcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/debugcart.c -------------------------------------------------------------------------------- /src/cbm2/debugcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2/debugcart.h -------------------------------------------------------------------------------- /src/cbm2ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbm2ui.h -------------------------------------------------------------------------------- /src/cbmdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbmdos.c -------------------------------------------------------------------------------- /src/cbmdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbmdos.h -------------------------------------------------------------------------------- /src/cbmimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbmimage.c -------------------------------------------------------------------------------- /src/cbmimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cbmimage.h -------------------------------------------------------------------------------- /src/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/charset.c -------------------------------------------------------------------------------- /src/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/charset.h -------------------------------------------------------------------------------- /src/cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cia.h -------------------------------------------------------------------------------- /src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/clipboard.c -------------------------------------------------------------------------------- /src/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/clipboard.h -------------------------------------------------------------------------------- /src/clkguard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/clkguard.c -------------------------------------------------------------------------------- /src/clkguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/clkguard.h -------------------------------------------------------------------------------- /src/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cmdline.c -------------------------------------------------------------------------------- /src/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/cmdline.h -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/color.c -------------------------------------------------------------------------------- /src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/color.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/config.h -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/console.h -------------------------------------------------------------------------------- /src/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/Makefile.am -------------------------------------------------------------------------------- /src/core/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/Makefile.in -------------------------------------------------------------------------------- /src/core/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ata.c -------------------------------------------------------------------------------- /src/core/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ata.h -------------------------------------------------------------------------------- /src/core/ciacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ciacore.c -------------------------------------------------------------------------------- /src/core/ciatimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ciatimer.c -------------------------------------------------------------------------------- /src/core/ciatimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ciatimer.h -------------------------------------------------------------------------------- /src/core/cs8900.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/cs8900.c -------------------------------------------------------------------------------- /src/core/cs8900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/cs8900.h -------------------------------------------------------------------------------- /src/core/flash040core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/flash040core.c -------------------------------------------------------------------------------- /src/core/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/fmopl.c -------------------------------------------------------------------------------- /src/core/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/fmopl.h -------------------------------------------------------------------------------- /src/core/m93c86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/m93c86.c -------------------------------------------------------------------------------- /src/core/m93c86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/m93c86.h -------------------------------------------------------------------------------- /src/core/mc6821core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/mc6821core.c -------------------------------------------------------------------------------- /src/core/mc6821core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/mc6821core.h -------------------------------------------------------------------------------- /src/core/riotcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/riotcore.c -------------------------------------------------------------------------------- /src/core/ser-eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ser-eeprom.c -------------------------------------------------------------------------------- /src/core/ser-eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/ser-eeprom.h -------------------------------------------------------------------------------- /src/core/spi-sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/spi-sdcard.c -------------------------------------------------------------------------------- /src/core/spi-sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/spi-sdcard.h -------------------------------------------------------------------------------- /src/core/t6721.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/t6721.c -------------------------------------------------------------------------------- /src/core/t6721.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/t6721.h -------------------------------------------------------------------------------- /src/core/tpicore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/tpicore.c -------------------------------------------------------------------------------- /src/core/viacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/core/viacore.c -------------------------------------------------------------------------------- /src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crc32.c -------------------------------------------------------------------------------- /src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crc32.h -------------------------------------------------------------------------------- /src/crtc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/Makefile.am -------------------------------------------------------------------------------- /src/crtc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/Makefile.in -------------------------------------------------------------------------------- /src/crtc/crtc-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-color.c -------------------------------------------------------------------------------- /src/crtc/crtc-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-color.h -------------------------------------------------------------------------------- /src/crtc/crtc-draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-draw.c -------------------------------------------------------------------------------- /src/crtc/crtc-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-draw.h -------------------------------------------------------------------------------- /src/crtc/crtc-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-mem.c -------------------------------------------------------------------------------- /src/crtc/crtc-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc-mem.h -------------------------------------------------------------------------------- /src/crtc/crtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc.c -------------------------------------------------------------------------------- /src/crtc/crtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtc.h -------------------------------------------------------------------------------- /src/crtc/crtctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/crtc/crtctypes.h -------------------------------------------------------------------------------- /src/datasette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/datasette.c -------------------------------------------------------------------------------- /src/datasette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/datasette.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/debug.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/debug.h.in -------------------------------------------------------------------------------- /src/diag/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diag/Makefile.am -------------------------------------------------------------------------------- /src/diag/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diag/Makefile.in -------------------------------------------------------------------------------- /src/digimaxcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/digimaxcore.c -------------------------------------------------------------------------------- /src/diskconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diskconstants.h -------------------------------------------------------------------------------- /src/diskimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diskimage.h -------------------------------------------------------------------------------- /src/diskimage/fsimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diskimage/fsimage.c -------------------------------------------------------------------------------- /src/diskimage/fsimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diskimage/fsimage.h -------------------------------------------------------------------------------- /src/diskimage/x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/diskimage/x64.h -------------------------------------------------------------------------------- /src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/dma.c -------------------------------------------------------------------------------- /src/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/dma.h -------------------------------------------------------------------------------- /src/drive/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/Makefile.am -------------------------------------------------------------------------------- /src/drive/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/Makefile.in -------------------------------------------------------------------------------- /src/drive/drive-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive-check.c -------------------------------------------------------------------------------- /src/drive/drive-check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive-check.h -------------------------------------------------------------------------------- /src/drive/drive-sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive-sound.c -------------------------------------------------------------------------------- /src/drive/drive-sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive-sound.h -------------------------------------------------------------------------------- /src/drive/drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive.c -------------------------------------------------------------------------------- /src/drive/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drive.h -------------------------------------------------------------------------------- /src/drive/drivecpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivecpu.c -------------------------------------------------------------------------------- /src/drive/drivecpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivecpu.h -------------------------------------------------------------------------------- /src/drive/driveimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/driveimage.c -------------------------------------------------------------------------------- /src/drive/driveimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/driveimage.h -------------------------------------------------------------------------------- /src/drive/drivemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivemem.c -------------------------------------------------------------------------------- /src/drive/drivemem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivemem.h -------------------------------------------------------------------------------- /src/drive/driverom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/driverom.c -------------------------------------------------------------------------------- /src/drive/driverom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/driverom.h -------------------------------------------------------------------------------- /src/drive/drivesync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivesync.c -------------------------------------------------------------------------------- /src/drive/drivesync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivesync.h -------------------------------------------------------------------------------- /src/drive/drivetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/drivetypes.h -------------------------------------------------------------------------------- /src/drive/iec-c64exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec-c64exp.h -------------------------------------------------------------------------------- /src/drive/iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec.h -------------------------------------------------------------------------------- /src/drive/iec/ciad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/ciad.h -------------------------------------------------------------------------------- /src/drive/iec/fdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/fdd.c -------------------------------------------------------------------------------- /src/drive/iec/fdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/fdd.h -------------------------------------------------------------------------------- /src/drive/iec/iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/iec.c -------------------------------------------------------------------------------- /src/drive/iec/iecrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/iecrom.c -------------------------------------------------------------------------------- /src/drive/iec/iecrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/iecrom.h -------------------------------------------------------------------------------- /src/drive/iec/memiec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/memiec.c -------------------------------------------------------------------------------- /src/drive/iec/memiec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/memiec.h -------------------------------------------------------------------------------- /src/drive/iec/pc8477.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/pc8477.c -------------------------------------------------------------------------------- /src/drive/iec/pc8477.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/pc8477.h -------------------------------------------------------------------------------- /src/drive/iec/via4000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/via4000.c -------------------------------------------------------------------------------- /src/drive/iec/via4000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/via4000.h -------------------------------------------------------------------------------- /src/drive/iec/wd1770.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/wd1770.c -------------------------------------------------------------------------------- /src/drive/iec/wd1770.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec/wd1770.h -------------------------------------------------------------------------------- /src/drive/iec128dcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iec128dcr.h -------------------------------------------------------------------------------- /src/drive/iecieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/iecieee.h -------------------------------------------------------------------------------- /src/drive/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee.h -------------------------------------------------------------------------------- /src/drive/ieee/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/fdc.c -------------------------------------------------------------------------------- /src/drive/ieee/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/fdc.h -------------------------------------------------------------------------------- /src/drive/ieee/ieee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/ieee.c -------------------------------------------------------------------------------- /src/drive/ieee/riot1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/riot1d.c -------------------------------------------------------------------------------- /src/drive/ieee/riot2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/riot2d.c -------------------------------------------------------------------------------- /src/drive/ieee/riotd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/ieee/riotd.h -------------------------------------------------------------------------------- /src/drive/rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/rotation.c -------------------------------------------------------------------------------- /src/drive/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/rotation.h -------------------------------------------------------------------------------- /src/drive/tcbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/tcbm.h -------------------------------------------------------------------------------- /src/drive/tcbm/tcbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/tcbm/tcbm.c -------------------------------------------------------------------------------- /src/drive/tcbm/tpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/tcbm/tpid.c -------------------------------------------------------------------------------- /src/drive/tcbm/tpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/tcbm/tpid.h -------------------------------------------------------------------------------- /src/drive/viad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drive/viad.h -------------------------------------------------------------------------------- /src/drived1541II.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drived1541II.h -------------------------------------------------------------------------------- /src/drivedos1001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1001.h -------------------------------------------------------------------------------- /src/drivedos1540.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1540.h -------------------------------------------------------------------------------- /src/drivedos1541.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1541.h -------------------------------------------------------------------------------- /src/drivedos1551.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1551.h -------------------------------------------------------------------------------- /src/drivedos1570.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1570.h -------------------------------------------------------------------------------- /src/drivedos1571.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1571.h -------------------------------------------------------------------------------- /src/drivedos1581.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos1581.h -------------------------------------------------------------------------------- /src/drivedos2031.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos2031.h -------------------------------------------------------------------------------- /src/drivedos2040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos2040.h -------------------------------------------------------------------------------- /src/drivedos3040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos3040.h -------------------------------------------------------------------------------- /src/drivedos4040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/drivedos4040.h -------------------------------------------------------------------------------- /src/dynlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/dynlib.h -------------------------------------------------------------------------------- /src/embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/embedded.c -------------------------------------------------------------------------------- /src/embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/embedded.h -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/event.c -------------------------------------------------------------------------------- /src/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/export.h -------------------------------------------------------------------------------- /src/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio.h -------------------------------------------------------------------------------- /src/fileio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/Makefile.am -------------------------------------------------------------------------------- /src/fileio/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/Makefile.in -------------------------------------------------------------------------------- /src/fileio/cbmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/cbmfile.c -------------------------------------------------------------------------------- /src/fileio/cbmfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/cbmfile.h -------------------------------------------------------------------------------- /src/fileio/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/fileio.c -------------------------------------------------------------------------------- /src/fileio/p00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/p00.c -------------------------------------------------------------------------------- /src/fileio/p00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fileio/p00.h -------------------------------------------------------------------------------- /src/findpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/findpath.c -------------------------------------------------------------------------------- /src/findpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/findpath.h -------------------------------------------------------------------------------- /src/fixpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fixpoint.c -------------------------------------------------------------------------------- /src/fixpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fixpoint.h -------------------------------------------------------------------------------- /src/flash040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/flash040.h -------------------------------------------------------------------------------- /src/fliplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fliplist.c -------------------------------------------------------------------------------- /src/fliplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fliplist.h -------------------------------------------------------------------------------- /src/fsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fsdevice.h -------------------------------------------------------------------------------- /src/fsdevice/fsdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fsdevice/fsdevice.c -------------------------------------------------------------------------------- /src/fullscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/fullscreen.h -------------------------------------------------------------------------------- /src/gcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/gcr.c -------------------------------------------------------------------------------- /src/gcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/gcr.h -------------------------------------------------------------------------------- /src/gfxoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/gfxoutput.h -------------------------------------------------------------------------------- /src/h6809regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/h6809regs.h -------------------------------------------------------------------------------- /src/hardsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hardsid.h -------------------------------------------------------------------------------- /src/hvsc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/Makefile.am -------------------------------------------------------------------------------- /src/hvsc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/Makefile.in -------------------------------------------------------------------------------- /src/hvsc/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/base.c -------------------------------------------------------------------------------- /src/hvsc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/base.h -------------------------------------------------------------------------------- /src/hvsc/bugs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/bugs.c -------------------------------------------------------------------------------- /src/hvsc/bugs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/bugs.h -------------------------------------------------------------------------------- /src/hvsc/hvsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/hvsc.h -------------------------------------------------------------------------------- /src/hvsc/hvsc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/hvsc_defs.h -------------------------------------------------------------------------------- /src/hvsc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/main.c -------------------------------------------------------------------------------- /src/hvsc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/main.h -------------------------------------------------------------------------------- /src/hvsc/psid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/psid.c -------------------------------------------------------------------------------- /src/hvsc/psid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/psid.h -------------------------------------------------------------------------------- /src/hvsc/sldb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/sldb.c -------------------------------------------------------------------------------- /src/hvsc/sldb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/sldb.h -------------------------------------------------------------------------------- /src/hvsc/stil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/stil.c -------------------------------------------------------------------------------- /src/hvsc/stil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hvsc/stil.h -------------------------------------------------------------------------------- /src/hwsiddrv/cw-amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/cw-amiga.h -------------------------------------------------------------------------------- /src/hwsiddrv/cw-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/cw-unix.h -------------------------------------------------------------------------------- /src/hwsiddrv/cw-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/cw-win32.h -------------------------------------------------------------------------------- /src/hwsiddrv/hs-amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/hs-amiga.h -------------------------------------------------------------------------------- /src/hwsiddrv/hs-beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/hs-beos.h -------------------------------------------------------------------------------- /src/hwsiddrv/hs-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/hs-unix.h -------------------------------------------------------------------------------- /src/hwsiddrv/hs-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/hs-win32.h -------------------------------------------------------------------------------- /src/hwsiddrv/ps-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/ps-unix.h -------------------------------------------------------------------------------- /src/hwsiddrv/ps-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/hwsiddrv/ps-win32.h -------------------------------------------------------------------------------- /src/iecbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iecbus.h -------------------------------------------------------------------------------- /src/iecbus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iecbus/Makefile.am -------------------------------------------------------------------------------- /src/iecbus/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iecbus/Makefile.in -------------------------------------------------------------------------------- /src/iecbus/iecbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iecbus/iecbus.c -------------------------------------------------------------------------------- /src/iecdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iecdrive.h -------------------------------------------------------------------------------- /src/imagecontents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/imagecontents.h -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/info.c -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/info.h -------------------------------------------------------------------------------- /src/infocontrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/infocontrib.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/init.c -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/init.h -------------------------------------------------------------------------------- /src/initcmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/initcmdline.c -------------------------------------------------------------------------------- /src/initcmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/initcmdline.h -------------------------------------------------------------------------------- /src/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/interrupt.c -------------------------------------------------------------------------------- /src/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/interrupt.h -------------------------------------------------------------------------------- /src/iodrv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iodrv/Makefile.am -------------------------------------------------------------------------------- /src/iodrv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iodrv/Makefile.in -------------------------------------------------------------------------------- /src/iodrv/io-access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/iodrv/io-access.h -------------------------------------------------------------------------------- /src/ioutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ioutil.c -------------------------------------------------------------------------------- /src/ioutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ioutil.h -------------------------------------------------------------------------------- /src/joyport/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/Makefile.am -------------------------------------------------------------------------------- /src/joyport/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/Makefile.in -------------------------------------------------------------------------------- /src/joyport/bbrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/bbrtc.c -------------------------------------------------------------------------------- /src/joyport/bbrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/bbrtc.h -------------------------------------------------------------------------------- /src/joyport/cardkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cardkey.c -------------------------------------------------------------------------------- /src/joyport/cardkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cardkey.h -------------------------------------------------------------------------------- /src/joyport/cx21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cx21.c -------------------------------------------------------------------------------- /src/joyport/cx21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cx21.h -------------------------------------------------------------------------------- /src/joyport/cx85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cx85.c -------------------------------------------------------------------------------- /src/joyport/cx85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/cx85.h -------------------------------------------------------------------------------- /src/joyport/joyport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/joyport.c -------------------------------------------------------------------------------- /src/joyport/joyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/joyport.h -------------------------------------------------------------------------------- /src/joyport/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/joystick.c -------------------------------------------------------------------------------- /src/joyport/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/joystick.h -------------------------------------------------------------------------------- /src/joyport/lightpen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/lightpen.c -------------------------------------------------------------------------------- /src/joyport/lightpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/lightpen.h -------------------------------------------------------------------------------- /src/joyport/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/mouse.c -------------------------------------------------------------------------------- /src/joyport/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/mouse.h -------------------------------------------------------------------------------- /src/joyport/snespad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/snespad.c -------------------------------------------------------------------------------- /src/joyport/snespad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/joyport/snespad.h -------------------------------------------------------------------------------- /src/kbdbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/kbdbuf.c -------------------------------------------------------------------------------- /src/kbdbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/kbdbuf.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib.c -------------------------------------------------------------------------------- /src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib.h -------------------------------------------------------------------------------- /src/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/Makefile.am -------------------------------------------------------------------------------- /src/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/Makefile.in -------------------------------------------------------------------------------- /src/lib/ffmpeg/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = configure.gnu 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/RELEASE: -------------------------------------------------------------------------------- 1 | 2.4.2 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.2 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/doc/ffmpeg.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavcodec/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavcodec/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavdevice/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavfilter/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavformat/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavformat/golomb_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavcodec/golomb.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavformat/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libavutil/x86_cpu.h: -------------------------------------------------------------------------------- 1 | #include "libavutil/x86/asm.h" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libswresample/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/lib/libffmpeg/libswscale/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /src/lib/liblame/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/API -------------------------------------------------------------------------------- /src/lib/liblame/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/COPYING -------------------------------------------------------------------------------- /src/lib/liblame/DEFINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/DEFINES -------------------------------------------------------------------------------- /src/lib/liblame/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/HACKING -------------------------------------------------------------------------------- /src/lib/liblame/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/INSTALL -------------------------------------------------------------------------------- /src/lib/liblame/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/LICENSE -------------------------------------------------------------------------------- /src/lib/liblame/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/README -------------------------------------------------------------------------------- /src/lib/liblame/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/TODO -------------------------------------------------------------------------------- /src/lib/liblame/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/USAGE -------------------------------------------------------------------------------- /src/lib/liblame/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /src/lib/liblame/debian/lame.docs: -------------------------------------------------------------------------------- 1 | USAGE 2 | -------------------------------------------------------------------------------- /src/lib/liblame/debian/lame.manpages: -------------------------------------------------------------------------------- 1 | doc/man/lame.1 2 | -------------------------------------------------------------------------------- /src/lib/liblame/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/depcomp -------------------------------------------------------------------------------- /src/lib/liblame/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/liblame/missing -------------------------------------------------------------------------------- /src/lib/libx264/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/libx264/AUTHORS -------------------------------------------------------------------------------- /src/lib/libx264/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/libx264/COPYING -------------------------------------------------------------------------------- /src/lib/libx264/x264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/libx264/x264.c -------------------------------------------------------------------------------- /src/lib/libx264/x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/libx264/x264.h -------------------------------------------------------------------------------- /src/lib/p64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/p64/Makefile.am -------------------------------------------------------------------------------- /src/lib/p64/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/p64/Makefile.in -------------------------------------------------------------------------------- /src/lib/p64/p64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/p64/p64.c -------------------------------------------------------------------------------- /src/lib/p64/p64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/lib/p64/p64.h -------------------------------------------------------------------------------- /src/libm_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/libm_math.c -------------------------------------------------------------------------------- /src/libm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/libm_math.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/log.h -------------------------------------------------------------------------------- /src/machine-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine-bus.c -------------------------------------------------------------------------------- /src/machine-bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine-bus.h -------------------------------------------------------------------------------- /src/machine-drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine-drive.h -------------------------------------------------------------------------------- /src/machine-printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine-printer.h -------------------------------------------------------------------------------- /src/machine-video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine-video.h -------------------------------------------------------------------------------- /src/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine.c -------------------------------------------------------------------------------- /src/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/machine.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/main.h -------------------------------------------------------------------------------- /src/main65816cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/main65816cpu.c -------------------------------------------------------------------------------- /src/main65816cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/main65816cpu.h -------------------------------------------------------------------------------- /src/mainc64cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mainc64cpu.c -------------------------------------------------------------------------------- /src/mainc64cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mainc64cpu.h -------------------------------------------------------------------------------- /src/maincpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/maincpu.c -------------------------------------------------------------------------------- /src/maincpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/maincpu.h -------------------------------------------------------------------------------- /src/mainviccpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mainviccpu.c -------------------------------------------------------------------------------- /src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mem.h -------------------------------------------------------------------------------- /src/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/midi.c -------------------------------------------------------------------------------- /src/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/midi.h -------------------------------------------------------------------------------- /src/mididrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mididrv.h -------------------------------------------------------------------------------- /src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor.h -------------------------------------------------------------------------------- /src/monitor/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/asm.h -------------------------------------------------------------------------------- /src/monitor/asm6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/asm6502.c -------------------------------------------------------------------------------- /src/monitor/asm6809.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/asm6809.c -------------------------------------------------------------------------------- /src/monitor/asmz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/asmz80.c -------------------------------------------------------------------------------- /src/monitor/mon_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/mon_lex.c -------------------------------------------------------------------------------- /src/monitor/mon_lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/mon_lex.l -------------------------------------------------------------------------------- /src/monitor/mon_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/mon_ui.c -------------------------------------------------------------------------------- /src/monitor/mon_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/mon_ui.h -------------------------------------------------------------------------------- /src/monitor/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/monitor/monitor.c -------------------------------------------------------------------------------- /src/mos6510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mos6510.h -------------------------------------------------------------------------------- /src/mos6510dtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/mos6510dtv.h -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/network.c -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/network.h -------------------------------------------------------------------------------- /src/opencbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/opencbm.h -------------------------------------------------------------------------------- /src/opencbmlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/opencbmlib.c -------------------------------------------------------------------------------- /src/opencbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/opencbmlib.h -------------------------------------------------------------------------------- /src/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/palette.c -------------------------------------------------------------------------------- /src/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/palette.h -------------------------------------------------------------------------------- /src/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/parallel.h -------------------------------------------------------------------------------- /src/parsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/parsid.h -------------------------------------------------------------------------------- /src/pet/6809.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/6809.c -------------------------------------------------------------------------------- /src/pet/6809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/6809.h -------------------------------------------------------------------------------- /src/pet/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/Makefile.am -------------------------------------------------------------------------------- /src/pet/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/Makefile.in -------------------------------------------------------------------------------- /src/pet/debugcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/debugcart.c -------------------------------------------------------------------------------- /src/pet/debugcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/debugcart.h -------------------------------------------------------------------------------- /src/pet/pet-sidcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pet-sidcart.c -------------------------------------------------------------------------------- /src/pet/pet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pet.c -------------------------------------------------------------------------------- /src/pet/pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pet.h -------------------------------------------------------------------------------- /src/pet/petacia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petacia.h -------------------------------------------------------------------------------- /src/pet/petacia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petacia1.c -------------------------------------------------------------------------------- /src/pet/petbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petbus.c -------------------------------------------------------------------------------- /src/pet/petcolour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petcolour.c -------------------------------------------------------------------------------- /src/pet/petcolour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petcolour.h -------------------------------------------------------------------------------- /src/pet/petcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petcpu.c -------------------------------------------------------------------------------- /src/pet/petdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petdrive.c -------------------------------------------------------------------------------- /src/pet/petdww.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petdww.c -------------------------------------------------------------------------------- /src/pet/petdww.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petdww.h -------------------------------------------------------------------------------- /src/pet/petembedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petembedded.c -------------------------------------------------------------------------------- /src/pet/pethre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pethre.c -------------------------------------------------------------------------------- /src/pet/pethre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pethre.h -------------------------------------------------------------------------------- /src/pet/petiec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petiec.c -------------------------------------------------------------------------------- /src/pet/petiec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petiec.h -------------------------------------------------------------------------------- /src/pet/petio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petio.c -------------------------------------------------------------------------------- /src/pet/petmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petmem.c -------------------------------------------------------------------------------- /src/pet/petmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petmem.h -------------------------------------------------------------------------------- /src/pet/petmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petmodel.c -------------------------------------------------------------------------------- /src/pet/petmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petmodel.h -------------------------------------------------------------------------------- /src/pet/petpia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petpia.h -------------------------------------------------------------------------------- /src/pet/petpia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petpia1.c -------------------------------------------------------------------------------- /src/pet/petpia2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petpia2.c -------------------------------------------------------------------------------- /src/pet/petprinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petprinter.c -------------------------------------------------------------------------------- /src/pet/petreu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petreu.c -------------------------------------------------------------------------------- /src/pet/petreu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petreu.h -------------------------------------------------------------------------------- /src/pet/petrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petrom.c -------------------------------------------------------------------------------- /src/pet/petrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petrom.h -------------------------------------------------------------------------------- /src/pet/petromset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petromset.c -------------------------------------------------------------------------------- /src/pet/pets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/pets.h -------------------------------------------------------------------------------- /src/pet/petsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petsound.c -------------------------------------------------------------------------------- /src/pet/petsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petsound.h -------------------------------------------------------------------------------- /src/pet/petvia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petvia.c -------------------------------------------------------------------------------- /src/pet/petvia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petvia.h -------------------------------------------------------------------------------- /src/pet/petvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/pet/petvideo.c -------------------------------------------------------------------------------- /src/petcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/petcat.c -------------------------------------------------------------------------------- /src/petui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/petui.h -------------------------------------------------------------------------------- /src/piacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/piacore.c -------------------------------------------------------------------------------- /src/piacore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/piacore.h -------------------------------------------------------------------------------- /src/plus4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/Makefile.am -------------------------------------------------------------------------------- /src/plus4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/Makefile.in -------------------------------------------------------------------------------- /src/plus4/debugcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/debugcart.c -------------------------------------------------------------------------------- /src/plus4/debugcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/debugcart.h -------------------------------------------------------------------------------- /src/plus4/plus4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4.c -------------------------------------------------------------------------------- /src/plus4/plus4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4.h -------------------------------------------------------------------------------- /src/plus4/plus4acia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4acia.c -------------------------------------------------------------------------------- /src/plus4/plus4acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4acia.h -------------------------------------------------------------------------------- /src/plus4/plus4bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4bus.c -------------------------------------------------------------------------------- /src/plus4/plus4cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4cart.c -------------------------------------------------------------------------------- /src/plus4/plus4cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4cart.h -------------------------------------------------------------------------------- /src/plus4/plus4cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4cpu.c -------------------------------------------------------------------------------- /src/plus4/plus4iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4iec.c -------------------------------------------------------------------------------- /src/plus4/plus4iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4iec.h -------------------------------------------------------------------------------- /src/plus4/plus4io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4io.c -------------------------------------------------------------------------------- /src/plus4/plus4mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4mem.c -------------------------------------------------------------------------------- /src/plus4/plus4mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4mem.h -------------------------------------------------------------------------------- /src/plus4/plus4pio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4pio1.c -------------------------------------------------------------------------------- /src/plus4/plus4pio1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4pio1.h -------------------------------------------------------------------------------- /src/plus4/plus4pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4pio2.c -------------------------------------------------------------------------------- /src/plus4/plus4pio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4pio2.h -------------------------------------------------------------------------------- /src/plus4/plus4rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4rom.c -------------------------------------------------------------------------------- /src/plus4/plus4rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4rom.h -------------------------------------------------------------------------------- /src/plus4/plus4tcbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4tcbm.c -------------------------------------------------------------------------------- /src/plus4/plus4tcbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/plus4tcbm.h -------------------------------------------------------------------------------- /src/plus4/ted-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-color.c -------------------------------------------------------------------------------- /src/plus4/ted-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-color.h -------------------------------------------------------------------------------- /src/plus4/ted-draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-draw.c -------------------------------------------------------------------------------- /src/plus4/ted-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-draw.h -------------------------------------------------------------------------------- /src/plus4/ted-fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-fetch.c -------------------------------------------------------------------------------- /src/plus4/ted-fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-fetch.h -------------------------------------------------------------------------------- /src/plus4/ted-irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-irq.c -------------------------------------------------------------------------------- /src/plus4/ted-irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-irq.h -------------------------------------------------------------------------------- /src/plus4/ted-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-mem.c -------------------------------------------------------------------------------- /src/plus4/ted-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-mem.h -------------------------------------------------------------------------------- /src/plus4/ted-sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-sound.c -------------------------------------------------------------------------------- /src/plus4/ted-sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-sound.h -------------------------------------------------------------------------------- /src/plus4/ted-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-timer.c -------------------------------------------------------------------------------- /src/plus4/ted-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted-timer.h -------------------------------------------------------------------------------- /src/plus4/ted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted.c -------------------------------------------------------------------------------- /src/plus4/ted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/ted.h -------------------------------------------------------------------------------- /src/plus4/tedtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4/tedtypes.h -------------------------------------------------------------------------------- /src/plus4ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/plus4ui.h -------------------------------------------------------------------------------- /src/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/printer.h -------------------------------------------------------------------------------- /src/printermps803.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/printermps803.h -------------------------------------------------------------------------------- /src/printernl10cbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/printernl10cbm.h -------------------------------------------------------------------------------- /src/ps2mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ps2mouse.c -------------------------------------------------------------------------------- /src/ps2mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ps2mouse.h -------------------------------------------------------------------------------- /src/r65c02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/r65c02.h -------------------------------------------------------------------------------- /src/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ram.c -------------------------------------------------------------------------------- /src/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ram.h -------------------------------------------------------------------------------- /src/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/raster/raster.c -------------------------------------------------------------------------------- /src/raster/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/raster/raster.h -------------------------------------------------------------------------------- /src/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rawfile.c -------------------------------------------------------------------------------- /src/rawfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rawfile.h -------------------------------------------------------------------------------- /src/rawnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rawnet.c -------------------------------------------------------------------------------- /src/rawnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rawnet.h -------------------------------------------------------------------------------- /src/rawnetarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rawnetarch.h -------------------------------------------------------------------------------- /src/resid-dtv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/AUTHORS -------------------------------------------------------------------------------- /src/resid-dtv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/COPYING -------------------------------------------------------------------------------- /src/resid-dtv/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/INSTALL -------------------------------------------------------------------------------- /src/resid-dtv/NEWS: -------------------------------------------------------------------------------- 1 | See ChangeLog for information about new features. 2 | -------------------------------------------------------------------------------- /src/resid-dtv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/README -------------------------------------------------------------------------------- /src/resid-dtv/sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/sid.cc -------------------------------------------------------------------------------- /src/resid-dtv/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/sid.h -------------------------------------------------------------------------------- /src/resid-dtv/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/voice.h -------------------------------------------------------------------------------- /src/resid-dtv/wave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/wave.cc -------------------------------------------------------------------------------- /src/resid-dtv/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid-dtv/wave.h -------------------------------------------------------------------------------- /src/resid/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/AUTHORS -------------------------------------------------------------------------------- /src/resid/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/COPYING -------------------------------------------------------------------------------- /src/resid/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/ChangeLog -------------------------------------------------------------------------------- /src/resid/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/INSTALL -------------------------------------------------------------------------------- /src/resid/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/Makefile.am -------------------------------------------------------------------------------- /src/resid/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/Makefile.in -------------------------------------------------------------------------------- /src/resid/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/NEWS -------------------------------------------------------------------------------- /src/resid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/README -------------------------------------------------------------------------------- /src/resid/README.VICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/README.VICE -------------------------------------------------------------------------------- /src/resid/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/THANKS -------------------------------------------------------------------------------- /src/resid/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/TODO -------------------------------------------------------------------------------- /src/resid/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/aclocal.m4 -------------------------------------------------------------------------------- /src/resid/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/config.log -------------------------------------------------------------------------------- /src/resid/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/configure -------------------------------------------------------------------------------- /src/resid/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/dac.cc -------------------------------------------------------------------------------- /src/resid/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/dac.h -------------------------------------------------------------------------------- /src/resid/envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/envelope.cc -------------------------------------------------------------------------------- /src/resid/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/envelope.h -------------------------------------------------------------------------------- /src/resid/extfilt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/extfilt.cc -------------------------------------------------------------------------------- /src/resid/extfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/extfilt.h -------------------------------------------------------------------------------- /src/resid/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/filter.cc -------------------------------------------------------------------------------- /src/resid/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/filter.h -------------------------------------------------------------------------------- /src/resid/pot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/pot.cc -------------------------------------------------------------------------------- /src/resid/pot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/pot.h -------------------------------------------------------------------------------- /src/resid/samp2src.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/samp2src.pl -------------------------------------------------------------------------------- /src/resid/sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/sid.cc -------------------------------------------------------------------------------- /src/resid/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/sid.h -------------------------------------------------------------------------------- /src/resid/siddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/siddefs.h -------------------------------------------------------------------------------- /src/resid/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/spline.h -------------------------------------------------------------------------------- /src/resid/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/version.cc -------------------------------------------------------------------------------- /src/resid/voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/voice.cc -------------------------------------------------------------------------------- /src/resid/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/voice.h -------------------------------------------------------------------------------- /src/resid/wave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/wave.cc -------------------------------------------------------------------------------- /src/resid/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resid/wave.h -------------------------------------------------------------------------------- /src/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resources.c -------------------------------------------------------------------------------- /src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/resources.h -------------------------------------------------------------------------------- /src/riot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/riot.h -------------------------------------------------------------------------------- /src/romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/romset.c -------------------------------------------------------------------------------- /src/romset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/romset.h -------------------------------------------------------------------------------- /src/rs232dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232dev.h -------------------------------------------------------------------------------- /src/rs232drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232drv.h -------------------------------------------------------------------------------- /src/rs232drv/rs232.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232drv/rs232.c -------------------------------------------------------------------------------- /src/rs232drv/rs232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232drv/rs232.h -------------------------------------------------------------------------------- /src/rs232drv/rsuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232drv/rsuser.c -------------------------------------------------------------------------------- /src/rs232net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rs232net.h -------------------------------------------------------------------------------- /src/rsuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rsuser.h -------------------------------------------------------------------------------- /src/rtc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/Makefile.am -------------------------------------------------------------------------------- /src/rtc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/Makefile.in -------------------------------------------------------------------------------- /src/rtc/bq4830y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/bq4830y.c -------------------------------------------------------------------------------- /src/rtc/bq4830y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/bq4830y.h -------------------------------------------------------------------------------- /src/rtc/ds1202_1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1202_1302.c -------------------------------------------------------------------------------- /src/rtc/ds1202_1302.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1202_1302.h -------------------------------------------------------------------------------- /src/rtc/ds1216e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1216e.c -------------------------------------------------------------------------------- /src/rtc/ds1216e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1216e.h -------------------------------------------------------------------------------- /src/rtc/ds12c887.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds12c887.c -------------------------------------------------------------------------------- /src/rtc/ds12c887.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds12c887.h -------------------------------------------------------------------------------- /src/rtc/ds1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1307.c -------------------------------------------------------------------------------- /src/rtc/ds1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1307.h -------------------------------------------------------------------------------- /src/rtc/ds1602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1602.c -------------------------------------------------------------------------------- /src/rtc/ds1602.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/ds1602.h -------------------------------------------------------------------------------- /src/rtc/pcf8583.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/pcf8583.c -------------------------------------------------------------------------------- /src/rtc/pcf8583.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/pcf8583.h -------------------------------------------------------------------------------- /src/rtc/rtc-58321a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc-58321a.c -------------------------------------------------------------------------------- /src/rtc/rtc-58321a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc-58321a.h -------------------------------------------------------------------------------- /src/rtc/rtc-72421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc-72421.c -------------------------------------------------------------------------------- /src/rtc/rtc-72421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc-72421.h -------------------------------------------------------------------------------- /src/rtc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc.c -------------------------------------------------------------------------------- /src/rtc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/rtc/rtc.h -------------------------------------------------------------------------------- /src/scpu64/scpu64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/scpu64/scpu64.c -------------------------------------------------------------------------------- /src/scpu64/scpu64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/scpu64/scpu64.h -------------------------------------------------------------------------------- /src/scpu64ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/scpu64ui.h -------------------------------------------------------------------------------- /src/screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/screenshot.c -------------------------------------------------------------------------------- /src/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/screenshot.h -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/serial.h -------------------------------------------------------------------------------- /src/serial/fsdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/serial/fsdrive.c -------------------------------------------------------------------------------- /src/serial/fsdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/serial/fsdrive.h -------------------------------------------------------------------------------- /src/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/serial/serial.c -------------------------------------------------------------------------------- /src/sid/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/Makefile.am -------------------------------------------------------------------------------- /src/sid/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/Makefile.in -------------------------------------------------------------------------------- /src/sid/fastsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/fastsid.c -------------------------------------------------------------------------------- /src/sid/fastsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/fastsid.h -------------------------------------------------------------------------------- /src/sid/hardsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/hardsid.c -------------------------------------------------------------------------------- /src/sid/parsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/parsid.c -------------------------------------------------------------------------------- /src/sid/resid-dtv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/resid-dtv.cc -------------------------------------------------------------------------------- /src/sid/resid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/resid.cc -------------------------------------------------------------------------------- /src/sid/resid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/resid.h -------------------------------------------------------------------------------- /src/sid/sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/sid.c -------------------------------------------------------------------------------- /src/sid/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/sid.h -------------------------------------------------------------------------------- /src/sid/ssi2001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/ssi2001.c -------------------------------------------------------------------------------- /src/sid/wave6581.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/wave6581.h -------------------------------------------------------------------------------- /src/sid/wave8580.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sid/wave8580.h -------------------------------------------------------------------------------- /src/sidcart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sidcart.h -------------------------------------------------------------------------------- /src/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/signals.h -------------------------------------------------------------------------------- /src/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/snapshot.c -------------------------------------------------------------------------------- /src/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/snapshot.h -------------------------------------------------------------------------------- /src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/socket.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/ssi2001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/ssi2001.h -------------------------------------------------------------------------------- /src/sysfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sysfile.c -------------------------------------------------------------------------------- /src/sysfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/sysfile.h -------------------------------------------------------------------------------- /src/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tap.h -------------------------------------------------------------------------------- /src/tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape.h -------------------------------------------------------------------------------- /src/tape/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/Makefile.am -------------------------------------------------------------------------------- /src/tape/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/Makefile.in -------------------------------------------------------------------------------- /src/tape/t64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/t64.c -------------------------------------------------------------------------------- /src/tape/t64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/t64.h -------------------------------------------------------------------------------- /src/tape/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/tap.c -------------------------------------------------------------------------------- /src/tape/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/tape.c -------------------------------------------------------------------------------- /src/tape/tapeimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/tapeimage.c -------------------------------------------------------------------------------- /src/tape/tapeimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tape/tapeimage.h -------------------------------------------------------------------------------- /src/tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/tpi.h -------------------------------------------------------------------------------- /src/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/traps.c -------------------------------------------------------------------------------- /src/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/traps.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/types.h -------------------------------------------------------------------------------- /src/uiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/uiapi.h -------------------------------------------------------------------------------- /src/uicmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/uicmdline.h -------------------------------------------------------------------------------- /src/uicolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/uicolor.h -------------------------------------------------------------------------------- /src/uimon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/uimon.h -------------------------------------------------------------------------------- /src/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/usleep.c -------------------------------------------------------------------------------- /src/usleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/usleep.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/util.h -------------------------------------------------------------------------------- /src/vdc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/Makefile.am -------------------------------------------------------------------------------- /src/vdc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/Makefile.in -------------------------------------------------------------------------------- /src/vdc/vdc-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-color.c -------------------------------------------------------------------------------- /src/vdc/vdc-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-color.h -------------------------------------------------------------------------------- /src/vdc/vdc-draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-draw.c -------------------------------------------------------------------------------- /src/vdc/vdc-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-draw.h -------------------------------------------------------------------------------- /src/vdc/vdc-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-mem.c -------------------------------------------------------------------------------- /src/vdc/vdc-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc-mem.h -------------------------------------------------------------------------------- /src/vdc/vdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc.c -------------------------------------------------------------------------------- /src/vdc/vdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdc.h -------------------------------------------------------------------------------- /src/vdc/vdctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdc/vdctypes.h -------------------------------------------------------------------------------- /src/vdrive/vdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdrive/vdrive.c -------------------------------------------------------------------------------- /src/vdrive/vdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vdrive/vdrive.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/version.h -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/version.h.in -------------------------------------------------------------------------------- /src/via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/via.h -------------------------------------------------------------------------------- /src/vic20/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/Makefile.am -------------------------------------------------------------------------------- /src/vic20/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/Makefile.in -------------------------------------------------------------------------------- /src/vic20/vic-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-color.c -------------------------------------------------------------------------------- /src/vic20/vic-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-color.h -------------------------------------------------------------------------------- /src/vic20/vic-cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-cycle.c -------------------------------------------------------------------------------- /src/vic20/vic-cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-cycle.h -------------------------------------------------------------------------------- /src/vic20/vic-draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-draw.c -------------------------------------------------------------------------------- /src/vic20/vic-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-draw.h -------------------------------------------------------------------------------- /src/vic20/vic-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-mem.c -------------------------------------------------------------------------------- /src/vic20/vic-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic-mem.h -------------------------------------------------------------------------------- /src/vic20/vic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic.c -------------------------------------------------------------------------------- /src/vic20/vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic.h -------------------------------------------------------------------------------- /src/vic20/vic20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20.c -------------------------------------------------------------------------------- /src/vic20/vic20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20.h -------------------------------------------------------------------------------- /src/vic20/vic20bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20bus.c -------------------------------------------------------------------------------- /src/vic20/vic20cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20cpu.c -------------------------------------------------------------------------------- /src/vic20/vic20iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20iec.c -------------------------------------------------------------------------------- /src/vic20/vic20iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20iec.h -------------------------------------------------------------------------------- /src/vic20/vic20io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20io.c -------------------------------------------------------------------------------- /src/vic20/vic20mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20mem.c -------------------------------------------------------------------------------- /src/vic20/vic20mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20mem.h -------------------------------------------------------------------------------- /src/vic20/vic20rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20rom.c -------------------------------------------------------------------------------- /src/vic20/vic20rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20rom.h -------------------------------------------------------------------------------- /src/vic20/vic20via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20via.h -------------------------------------------------------------------------------- /src/vic20/vic20via1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20via1.c -------------------------------------------------------------------------------- /src/vic20/vic20via2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/vic20via2.c -------------------------------------------------------------------------------- /src/vic20/victypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20/victypes.h -------------------------------------------------------------------------------- /src/vic20ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vic20ui.h -------------------------------------------------------------------------------- /src/vice-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vice-event.h -------------------------------------------------------------------------------- /src/vice-version.sh: -------------------------------------------------------------------------------- 1 | echo "3.3" 2 | -------------------------------------------------------------------------------- /src/vice-version.sh.in: -------------------------------------------------------------------------------- 1 | echo "@VERSION@" 2 | -------------------------------------------------------------------------------- /src/vice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vice.h -------------------------------------------------------------------------------- /src/vice_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vice_sdl.h -------------------------------------------------------------------------------- /src/vicefeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicefeatures.c -------------------------------------------------------------------------------- /src/vicefeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicefeatures.h -------------------------------------------------------------------------------- /src/vicemaxpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicemaxpath.h -------------------------------------------------------------------------------- /src/vicesocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicesocket.h -------------------------------------------------------------------------------- /src/vicii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii.h -------------------------------------------------------------------------------- /src/vicii/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/Makefile.am -------------------------------------------------------------------------------- /src/vicii/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/Makefile.in -------------------------------------------------------------------------------- /src/vicii/vicii-irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/vicii-irq.c -------------------------------------------------------------------------------- /src/vicii/vicii-irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/vicii-irq.h -------------------------------------------------------------------------------- /src/vicii/vicii-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/vicii-mem.c -------------------------------------------------------------------------------- /src/vicii/vicii-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/vicii-mem.h -------------------------------------------------------------------------------- /src/vicii/vicii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii/vicii.c -------------------------------------------------------------------------------- /src/vicii_c64hq_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_c64hq_vpl.h -------------------------------------------------------------------------------- /src/vicii_c64s_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_c64s_vpl.h -------------------------------------------------------------------------------- /src/vicii_ccs64_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_ccs64_vpl.h -------------------------------------------------------------------------------- /src/vicii_frodo_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_frodo_vpl.h -------------------------------------------------------------------------------- /src/vicii_godot_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_godot_vpl.h -------------------------------------------------------------------------------- /src/vicii_pc64_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_pc64_vpl.h -------------------------------------------------------------------------------- /src/vicii_rgb_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_rgb_vpl.h -------------------------------------------------------------------------------- /src/vicii_vice_vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vicii_vice_vpl.h -------------------------------------------------------------------------------- /src/viciisc/vicii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/viciisc/vicii.c -------------------------------------------------------------------------------- /src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video.h -------------------------------------------------------------------------------- /src/video/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/Makefile.am -------------------------------------------------------------------------------- /src/video/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/Makefile.in -------------------------------------------------------------------------------- /src/video/render1x1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render1x1.c -------------------------------------------------------------------------------- /src/video/render1x1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render1x1.h -------------------------------------------------------------------------------- /src/video/render1x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render1x2.c -------------------------------------------------------------------------------- /src/video/render1x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render1x2.h -------------------------------------------------------------------------------- /src/video/render2x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render2x2.c -------------------------------------------------------------------------------- /src/video/render2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render2x2.h -------------------------------------------------------------------------------- /src/video/render2x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render2x4.c -------------------------------------------------------------------------------- /src/video/render2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/render2x4.h -------------------------------------------------------------------------------- /src/video/renderyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/renderyuv.c -------------------------------------------------------------------------------- /src/video/renderyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/video/renderyuv.h -------------------------------------------------------------------------------- /src/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/viewport.h -------------------------------------------------------------------------------- /src/vsidui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vsidui.h -------------------------------------------------------------------------------- /src/vsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vsync.c -------------------------------------------------------------------------------- /src/vsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vsync.h -------------------------------------------------------------------------------- /src/vsyncapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/vsyncapi.h -------------------------------------------------------------------------------- /src/wdc65816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/wdc65816.h -------------------------------------------------------------------------------- /src/wrap-u-ar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/wrap-u-ar.sh -------------------------------------------------------------------------------- /src/z80regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/z80regs.h -------------------------------------------------------------------------------- /src/zfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/zfile.c -------------------------------------------------------------------------------- /src/zfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/zfile.h -------------------------------------------------------------------------------- /src/zipcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/zipcode.c -------------------------------------------------------------------------------- /src/zipcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ammeir/vicevita/HEAD/src/zipcode.h --------------------------------------------------------------------------------