├── .gitignore ├── README.md ├── add-ons └── tools.iso ├── audio ├── audio.c ├── audio.h ├── audio_int.h ├── audio_template.h ├── coreaudio.c ├── dsound_template.h ├── mixeng.c ├── mixeng.h ├── mixeng_template.h ├── noaudio.c ├── rate_template.h └── wavaudio.c ├── bios ├── acpi-dsdt.aml ├── bamboo.dtb ├── bamboo.dts ├── bios.bin ├── efi-e1000.rom ├── efi-rtl8139.rom ├── keymaps │ ├── ar │ ├── bepo │ ├── common │ ├── cz │ ├── da │ ├── de │ ├── de-ch │ ├── en-gb │ ├── en-us │ ├── es │ ├── et │ ├── fi │ ├── fo │ ├── fr │ ├── fr-be │ ├── fr-ca │ ├── fr-ch │ ├── hr │ ├── hu │ ├── is │ ├── it │ ├── ja │ ├── lt │ ├── lv │ ├── mk │ ├── modifiers │ ├── nl │ ├── nl-be │ ├── no │ ├── pl │ ├── pt │ ├── pt-br │ ├── ru │ ├── sl │ ├── sv │ ├── th │ └── tr ├── splash.jpg ├── vgabios-stdvga.bin ├── vgabios-vmware.bin └── vgabios.bin ├── block ├── accounting.c ├── async.c ├── blkdebug.c ├── block-backend.c ├── block.c ├── block_init.c ├── blockdev.c ├── blockjob.c ├── bochs.c ├── cloop.c ├── commit.c ├── coroutine-lock.c ├── coroutine-sigaltstack.c ├── coroutine-sleep.c ├── coroutine.c ├── dma_block.c ├── dma_block.h ├── dmg.c ├── mirror.c ├── parallels.c ├── qapi.c ├── qcow.c ├── qcow2-cache.c ├── qcow2-cluster.c ├── qcow2-refcount.c ├── qcow2-snapshot.c ├── qcow2.c ├── qcow2.h ├── qed-check.c ├── qed-cluster.c ├── qed-gencb.c ├── qed-l2-cache.c ├── qed-table.c ├── qed.c ├── qed.h ├── raw-posix.c ├── raw_bsd.c ├── snapshot.c ├── stream.c ├── vhdx-endian.c ├── vhdx-log.c ├── vhdx.c ├── vhdx.h ├── vmdk.c ├── vmx-coroutine-io.c ├── vpc.c └── vvfat.c ├── devices ├── acpi-build.h ├── acpi-dsdt.hex ├── acpicore.c ├── acpiich9.c ├── acpipiix4.c ├── ahci.c ├── ahci.h ├── apic.c ├── apic_common.c ├── apm.c ├── atapi.c ├── bios-linker-loader.h ├── cdrom.c ├── combined-packet.c ├── cpu.c ├── dec.h ├── desc-msos.c ├── desc.c ├── dev-audio.c ├── dev-hub.c ├── dev-storage.c ├── e1000.c ├── e1000_regs.h ├── fw_cfg.c ├── hcd-ehci-pci.c ├── hcd-ehci-sysbus.c ├── hcd-ehci.c ├── hcd-ehci.h ├── hcd-ohci.c ├── hcd-uhci.c ├── hcd-xhci.c ├── hd-geometry.c ├── host-legacy.c ├── host-libusb.c ├── host.h ├── i8254.c ├── i8254_common.c ├── i8257.c ├── i8259.c ├── i8259_common.c ├── i82801b11.c ├── ic2core.c ├── icc_bus.c ├── ich.c ├── ideaisa.c ├── idecore.c ├── ideinternal.h ├── idepci.c ├── idepci.h ├── idepiix.c ├── ideqdev.c ├── ioapic.c ├── ioapic_common.c ├── irq.c ├── isa-bus.c ├── libhw.c ├── lpc_ich9.c ├── lsi53c895a.c ├── machine.c ├── mc146818rtc.c ├── megasas.c ├── mfi.h ├── msi.c ├── multiboot.c ├── multiboot.h ├── pam.c ├── pc.c ├── pc_piix.c ├── pc_sysfw.c ├── pci.c ├── pci_bridge.c ├── pci_host.c ├── pcihp.c ├── pckbd.c ├── pcspk.c ├── piixhost.c ├── platform-bus.c ├── pm_smbus.c ├── ps2.c ├── qdev.c ├── rtl8139.c ├── scsi-bus.c ├── scsi-disk.c ├── scsi-generic.c ├── shpc.c ├── slotid_cap.c ├── smbus.c ├── smbus_eeprom.c ├── smbus_ich9.c ├── ssdt-mem.hex ├── ssdt-misc.hex ├── ssdt-pcihp.hex ├── ssdt-tpm.hex ├── sysbus.c ├── typeinfo.c ├── usbbus.c ├── usbcore.c ├── vga-helpers.h ├── vga-pci.c ├── vga.c ├── vga_int.h ├── vmmouse.c ├── vmport.c ├── vmware_vga.c └── vmx_port.c ├── images.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon1024.png │ ├── vm128.png │ ├── vm16.png │ ├── vm256-1.png │ ├── vm256.png │ ├── vm32-1.png │ ├── vm32.png │ ├── vm512-1.png │ ├── vm512.png │ └── vm64.png └── Contents.json ├── include ├── ExportOptionsView.h ├── ExportOptionsView.m ├── NSColor+RGB.h ├── NSColor+RGB.m ├── accel.h ├── accounting.h ├── acpi.h ├── acpi_dev_interface.h ├── acpiich9.h ├── acpipcihp.h ├── acpipiix4.h ├── address-spaces.h ├── aio.h ├── apb.h ├── apm.h ├── arch_init.h ├── audio.h ├── bblock.h ├── block.h ├── block_int.h ├── blockjob.h ├── boards.h ├── cli │ ├── __init__.py │ ├── cli_interface.py │ ├── formatter.py │ ├── lib │ │ ├── __init__.py │ │ ├── click │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ └── tabulate │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ └── tabulate.py │ ├── utils.py │ └── veertu_manager.py ├── compat.h ├── config-host.h ├── config-target.h ├── config.h ├── coroutine.h ├── coroutine_int.h ├── cpu-all.h ├── cpu-common.h ├── cpu-defs.h ├── desc.h ├── ehci-regs.h ├── emuaccel.h ├── emuarch_init.h ├── emublock-backend.h ├── emublockdev.h ├── emuchar.h ├── emucpus.h ├── emudma.h ├── emuos-posix.h ├── exec-all.h ├── fmopl.h ├── fw_cfg.h ├── hid.h ├── hpet.h ├── hw.h ├── hwaddr.h ├── i2c.h ├── i8254.h ├── i8254_internal.h ├── i8259_internal.h ├── iapic-msidef.h ├── iapic.h ├── iapic_internal.h ├── icc_bus.h ├── icn ├── ide.h ├── iich9.h ├── iioapic.h ├── iioapic_internal.h ├── ioport.h ├── ipc.h ├── irq.h ├── isa.h ├── ismbios.h ├── libarchive │ ├── archive.h │ ├── archive_entry.h │ ├── libarchive.a │ └── libbz2.a ├── loader.h ├── m48t59.h ├── mc146818rtc.h ├── mc146818rtc_regs.h ├── memory.h ├── migration.h ├── monitor │ ├── monitor.h │ └── qdev.h ├── nacpi.h ├── net │ ├── checksum.h │ ├── config.h │ ├── eth.h │ ├── net.h │ ├── queue.h │ ├── slirp.h │ └── tap.h ├── nqdev.h ├── nscsi.h ├── pam.h ├── pci.h ├── pci_bus.h ├── pci_host.h ├── pci_ids.h ├── pci_regs.h ├── pcihp.h ├── pcspk.h ├── piix4.h ├── platform-bus.h ├── pm_smbus.h ├── ps2.h ├── ptimer.h ├── qapi.h ├── qapi │ ├── dealloc-visitor.h │ ├── error.h │ ├── opts-visitor.h │ ├── qmp-event.h │ ├── qmp-input-visitor.h │ ├── qmp-output-visitor.h │ ├── qmp │ │ ├── dispatch.h │ │ ├── json-lexer.h │ │ ├── json-parser.h │ │ ├── json-streamer.h │ │ ├── qbool.h │ │ ├── qdict.h │ │ ├── qerror.h │ │ ├── qfloat.h │ │ ├── qint.h │ │ ├── qjson.h │ │ ├── qlist.h │ │ ├── qobject.h │ │ ├── qstring.h │ │ └── types.h │ ├── string-input-visitor.h │ ├── string-output-visitor.h │ ├── util.h │ ├── visitor-impl.h │ └── visitor.h ├── qdev-core.h ├── qemu-common.h ├── qemu-file.h ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu │ ├── acl.h │ ├── aes.h │ ├── atomic.h │ ├── bitmap.h │ ├── bitops.h │ ├── bswap.h │ ├── compiler.h │ ├── config-file.h │ ├── crc32c.h │ ├── envlist.h │ ├── error-report.h │ ├── event_notifier.h │ ├── hbitmap.h │ ├── host-utils.h │ ├── iov.h │ ├── log.h │ ├── main-loop.h │ ├── module.h │ ├── notify.h │ ├── option.h │ ├── option_int.h │ ├── osdep.h │ ├── queue.h │ ├── range.h │ ├── ratelimit.h │ ├── readline.h │ ├── sockets.h │ ├── thread-posix.h │ ├── thread.h │ ├── timer.h │ ├── tls.h │ ├── typedefs.h │ ├── uri.h │ └── veertu-aio.h ├── qmp-commands-old.h ├── qmp-commands.h ├── qom │ └── cpu.h ├── qsysbus.h ├── scsi.h ├── scsi │ ├── esp.h │ └── scsi.h ├── sd.h ├── smbus.h ├── snapshot.h ├── spapr.h ├── spinlock.h ├── ssi.h ├── stream.h ├── sysemu.h ├── thread-pool.h ├── typeinfo.h ├── uhci-regs.h ├── ui │ ├── console.h │ ├── input.h │ └── pixel_ops.h ├── usb.h ├── veertu.h ├── veertuemu.h └── vmstate.h ├── libusb ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── PORTING ├── README ├── TODO ├── Xcode │ ├── common.xcconfig │ ├── config.h │ ├── debug.xcconfig │ ├── libusb.xcconfig │ ├── libusb.xcodeproj │ │ └── project.pbxproj │ ├── libusb_debug.xcconfig │ ├── libusb_release.xcconfig │ └── release.xcconfig ├── aclocal.m4 ├── android │ ├── README │ ├── config.h │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── examples.mk │ │ ├── libusb.mk │ │ └── tests.mk ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Makefile.am │ ├── Makefile.in │ └── doxygen.cfg.in ├── examples │ ├── Makefile.am │ ├── Makefile.in │ ├── dpfp.c │ ├── dpfp_threaded.c │ ├── ezusb.c │ ├── ezusb.h │ ├── fxload.c │ ├── getopt │ │ ├── getopt.c │ │ ├── getopt.h │ │ └── getopt1.c │ ├── hotplugtest.c │ ├── listdevs.c │ ├── sam3u_benchmark.c │ └── xusb.c ├── install-sh ├── libusb-1.0.pc.in ├── libusb │ ├── Makefile.am │ ├── Makefile.in │ ├── core.c │ ├── descriptor.c │ ├── hotplug.c │ ├── hotplug.h │ ├── io.c │ ├── libusb-1.0.def │ ├── libusb-1.0.rc │ ├── libusb.h │ ├── libusbi.h │ ├── os │ │ ├── IOKitLibPrivate.h │ │ ├── darwin_usb.c │ │ ├── darwin_usb.h │ │ ├── haiku │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── haiku_pollfs.cpp │ │ │ ├── haiku_usb.h │ │ │ ├── haiku_usb_backend.cpp │ │ │ ├── haiku_usb_raw.cpp │ │ │ ├── haiku_usb_raw.h │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ └── missing │ │ ├── linux_netlink.c │ │ ├── linux_udev.c │ │ ├── linux_usbfs.c │ │ ├── linux_usbfs.h │ │ ├── netbsd_usb.c │ │ ├── openbsd_usb.c │ │ ├── poll_posix.c │ │ ├── poll_posix.h │ │ ├── poll_windows.c │ │ ├── poll_windows.h │ │ ├── threads_posix.c │ │ ├── threads_posix.h │ │ ├── threads_windows.c │ │ ├── threads_windows.h │ │ ├── wince_usb.c │ │ ├── wince_usb.h │ │ ├── windows_common.h │ │ ├── windows_usb.c │ │ └── windows_usb.h │ ├── strerror.c │ ├── sync.c │ ├── version.h │ └── version_nano.h ├── ltmain.sh ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── missing ├── msvc │ ├── config.h │ ├── ddk_build.cmd │ ├── errno.h │ ├── fxload_2010.vcxproj │ ├── fxload_2010.vcxproj.filters │ ├── fxload_2012.vcxproj │ ├── fxload_2012.vcxproj.filters │ ├── fxload_2013.vcxproj │ ├── fxload_sources │ ├── getopt_2005.vcproj │ ├── getopt_2010.vcxproj │ ├── getopt_2010.vcxproj.filters │ ├── getopt_2012.vcxproj │ ├── getopt_2012.vcxproj.filters │ ├── getopt_2013.vcxproj │ ├── getopt_sources │ ├── hotplugtest_2010.vcxproj │ ├── hotplugtest_2010.vcxproj.filters │ ├── hotplugtest_2012.vcxproj │ ├── hotplugtest_2012.vcxproj.filters │ ├── hotplugtest_2013.vcxproj │ ├── hotplugtest_sources │ ├── inttypes.h │ ├── libusb.dsw │ ├── libusb_2005.sln │ ├── libusb_2010.sln │ ├── libusb_2012.sln │ ├── libusb_2013.sln │ ├── libusb_dll.dsp │ ├── libusb_dll_2005.vcproj │ ├── libusb_dll_2010.vcxproj │ ├── libusb_dll_2010.vcxproj.filters │ ├── libusb_dll_2012.vcxproj │ ├── libusb_dll_2012.vcxproj.filters │ ├── libusb_dll_2013.vcxproj │ ├── libusb_dll_wince.vcproj │ ├── libusb_sources │ ├── libusb_static.dsp │ ├── libusb_static_2005.vcproj │ ├── libusb_static_2010.vcxproj │ ├── libusb_static_2010.vcxproj.filters │ ├── libusb_static_2012.vcxproj │ ├── libusb_static_2012.vcxproj.filters │ ├── libusb_static_2013.vcxproj │ ├── libusb_static_wince.vcproj │ ├── libusb_wince.sln │ ├── listdevs.dsp │ ├── listdevs_2005.vcproj │ ├── listdevs_2010.vcxproj │ ├── listdevs_2010.vcxproj.filters │ ├── listdevs_2012.vcxproj │ ├── listdevs_2012.vcxproj.filters │ ├── listdevs_2013.vcxproj │ ├── listdevs_sources │ ├── listdevs_wince.vcproj │ ├── missing.c │ ├── missing.h │ ├── stdint.h │ ├── stress_2005.vcproj │ ├── stress_2010.vcxproj │ ├── stress_2010.vcxproj.filters │ ├── stress_2012.vcxproj │ ├── stress_2012.vcxproj.filters │ ├── stress_2013.vcxproj │ ├── stress_wince.vcproj │ ├── xusb.dsp │ ├── xusb_2005.vcproj │ ├── xusb_2010.vcxproj │ ├── xusb_2010.vcxproj.filters │ ├── xusb_2012.vcxproj │ ├── xusb_2012.vcxproj.filters │ ├── xusb_2013.vcxproj │ ├── xusb_sources │ └── xusb_wince.vcproj └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── libusb_testlib.h │ ├── stress.c │ └── testlib.c ├── power_events.m ├── qemu-options.def ├── qemu-options.hx ├── qmp-marshal.c ├── slirp ├── arp_table.c ├── bootp.c ├── bootp.h ├── cksum.c ├── debug.h ├── dnssearch.c ├── if.c ├── if.h ├── ip.h ├── ip_icmp.c ├── ip_icmp.h ├── ip_input.c ├── ip_output.c ├── libslirp.h ├── main.h ├── mbuf.c ├── mbuf.h ├── misc.c ├── misc.h ├── sbuf.c ├── sbuf.h ├── slirp.c ├── slirp.h ├── slirp_config.h ├── socket.c ├── socket.h ├── tcp.h ├── tcp_input.c ├── tcp_output.c ├── tcp_subr.c ├── tcp_timer.c ├── tcp_timer.h ├── tcp_var.h ├── tcpip.h ├── tftp.c ├── tftp.h ├── udp.c └── udp.h ├── stubs ├── arch-query-cpu-def.c ├── bdrv-commit-all.c ├── chr-baum-init.c ├── chr-msmouse.c ├── clock-warp.c ├── cpu-get-clock.c ├── cpu-get-icount.c ├── cpus.c ├── fdset-add-fd.c ├── fdset-find-fd.c ├── fdset-get-fd.c ├── get-fd.c ├── get-next-serial.c ├── get-vm-name.c ├── iothread-lock.c ├── is-daemonized.c ├── kvm.c ├── machine-init-done.c ├── migr-blocker.c ├── mon-is-qmp.c ├── mon-printf.c ├── mon-set-error.c ├── monitor-init.c ├── notify-event.c ├── pci-drive-hot-add.c ├── reset.c ├── runstate-check.c ├── set-fd-handler.c ├── slirp.c ├── sysbus.c ├── uuid.c ├── vc-init.c ├── vm-stop.c └── vmstate.c ├── util ├── accel.c ├── acl.c ├── aes.c ├── arch_init.c ├── bootdevice.c ├── checksum.c ├── clients.h ├── cpu-exec.c ├── cpu-qom.h ├── cpu.c ├── cpu.h ├── cpus.c ├── crc32c.c ├── cutils.c ├── error.c ├── event_notifier-posix.c ├── excp_helper.c ├── exec.c ├── helper.c ├── hub.c ├── hub.h ├── hw_init.c ├── id.c ├── io_helpers.c ├── io_helpers.h ├── iohandler.c ├── ioport.c ├── machine.c ├── main-loop.c ├── mapping.c ├── module.c ├── monitor.c ├── net.c ├── opts-visitor.c ├── os-posix.c ├── osdep.c ├── oslib-posix.c ├── qapi-dealloc-visitor.c ├── qapi-event.c ├── qapi-event.h ├── qapi-types.c ├── qapi-types.h ├── qapi-util.c ├── qapi-visit-core.c ├── qapi-visit.c ├── qapi-visit.h ├── qbool.c ├── qdev-monitor.c ├── qdict.c ├── qemu-file-internal.h ├── qemu-openpty.c ├── qemu-progress.c ├── qemu-thread-posix.c ├── qemu-timer-common.c ├── qerror.c ├── qfloat.c ├── qint.c ├── qlist.c ├── qmp-commands-old.h ├── qmp-commands.h ├── qmp-dispatch.c ├── qmp-event.c ├── qmp-input-visitor.c ├── qmp-output-visitor.c ├── qmp-registry.c ├── qstring.c ├── queue.c ├── readline.c ├── rfifolock.c ├── savevm.c ├── seg_helper.c ├── sglist.c ├── sglist.h ├── slirp.c ├── socket.c ├── socket_helper.c ├── string-input-visitor.c ├── string-output-visitor.c ├── tap-bsd.c ├── tap.c ├── tap_int.h ├── thread-pool.c ├── topology.h ├── uri.c ├── util.c ├── util.h ├── vl.c ├── vmstate.c ├── vmx-char.c ├── vmx-config.c ├── vmx-file-buf.c ├── vmx-file-stdio.c ├── vmx-file-unix.c ├── vmx-file.c ├── vmx-log.c ├── vmx-option.c ├── vmx-timer.c ├── vnet.c ├── vnet_fwd.c └── vnet_fwd.h ├── vda ├── Info.plist ├── Localizable.strings ├── main.m └── vmx.entitlements ├── vlaunch ├── CMakeLists.txt ├── Info.plist ├── Launchd.plist ├── log.cpp ├── log.h ├── main.cpp ├── test │ ├── CMakeLists.txt │ ├── test.cpp │ ├── test_vlaunch.cpp │ ├── test_vmsg.cpp │ └── test_vobj.cpp ├── vlaunch.cpp ├── vlaunch.h ├── vlaunch.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── vmsg.cpp ├── vmsg.h ├── vobj.cpp ├── vobj.h ├── vsystem.cpp └── vsystem.h ├── vmm ├── hyperv.c ├── hyperv.h ├── known_hypervisor_interface.h ├── veertu.c ├── veertu.h ├── veertu_vmx.h ├── vmcs.h ├── vmx.h ├── x86.c ├── x86.h ├── x86_cpuid.c ├── x86_cpuid.h ├── x86_decode.c ├── x86_decode.h ├── x86_descr.c ├── x86_descr.h ├── x86_emu.c ├── x86_emu.h ├── x86_flags.c ├── x86_flags.h ├── x86_gen.h ├── x86_mmu.c ├── x86_mmu.h ├── x86_paging.h └── x86veertu.c ├── vmmanager ├── HWAudio.h ├── HWAudio.m ├── HWCdrom.h ├── HWCdrom.m ├── HWCpu.h ├── HWCpu.m ├── HWDiskController.h ├── HWDiskController.m ├── HWHd.h ├── HWHd.m ├── HWItem.h ├── HWItem.m ├── HWNic.h ├── HWNic.m ├── HWUhc.h ├── HWUhc.m ├── HWUsb.h ├── HWUsb.m ├── NetworkInterfaceMonitor.h ├── NetworkInterfaceMonitor.m ├── POD.h ├── POD.m ├── ScopedValueObserver.h ├── ScopedValueObserver.m ├── SystemInfo.h ├── SystemInfo.m ├── USBDeviceMonitor.h ├── USBDeviceMonitor.m ├── VM.h ├── VM.m ├── VMAdvanced.h ├── VMAdvanced.m ├── VMGeneral.h ├── VMGeneral.m ├── VMGuestTools.h ├── VMGuestTools.m ├── VMHw.h ├── VMHw.m ├── VMImportExport.h ├── VMImportExport.m ├── VMLibrary.h ├── VMLibrary.m ├── VMManager.h ├── img_ops.c ├── img_ops.h ├── log.m ├── utils.c ├── utils.h ├── vmlibrary_ops.h └── vmlibrary_ops.m ├── vmx.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── WorkspaceSettings.xcsettings ├── vmx.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── WorkspaceSettings.xcsettings └── window ├── VmApp.h ├── VmApp.m ├── VmView.h ├── VmView.m ├── VmxClipView.h ├── VmxClipView.m ├── cocoa.m ├── cocoa_util.h ├── console.c ├── curses_keys.h ├── cursor_hidden.xpm ├── cursor_left_ptr.xpm ├── input-keymap.c ├── input-legacy.c ├── input.c ├── keymaps.c ├── keymaps.h ├── vgafont.h └── x_keymap.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/README.md -------------------------------------------------------------------------------- /add-ons/tools.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/add-ons/tools.iso -------------------------------------------------------------------------------- /audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/audio.c -------------------------------------------------------------------------------- /audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/audio.h -------------------------------------------------------------------------------- /audio/audio_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/audio_int.h -------------------------------------------------------------------------------- /audio/audio_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/audio_template.h -------------------------------------------------------------------------------- /audio/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/coreaudio.c -------------------------------------------------------------------------------- /audio/dsound_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/dsound_template.h -------------------------------------------------------------------------------- /audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/mixeng.c -------------------------------------------------------------------------------- /audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/mixeng.h -------------------------------------------------------------------------------- /audio/mixeng_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/mixeng_template.h -------------------------------------------------------------------------------- /audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/noaudio.c -------------------------------------------------------------------------------- /audio/rate_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/rate_template.h -------------------------------------------------------------------------------- /audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/audio/wavaudio.c -------------------------------------------------------------------------------- /bios/acpi-dsdt.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/acpi-dsdt.aml -------------------------------------------------------------------------------- /bios/bamboo.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/bamboo.dtb -------------------------------------------------------------------------------- /bios/bamboo.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/bamboo.dts -------------------------------------------------------------------------------- /bios/bios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/bios.bin -------------------------------------------------------------------------------- /bios/efi-e1000.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/efi-e1000.rom -------------------------------------------------------------------------------- /bios/efi-rtl8139.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/efi-rtl8139.rom -------------------------------------------------------------------------------- /bios/keymaps/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/ar -------------------------------------------------------------------------------- /bios/keymaps/bepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/bepo -------------------------------------------------------------------------------- /bios/keymaps/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/common -------------------------------------------------------------------------------- /bios/keymaps/cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/cz -------------------------------------------------------------------------------- /bios/keymaps/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/da -------------------------------------------------------------------------------- /bios/keymaps/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/de -------------------------------------------------------------------------------- /bios/keymaps/de-ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/de-ch -------------------------------------------------------------------------------- /bios/keymaps/en-gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/en-gb -------------------------------------------------------------------------------- /bios/keymaps/en-us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/en-us -------------------------------------------------------------------------------- /bios/keymaps/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/es -------------------------------------------------------------------------------- /bios/keymaps/et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/et -------------------------------------------------------------------------------- /bios/keymaps/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fi -------------------------------------------------------------------------------- /bios/keymaps/fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fo -------------------------------------------------------------------------------- /bios/keymaps/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fr -------------------------------------------------------------------------------- /bios/keymaps/fr-be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fr-be -------------------------------------------------------------------------------- /bios/keymaps/fr-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fr-ca -------------------------------------------------------------------------------- /bios/keymaps/fr-ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/fr-ch -------------------------------------------------------------------------------- /bios/keymaps/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/hr -------------------------------------------------------------------------------- /bios/keymaps/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/hu -------------------------------------------------------------------------------- /bios/keymaps/is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/is -------------------------------------------------------------------------------- /bios/keymaps/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/it -------------------------------------------------------------------------------- /bios/keymaps/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/ja -------------------------------------------------------------------------------- /bios/keymaps/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/lt -------------------------------------------------------------------------------- /bios/keymaps/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/lv -------------------------------------------------------------------------------- /bios/keymaps/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/mk -------------------------------------------------------------------------------- /bios/keymaps/modifiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/modifiers -------------------------------------------------------------------------------- /bios/keymaps/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/nl -------------------------------------------------------------------------------- /bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /bios/keymaps/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/no -------------------------------------------------------------------------------- /bios/keymaps/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/pl -------------------------------------------------------------------------------- /bios/keymaps/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/pt -------------------------------------------------------------------------------- /bios/keymaps/pt-br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/pt-br -------------------------------------------------------------------------------- /bios/keymaps/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/ru -------------------------------------------------------------------------------- /bios/keymaps/sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/sl -------------------------------------------------------------------------------- /bios/keymaps/sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/sv -------------------------------------------------------------------------------- /bios/keymaps/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/th -------------------------------------------------------------------------------- /bios/keymaps/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/keymaps/tr -------------------------------------------------------------------------------- /bios/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/splash.jpg -------------------------------------------------------------------------------- /bios/vgabios-stdvga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/vgabios-stdvga.bin -------------------------------------------------------------------------------- /bios/vgabios-vmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/vgabios-vmware.bin -------------------------------------------------------------------------------- /bios/vgabios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/bios/vgabios.bin -------------------------------------------------------------------------------- /block/accounting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/accounting.c -------------------------------------------------------------------------------- /block/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/async.c -------------------------------------------------------------------------------- /block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/blkdebug.c -------------------------------------------------------------------------------- /block/block-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/block-backend.c -------------------------------------------------------------------------------- /block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/block.c -------------------------------------------------------------------------------- /block/block_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/block_init.c -------------------------------------------------------------------------------- /block/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/blockdev.c -------------------------------------------------------------------------------- /block/blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/blockjob.c -------------------------------------------------------------------------------- /block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/bochs.c -------------------------------------------------------------------------------- /block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/cloop.c -------------------------------------------------------------------------------- /block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/commit.c -------------------------------------------------------------------------------- /block/coroutine-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/coroutine-lock.c -------------------------------------------------------------------------------- /block/coroutine-sigaltstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/coroutine-sigaltstack.c -------------------------------------------------------------------------------- /block/coroutine-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/coroutine-sleep.c -------------------------------------------------------------------------------- /block/coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/coroutine.c -------------------------------------------------------------------------------- /block/dma_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/dma_block.c -------------------------------------------------------------------------------- /block/dma_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/dma_block.h -------------------------------------------------------------------------------- /block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/dmg.c -------------------------------------------------------------------------------- /block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/mirror.c -------------------------------------------------------------------------------- /block/parallels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/parallels.c -------------------------------------------------------------------------------- /block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qapi.c -------------------------------------------------------------------------------- /block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow.c -------------------------------------------------------------------------------- /block/qcow2-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2-cache.c -------------------------------------------------------------------------------- /block/qcow2-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2-cluster.c -------------------------------------------------------------------------------- /block/qcow2-refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2-refcount.c -------------------------------------------------------------------------------- /block/qcow2-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2-snapshot.c -------------------------------------------------------------------------------- /block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2.c -------------------------------------------------------------------------------- /block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qcow2.h -------------------------------------------------------------------------------- /block/qed-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed-check.c -------------------------------------------------------------------------------- /block/qed-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed-cluster.c -------------------------------------------------------------------------------- /block/qed-gencb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed-gencb.c -------------------------------------------------------------------------------- /block/qed-l2-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed-l2-cache.c -------------------------------------------------------------------------------- /block/qed-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed-table.c -------------------------------------------------------------------------------- /block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed.c -------------------------------------------------------------------------------- /block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/qed.h -------------------------------------------------------------------------------- /block/raw-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/raw-posix.c -------------------------------------------------------------------------------- /block/raw_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/raw_bsd.c -------------------------------------------------------------------------------- /block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/snapshot.c -------------------------------------------------------------------------------- /block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/stream.c -------------------------------------------------------------------------------- /block/vhdx-endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vhdx-endian.c -------------------------------------------------------------------------------- /block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vhdx-log.c -------------------------------------------------------------------------------- /block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vhdx.c -------------------------------------------------------------------------------- /block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vhdx.h -------------------------------------------------------------------------------- /block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vmdk.c -------------------------------------------------------------------------------- /block/vmx-coroutine-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vmx-coroutine-io.c -------------------------------------------------------------------------------- /block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vpc.c -------------------------------------------------------------------------------- /block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/block/vvfat.c -------------------------------------------------------------------------------- /devices/acpi-build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/acpi-build.h -------------------------------------------------------------------------------- /devices/acpi-dsdt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/acpi-dsdt.hex -------------------------------------------------------------------------------- /devices/acpicore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/acpicore.c -------------------------------------------------------------------------------- /devices/acpiich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/acpiich9.c -------------------------------------------------------------------------------- /devices/acpipiix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/acpipiix4.c -------------------------------------------------------------------------------- /devices/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ahci.c -------------------------------------------------------------------------------- /devices/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ahci.h -------------------------------------------------------------------------------- /devices/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/apic.c -------------------------------------------------------------------------------- /devices/apic_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/apic_common.c -------------------------------------------------------------------------------- /devices/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/apm.c -------------------------------------------------------------------------------- /devices/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/atapi.c -------------------------------------------------------------------------------- /devices/bios-linker-loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/bios-linker-loader.h -------------------------------------------------------------------------------- /devices/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/cdrom.c -------------------------------------------------------------------------------- /devices/combined-packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/combined-packet.c -------------------------------------------------------------------------------- /devices/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/cpu.c -------------------------------------------------------------------------------- /devices/dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/dec.h -------------------------------------------------------------------------------- /devices/desc-msos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/desc-msos.c -------------------------------------------------------------------------------- /devices/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/desc.c -------------------------------------------------------------------------------- /devices/dev-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/dev-audio.c -------------------------------------------------------------------------------- /devices/dev-hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/dev-hub.c -------------------------------------------------------------------------------- /devices/dev-storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/dev-storage.c -------------------------------------------------------------------------------- /devices/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/e1000.c -------------------------------------------------------------------------------- /devices/e1000_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/e1000_regs.h -------------------------------------------------------------------------------- /devices/fw_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/fw_cfg.c -------------------------------------------------------------------------------- /devices/hcd-ehci-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-ehci-pci.c -------------------------------------------------------------------------------- /devices/hcd-ehci-sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-ehci-sysbus.c -------------------------------------------------------------------------------- /devices/hcd-ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-ehci.c -------------------------------------------------------------------------------- /devices/hcd-ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-ehci.h -------------------------------------------------------------------------------- /devices/hcd-ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-ohci.c -------------------------------------------------------------------------------- /devices/hcd-uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-uhci.c -------------------------------------------------------------------------------- /devices/hcd-xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hcd-xhci.c -------------------------------------------------------------------------------- /devices/hd-geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/hd-geometry.c -------------------------------------------------------------------------------- /devices/host-legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/host-legacy.c -------------------------------------------------------------------------------- /devices/host-libusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/host-libusb.c -------------------------------------------------------------------------------- /devices/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/host.h -------------------------------------------------------------------------------- /devices/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i8254.c -------------------------------------------------------------------------------- /devices/i8254_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i8254_common.c -------------------------------------------------------------------------------- /devices/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i8257.c -------------------------------------------------------------------------------- /devices/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i8259.c -------------------------------------------------------------------------------- /devices/i8259_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i8259_common.c -------------------------------------------------------------------------------- /devices/i82801b11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/i82801b11.c -------------------------------------------------------------------------------- /devices/ic2core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ic2core.c -------------------------------------------------------------------------------- /devices/icc_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/icc_bus.c -------------------------------------------------------------------------------- /devices/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ich.c -------------------------------------------------------------------------------- /devices/ideaisa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ideaisa.c -------------------------------------------------------------------------------- /devices/idecore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/idecore.c -------------------------------------------------------------------------------- /devices/ideinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ideinternal.h -------------------------------------------------------------------------------- /devices/idepci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/idepci.c -------------------------------------------------------------------------------- /devices/idepci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/idepci.h -------------------------------------------------------------------------------- /devices/idepiix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/idepiix.c -------------------------------------------------------------------------------- /devices/ideqdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ideqdev.c -------------------------------------------------------------------------------- /devices/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ioapic.c -------------------------------------------------------------------------------- /devices/ioapic_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ioapic_common.c -------------------------------------------------------------------------------- /devices/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/irq.c -------------------------------------------------------------------------------- /devices/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/isa-bus.c -------------------------------------------------------------------------------- /devices/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/libhw.c -------------------------------------------------------------------------------- /devices/lpc_ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/lpc_ich9.c -------------------------------------------------------------------------------- /devices/lsi53c895a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/lsi53c895a.c -------------------------------------------------------------------------------- /devices/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/machine.c -------------------------------------------------------------------------------- /devices/mc146818rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/mc146818rtc.c -------------------------------------------------------------------------------- /devices/megasas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/megasas.c -------------------------------------------------------------------------------- /devices/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/mfi.h -------------------------------------------------------------------------------- /devices/msi.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/multiboot.c -------------------------------------------------------------------------------- /devices/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/multiboot.h -------------------------------------------------------------------------------- /devices/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pam.c -------------------------------------------------------------------------------- /devices/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pc.c -------------------------------------------------------------------------------- /devices/pc_piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pc_piix.c -------------------------------------------------------------------------------- /devices/pc_sysfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pc_sysfw.c -------------------------------------------------------------------------------- /devices/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pci.c -------------------------------------------------------------------------------- /devices/pci_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pci_bridge.c -------------------------------------------------------------------------------- /devices/pci_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pci_host.c -------------------------------------------------------------------------------- /devices/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pcihp.c -------------------------------------------------------------------------------- /devices/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pckbd.c -------------------------------------------------------------------------------- /devices/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pcspk.c -------------------------------------------------------------------------------- /devices/piixhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/piixhost.c -------------------------------------------------------------------------------- /devices/platform-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/platform-bus.c -------------------------------------------------------------------------------- /devices/pm_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/pm_smbus.c -------------------------------------------------------------------------------- /devices/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ps2.c -------------------------------------------------------------------------------- /devices/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/qdev.c -------------------------------------------------------------------------------- /devices/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/rtl8139.c -------------------------------------------------------------------------------- /devices/scsi-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/scsi-bus.c -------------------------------------------------------------------------------- /devices/scsi-disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/scsi-disk.c -------------------------------------------------------------------------------- /devices/scsi-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/scsi-generic.c -------------------------------------------------------------------------------- /devices/shpc.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/slotid_cap.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/smbus.c -------------------------------------------------------------------------------- /devices/smbus_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/smbus_eeprom.c -------------------------------------------------------------------------------- /devices/smbus_ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/smbus_ich9.c -------------------------------------------------------------------------------- /devices/ssdt-mem.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ssdt-mem.hex -------------------------------------------------------------------------------- /devices/ssdt-misc.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ssdt-misc.hex -------------------------------------------------------------------------------- /devices/ssdt-pcihp.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ssdt-pcihp.hex -------------------------------------------------------------------------------- /devices/ssdt-tpm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/ssdt-tpm.hex -------------------------------------------------------------------------------- /devices/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/sysbus.c -------------------------------------------------------------------------------- /devices/typeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/typeinfo.c -------------------------------------------------------------------------------- /devices/usbbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/usbbus.c -------------------------------------------------------------------------------- /devices/usbcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/usbcore.c -------------------------------------------------------------------------------- /devices/vga-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vga-helpers.h -------------------------------------------------------------------------------- /devices/vga-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vga-pci.c -------------------------------------------------------------------------------- /devices/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vga.c -------------------------------------------------------------------------------- /devices/vga_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vga_int.h -------------------------------------------------------------------------------- /devices/vmmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vmmouse.c -------------------------------------------------------------------------------- /devices/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vmport.c -------------------------------------------------------------------------------- /devices/vmware_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vmware_vga.c -------------------------------------------------------------------------------- /devices/vmx_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/devices/vmx_port.c -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm128.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm16.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm256-1.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm256.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm32-1.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm32.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm512-1.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm512.png -------------------------------------------------------------------------------- /images.xcassets/AppIcon.appiconset/vm64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/AppIcon.appiconset/vm64.png -------------------------------------------------------------------------------- /images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/images.xcassets/Contents.json -------------------------------------------------------------------------------- /include/ExportOptionsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ExportOptionsView.h -------------------------------------------------------------------------------- /include/ExportOptionsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ExportOptionsView.m -------------------------------------------------------------------------------- /include/NSColor+RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/NSColor+RGB.h -------------------------------------------------------------------------------- /include/NSColor+RGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/NSColor+RGB.m -------------------------------------------------------------------------------- /include/accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/accel.h -------------------------------------------------------------------------------- /include/accounting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/accounting.h -------------------------------------------------------------------------------- /include/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/acpi.h -------------------------------------------------------------------------------- /include/acpi_dev_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/acpi_dev_interface.h -------------------------------------------------------------------------------- /include/acpiich9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/acpiich9.h -------------------------------------------------------------------------------- /include/acpipcihp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/acpipcihp.h -------------------------------------------------------------------------------- /include/acpipiix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/acpipiix4.h -------------------------------------------------------------------------------- /include/address-spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/address-spaces.h -------------------------------------------------------------------------------- /include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/aio.h -------------------------------------------------------------------------------- /include/apb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/apb.h -------------------------------------------------------------------------------- /include/apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/apm.h -------------------------------------------------------------------------------- /include/arch_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/arch_init.h -------------------------------------------------------------------------------- /include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/audio.h -------------------------------------------------------------------------------- /include/bblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/bblock.h -------------------------------------------------------------------------------- /include/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/block.h -------------------------------------------------------------------------------- /include/block_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/block_int.h -------------------------------------------------------------------------------- /include/blockjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/blockjob.h -------------------------------------------------------------------------------- /include/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/boards.h -------------------------------------------------------------------------------- /include/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/cli/cli_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/cli_interface.py -------------------------------------------------------------------------------- /include/cli/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/formatter.py -------------------------------------------------------------------------------- /include/cli/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/cli/lib/click/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/LICENSE -------------------------------------------------------------------------------- /include/cli/lib/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/__init__.py -------------------------------------------------------------------------------- /include/cli/lib/click/_bashcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_bashcomplete.py -------------------------------------------------------------------------------- /include/cli/lib/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_compat.py -------------------------------------------------------------------------------- /include/cli/lib/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_termui_impl.py -------------------------------------------------------------------------------- /include/cli/lib/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_textwrap.py -------------------------------------------------------------------------------- /include/cli/lib/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_unicodefun.py -------------------------------------------------------------------------------- /include/cli/lib/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/_winconsole.py -------------------------------------------------------------------------------- /include/cli/lib/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/core.py -------------------------------------------------------------------------------- /include/cli/lib/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/decorators.py -------------------------------------------------------------------------------- /include/cli/lib/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/exceptions.py -------------------------------------------------------------------------------- /include/cli/lib/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/formatting.py -------------------------------------------------------------------------------- /include/cli/lib/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/globals.py -------------------------------------------------------------------------------- /include/cli/lib/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/parser.py -------------------------------------------------------------------------------- /include/cli/lib/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/termui.py -------------------------------------------------------------------------------- /include/cli/lib/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/testing.py -------------------------------------------------------------------------------- /include/cli/lib/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/types.py -------------------------------------------------------------------------------- /include/cli/lib/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/click/utils.py -------------------------------------------------------------------------------- /include/cli/lib/tabulate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/tabulate/LICENSE -------------------------------------------------------------------------------- /include/cli/lib/tabulate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/cli/lib/tabulate/tabulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/lib/tabulate/tabulate.py -------------------------------------------------------------------------------- /include/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/utils.py -------------------------------------------------------------------------------- /include/cli/veertu_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cli/veertu_manager.py -------------------------------------------------------------------------------- /include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/compat.h -------------------------------------------------------------------------------- /include/config-host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/config-host.h -------------------------------------------------------------------------------- /include/config-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/config-target.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/config.h -------------------------------------------------------------------------------- /include/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/coroutine.h -------------------------------------------------------------------------------- /include/coroutine_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/coroutine_int.h -------------------------------------------------------------------------------- /include/cpu-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cpu-all.h -------------------------------------------------------------------------------- /include/cpu-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cpu-common.h -------------------------------------------------------------------------------- /include/cpu-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/cpu-defs.h -------------------------------------------------------------------------------- /include/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/desc.h -------------------------------------------------------------------------------- /include/ehci-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ehci-regs.h -------------------------------------------------------------------------------- /include/emuaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emuaccel.h -------------------------------------------------------------------------------- /include/emuarch_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emuarch_init.h -------------------------------------------------------------------------------- /include/emublock-backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emublock-backend.h -------------------------------------------------------------------------------- /include/emublockdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emublockdev.h -------------------------------------------------------------------------------- /include/emuchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emuchar.h -------------------------------------------------------------------------------- /include/emucpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emucpus.h -------------------------------------------------------------------------------- /include/emudma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emudma.h -------------------------------------------------------------------------------- /include/emuos-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/emuos-posix.h -------------------------------------------------------------------------------- /include/exec-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/exec-all.h -------------------------------------------------------------------------------- /include/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/fmopl.h -------------------------------------------------------------------------------- /include/fw_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/fw_cfg.h -------------------------------------------------------------------------------- /include/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/hid.h -------------------------------------------------------------------------------- /include/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/hpet.h -------------------------------------------------------------------------------- /include/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/hw.h -------------------------------------------------------------------------------- /include/hwaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/hwaddr.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/i8254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/i8254.h -------------------------------------------------------------------------------- /include/i8254_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/i8254_internal.h -------------------------------------------------------------------------------- /include/i8259_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/i8259_internal.h -------------------------------------------------------------------------------- /include/iapic-msidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iapic-msidef.h -------------------------------------------------------------------------------- /include/iapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iapic.h -------------------------------------------------------------------------------- /include/iapic_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iapic_internal.h -------------------------------------------------------------------------------- /include/icc_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/icc_bus.h -------------------------------------------------------------------------------- /include/icn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/icn -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/iich9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iich9.h -------------------------------------------------------------------------------- /include/iioapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iioapic.h -------------------------------------------------------------------------------- /include/iioapic_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/iioapic_internal.h -------------------------------------------------------------------------------- /include/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ioport.h -------------------------------------------------------------------------------- /include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ipc.h -------------------------------------------------------------------------------- /include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/irq.h -------------------------------------------------------------------------------- /include/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/isa.h -------------------------------------------------------------------------------- /include/ismbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ismbios.h -------------------------------------------------------------------------------- /include/libarchive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/libarchive/archive.h -------------------------------------------------------------------------------- /include/libarchive/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/libarchive/archive_entry.h -------------------------------------------------------------------------------- /include/libarchive/libarchive.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/libarchive/libarchive.a -------------------------------------------------------------------------------- /include/libarchive/libbz2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/libarchive/libbz2.a -------------------------------------------------------------------------------- /include/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/loader.h -------------------------------------------------------------------------------- /include/m48t59.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/m48t59.h -------------------------------------------------------------------------------- /include/mc146818rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/mc146818rtc.h -------------------------------------------------------------------------------- /include/mc146818rtc_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/mc146818rtc_regs.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/migration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/migration.h -------------------------------------------------------------------------------- /include/monitor/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/monitor/monitor.h -------------------------------------------------------------------------------- /include/monitor/qdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/monitor/qdev.h -------------------------------------------------------------------------------- /include/nacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/nacpi.h -------------------------------------------------------------------------------- /include/net/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/checksum.h -------------------------------------------------------------------------------- /include/net/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/config.h -------------------------------------------------------------------------------- /include/net/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/eth.h -------------------------------------------------------------------------------- /include/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/net.h -------------------------------------------------------------------------------- /include/net/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/queue.h -------------------------------------------------------------------------------- /include/net/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/slirp.h -------------------------------------------------------------------------------- /include/net/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/net/tap.h -------------------------------------------------------------------------------- /include/nqdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/nqdev.h -------------------------------------------------------------------------------- /include/nscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/nscsi.h -------------------------------------------------------------------------------- /include/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pam.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pci_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pci_bus.h -------------------------------------------------------------------------------- /include/pci_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pci_host.h -------------------------------------------------------------------------------- /include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pci_ids.h -------------------------------------------------------------------------------- /include/pci_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pci_regs.h -------------------------------------------------------------------------------- /include/pcihp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pcihp.h -------------------------------------------------------------------------------- /include/pcspk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pcspk.h -------------------------------------------------------------------------------- /include/piix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/piix4.h -------------------------------------------------------------------------------- /include/platform-bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/platform-bus.h -------------------------------------------------------------------------------- /include/pm_smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/pm_smbus.h -------------------------------------------------------------------------------- /include/ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ps2.h -------------------------------------------------------------------------------- /include/ptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ptimer.h -------------------------------------------------------------------------------- /include/qapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi.h -------------------------------------------------------------------------------- /include/qapi/dealloc-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/dealloc-visitor.h -------------------------------------------------------------------------------- /include/qapi/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/error.h -------------------------------------------------------------------------------- /include/qapi/opts-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/opts-visitor.h -------------------------------------------------------------------------------- /include/qapi/qmp-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp-event.h -------------------------------------------------------------------------------- /include/qapi/qmp-input-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp-input-visitor.h -------------------------------------------------------------------------------- /include/qapi/qmp-output-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp-output-visitor.h -------------------------------------------------------------------------------- /include/qapi/qmp/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/dispatch.h -------------------------------------------------------------------------------- /include/qapi/qmp/json-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/json-lexer.h -------------------------------------------------------------------------------- /include/qapi/qmp/json-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/json-parser.h -------------------------------------------------------------------------------- /include/qapi/qmp/json-streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/json-streamer.h -------------------------------------------------------------------------------- /include/qapi/qmp/qbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qbool.h -------------------------------------------------------------------------------- /include/qapi/qmp/qdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qdict.h -------------------------------------------------------------------------------- /include/qapi/qmp/qerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qerror.h -------------------------------------------------------------------------------- /include/qapi/qmp/qfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qfloat.h -------------------------------------------------------------------------------- /include/qapi/qmp/qint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qint.h -------------------------------------------------------------------------------- /include/qapi/qmp/qjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qjson.h -------------------------------------------------------------------------------- /include/qapi/qmp/qlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qlist.h -------------------------------------------------------------------------------- /include/qapi/qmp/qobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qobject.h -------------------------------------------------------------------------------- /include/qapi/qmp/qstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/qstring.h -------------------------------------------------------------------------------- /include/qapi/qmp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/qmp/types.h -------------------------------------------------------------------------------- /include/qapi/string-input-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/string-input-visitor.h -------------------------------------------------------------------------------- /include/qapi/string-output-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/string-output-visitor.h -------------------------------------------------------------------------------- /include/qapi/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/util.h -------------------------------------------------------------------------------- /include/qapi/visitor-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/visitor-impl.h -------------------------------------------------------------------------------- /include/qapi/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qapi/visitor.h -------------------------------------------------------------------------------- /include/qdev-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qdev-core.h -------------------------------------------------------------------------------- /include/qemu-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu-common.h -------------------------------------------------------------------------------- /include/qemu-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu-file.h -------------------------------------------------------------------------------- /include/qemu-options-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu-options-wrapper.h -------------------------------------------------------------------------------- /include/qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu-options.h -------------------------------------------------------------------------------- /include/qemu/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/acl.h -------------------------------------------------------------------------------- /include/qemu/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/aes.h -------------------------------------------------------------------------------- /include/qemu/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/atomic.h -------------------------------------------------------------------------------- /include/qemu/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/bitmap.h -------------------------------------------------------------------------------- /include/qemu/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/bitops.h -------------------------------------------------------------------------------- /include/qemu/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/bswap.h -------------------------------------------------------------------------------- /include/qemu/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/compiler.h -------------------------------------------------------------------------------- /include/qemu/config-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/config-file.h -------------------------------------------------------------------------------- /include/qemu/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/crc32c.h -------------------------------------------------------------------------------- /include/qemu/envlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/envlist.h -------------------------------------------------------------------------------- /include/qemu/error-report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/error-report.h -------------------------------------------------------------------------------- /include/qemu/event_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/event_notifier.h -------------------------------------------------------------------------------- /include/qemu/hbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/hbitmap.h -------------------------------------------------------------------------------- /include/qemu/host-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/host-utils.h -------------------------------------------------------------------------------- /include/qemu/iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/iov.h -------------------------------------------------------------------------------- /include/qemu/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/log.h -------------------------------------------------------------------------------- /include/qemu/main-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/main-loop.h -------------------------------------------------------------------------------- /include/qemu/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/module.h -------------------------------------------------------------------------------- /include/qemu/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/notify.h -------------------------------------------------------------------------------- /include/qemu/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/option.h -------------------------------------------------------------------------------- /include/qemu/option_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/option_int.h -------------------------------------------------------------------------------- /include/qemu/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/osdep.h -------------------------------------------------------------------------------- /include/qemu/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/queue.h -------------------------------------------------------------------------------- /include/qemu/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/range.h -------------------------------------------------------------------------------- /include/qemu/ratelimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/ratelimit.h -------------------------------------------------------------------------------- /include/qemu/readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/readline.h -------------------------------------------------------------------------------- /include/qemu/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/sockets.h -------------------------------------------------------------------------------- /include/qemu/thread-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/thread-posix.h -------------------------------------------------------------------------------- /include/qemu/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/thread.h -------------------------------------------------------------------------------- /include/qemu/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/timer.h -------------------------------------------------------------------------------- /include/qemu/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/tls.h -------------------------------------------------------------------------------- /include/qemu/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/typedefs.h -------------------------------------------------------------------------------- /include/qemu/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/uri.h -------------------------------------------------------------------------------- /include/qemu/veertu-aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qemu/veertu-aio.h -------------------------------------------------------------------------------- /include/qmp-commands-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qmp-commands-old.h -------------------------------------------------------------------------------- /include/qmp-commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qmp-commands.h -------------------------------------------------------------------------------- /include/qom/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qom/cpu.h -------------------------------------------------------------------------------- /include/qsysbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/qsysbus.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/scsi/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/scsi/esp.h -------------------------------------------------------------------------------- /include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/scsi/scsi.h -------------------------------------------------------------------------------- /include/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/sd.h -------------------------------------------------------------------------------- /include/smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/smbus.h -------------------------------------------------------------------------------- /include/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/snapshot.h -------------------------------------------------------------------------------- /include/spapr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/spapr.h -------------------------------------------------------------------------------- /include/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/spinlock.h -------------------------------------------------------------------------------- /include/ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ssi.h -------------------------------------------------------------------------------- /include/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/stream.h -------------------------------------------------------------------------------- /include/sysemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/sysemu.h -------------------------------------------------------------------------------- /include/thread-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/thread-pool.h -------------------------------------------------------------------------------- /include/typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/typeinfo.h -------------------------------------------------------------------------------- /include/uhci-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/uhci-regs.h -------------------------------------------------------------------------------- /include/ui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ui/console.h -------------------------------------------------------------------------------- /include/ui/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ui/input.h -------------------------------------------------------------------------------- /include/ui/pixel_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/ui/pixel_ops.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/veertu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/veertu.h -------------------------------------------------------------------------------- /include/veertuemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/veertuemu.h -------------------------------------------------------------------------------- /include/vmstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/include/vmstate.h -------------------------------------------------------------------------------- /libusb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/AUTHORS -------------------------------------------------------------------------------- /libusb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/COPYING -------------------------------------------------------------------------------- /libusb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/ChangeLog -------------------------------------------------------------------------------- /libusb/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/INSTALL -------------------------------------------------------------------------------- /libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Makefile.am -------------------------------------------------------------------------------- /libusb/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Makefile.in -------------------------------------------------------------------------------- /libusb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/NEWS -------------------------------------------------------------------------------- /libusb/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/PORTING -------------------------------------------------------------------------------- /libusb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/README -------------------------------------------------------------------------------- /libusb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/TODO -------------------------------------------------------------------------------- /libusb/Xcode/common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/common.xcconfig -------------------------------------------------------------------------------- /libusb/Xcode/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/config.h -------------------------------------------------------------------------------- /libusb/Xcode/debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/debug.xcconfig -------------------------------------------------------------------------------- /libusb/Xcode/libusb.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/libusb.xcconfig -------------------------------------------------------------------------------- /libusb/Xcode/libusb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/libusb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libusb/Xcode/libusb_debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/libusb_debug.xcconfig -------------------------------------------------------------------------------- /libusb/Xcode/libusb_release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/libusb_release.xcconfig -------------------------------------------------------------------------------- /libusb/Xcode/release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/Xcode/release.xcconfig -------------------------------------------------------------------------------- /libusb/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/aclocal.m4 -------------------------------------------------------------------------------- /libusb/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/README -------------------------------------------------------------------------------- /libusb/android/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/config.h -------------------------------------------------------------------------------- /libusb/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/jni/Android.mk -------------------------------------------------------------------------------- /libusb/android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/jni/Application.mk -------------------------------------------------------------------------------- /libusb/android/jni/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/jni/examples.mk -------------------------------------------------------------------------------- /libusb/android/jni/libusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/jni/libusb.mk -------------------------------------------------------------------------------- /libusb/android/jni/tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/android/jni/tests.mk -------------------------------------------------------------------------------- /libusb/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/compile -------------------------------------------------------------------------------- /libusb/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/config.guess -------------------------------------------------------------------------------- /libusb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/config.h.in -------------------------------------------------------------------------------- /libusb/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/config.sub -------------------------------------------------------------------------------- /libusb/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/configure -------------------------------------------------------------------------------- /libusb/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/configure.ac -------------------------------------------------------------------------------- /libusb/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/depcomp -------------------------------------------------------------------------------- /libusb/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/doc/Makefile.am -------------------------------------------------------------------------------- /libusb/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/doc/Makefile.in -------------------------------------------------------------------------------- /libusb/doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /libusb/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/Makefile.am -------------------------------------------------------------------------------- /libusb/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/Makefile.in -------------------------------------------------------------------------------- /libusb/examples/dpfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/dpfp.c -------------------------------------------------------------------------------- /libusb/examples/dpfp_threaded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/dpfp_threaded.c -------------------------------------------------------------------------------- /libusb/examples/ezusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/ezusb.c -------------------------------------------------------------------------------- /libusb/examples/ezusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/ezusb.h -------------------------------------------------------------------------------- /libusb/examples/fxload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/fxload.c -------------------------------------------------------------------------------- /libusb/examples/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/getopt/getopt.c -------------------------------------------------------------------------------- /libusb/examples/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/getopt/getopt.h -------------------------------------------------------------------------------- /libusb/examples/getopt/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/getopt/getopt1.c -------------------------------------------------------------------------------- /libusb/examples/hotplugtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/hotplugtest.c -------------------------------------------------------------------------------- /libusb/examples/listdevs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/listdevs.c -------------------------------------------------------------------------------- /libusb/examples/sam3u_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/sam3u_benchmark.c -------------------------------------------------------------------------------- /libusb/examples/xusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/examples/xusb.c -------------------------------------------------------------------------------- /libusb/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/install-sh -------------------------------------------------------------------------------- /libusb/libusb-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb-1.0.pc.in -------------------------------------------------------------------------------- /libusb/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/Makefile.am -------------------------------------------------------------------------------- /libusb/libusb/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/Makefile.in -------------------------------------------------------------------------------- /libusb/libusb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/core.c -------------------------------------------------------------------------------- /libusb/libusb/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/descriptor.c -------------------------------------------------------------------------------- /libusb/libusb/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/hotplug.c -------------------------------------------------------------------------------- /libusb/libusb/hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/hotplug.h -------------------------------------------------------------------------------- /libusb/libusb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/io.c -------------------------------------------------------------------------------- /libusb/libusb/libusb-1.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/libusb-1.0.def -------------------------------------------------------------------------------- /libusb/libusb/libusb-1.0.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/libusb-1.0.rc -------------------------------------------------------------------------------- /libusb/libusb/libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/libusb.h -------------------------------------------------------------------------------- /libusb/libusb/libusbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/libusbi.h -------------------------------------------------------------------------------- /libusb/libusb/os/IOKitLibPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/IOKitLibPrivate.h -------------------------------------------------------------------------------- /libusb/libusb/os/darwin_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/darwin_usb.c -------------------------------------------------------------------------------- /libusb/libusb/os/darwin_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/darwin_usb.h -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/Makefile.am -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/Makefile.in -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/aclocal.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/compile -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/config.guess -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/config.sub -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/configure -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/configure.ac -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/depcomp -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/haiku_pollfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/haiku_pollfs.cpp -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/haiku_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/haiku_usb.h -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/haiku_usb_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/haiku_usb_backend.cpp -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/haiku_usb_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/haiku_usb_raw.cpp -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/haiku_usb_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/haiku_usb_raw.h -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/install-sh -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/ltmain.sh -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/m4/libtool.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/m4/ltoptions.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/m4/ltsugar.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/m4/ltversion.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /libusb/libusb/os/haiku/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/haiku/missing -------------------------------------------------------------------------------- /libusb/libusb/os/linux_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/linux_netlink.c -------------------------------------------------------------------------------- /libusb/libusb/os/linux_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/linux_udev.c -------------------------------------------------------------------------------- /libusb/libusb/os/linux_usbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/linux_usbfs.c -------------------------------------------------------------------------------- /libusb/libusb/os/linux_usbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/linux_usbfs.h -------------------------------------------------------------------------------- /libusb/libusb/os/netbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/netbsd_usb.c -------------------------------------------------------------------------------- /libusb/libusb/os/openbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/openbsd_usb.c -------------------------------------------------------------------------------- /libusb/libusb/os/poll_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/poll_posix.c -------------------------------------------------------------------------------- /libusb/libusb/os/poll_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/poll_posix.h -------------------------------------------------------------------------------- /libusb/libusb/os/poll_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/poll_windows.c -------------------------------------------------------------------------------- /libusb/libusb/os/poll_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/poll_windows.h -------------------------------------------------------------------------------- /libusb/libusb/os/threads_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/threads_posix.c -------------------------------------------------------------------------------- /libusb/libusb/os/threads_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/threads_posix.h -------------------------------------------------------------------------------- /libusb/libusb/os/threads_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/threads_windows.c -------------------------------------------------------------------------------- /libusb/libusb/os/threads_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/threads_windows.h -------------------------------------------------------------------------------- /libusb/libusb/os/wince_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/wince_usb.c -------------------------------------------------------------------------------- /libusb/libusb/os/wince_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/wince_usb.h -------------------------------------------------------------------------------- /libusb/libusb/os/windows_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/windows_common.h -------------------------------------------------------------------------------- /libusb/libusb/os/windows_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/windows_usb.c -------------------------------------------------------------------------------- /libusb/libusb/os/windows_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/os/windows_usb.h -------------------------------------------------------------------------------- /libusb/libusb/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/strerror.c -------------------------------------------------------------------------------- /libusb/libusb/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/sync.c -------------------------------------------------------------------------------- /libusb/libusb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/libusb/version.h -------------------------------------------------------------------------------- /libusb/libusb/version_nano.h: -------------------------------------------------------------------------------- 1 | #define LIBUSB_NANO 11004 2 | -------------------------------------------------------------------------------- /libusb/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/ltmain.sh -------------------------------------------------------------------------------- /libusb/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/m4/libtool.m4 -------------------------------------------------------------------------------- /libusb/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/m4/ltoptions.m4 -------------------------------------------------------------------------------- /libusb/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/m4/ltsugar.m4 -------------------------------------------------------------------------------- /libusb/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/m4/ltversion.m4 -------------------------------------------------------------------------------- /libusb/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /libusb/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/missing -------------------------------------------------------------------------------- /libusb/msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/config.h -------------------------------------------------------------------------------- /libusb/msvc/ddk_build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/ddk_build.cmd -------------------------------------------------------------------------------- /libusb/msvc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/errno.h -------------------------------------------------------------------------------- /libusb/msvc/fxload_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/fxload_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/fxload_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/fxload_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/fxload_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/fxload_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/fxload_sources -------------------------------------------------------------------------------- /libusb/msvc/getopt_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/getopt_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/getopt_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/getopt_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/getopt_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/getopt_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/getopt_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/getopt_sources -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/hotplugtest_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/hotplugtest_sources -------------------------------------------------------------------------------- /libusb/msvc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/inttypes.h -------------------------------------------------------------------------------- /libusb/msvc/libusb.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb.dsw -------------------------------------------------------------------------------- /libusb/msvc/libusb_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_2005.sln -------------------------------------------------------------------------------- /libusb/msvc/libusb_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_2010.sln -------------------------------------------------------------------------------- /libusb/msvc/libusb_2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_2012.sln -------------------------------------------------------------------------------- /libusb/msvc/libusb_2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_2013.sln -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll.dsp -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_dll_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_dll_wince.vcproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_sources -------------------------------------------------------------------------------- /libusb/msvc/libusb_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static.dsp -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_static_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_static_wince.vcproj -------------------------------------------------------------------------------- /libusb/msvc/libusb_wince.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/libusb_wince.sln -------------------------------------------------------------------------------- /libusb/msvc/listdevs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs.dsp -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/listdevs_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/listdevs_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_sources -------------------------------------------------------------------------------- /libusb/msvc/listdevs_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/listdevs_wince.vcproj -------------------------------------------------------------------------------- /libusb/msvc/missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/missing.c -------------------------------------------------------------------------------- /libusb/msvc/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/missing.h -------------------------------------------------------------------------------- /libusb/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stdint.h -------------------------------------------------------------------------------- /libusb/msvc/stress_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/stress_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/stress_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/stress_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/stress_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/stress_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/stress_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/stress_wince.vcproj -------------------------------------------------------------------------------- /libusb/msvc/xusb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb.dsp -------------------------------------------------------------------------------- /libusb/msvc/xusb_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2005.vcproj -------------------------------------------------------------------------------- /libusb/msvc/xusb_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2010.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/xusb_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2010.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/xusb_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2012.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/xusb_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2012.vcxproj.filters -------------------------------------------------------------------------------- /libusb/msvc/xusb_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_2013.vcxproj -------------------------------------------------------------------------------- /libusb/msvc/xusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_sources -------------------------------------------------------------------------------- /libusb/msvc/xusb_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/msvc/xusb_wince.vcproj -------------------------------------------------------------------------------- /libusb/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/tests/Makefile.am -------------------------------------------------------------------------------- /libusb/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/tests/Makefile.in -------------------------------------------------------------------------------- /libusb/tests/libusb_testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/tests/libusb_testlib.h -------------------------------------------------------------------------------- /libusb/tests/stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/tests/stress.c -------------------------------------------------------------------------------- /libusb/tests/testlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/libusb/tests/testlib.c -------------------------------------------------------------------------------- /power_events.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/power_events.m -------------------------------------------------------------------------------- /qemu-options.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/qemu-options.def -------------------------------------------------------------------------------- /qemu-options.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/qemu-options.hx -------------------------------------------------------------------------------- /qmp-marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/qmp-marshal.c -------------------------------------------------------------------------------- /slirp/arp_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/arp_table.c -------------------------------------------------------------------------------- /slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/bootp.c -------------------------------------------------------------------------------- /slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/bootp.h -------------------------------------------------------------------------------- /slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/cksum.c -------------------------------------------------------------------------------- /slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/debug.h -------------------------------------------------------------------------------- /slirp/dnssearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/dnssearch.c -------------------------------------------------------------------------------- /slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/if.c -------------------------------------------------------------------------------- /slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/if.h -------------------------------------------------------------------------------- /slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/ip.h -------------------------------------------------------------------------------- /slirp/ip_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/ip_icmp.c -------------------------------------------------------------------------------- /slirp/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/ip_icmp.h -------------------------------------------------------------------------------- /slirp/ip_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/ip_input.c -------------------------------------------------------------------------------- /slirp/ip_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/ip_output.c -------------------------------------------------------------------------------- /slirp/libslirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/libslirp.h -------------------------------------------------------------------------------- /slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/main.h -------------------------------------------------------------------------------- /slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/mbuf.c -------------------------------------------------------------------------------- /slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/mbuf.h -------------------------------------------------------------------------------- /slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/misc.c -------------------------------------------------------------------------------- /slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/misc.h -------------------------------------------------------------------------------- /slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/sbuf.c -------------------------------------------------------------------------------- /slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/sbuf.h -------------------------------------------------------------------------------- /slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/slirp.c -------------------------------------------------------------------------------- /slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/slirp.h -------------------------------------------------------------------------------- /slirp/slirp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/slirp_config.h -------------------------------------------------------------------------------- /slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/socket.c -------------------------------------------------------------------------------- /slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/socket.h -------------------------------------------------------------------------------- /slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp.h -------------------------------------------------------------------------------- /slirp/tcp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_input.c -------------------------------------------------------------------------------- /slirp/tcp_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_output.c -------------------------------------------------------------------------------- /slirp/tcp_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_subr.c -------------------------------------------------------------------------------- /slirp/tcp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_timer.c -------------------------------------------------------------------------------- /slirp/tcp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_timer.h -------------------------------------------------------------------------------- /slirp/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcp_var.h -------------------------------------------------------------------------------- /slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tcpip.h -------------------------------------------------------------------------------- /slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tftp.c -------------------------------------------------------------------------------- /slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/tftp.h -------------------------------------------------------------------------------- /slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/udp.c -------------------------------------------------------------------------------- /slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/slirp/udp.h -------------------------------------------------------------------------------- /stubs/arch-query-cpu-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/arch-query-cpu-def.c -------------------------------------------------------------------------------- /stubs/bdrv-commit-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/bdrv-commit-all.c -------------------------------------------------------------------------------- /stubs/chr-baum-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/chr-baum-init.c -------------------------------------------------------------------------------- /stubs/chr-msmouse.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/clock-warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/clock-warp.c -------------------------------------------------------------------------------- /stubs/cpu-get-clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/cpu-get-clock.c -------------------------------------------------------------------------------- /stubs/cpu-get-icount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/cpu-get-icount.c -------------------------------------------------------------------------------- /stubs/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/cpus.c -------------------------------------------------------------------------------- /stubs/fdset-add-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/fdset-add-fd.c -------------------------------------------------------------------------------- /stubs/fdset-find-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/fdset-find-fd.c -------------------------------------------------------------------------------- /stubs/fdset-get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/fdset-get-fd.c -------------------------------------------------------------------------------- /stubs/get-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/get-fd.c -------------------------------------------------------------------------------- /stubs/get-next-serial.c: -------------------------------------------------------------------------------- 1 | #include "qemu-common.h" 2 | 3 | CharDriverState *serial_hds[0]; 4 | -------------------------------------------------------------------------------- /stubs/get-vm-name.c: -------------------------------------------------------------------------------- 1 | #include "qemu-common.h" 2 | 3 | const char *vmx_get_vm_name(void) 4 | { 5 | return NULL; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /stubs/iothread-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/iothread-lock.c -------------------------------------------------------------------------------- /stubs/is-daemonized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/is-daemonized.c -------------------------------------------------------------------------------- /stubs/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/kvm.c -------------------------------------------------------------------------------- /stubs/machine-init-done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/machine-init-done.c -------------------------------------------------------------------------------- /stubs/migr-blocker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/migr-blocker.c -------------------------------------------------------------------------------- /stubs/mon-is-qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/mon-is-qmp.c -------------------------------------------------------------------------------- /stubs/mon-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/mon-printf.c -------------------------------------------------------------------------------- /stubs/mon-set-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/mon-set-error.c -------------------------------------------------------------------------------- /stubs/monitor-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/monitor-init.c -------------------------------------------------------------------------------- /stubs/notify-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/notify-event.c -------------------------------------------------------------------------------- /stubs/pci-drive-hot-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/pci-drive-hot-add.c -------------------------------------------------------------------------------- /stubs/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/reset.c -------------------------------------------------------------------------------- /stubs/runstate-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/runstate-check.c -------------------------------------------------------------------------------- /stubs/set-fd-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/set-fd-handler.c -------------------------------------------------------------------------------- /stubs/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/slirp.c -------------------------------------------------------------------------------- /stubs/sysbus.c: -------------------------------------------------------------------------------- 1 | #include "qdev-core.h" 2 | 3 | BusState *sysbus_get_default(void) 4 | { 5 | return NULL; 6 | } 7 | -------------------------------------------------------------------------------- /stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/uuid.c -------------------------------------------------------------------------------- /stubs/vc-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/vc-init.c -------------------------------------------------------------------------------- /stubs/vm-stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/vm-stop.c -------------------------------------------------------------------------------- /stubs/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/stubs/vmstate.c -------------------------------------------------------------------------------- /util/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/accel.c -------------------------------------------------------------------------------- /util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/acl.c -------------------------------------------------------------------------------- /util/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/aes.c -------------------------------------------------------------------------------- /util/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/arch_init.c -------------------------------------------------------------------------------- /util/bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/bootdevice.c -------------------------------------------------------------------------------- /util/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/checksum.c -------------------------------------------------------------------------------- /util/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/clients.h -------------------------------------------------------------------------------- /util/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cpu-exec.c -------------------------------------------------------------------------------- /util/cpu-qom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cpu-qom.h -------------------------------------------------------------------------------- /util/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cpu.c -------------------------------------------------------------------------------- /util/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cpu.h -------------------------------------------------------------------------------- /util/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cpus.c -------------------------------------------------------------------------------- /util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/crc32c.c -------------------------------------------------------------------------------- /util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/cutils.c -------------------------------------------------------------------------------- /util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/error.c -------------------------------------------------------------------------------- /util/event_notifier-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/event_notifier-posix.c -------------------------------------------------------------------------------- /util/excp_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/excp_helper.c -------------------------------------------------------------------------------- /util/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/exec.c -------------------------------------------------------------------------------- /util/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/helper.c -------------------------------------------------------------------------------- /util/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/hub.c -------------------------------------------------------------------------------- /util/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/hub.h -------------------------------------------------------------------------------- /util/hw_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/hw_init.c -------------------------------------------------------------------------------- /util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/id.c -------------------------------------------------------------------------------- /util/io_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/io_helpers.c -------------------------------------------------------------------------------- /util/io_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/io_helpers.h -------------------------------------------------------------------------------- /util/iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/iohandler.c -------------------------------------------------------------------------------- /util/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/ioport.c -------------------------------------------------------------------------------- /util/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/machine.c -------------------------------------------------------------------------------- /util/main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/main-loop.c -------------------------------------------------------------------------------- /util/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/mapping.c -------------------------------------------------------------------------------- /util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/module.c -------------------------------------------------------------------------------- /util/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/monitor.c -------------------------------------------------------------------------------- /util/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/net.c -------------------------------------------------------------------------------- /util/opts-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/opts-visitor.c -------------------------------------------------------------------------------- /util/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/os-posix.c -------------------------------------------------------------------------------- /util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/osdep.c -------------------------------------------------------------------------------- /util/oslib-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/oslib-posix.c -------------------------------------------------------------------------------- /util/qapi-dealloc-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-dealloc-visitor.c -------------------------------------------------------------------------------- /util/qapi-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-event.c -------------------------------------------------------------------------------- /util/qapi-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-event.h -------------------------------------------------------------------------------- /util/qapi-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-types.c -------------------------------------------------------------------------------- /util/qapi-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-types.h -------------------------------------------------------------------------------- /util/qapi-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-util.c -------------------------------------------------------------------------------- /util/qapi-visit-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-visit-core.c -------------------------------------------------------------------------------- /util/qapi-visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-visit.c -------------------------------------------------------------------------------- /util/qapi-visit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qapi-visit.h -------------------------------------------------------------------------------- /util/qbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qbool.c -------------------------------------------------------------------------------- /util/qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qdev-monitor.c -------------------------------------------------------------------------------- /util/qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qdict.c -------------------------------------------------------------------------------- /util/qemu-file-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qemu-file-internal.h -------------------------------------------------------------------------------- /util/qemu-openpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qemu-openpty.c -------------------------------------------------------------------------------- /util/qemu-progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qemu-progress.c -------------------------------------------------------------------------------- /util/qemu-thread-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qemu-thread-posix.c -------------------------------------------------------------------------------- /util/qemu-timer-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qemu-timer-common.c -------------------------------------------------------------------------------- /util/qerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qerror.c -------------------------------------------------------------------------------- /util/qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qfloat.c -------------------------------------------------------------------------------- /util/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qint.c -------------------------------------------------------------------------------- /util/qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qlist.c -------------------------------------------------------------------------------- /util/qmp-commands-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-commands-old.h -------------------------------------------------------------------------------- /util/qmp-commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-commands.h -------------------------------------------------------------------------------- /util/qmp-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-dispatch.c -------------------------------------------------------------------------------- /util/qmp-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-event.c -------------------------------------------------------------------------------- /util/qmp-input-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-input-visitor.c -------------------------------------------------------------------------------- /util/qmp-output-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-output-visitor.c -------------------------------------------------------------------------------- /util/qmp-registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qmp-registry.c -------------------------------------------------------------------------------- /util/qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/qstring.c -------------------------------------------------------------------------------- /util/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/queue.c -------------------------------------------------------------------------------- /util/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/readline.c -------------------------------------------------------------------------------- /util/rfifolock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/rfifolock.c -------------------------------------------------------------------------------- /util/savevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/savevm.c -------------------------------------------------------------------------------- /util/seg_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/seg_helper.c -------------------------------------------------------------------------------- /util/sglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/sglist.c -------------------------------------------------------------------------------- /util/sglist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/sglist.h -------------------------------------------------------------------------------- /util/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/slirp.c -------------------------------------------------------------------------------- /util/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/socket.c -------------------------------------------------------------------------------- /util/socket_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/socket_helper.c -------------------------------------------------------------------------------- /util/string-input-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/string-input-visitor.c -------------------------------------------------------------------------------- /util/string-output-visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/string-output-visitor.c -------------------------------------------------------------------------------- /util/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/tap-bsd.c -------------------------------------------------------------------------------- /util/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/tap.c -------------------------------------------------------------------------------- /util/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/tap_int.h -------------------------------------------------------------------------------- /util/thread-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/thread-pool.c -------------------------------------------------------------------------------- /util/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/topology.h -------------------------------------------------------------------------------- /util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/uri.c -------------------------------------------------------------------------------- /util/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/util.c -------------------------------------------------------------------------------- /util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/util.h -------------------------------------------------------------------------------- /util/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vl.c -------------------------------------------------------------------------------- /util/vmstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmstate.c -------------------------------------------------------------------------------- /util/vmx-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-char.c -------------------------------------------------------------------------------- /util/vmx-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-config.c -------------------------------------------------------------------------------- /util/vmx-file-buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-file-buf.c -------------------------------------------------------------------------------- /util/vmx-file-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-file-stdio.c -------------------------------------------------------------------------------- /util/vmx-file-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-file-unix.c -------------------------------------------------------------------------------- /util/vmx-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-file.c -------------------------------------------------------------------------------- /util/vmx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-log.c -------------------------------------------------------------------------------- /util/vmx-option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-option.c -------------------------------------------------------------------------------- /util/vmx-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vmx-timer.c -------------------------------------------------------------------------------- /util/vnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vnet.c -------------------------------------------------------------------------------- /util/vnet_fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vnet_fwd.c -------------------------------------------------------------------------------- /util/vnet_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/util/vnet_fwd.h -------------------------------------------------------------------------------- /vda/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vda/Info.plist -------------------------------------------------------------------------------- /vda/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vda/Localizable.strings -------------------------------------------------------------------------------- /vda/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vda/main.m -------------------------------------------------------------------------------- /vda/vmx.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vda/vmx.entitlements -------------------------------------------------------------------------------- /vlaunch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/CMakeLists.txt -------------------------------------------------------------------------------- /vlaunch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/Info.plist -------------------------------------------------------------------------------- /vlaunch/Launchd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/Launchd.plist -------------------------------------------------------------------------------- /vlaunch/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/log.cpp -------------------------------------------------------------------------------- /vlaunch/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/log.h -------------------------------------------------------------------------------- /vlaunch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/main.cpp -------------------------------------------------------------------------------- /vlaunch/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/test/CMakeLists.txt -------------------------------------------------------------------------------- /vlaunch/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/test/test.cpp -------------------------------------------------------------------------------- /vlaunch/test/test_vlaunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/test/test_vlaunch.cpp -------------------------------------------------------------------------------- /vlaunch/test/test_vmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/test/test_vmsg.cpp -------------------------------------------------------------------------------- /vlaunch/test/test_vobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/test/test_vobj.cpp -------------------------------------------------------------------------------- /vlaunch/vlaunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vlaunch.cpp -------------------------------------------------------------------------------- /vlaunch/vlaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vlaunch.h -------------------------------------------------------------------------------- /vlaunch/vlaunch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vlaunch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /vlaunch/vlaunch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vlaunch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /vlaunch/vmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vmsg.cpp -------------------------------------------------------------------------------- /vlaunch/vmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vmsg.h -------------------------------------------------------------------------------- /vlaunch/vobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vobj.cpp -------------------------------------------------------------------------------- /vlaunch/vobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vobj.h -------------------------------------------------------------------------------- /vlaunch/vsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vsystem.cpp -------------------------------------------------------------------------------- /vlaunch/vsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vlaunch/vsystem.h -------------------------------------------------------------------------------- /vmm/hyperv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/hyperv.c -------------------------------------------------------------------------------- /vmm/hyperv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/hyperv.h -------------------------------------------------------------------------------- /vmm/known_hypervisor_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/known_hypervisor_interface.h -------------------------------------------------------------------------------- /vmm/veertu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/veertu.c -------------------------------------------------------------------------------- /vmm/veertu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/veertu.h -------------------------------------------------------------------------------- /vmm/veertu_vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/veertu_vmx.h -------------------------------------------------------------------------------- /vmm/vmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/vmcs.h -------------------------------------------------------------------------------- /vmm/vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/vmx.h -------------------------------------------------------------------------------- /vmm/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86.c -------------------------------------------------------------------------------- /vmm/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86.h -------------------------------------------------------------------------------- /vmm/x86_cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_cpuid.c -------------------------------------------------------------------------------- /vmm/x86_cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_cpuid.h -------------------------------------------------------------------------------- /vmm/x86_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_decode.c -------------------------------------------------------------------------------- /vmm/x86_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_decode.h -------------------------------------------------------------------------------- /vmm/x86_descr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_descr.c -------------------------------------------------------------------------------- /vmm/x86_descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_descr.h -------------------------------------------------------------------------------- /vmm/x86_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_emu.c -------------------------------------------------------------------------------- /vmm/x86_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_emu.h -------------------------------------------------------------------------------- /vmm/x86_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_flags.c -------------------------------------------------------------------------------- /vmm/x86_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_flags.h -------------------------------------------------------------------------------- /vmm/x86_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_gen.h -------------------------------------------------------------------------------- /vmm/x86_mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_mmu.c -------------------------------------------------------------------------------- /vmm/x86_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_mmu.h -------------------------------------------------------------------------------- /vmm/x86_paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86_paging.h -------------------------------------------------------------------------------- /vmm/x86veertu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmm/x86veertu.c -------------------------------------------------------------------------------- /vmmanager/HWAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWAudio.h -------------------------------------------------------------------------------- /vmmanager/HWAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWAudio.m -------------------------------------------------------------------------------- /vmmanager/HWCdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWCdrom.h -------------------------------------------------------------------------------- /vmmanager/HWCdrom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWCdrom.m -------------------------------------------------------------------------------- /vmmanager/HWCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWCpu.h -------------------------------------------------------------------------------- /vmmanager/HWCpu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWCpu.m -------------------------------------------------------------------------------- /vmmanager/HWDiskController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWDiskController.h -------------------------------------------------------------------------------- /vmmanager/HWDiskController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWDiskController.m -------------------------------------------------------------------------------- /vmmanager/HWHd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWHd.h -------------------------------------------------------------------------------- /vmmanager/HWHd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWHd.m -------------------------------------------------------------------------------- /vmmanager/HWItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWItem.h -------------------------------------------------------------------------------- /vmmanager/HWItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWItem.m -------------------------------------------------------------------------------- /vmmanager/HWNic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWNic.h -------------------------------------------------------------------------------- /vmmanager/HWNic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWNic.m -------------------------------------------------------------------------------- /vmmanager/HWUhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWUhc.h -------------------------------------------------------------------------------- /vmmanager/HWUhc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWUhc.m -------------------------------------------------------------------------------- /vmmanager/HWUsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWUsb.h -------------------------------------------------------------------------------- /vmmanager/HWUsb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/HWUsb.m -------------------------------------------------------------------------------- /vmmanager/NetworkInterfaceMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/NetworkInterfaceMonitor.h -------------------------------------------------------------------------------- /vmmanager/NetworkInterfaceMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/NetworkInterfaceMonitor.m -------------------------------------------------------------------------------- /vmmanager/POD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/POD.h -------------------------------------------------------------------------------- /vmmanager/POD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/POD.m -------------------------------------------------------------------------------- /vmmanager/ScopedValueObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/ScopedValueObserver.h -------------------------------------------------------------------------------- /vmmanager/ScopedValueObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/ScopedValueObserver.m -------------------------------------------------------------------------------- /vmmanager/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/SystemInfo.h -------------------------------------------------------------------------------- /vmmanager/SystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/SystemInfo.m -------------------------------------------------------------------------------- /vmmanager/USBDeviceMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/USBDeviceMonitor.h -------------------------------------------------------------------------------- /vmmanager/USBDeviceMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/USBDeviceMonitor.m -------------------------------------------------------------------------------- /vmmanager/VM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VM.h -------------------------------------------------------------------------------- /vmmanager/VM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VM.m -------------------------------------------------------------------------------- /vmmanager/VMAdvanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMAdvanced.h -------------------------------------------------------------------------------- /vmmanager/VMAdvanced.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMAdvanced.m -------------------------------------------------------------------------------- /vmmanager/VMGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMGeneral.h -------------------------------------------------------------------------------- /vmmanager/VMGeneral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMGeneral.m -------------------------------------------------------------------------------- /vmmanager/VMGuestTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMGuestTools.h -------------------------------------------------------------------------------- /vmmanager/VMGuestTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMGuestTools.m -------------------------------------------------------------------------------- /vmmanager/VMHw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMHw.h -------------------------------------------------------------------------------- /vmmanager/VMHw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMHw.m -------------------------------------------------------------------------------- /vmmanager/VMImportExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMImportExport.h -------------------------------------------------------------------------------- /vmmanager/VMImportExport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMImportExport.m -------------------------------------------------------------------------------- /vmmanager/VMLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMLibrary.h -------------------------------------------------------------------------------- /vmmanager/VMLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMLibrary.m -------------------------------------------------------------------------------- /vmmanager/VMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/VMManager.h -------------------------------------------------------------------------------- /vmmanager/img_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/img_ops.c -------------------------------------------------------------------------------- /vmmanager/img_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/img_ops.h -------------------------------------------------------------------------------- /vmmanager/log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/log.m -------------------------------------------------------------------------------- /vmmanager/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/utils.c -------------------------------------------------------------------------------- /vmmanager/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/utils.h -------------------------------------------------------------------------------- /vmmanager/vmlibrary_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/vmlibrary_ops.h -------------------------------------------------------------------------------- /vmmanager/vmlibrary_ops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmmanager/vmlibrary_ops.m -------------------------------------------------------------------------------- /vmx.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmx.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /vmx.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmx.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /vmx.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmx.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /vmx.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmx.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /vmx.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/vmx.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /window/VmApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmApp.h -------------------------------------------------------------------------------- /window/VmApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmApp.m -------------------------------------------------------------------------------- /window/VmView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmView.h -------------------------------------------------------------------------------- /window/VmView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmView.m -------------------------------------------------------------------------------- /window/VmxClipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmxClipView.h -------------------------------------------------------------------------------- /window/VmxClipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/VmxClipView.m -------------------------------------------------------------------------------- /window/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/cocoa.m -------------------------------------------------------------------------------- /window/cocoa_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/cocoa_util.h -------------------------------------------------------------------------------- /window/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/console.c -------------------------------------------------------------------------------- /window/curses_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/curses_keys.h -------------------------------------------------------------------------------- /window/cursor_hidden.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/cursor_hidden.xpm -------------------------------------------------------------------------------- /window/cursor_left_ptr.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/cursor_left_ptr.xpm -------------------------------------------------------------------------------- /window/input-keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/input-keymap.c -------------------------------------------------------------------------------- /window/input-legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/input-legacy.c -------------------------------------------------------------------------------- /window/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/input.c -------------------------------------------------------------------------------- /window/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/keymaps.c -------------------------------------------------------------------------------- /window/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/keymaps.h -------------------------------------------------------------------------------- /window/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/vgafont.h -------------------------------------------------------------------------------- /window/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tithomas1/vdhh/HEAD/window/x_keymap.h --------------------------------------------------------------------------------