├── .cirrus.upload.sh ├── .cirrus.yml ├── .github └── workflows │ └── build.yml ├── CREDITS.md ├── GPLv3.txt ├── LICENSE.txt ├── README.md ├── extras ├── README.md ├── Shaders │ ├── 2xBR-2pass.shader │ │ ├── 2xbr-lv1-c-pass0.fs │ │ ├── 2xbr-lv1-c-pass0.vs │ │ ├── 2xbr-lv1-pass1.fs │ │ ├── 2xbr-lv1-pass1.vs │ │ └── manifest.bml │ ├── 2xBR-Halation-Scanlines.shader │ │ ├── 2xbr-lv1-c-pass0.fs │ │ ├── 2xbr-lv1-c-pass0.vs │ │ ├── 2xbr-lv1-pass1.fs │ │ ├── 2xbr-lv1-pass1.vs │ │ ├── combine.fs │ │ ├── gaussian-horiz.fs │ │ ├── gaussian-vert.fs │ │ ├── manifest.bml │ │ └── scanline.fs │ ├── AANN.shader │ │ ├── AANN.fs │ │ └── manifest.bml │ ├── Advanced-AA.shader │ │ ├── advanced-aa.fs │ │ ├── advanced-aa.vs │ │ └── manifest.bml │ ├── Beam4.shader │ │ ├── beam4-p0.fs │ │ ├── beam4-p1.fs │ │ ├── beam4-p2.fs │ │ ├── curvature.fs │ │ └── manifest.bml │ ├── Bicubic-sharp.shader │ │ ├── bicubic-sharp.fs │ │ └── manifest.bml │ ├── Bicubic.shader │ │ ├── bicubic.fs │ │ └── manifest.bml │ ├── CRT-Aperture.shader │ │ ├── aperture.fs │ │ └── manifest.bml │ ├── CRT-Caligari.shader │ │ ├── crt-caligari.fs │ │ └── manifest.bml │ ├── CRT-Geom-Halation.shader │ │ ├── combine.fs │ │ ├── crt-geom.fs │ │ ├── crt-geom.vs │ │ ├── gaussian-horiz.fs │ │ ├── gaussian-vert.fs │ │ └── manifest.bml │ ├── CRT-Geom.shader │ │ ├── crt-geom.fs │ │ ├── crt-geom.vs │ │ ├── curvature.fs │ │ └── manifest.bml │ ├── CRT-Glow.shader │ │ ├── blur_horiz.fs │ │ ├── blur_horiz.vs │ │ ├── blur_vert.fs │ │ ├── blur_vert.vs │ │ ├── gauss_horiz.fs │ │ ├── gauss_horiz.vs │ │ ├── gauss_vert.fs │ │ ├── gauss_vert.vs │ │ ├── lanczos_horiz.fs │ │ ├── lanczos_horiz.vs │ │ ├── linearize.fs │ │ ├── linearize.vs │ │ ├── manifest.bml │ │ ├── resolve.fs │ │ ├── resolve.vs │ │ ├── threshold.fs │ │ └── threshold.vs │ ├── CRT-Lottes-Multipass.shader │ │ ├── bloompass.fs │ │ ├── bloompass.vs │ │ ├── manifest.bml │ │ ├── scanpass.fs │ │ └── scanpass.vs │ ├── CRT-Lottes.shader │ │ ├── manifest.bml │ │ └── shadertoy.fs │ ├── CRT-Lottes2.shader │ │ ├── lottes.fs │ │ ├── lottes.vs │ │ └── manifest.bml │ ├── CRT-Royale-Kurozumi.shader │ │ ├── bloom-approx.fs │ │ ├── bloom-approx.vs │ │ ├── bloom-horizontal-reconstitute.fs │ │ ├── bloom-horizontal-reconstitute.vs │ │ ├── bloom-vertical.fs │ │ ├── bloom-vertical.vs │ │ ├── blur9fast-horizontal.fs │ │ ├── blur9fast-horizontal.vs │ │ ├── blur9fast-vertical.fs │ │ ├── blur9fast-vertical.vs │ │ ├── brightpass.fs │ │ ├── brightpass.vs │ │ ├── first-pass-linearize-crt-gamma-bob-fields.fs │ │ ├── first-pass-linearize-crt-gamma-bob-fields.vs │ │ ├── geometry-aa-last-pass.fs │ │ ├── geometry-aa-last-pass.vs │ │ ├── manifest.bml │ │ ├── mask-resize-horizontal.fs │ │ ├── mask-resize-horizontal.vs │ │ ├── mask-resize-vertical.fs │ │ ├── mask-resize-vertical.vs │ │ ├── scanlines-horizontal-apply-mask.fs │ │ ├── scanlines-horizontal-apply-mask.vs │ │ ├── scanlines-vertical-interlacing.fs │ │ ├── scanlines-vertical-interlacing.vs │ │ └── textures │ │ │ ├── TileableLinearApertureGrille15Wide8And5d5Spacing.png │ │ │ ├── TileableLinearApertureGrille15Wide8And5d5SpacingResizeTo64.png │ │ │ ├── TileableLinearShadowMask.png │ │ │ ├── TileableLinearShadowMaskEDP.png │ │ │ ├── TileableLinearShadowMaskEDPResizeTo64.png │ │ │ ├── TileableLinearShadowMaskResizeTo64.png │ │ │ ├── TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacing.png │ │ │ └── TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacingResizeTo64.png │ ├── CRT-Royale.shader │ │ ├── bloom-approx.fs │ │ ├── bloom-approx.vs │ │ ├── bloom-horizontal-reconstitute.fs │ │ ├── bloom-horizontal-reconstitute.vs │ │ ├── bloom-vertical.fs │ │ ├── bloom-vertical.vs │ │ ├── blur9fast-horizontal.fs │ │ ├── blur9fast-horizontal.vs │ │ ├── blur9fast-vertical.fs │ │ ├── blur9fast-vertical.vs │ │ ├── brightpass.fs │ │ ├── brightpass.vs │ │ ├── first-pass-linearize-crt-gamma-bob-fields.fs │ │ ├── first-pass-linearize-crt-gamma-bob-fields.vs │ │ ├── geometry-aa-last-pass.fs │ │ ├── geometry-aa-last-pass.vs │ │ ├── manifest.bml │ │ ├── mask-resize-horizontal.fs │ │ ├── mask-resize-horizontal.vs │ │ ├── mask-resize-vertical.fs │ │ ├── mask-resize-vertical.vs │ │ ├── scanlines-horizontal-apply-mask.fs │ │ ├── scanlines-horizontal-apply-mask.vs │ │ ├── scanlines-vertical-interlacing.fs │ │ ├── scanlines-vertical-interlacing.vs │ │ └── textures │ │ │ ├── TileableLinearApertureGrille15Wide8And5d5Spacing.png │ │ │ ├── TileableLinearApertureGrille15Wide8And5d5SpacingResizeTo64.png │ │ │ ├── TileableLinearShadowMask.png │ │ │ ├── TileableLinearShadowMaskEDP.png │ │ │ ├── TileableLinearShadowMaskEDPResizeTo64.png │ │ │ ├── TileableLinearShadowMaskResizeTo64.png │ │ │ ├── TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacing.png │ │ │ └── TileableLinearSlotMaskTall15Wide9And4d5Horizontal9d14VerticalSpacingResizeTo64.png │ ├── CRT-Simple.shader │ │ ├── crt-simple.fs │ │ ├── crt-simple.vs │ │ └── manifest.bml │ ├── Cocktail.shader │ │ ├── cocktail.fs │ │ ├── cocktail.vs │ │ └── manifest.bml │ ├── Display Emulation │ │ ├── fallbacks │ │ │ ├── famicom.shader │ │ │ │ ├── famicom.fs │ │ │ │ └── manifest.bml │ │ │ ├── game boy advance.shader │ │ │ │ ├── game-boy-advance.fs │ │ │ │ └── manifest.bml │ │ │ ├── game boy.shader │ │ │ │ ├── game-boy.fs │ │ │ │ └── manifest.bml │ │ │ └── super famicom.shader │ │ │ │ ├── manifest.bml │ │ │ │ └── super-famicom.fs │ │ ├── famicom.shader │ │ │ ├── DAC.fs │ │ │ ├── DAC.vs │ │ │ ├── NesTable.png │ │ │ ├── combFilter.fs │ │ │ ├── combFilter.vs │ │ │ ├── lowPass.fs │ │ │ ├── manifest.bml │ │ │ ├── scaleX.fs │ │ │ ├── scaleX.vs │ │ │ ├── scaleY.fs │ │ │ └── scaleY.vs │ │ ├── famicom_cgwg.shader │ │ │ ├── 3line-comb-decode.fs │ │ │ ├── adaptive-comb-decode.fs │ │ │ ├── basic-decode.fs │ │ │ ├── composite-encode.fs │ │ │ ├── crt-geom.fs │ │ │ ├── crt-geom.vs │ │ │ ├── lowpass-chroma.fs │ │ │ ├── lowpass-decode.fs │ │ │ ├── lowpass-notch-decode-yiq.fs │ │ │ ├── lowpass-notch-decode.fs │ │ │ └── manifest.bml │ │ ├── game boy advance.shader │ │ │ ├── game-boy-advance.fs │ │ │ └── manifest.bml │ │ ├── game boy color.shader │ │ │ ├── lcd-grid.fs │ │ │ ├── manifest.bml │ │ │ └── motion-blur.fs │ │ ├── game boy.shader │ │ │ ├── manifest.bml │ │ │ ├── pass1.fs │ │ │ ├── pass2.fs │ │ │ ├── pass2.vs │ │ │ ├── pass3.fs │ │ │ └── pass3.vs │ │ ├── game-boy-color.shader │ │ │ ├── game-boy-color.fs │ │ │ └── manifest.bml │ │ └── super famicom.shader │ │ │ ├── GTU-pass1.fs │ │ │ ├── GTU-pass2.fs │ │ │ ├── GTU-pass2.vs │ │ │ ├── GTU-pass3.fs │ │ │ ├── GTU-pass3.vs │ │ │ ├── GTU-pass4.fs │ │ │ ├── GTU-pass4.vs │ │ │ └── manifest.bml │ ├── Dot.shader │ │ ├── dots.fs │ │ ├── dots.vs │ │ └── manifest.bml │ ├── GTU.shader │ │ ├── GTU-pass1.fs │ │ ├── GTU-pass2.fs │ │ ├── GTU-pass2.vs │ │ ├── GTU-pass3.fs │ │ ├── GTU-pass4.fs │ │ ├── GTU-pass4.vs │ │ └── manifest.bml │ ├── Gameboy.shader │ │ ├── manifest.bml │ │ ├── pass1.fs │ │ ├── pass2.fs │ │ ├── pass2.vs │ │ ├── pass3.fs │ │ └── pass3.vs │ ├── Gaussian Scanlines.shader │ │ ├── gaussian-scanlines.fs │ │ └── manifest.bml │ ├── GritsScanlines.shader │ │ ├── Fake-Self-Illumination.png │ │ ├── GritsScanlines.fs │ │ ├── Scanline-LUT-4px.png │ │ ├── Trinitron D50 Absolute Colorimetric - LUT.png │ │ └── manifest.bml │ ├── Interlacing.shader │ │ ├── interlace.fs │ │ └── manifest.bml │ ├── LCD-cgwg.shader │ │ ├── lcd-grid.fs │ │ ├── manifest.bml │ │ └── motion-blur.fs │ ├── LICENSE │ ├── NTSC-MAME.shader │ │ ├── mame-ntsc.fs │ │ ├── mame-ntsc.vs │ │ ├── mame-postproc.fs │ │ ├── mame-postproc.vs │ │ └── manifest.bml │ ├── NTSC.shader │ │ ├── gaussian-scanlines.fs │ │ ├── manifest.bml │ │ ├── ntsc-pass1.fs │ │ └── ntsc-pass2.fs │ ├── PAL-r57shell.shader │ │ ├── manifest.bml │ │ └── pal-r57shell.fs │ ├── Phosphor-21x.shader │ │ ├── manifest.bml │ │ └── phosphor-21x.fs │ ├── PhosphorLUT-v2.2.shader │ │ ├── gamma.fs │ │ ├── gaussian-horiz.fs │ │ ├── manifest.bml │ │ ├── miniLUT.png │ │ └── shadow-mask.fs │ ├── Phosphorish.shader │ │ ├── manifest.bml │ │ └── phosphorish.fs │ ├── Pixellate.shader │ │ ├── manifest.bml │ │ └── pixellate.fs │ ├── Quilez.shader │ │ ├── manifest.bml │ │ └── quilez.fs │ ├── README.md │ ├── Retro.shader │ │ ├── gamma.fs │ │ ├── manifest.bml │ │ └── retro.fs │ ├── ScaleFX-Smooth.shader │ │ ├── manifest.bml │ │ ├── scalefx-pass0.fs │ │ ├── scalefx-pass0.vs │ │ ├── scalefx-pass1.fs │ │ ├── scalefx-pass1.vs │ │ ├── scalefx-pass2.fs │ │ ├── scalefx-pass2.vs │ │ ├── scalefx-pass3.fs │ │ └── scalefx-pass3.vs │ ├── ScaleFX.shader │ │ ├── manifest.bml │ │ ├── scalefx-pass0.fs │ │ ├── scalefx-pass0.vs │ │ ├── scalefx-pass1.fs │ │ ├── scalefx-pass1.vs │ │ ├── scalefx-pass2.fs │ │ ├── scalefx-pass2.vs │ │ ├── scalefx-pass3.fs │ │ ├── scalefx-pass3.vs │ │ ├── scalefx-pass4.fs │ │ └── scalefx-pass4.vs │ ├── Sharp-Bilinear.shader │ │ ├── manifest.bml │ │ └── sharp-bilinear.fs │ ├── Stock.shader │ │ ├── manifest.bml │ │ ├── stock.fs │ │ └── stock.vs │ ├── Super-2xBR-3D.shader │ │ ├── custom-jinc2-sharper.fs │ │ ├── manifest.bml │ │ ├── super-2xbr-3d-pass0.fs │ │ ├── super-2xbr-3d-pass1.fs │ │ ├── super-2xbr-3d-pass2.fs │ │ └── super-2xbr-3d-pass2.vs │ ├── Super-4xBR-3D.shader │ │ ├── custom-jinc2-sharper.fs │ │ ├── manifest.bml │ │ ├── super-4xbr-3d-pass0.fs │ │ ├── super-4xbr-3d-pass1.fs │ │ ├── super-4xbr-3d-pass1f.fs │ │ ├── super-4xbr-3d-pass1f.vs │ │ ├── super-4xbr-3d-pass2.fs │ │ ├── super-4xbr-3d-pass3.fs │ │ ├── super-4xbr-3d-pass3f.fs │ │ └── super-4xbr-3d-pass3f.vs │ ├── Super-8xBR-3D-6p.shader │ │ ├── manifest.bml │ │ ├── super-8xbr-3d-pass0.fs │ │ ├── super-8xbr-3d-pass1.fs │ │ ├── super-8xbr-3d-pass2.fs │ │ ├── super-8xbr-3d-pass3.fs │ │ ├── super-8xbr-3d-pass4.fs │ │ └── super-8xbr-3d-pass5.fs │ ├── Super-multires-xBR-3D.shader │ │ ├── custom-jinc2-sharper.fs │ │ ├── manifest.bml │ │ ├── super-multi-xbr-3d-pass0.fs │ │ ├── super-multi-xbr-3d-pass0.vs │ │ ├── super-multi-xbr-3d-pass1.fs │ │ ├── super-multi-xbr-3d-pass1.vs │ │ ├── super-multi-xbr-3d-pass2.fs │ │ ├── super-multi-xbr-3d-pass2.vs │ │ ├── super-multi-xbr-3d-pass3.fs │ │ └── super-multi-xbr-3d-pass3.vs │ ├── Yee64.shader │ │ ├── manifest.bml │ │ └── yee64.fs │ ├── lanczos16.shader │ │ ├── lanczos16.fs │ │ ├── lanczos16.vs │ │ └── manifest.bml │ ├── mdapt-4p.shader │ │ ├── manifest.bml │ │ ├── mdapt-pass1.fs │ │ ├── mdapt-pass2.fs │ │ ├── mdapt-pass3.fs │ │ └── mdapt-pass4.fs │ ├── old-obsolete │ │ ├── Border.shader │ │ │ ├── border.png │ │ │ ├── integer-scale.vs │ │ │ ├── manifest.bml │ │ │ └── mix.fs │ │ ├── CMYK-Halftone.shader │ │ │ ├── cmyk-dot.fs │ │ │ ├── gamma.fs │ │ │ └── manifest.bml │ │ ├── GameBoy.shader │ │ │ ├── background.png │ │ │ ├── gb-pass-0.fs │ │ │ ├── gb-pass-0.vs │ │ │ ├── gb-pass-1.fs │ │ │ ├── gb-pass-1.vs │ │ │ ├── gb-pass-2.fs │ │ │ ├── gb-pass-2.vs │ │ │ ├── gb-pass-3.fs │ │ │ ├── gb-pass-3.vs │ │ │ ├── gb-pass-4.fs │ │ │ ├── manifest.bml │ │ │ └── palette.png │ │ ├── GameBoy_ghosting.shader │ │ │ ├── background.png │ │ │ ├── gb-pass-0.fs │ │ │ ├── gb-pass-0.vs │ │ │ ├── gb-pass-1.fs │ │ │ ├── gb-pass-1.vs │ │ │ ├── gb-pass-2.fs │ │ │ ├── gb-pass-2.vs │ │ │ ├── gb-pass-3.fs │ │ │ ├── gb-pass-3.vs │ │ │ ├── gb-pass-4.fs │ │ │ ├── manifest.bml │ │ │ └── palette.png │ │ ├── Hires-blend.shader │ │ │ ├── hires-blend.fs │ │ │ └── manifest.bml │ │ ├── Image Adjustment.shader │ │ │ ├── gamma.fs │ │ │ └── manifest.bml │ │ ├── Integer Scale.shader │ │ │ ├── integer-scale.vs │ │ │ └── manifest.bml │ │ ├── Integrated-Television.shader │ │ │ ├── black-and-white.fs │ │ │ ├── cgwg-scanlines-interlaced.fs │ │ │ ├── cgwg-scanlines.fs │ │ │ ├── corner.fs │ │ │ ├── curvature.fs │ │ │ ├── dot-mask.fs │ │ │ ├── gaussian-scanlines.fs │ │ │ ├── manifest.bml │ │ │ ├── ntsc-pass1.fs │ │ │ └── ntsc-pass2.fs │ │ ├── Motion Blur Exponential Decay.shader │ │ │ ├── manifest.bml │ │ │ └── motion-blur-exponential-decay.fs │ │ ├── RGB-Triad.shader │ │ │ ├── caligari.fs │ │ │ └── manifest.bml │ │ ├── cgwg-CRT-deconstructed.shader │ │ │ ├── cgwg-scanlines-interlaced.fs │ │ │ ├── corner.fs │ │ │ ├── curvature.fs │ │ │ ├── dot-mask.fs │ │ │ └── manifest.bml │ │ ├── xBR-mlv4-Multipass.shader │ │ │ ├── manifest.bml │ │ │ ├── xbr-mlv4-multipass-0.fs │ │ │ ├── xbr-mlv4-multipass-0.vs │ │ │ ├── xbr-mlv4-multipass-1.fs │ │ │ ├── xbr-mlv4-multipass-1.vs │ │ │ ├── xbr-mlv4-multipass-2.fs │ │ │ ├── xbr-mlv4-multipass-2.vs │ │ │ ├── xbr-mlv4-multipass-3.fs │ │ │ └── xbr-mlv4-multipass-3.vs │ │ ├── xbr-mlv4.shader │ │ │ ├── manifest.bml │ │ │ ├── xbr-mlv4-pass1.fs │ │ │ ├── xbr-mlv4-pass2.fs │ │ │ ├── xbr-mlv4-pass3.fs │ │ │ └── xbr-mlv4-pass4.fs │ │ ├── xbr.mdapt.hiresBlend.shader │ │ │ ├── manifest.bml │ │ │ ├── mdapt-pass1.fs │ │ │ ├── mdapt-pass2.fs │ │ │ ├── mdapt-pass3.fs │ │ │ ├── mdapt-pass4.fs │ │ │ ├── xbr-mlv4-pass1.fs │ │ │ ├── xbr-mlv4-pass2.fs │ │ │ ├── xbr-mlv4-pass3.fs │ │ │ └── xbr-mlv4-pass4.fs │ │ └── xbr.mdapt.hiresSplit.shader │ │ │ ├── blend.fs │ │ │ ├── extract1.vs │ │ │ ├── extract2.fs │ │ │ ├── extract2.vs │ │ │ ├── manifest.bml │ │ │ ├── mdapt-pass1.fs │ │ │ ├── mdapt-pass2.fs │ │ │ ├── mdapt-pass3.fs │ │ │ ├── mdapt-pass4.fs │ │ │ ├── xbr-mlv4-pass1.fs │ │ │ ├── xbr-mlv4-pass2.fs │ │ │ ├── xbr-mlv4-pass3.fs │ │ │ └── xbr-mlv4-pass4.fs │ ├── testing │ │ └── PhosphorLUT.shader │ │ │ ├── combine.fs │ │ │ ├── gaussian-horiz.fs │ │ │ ├── gaussian-vert.fs │ │ │ ├── manifest.bml │ │ │ ├── scanline.fs │ │ │ ├── shadow-mask.fs │ │ │ ├── shadow-mask.vs │ │ │ └── vert-test.png │ └── xBRZ-Freescale.shader │ │ ├── manifest.bml │ │ ├── xBRZ-Freescale-p0.fs │ │ └── xBRZ-Freescale-p1.fs └── paths.bml ├── higan-ui ├── GNUmakefile ├── emulator │ ├── audio.cpp │ ├── emulator.cpp │ ├── emulator.hpp │ ├── input.cpp │ ├── platform.cpp │ ├── states.cpp │ ├── status.cpp │ ├── utility.cpp │ └── video.cpp ├── higan-ui.cpp ├── higan-ui.hpp ├── input │ ├── hotkeys.cpp │ ├── hotkeys.hpp │ ├── input.cpp │ └── input.hpp ├── menus │ ├── action.cpp │ ├── help.cpp │ ├── menus.cpp │ ├── menus.hpp │ ├── settings.cpp │ ├── system.cpp │ └── tools.cpp ├── obj │ └── .gitignore ├── out │ └── .gitignore ├── panel-items │ ├── audio.cpp │ ├── audio.hpp │ ├── home.cpp │ ├── home.hpp │ ├── hotkeys.cpp │ ├── hotkeys.hpp │ ├── input-mapper.cpp │ ├── input-mapper.hpp │ ├── input.cpp │ ├── input.hpp │ ├── peripheral-overview.cpp │ ├── peripheral-overview.hpp │ ├── port-connector.cpp │ ├── port-connector.hpp │ ├── setting-editor.cpp │ ├── setting-editor.hpp │ ├── system-creation.cpp │ ├── system-creation.hpp │ ├── system-overview.cpp │ ├── system-overview.hpp │ ├── video.cpp │ └── video.hpp ├── panel-lists │ ├── event-manager.cpp │ ├── event-manager.hpp │ ├── node-manager.cpp │ ├── node-manager.hpp │ ├── port-manager.cpp │ ├── port-manager.hpp │ ├── settings-manager.cpp │ ├── settings-manager.hpp │ ├── system-manager.cpp │ └── system-manager.hpp ├── program │ ├── program.cpp │ └── program.hpp ├── resource │ ├── GNUmakefile │ ├── higan.Manifest │ ├── higan.desktop │ ├── higan.ico │ ├── higan.plist │ ├── higan.png │ ├── higan.rc │ ├── resource.bml │ ├── resource.cpp │ └── resource.hpp └── settings │ ├── settings.cpp │ └── settings.hpp ├── higan ├── GNUmakefile ├── System │ ├── .gitignore │ ├── ColecoVision │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── Famicom │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── Game Boy Advance │ │ └── .gitignore │ ├── Game Boy Color │ │ ├── boot.cgb-0.rom │ │ └── boot.cgb-1.rom │ ├── Game Boy Player │ │ └── .gitignore │ ├── Game Boy │ │ ├── boot.dmg-0.rom │ │ ├── boot.dmg-1.rom │ │ └── boot.mgb.rom │ ├── Game Gear │ │ └── .gitignore │ ├── MSX │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ │ └── .gitignore │ │ ├── Keyboard │ │ │ ├── .gitignore │ │ │ └── Japanese │ │ │ │ └── layout.bml │ │ └── bios.rom │ ├── MSX2 │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ │ └── .gitignore │ │ ├── Keyboard │ │ │ ├── .gitignore │ │ │ └── Japanese │ │ │ │ └── layout.bml │ │ ├── bios.rom │ │ └── sub.rom │ ├── Master System │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── Mega Drive │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── Control Pad │ │ │ │ └── .gitignore │ │ │ └── Fighting Pad │ │ │ │ └── .gitignore │ │ └── tmss.rom │ ├── Neo Geo Pocket Color │ │ └── .gitignore │ ├── Neo Geo Pocket │ │ └── .gitignore │ ├── Nintendo 64 │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ │ └── .gitignore │ │ ├── pif.ntsc.rom │ │ ├── pif.pal.rom │ │ └── pif.rom │ ├── PC Engine Duo │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ ├── Avenue Pad 6 │ │ │ └── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── PC Engine │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ ├── Avenue Pad 6 │ │ │ └── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── PlayStation │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── Pocket Challenge V2 │ │ └── boot.rom │ ├── SC-3000 │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── SG-1000 │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── Super Famicom │ │ ├── Controller │ │ │ ├── .gitignore │ │ │ ├── Gamepad │ │ │ │ └── .gitignore │ │ │ ├── Justifier │ │ │ │ └── .gitignore │ │ │ ├── Justifiers │ │ │ │ └── .gitignore │ │ │ ├── Mouse │ │ │ │ └── .gitignore │ │ │ ├── NTT Data Keypad │ │ │ │ └── .gitignore │ │ │ ├── Super Multitap │ │ │ │ └── .gitignore │ │ │ ├── Super Scope │ │ │ │ └── .gitignore │ │ │ └── Twin Tap │ │ │ │ └── .gitignore │ │ ├── Expansion │ │ │ ├── .gitignore │ │ │ ├── 21fx │ │ │ │ └── .gitignore │ │ │ └── Satellaview │ │ │ │ └── .gitignore │ │ ├── boards.bml │ │ └── ipl.rom │ ├── SuperGrafx │ │ ├── .gitignore │ │ └── Controller │ │ │ ├── .gitignore │ │ │ └── Gamepad │ │ │ └── .gitignore │ ├── SwanCrystal │ │ └── boot.rom │ ├── WonderSwan Color │ │ └── boot.rom │ └── WonderSwan │ │ └── boot.rom ├── component │ ├── GNUmakefile │ ├── audio │ │ ├── .gitignore │ │ ├── ay38910 │ │ │ ├── ay38910.cpp │ │ │ ├── ay38910.hpp │ │ │ └── serialization.cpp │ │ ├── msm5205 │ │ │ ├── msm5205.cpp │ │ │ ├── msm5205.hpp │ │ │ └── serialization.cpp │ │ ├── sn76489 │ │ │ ├── serialization.cpp │ │ │ ├── sn76489.cpp │ │ │ └── sn76489.hpp │ │ ├── t6w28 │ │ │ ├── serialization.cpp │ │ │ ├── t6w28.cpp │ │ │ └── t6w28.hpp │ │ ├── ym2149 │ │ │ ├── serialization.cpp │ │ │ ├── ym2149.cpp │ │ │ └── ym2149.hpp │ │ └── ym2413 │ │ │ ├── constants.cpp │ │ │ ├── io.cpp │ │ │ ├── operator.cpp │ │ │ ├── serialization.cpp │ │ │ ├── voice.cpp │ │ │ ├── ym2413.cpp │ │ │ └── ym2413.hpp │ ├── eeprom │ │ ├── .gitignore │ │ ├── m93lcx6 │ │ │ ├── m93lcx6.cpp │ │ │ ├── m93lcx6.hpp │ │ │ └── serialization.cpp │ │ └── x24c01 │ │ │ ├── serialization.cpp │ │ │ ├── x24c01.cpp │ │ │ └── x24c01.hpp │ ├── processor │ │ ├── .gitignore │ │ ├── arm7tdmi │ │ │ ├── algorithms.cpp │ │ │ ├── arm7tdmi.cpp │ │ │ ├── arm7tdmi.hpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions-arm.cpp │ │ │ ├── instructions-thumb.cpp │ │ │ ├── memory.cpp │ │ │ ├── registers.cpp │ │ │ └── serialization.cpp │ │ ├── gsu │ │ │ ├── disassembler.cpp │ │ │ ├── gsu.cpp │ │ │ ├── gsu.hpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── registers.hpp │ │ │ └── serialization.cpp │ │ ├── hg51b │ │ │ ├── disassembler.cpp │ │ │ ├── hg51b.cpp │ │ │ ├── hg51b.hpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── registers.cpp │ │ │ └── serialization.cpp │ │ ├── huc6280 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── huc6280.cpp │ │ │ ├── huc6280.hpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ └── serialization.cpp │ │ ├── m68k │ │ │ ├── algorithms.cpp │ │ │ ├── conditions.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── effective-address.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── m68k.cpp │ │ │ ├── m68k.hpp │ │ │ ├── memory.cpp │ │ │ ├── registers.cpp │ │ │ ├── serialization.cpp │ │ │ └── traits.cpp │ │ ├── mos6502 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── mos6502.cpp │ │ │ ├── mos6502.hpp │ │ │ └── serialization.cpp │ │ ├── sm83 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── registers.hpp │ │ │ ├── serialization.cpp │ │ │ ├── sm83.cpp │ │ │ └── sm83.hpp │ │ ├── spc700 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ ├── spc700.cpp │ │ │ └── spc700.hpp │ │ ├── tlcs900h │ │ │ ├── algorithms.cpp │ │ │ ├── conditions.cpp │ │ │ ├── control-registers.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── dma.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── prefetch.cpp │ │ │ ├── registers.cpp │ │ │ ├── serialization.cpp │ │ │ ├── tlcs900h.cpp │ │ │ └── tlcs900h.hpp │ │ ├── upd96050 │ │ │ ├── disassembler.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ ├── upd96050.cpp │ │ │ └── upd96050.hpp │ │ ├── v30mz │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions-adjust.cpp │ │ │ ├── instructions-alu.cpp │ │ │ ├── instructions-exec.cpp │ │ │ ├── instructions-flag.cpp │ │ │ ├── instructions-group.cpp │ │ │ ├── instructions-misc.cpp │ │ │ ├── instructions-move.cpp │ │ │ ├── instructions-string.cpp │ │ │ ├── memory.cpp │ │ │ ├── modrm.cpp │ │ │ ├── registers.cpp │ │ │ ├── serialization.cpp │ │ │ ├── v30mz.cpp │ │ │ └── v30mz.hpp │ │ ├── wdc65816 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instruction.hpp │ │ │ ├── instructions-modify.cpp │ │ │ ├── instructions-other.cpp │ │ │ ├── instructions-pc.cpp │ │ │ ├── instructions-read.cpp │ │ │ ├── instructions-write.cpp │ │ │ ├── memory.cpp │ │ │ ├── registers.hpp │ │ │ ├── serialization.cpp │ │ │ ├── wdc65816.cpp │ │ │ └── wdc65816.hpp │ │ └── z80 │ │ │ ├── algorithms.cpp │ │ │ ├── disassembler.cpp │ │ │ ├── instruction.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── registers.hpp │ │ │ ├── serialization.cpp │ │ │ ├── z80.cpp │ │ │ └── z80.hpp │ └── video │ │ ├── .gitignore │ │ ├── tms9918 │ │ ├── background.cpp │ │ ├── io.cpp │ │ ├── serialization.cpp │ │ ├── sprites.cpp │ │ ├── tms9918.cpp │ │ └── tms9918.hpp │ │ └── v9938 │ │ ├── commands.cpp │ │ ├── graphic1.cpp │ │ ├── graphic2.cpp │ │ ├── graphic3.cpp │ │ ├── graphic4.cpp │ │ ├── io.cpp │ │ ├── serialization.cpp │ │ ├── sprite1.cpp │ │ ├── sprite2.cpp │ │ ├── v9938.cpp │ │ └── v9938.hpp ├── cv │ ├── GNUmakefile │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ └── serialization.cpp │ ├── cv.hpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vdp │ │ ├── color.cpp │ │ ├── serialization.cpp │ │ ├── vdp.cpp │ │ └── vdp.hpp ├── fc │ ├── GNUmakefile │ ├── apu │ │ ├── apu.cpp │ │ ├── apu.hpp │ │ ├── dmc.cpp │ │ ├── envelope.cpp │ │ ├── noise.cpp │ │ ├── pulse.cpp │ │ ├── serialization.cpp │ │ ├── sweep.cpp │ │ └── triangle.cpp │ ├── cartridge │ │ ├── board │ │ │ ├── bandai-fcg.cpp │ │ │ ├── board.cpp │ │ │ ├── board.hpp │ │ │ ├── hvc-axrom.cpp │ │ │ ├── hvc-bnrom.cpp │ │ │ ├── hvc-cnrom.cpp │ │ │ ├── hvc-exrom.cpp │ │ │ ├── hvc-fmr.cpp │ │ │ ├── hvc-fxrom.cpp │ │ │ ├── hvc-gxrom.cpp │ │ │ ├── hvc-hkrom.cpp │ │ │ ├── hvc-nrom.cpp │ │ │ ├── hvc-pxrom.cpp │ │ │ ├── hvc-sxrom.cpp │ │ │ ├── hvc-txrom.cpp │ │ │ ├── hvc-uxrom.cpp │ │ │ ├── konami-vrc1.cpp │ │ │ ├── konami-vrc2.cpp │ │ │ ├── konami-vrc3.cpp │ │ │ ├── konami-vrc4.cpp │ │ │ ├── konami-vrc5.cpp │ │ │ ├── konami-vrc6.cpp │ │ │ ├── konami-vrc7.cpp │ │ │ └── sunsoft-5b.cpp │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ ├── serialization.cpp │ │ └── timing.cpp │ ├── fc.hpp │ ├── fds │ │ ├── audio.cpp │ │ ├── audio.hpp │ │ ├── drive.cpp │ │ ├── drive.hpp │ │ ├── fds.cpp │ │ ├── fds.hpp │ │ ├── serialization.cpp │ │ ├── timer.cpp │ │ └── timer.hpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── ppu │ │ ├── color.cpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ ├── ppu.cpp │ │ ├── ppu.hpp │ │ ├── render.cpp │ │ └── serialization.cpp │ └── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp ├── gb │ ├── GNUmakefile │ ├── apu │ │ ├── apu.cpp │ │ ├── apu.hpp │ │ ├── io.cpp │ │ ├── noise.cpp │ │ ├── sequencer.cpp │ │ ├── serialization.cpp │ │ ├── square1.cpp │ │ ├── square2.cpp │ │ └── wave.cpp │ ├── bus │ │ ├── bus.cpp │ │ └── bus.hpp │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── huc1 │ │ │ ├── huc1.cpp │ │ │ └── huc1.hpp │ │ ├── huc3 │ │ │ ├── huc3.cpp │ │ │ └── huc3.hpp │ │ ├── io.cpp │ │ ├── mbc0 │ │ │ ├── mbc0.cpp │ │ │ └── mbc0.hpp │ │ ├── mbc1 │ │ │ ├── mbc1.cpp │ │ │ └── mbc1.hpp │ │ ├── mbc1m │ │ │ ├── mbc1m.cpp │ │ │ └── mbc1m.hpp │ │ ├── mbc2 │ │ │ ├── mbc2.cpp │ │ │ └── mbc2.hpp │ │ ├── mbc3 │ │ │ ├── mbc3.cpp │ │ │ └── mbc3.hpp │ │ ├── mbc5 │ │ │ ├── mbc5.cpp │ │ │ └── mbc5.hpp │ │ ├── mbc6 │ │ │ ├── mbc6.cpp │ │ │ └── mbc6.hpp │ │ ├── mbc7 │ │ │ ├── eeprom.cpp │ │ │ ├── mbc7.cpp │ │ │ ├── mbc7.hpp │ │ │ └── serialization.cpp │ │ ├── mmm01 │ │ │ ├── mmm01.cpp │ │ │ └── mmm01.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ ├── slot.hpp │ │ └── tama │ │ │ ├── tama.cpp │ │ │ └── tama.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── memory.cpp │ │ ├── serialization.cpp │ │ └── timing.cpp │ ├── gb.hpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── ppu │ │ ├── cgb.cpp │ │ ├── color.cpp │ │ ├── debugger.cpp │ │ ├── dmg.cpp │ │ ├── io.cpp │ │ ├── ppu.cpp │ │ ├── ppu.hpp │ │ ├── serialization.cpp │ │ └── timing.cpp │ └── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp ├── gba │ ├── GNUmakefile │ ├── apu │ │ ├── apu.cpp │ │ ├── apu.hpp │ │ ├── fifo.cpp │ │ ├── io.cpp │ │ ├── noise.cpp │ │ ├── sequencer.cpp │ │ ├── serialization.cpp │ │ ├── square.cpp │ │ ├── square1.cpp │ │ ├── square2.cpp │ │ └── wave.cpp │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── eeprom.cpp │ │ ├── flash.cpp │ │ ├── memory.hpp │ │ ├── mrom.cpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ ├── slot.hpp │ │ └── sram.cpp │ ├── cpu │ │ ├── bus.cpp │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── dma.cpp │ │ ├── io.cpp │ │ ├── keypad.cpp │ │ ├── memory.cpp │ │ ├── prefetch.cpp │ │ ├── serialization.cpp │ │ └── timer.cpp │ ├── gba.hpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── memory │ │ ├── memory.cpp │ │ └── memory.hpp │ ├── player │ │ ├── player.cpp │ │ ├── player.hpp │ │ └── serialization.cpp │ ├── ppu │ │ ├── background.cpp │ │ ├── color.cpp │ │ ├── dac.cpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── memory.cpp │ │ ├── object.cpp │ │ ├── ppu.cpp │ │ ├── ppu.hpp │ │ ├── serialization.cpp │ │ └── window.cpp │ └── system │ │ ├── bios.cpp │ │ ├── bios.hpp │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp ├── higan │ ├── debug │ │ ├── debug.cpp │ │ └── debug.hpp │ ├── higan.cpp │ ├── higan.hpp │ ├── information.hpp │ ├── inline.hpp │ ├── interface.hpp │ ├── memory │ │ ├── memory.hpp │ │ ├── readable.hpp │ │ └── writable.hpp │ ├── node │ │ ├── attribute.hpp │ │ ├── audio │ │ │ ├── stream.cpp │ │ │ └── stream.hpp │ │ ├── class.hpp │ │ ├── component.hpp │ │ ├── debug │ │ │ ├── graphics.hpp │ │ │ ├── instruction.hpp │ │ │ ├── memory.hpp │ │ │ ├── notification.hpp │ │ │ ├── properties.hpp │ │ │ └── tracer.hpp │ │ ├── input.hpp │ │ ├── node.cpp │ │ ├── node.hpp │ │ ├── object.hpp │ │ ├── peripheral.hpp │ │ ├── port.hpp │ │ ├── real-time-clock.hpp │ │ ├── setting.hpp │ │ ├── system.hpp │ │ └── video │ │ │ ├── screen.cpp │ │ │ ├── screen.hpp │ │ │ ├── sprite.cpp │ │ │ └── sprite.hpp │ ├── platform.hpp │ ├── random.hpp │ ├── resource │ │ ├── GNUmakefile │ │ ├── higan.svg │ │ ├── icon.png │ │ ├── logo.png │ │ ├── resource.bml │ │ ├── resource.cpp │ │ ├── resource.hpp │ │ └── sprite │ │ │ ├── .gitignore │ │ │ ├── sfc │ │ │ ├── crosshair-blue.png │ │ │ ├── crosshair-green.png │ │ │ └── crosshair-red.png │ │ │ └── ws │ │ │ ├── auxiliary-0.png │ │ │ ├── auxiliary-1.png │ │ │ ├── auxiliary-2.png │ │ │ ├── headphones.png │ │ │ ├── initialized.png │ │ │ ├── low-battery.png │ │ │ ├── orientation-0.png │ │ │ ├── orientation-1.png │ │ │ ├── powered-on.png │ │ │ ├── sleeping.png │ │ │ ├── volume-a0.png │ │ │ ├── volume-a1.png │ │ │ ├── volume-a2.png │ │ │ ├── volume-b0.png │ │ │ ├── volume-b1.png │ │ │ ├── volume-b2.png │ │ │ └── volume-b3.png │ ├── scheduler │ │ ├── scheduler.cpp │ │ ├── scheduler.hpp │ │ ├── thread.cpp │ │ └── thread.hpp │ └── types.hpp ├── md │ ├── GNUmakefile │ ├── apu │ │ ├── apu.cpp │ │ ├── apu.hpp │ │ ├── bus.cpp │ │ ├── debugger.cpp │ │ └── serialization.cpp │ ├── cartridge │ │ ├── board │ │ │ ├── banked.cpp │ │ │ ├── board.cpp │ │ │ ├── board.hpp │ │ │ ├── game-genie.cpp │ │ │ ├── linear.cpp │ │ │ └── lock-on.cpp │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── control-pad │ │ │ ├── control-pad.cpp │ │ │ └── control-pad.hpp │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── fighting-pad │ │ │ ├── fighting-pad.cpp │ │ │ └── fighting-pad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── bus.cpp │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ └── serialization.cpp │ ├── expansion │ │ ├── expansion.cpp │ │ ├── expansion.hpp │ │ ├── port.cpp │ │ ├── port.hpp │ │ └── serialization.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── mcd │ │ ├── bus-external.cpp │ │ ├── bus.cpp │ │ ├── cdc-transfer.cpp │ │ ├── cdc.cpp │ │ ├── cdd-dac.cpp │ │ ├── cdd.cpp │ │ ├── debugger.cpp │ │ ├── gpu.cpp │ │ ├── io-external.cpp │ │ ├── io.cpp │ │ ├── irq.cpp │ │ ├── mcd.cpp │ │ ├── mcd.hpp │ │ ├── pcm.cpp │ │ ├── serialization.cpp │ │ └── timer.cpp │ ├── md.hpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ ├── vdp │ │ ├── background.cpp │ │ ├── color.cpp │ │ ├── debugger.cpp │ │ ├── dma.cpp │ │ ├── io.cpp │ │ ├── memory.cpp │ │ ├── render.cpp │ │ ├── serialization.cpp │ │ ├── sprite.cpp │ │ ├── vdp.cpp │ │ └── vdp.hpp │ └── ym2612 │ │ ├── channel.cpp │ │ ├── constants.cpp │ │ ├── io.cpp │ │ ├── serialization.cpp │ │ ├── timer.cpp │ │ ├── ym2612.cpp │ │ └── ym2612.hpp ├── ms │ ├── GNUmakefile │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── mapper.cpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ └── serialization.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── ms.hpp │ ├── opll │ │ ├── opll.cpp │ │ ├── opll.hpp │ │ └── serialization.cpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vdp │ │ ├── background.cpp │ │ ├── color.cpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── serialization.cpp │ │ ├── sprite.cpp │ │ ├── vdp.cpp │ │ └── vdp.hpp ├── msx │ ├── GNUmakefile │ ├── cartridge │ │ ├── board │ │ │ ├── asc16.cpp │ │ │ ├── asc8.cpp │ │ │ ├── board.cpp │ │ │ ├── board.hpp │ │ │ ├── cross-blaim.cpp │ │ │ ├── konami-scc.cpp │ │ │ ├── konami.cpp │ │ │ ├── linear.cpp │ │ │ ├── super-lode-runner.cpp │ │ │ └── super-pierrot.cpp │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ └── serialization.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── keyboard │ │ ├── keyboard.cpp │ │ ├── keyboard.hpp │ │ └── serialization.cpp │ ├── msx.hpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vdp │ │ ├── color.cpp │ │ ├── serialization.cpp │ │ ├── vdp.cpp │ │ └── vdp.hpp ├── ngp │ ├── GNUmakefile │ ├── apu │ │ ├── apu.cpp │ │ ├── apu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ └── serialization.cpp │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── flash.cpp │ │ ├── flash.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── cpu │ │ ├── adc.cpp │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── interrupts.cpp │ │ ├── io.cpp │ │ ├── memory.cpp │ │ ├── ports.cpp │ │ ├── rtc.cpp │ │ ├── serialization.cpp │ │ ├── timers.cpp │ │ └── watchdog.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── ngp.hpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vpu │ │ ├── color.cpp │ │ ├── memory.cpp │ │ ├── plane.cpp │ │ ├── serialization.cpp │ │ ├── sprite.cpp │ │ ├── vpu.cpp │ │ ├── vpu.hpp │ │ └── window.cpp ├── pce │ ├── GNUmakefile │ ├── cartridge │ │ ├── board │ │ │ ├── arcade-card-duo.cpp │ │ │ ├── arcade-card-pro.cpp │ │ │ ├── banked.cpp │ │ │ ├── board.cpp │ │ │ ├── board.hpp │ │ │ ├── debugger.cpp │ │ │ ├── linear.cpp │ │ │ ├── ram.cpp │ │ │ ├── split.cpp │ │ │ ├── super-system-card.cpp │ │ │ └── system-card.cpp │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── avenuepad │ │ │ ├── avenuepad.cpp │ │ │ └── avenuepad.hpp │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── irq.cpp │ │ └── serialization.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── pcd │ │ ├── adpcm.cpp │ │ ├── cdda.cpp │ │ ├── debugger.cpp │ │ ├── drive.cpp │ │ ├── fader.cpp │ │ ├── io.cpp │ │ ├── pcd.cpp │ │ ├── pcd.hpp │ │ ├── scsi.cpp │ │ └── serialization.cpp │ ├── pce.hpp │ ├── psg │ │ ├── channel.cpp │ │ ├── io.cpp │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── system │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vdp │ │ ├── background.cpp │ │ ├── color.cpp │ │ ├── debugger.cpp │ │ ├── dma.cpp │ │ ├── irq.cpp │ │ ├── serialization.cpp │ │ ├── sprite.cpp │ │ ├── vce.cpp │ │ ├── vce.hpp │ │ ├── vdc.cpp │ │ ├── vdc.hpp │ │ ├── vdp.cpp │ │ ├── vdp.hpp │ │ ├── vpc.cpp │ │ └── vpc.hpp ├── sfc │ ├── GNUmakefile │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── load.cpp │ │ ├── save.cpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── justifier │ │ │ ├── justifier.cpp │ │ │ └── justifier.hpp │ │ ├── justifiers │ │ │ ├── justifiers.cpp │ │ │ └── justifiers.hpp │ │ ├── mouse │ │ │ ├── mouse.cpp │ │ │ └── mouse.hpp │ │ ├── ntt-data-keypad │ │ │ ├── ntt-data-keypad.cpp │ │ │ └── ntt-data-keypad.hpp │ │ ├── port.cpp │ │ ├── port.hpp │ │ ├── super-multitap │ │ │ ├── super-multitap.cpp │ │ │ └── super-multitap.hpp │ │ ├── super-scope │ │ │ ├── super-scope.cpp │ │ │ └── super-scope.hpp │ │ └── twin-tap │ │ │ ├── twin-tap.cpp │ │ │ └── twin-tap.hpp │ ├── coprocessor │ │ ├── armdsp │ │ │ ├── armdsp.cpp │ │ │ ├── armdsp.hpp │ │ │ ├── debugger.cpp │ │ │ ├── io.cpp │ │ │ ├── memory.cpp │ │ │ └── serialization.cpp │ │ ├── competition │ │ │ ├── competition.cpp │ │ │ ├── competition.hpp │ │ │ └── serialization.cpp │ │ ├── coprocessor.cpp │ │ ├── coprocessor.hpp │ │ ├── dip │ │ │ ├── dip.cpp │ │ │ ├── dip.hpp │ │ │ └── serialization.cpp │ │ ├── epsonrtc │ │ │ ├── epsonrtc.cpp │ │ │ ├── epsonrtc.hpp │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ └── time.cpp │ │ ├── hitachidsp │ │ │ ├── debugger.cpp │ │ │ ├── hitachidsp.cpp │ │ │ ├── hitachidsp.hpp │ │ │ ├── memory.cpp │ │ │ └── serialization.cpp │ │ ├── icd │ │ │ ├── icd.cpp │ │ │ ├── icd.hpp │ │ │ ├── interface.cpp │ │ │ ├── io.cpp │ │ │ └── serialization.cpp │ │ ├── mcc │ │ │ ├── mcc.cpp │ │ │ ├── mcc.hpp │ │ │ └── serialization.cpp │ │ ├── msu1 │ │ │ ├── msu1.cpp │ │ │ ├── msu1.hpp │ │ │ └── serialization.cpp │ │ ├── necdsp │ │ │ ├── debugger.cpp │ │ │ ├── memory.cpp │ │ │ ├── necdsp.cpp │ │ │ ├── necdsp.hpp │ │ │ └── serialization.cpp │ │ ├── obc1 │ │ │ ├── obc1.cpp │ │ │ ├── obc1.hpp │ │ │ └── serialization.cpp │ │ ├── sa1 │ │ │ ├── bwram.cpp │ │ │ ├── debugger.cpp │ │ │ ├── dma.cpp │ │ │ ├── io.cpp │ │ │ ├── iram.cpp │ │ │ ├── memory.cpp │ │ │ ├── rom.cpp │ │ │ ├── sa1.cpp │ │ │ ├── sa1.hpp │ │ │ └── serialization.cpp │ │ ├── sdd1 │ │ │ ├── decompressor.cpp │ │ │ ├── decompressor.hpp │ │ │ ├── sdd1.cpp │ │ │ ├── sdd1.hpp │ │ │ └── serialization.cpp │ │ ├── sharprtc │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ ├── sharprtc.cpp │ │ │ ├── sharprtc.hpp │ │ │ └── time.cpp │ │ ├── spc7110 │ │ │ ├── alu.cpp │ │ │ ├── data.cpp │ │ │ ├── dcu.cpp │ │ │ ├── decompressor.cpp │ │ │ ├── serialization.cpp │ │ │ ├── spc7110.cpp │ │ │ └── spc7110.hpp │ │ └── superfx │ │ │ ├── bus.cpp │ │ │ ├── core.cpp │ │ │ ├── debugger.cpp │ │ │ ├── io.cpp │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ ├── superfx.cpp │ │ │ ├── superfx.hpp │ │ │ └── timing.cpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── dma.cpp │ │ ├── io.cpp │ │ ├── irq.cpp │ │ ├── memory.cpp │ │ ├── serialization.cpp │ │ └── timing.cpp │ ├── dsp │ │ ├── brr.cpp │ │ ├── counter.cpp │ │ ├── debugger.cpp │ │ ├── dsp.cpp │ │ ├── dsp.hpp │ │ ├── echo.cpp │ │ ├── envelope.cpp │ │ ├── gaussian.cpp │ │ ├── memory.cpp │ │ ├── misc.cpp │ │ ├── serialization.cpp │ │ └── voice.cpp │ ├── expansion │ │ ├── 21fx │ │ │ ├── 21fx.cpp │ │ │ └── 21fx.hpp │ │ ├── expansion.cpp │ │ ├── expansion.hpp │ │ ├── port.cpp │ │ ├── port.hpp │ │ └── satellaview │ │ │ ├── satellaview.cpp │ │ │ └── satellaview.hpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── memory │ │ ├── memory-inline.hpp │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── protectable.hpp │ │ ├── readable.hpp │ │ └── writable.hpp │ ├── ppu │ │ ├── background.cpp │ │ ├── background.hpp │ │ ├── color.cpp │ │ ├── counter │ │ │ ├── counter-inline.hpp │ │ │ ├── counter.hpp │ │ │ └── serialization.cpp │ │ ├── dac.cpp │ │ ├── dac.hpp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── main.cpp │ │ ├── mode7.cpp │ │ ├── mosaic.cpp │ │ ├── mosaic.hpp │ │ ├── oam.cpp │ │ ├── oam.hpp │ │ ├── object.cpp │ │ ├── object.hpp │ │ ├── ppu.cpp │ │ ├── ppu.hpp │ │ ├── serialization.cpp │ │ ├── window.cpp │ │ └── window.hpp │ ├── sfc.hpp │ ├── slot │ │ ├── bsmemory │ │ │ ├── bsmemory.cpp │ │ │ ├── bsmemory.hpp │ │ │ ├── serialization.cpp │ │ │ ├── slot.cpp │ │ │ └── slot.hpp │ │ ├── slot.cpp │ │ ├── slot.hpp │ │ └── sufamiturbo │ │ │ ├── memory.cpp │ │ │ ├── serialization.cpp │ │ │ ├── slot.cpp │ │ │ ├── slot.hpp │ │ │ ├── sufamiturbo.cpp │ │ │ └── sufamiturbo.hpp │ ├── smp │ │ ├── debugger.cpp │ │ ├── io.cpp │ │ ├── memory.cpp │ │ ├── serialization.cpp │ │ ├── smp.cpp │ │ ├── smp.hpp │ │ └── timing.cpp │ └── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp ├── sg │ ├── GNUmakefile │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ ├── slot.cpp │ │ └── slot.hpp │ ├── controller │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── gamepad │ │ │ ├── gamepad.cpp │ │ │ └── gamepad.hpp │ │ ├── port.cpp │ │ └── port.hpp │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger.cpp │ │ ├── memory.cpp │ │ └── serialization.cpp │ ├── interface │ │ ├── interface.cpp │ │ └── interface.hpp │ ├── psg │ │ ├── psg.cpp │ │ ├── psg.hpp │ │ └── serialization.cpp │ ├── sg.hpp │ ├── system │ │ ├── controls.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── vdp │ │ ├── color.cpp │ │ ├── serialization.cpp │ │ ├── vdp.cpp │ │ └── vdp.hpp └── ws │ ├── GNUmakefile │ ├── apu │ ├── apu.cpp │ ├── apu.hpp │ ├── channel1.cpp │ ├── channel2.cpp │ ├── channel3.cpp │ ├── channel4.cpp │ ├── channel5.cpp │ ├── dma.cpp │ ├── io.cpp │ └── serialization.cpp │ ├── cartridge │ ├── cartridge.cpp │ ├── cartridge.hpp │ ├── io.cpp │ ├── memory.cpp │ ├── rtc.cpp │ ├── serialization.cpp │ ├── slot.cpp │ └── slot.hpp │ ├── cpu │ ├── cpu.cpp │ ├── cpu.hpp │ ├── debugger.cpp │ ├── dma.cpp │ ├── interrupt.cpp │ ├── io.cpp │ └── serialization.cpp │ ├── eeprom │ ├── eeprom.cpp │ ├── eeprom.hpp │ └── serialization.cpp │ ├── interface │ ├── interface.cpp │ └── interface.hpp │ ├── memory │ ├── memory.cpp │ └── memory.hpp │ ├── ppu │ ├── color.cpp │ ├── io.cpp │ ├── latch.cpp │ ├── ppu.cpp │ ├── ppu.hpp │ ├── render.cpp │ └── serialization.cpp │ ├── system │ ├── controls.cpp │ ├── io.cpp │ ├── serialization.cpp │ ├── system.cpp │ └── system.hpp │ └── ws.hpp ├── hiro ├── .gitignore ├── GNUmakefile ├── cocoa │ ├── action │ │ ├── action.cpp │ │ ├── action.hpp │ │ ├── menu-check-item.cpp │ │ ├── menu-check-item.hpp │ │ ├── menu-item.cpp │ │ ├── menu-item.hpp │ │ ├── menu-radio-item.cpp │ │ ├── menu-radio-item.hpp │ │ ├── menu-separator.cpp │ │ ├── menu-separator.hpp │ │ ├── menu.cpp │ │ └── menu.hpp │ ├── application.cpp │ ├── application.hpp │ ├── browser-window.cpp │ ├── browser-window.hpp │ ├── desktop.cpp │ ├── desktop.hpp │ ├── font.cpp │ ├── font.hpp │ ├── group.cpp │ ├── group.hpp │ ├── header.hpp │ ├── keyboard.cpp │ ├── keyboard.hpp │ ├── menu-bar.cpp │ ├── menu-bar.hpp │ ├── message-window.cpp │ ├── message-window.hpp │ ├── monitor.cpp │ ├── monitor.hpp │ ├── mouse.cpp │ ├── mouse.hpp │ ├── object.cpp │ ├── object.hpp │ ├── platform.cpp │ ├── platform.hpp │ ├── popup-menu.cpp │ ├── popup-menu.hpp │ ├── sizable.cpp │ ├── sizable.hpp │ ├── status-bar.cpp │ ├── status-bar.hpp │ ├── timer.cpp │ ├── timer.hpp │ ├── utility.cpp │ ├── widget │ │ ├── button.cpp │ │ ├── button.hpp │ │ ├── canvas.cpp │ │ ├── canvas.hpp │ │ ├── check-button.cpp │ │ ├── check-button.hpp │ │ ├── check-label.cpp │ │ ├── check-label.hpp │ │ ├── combo-button-item.cpp │ │ ├── combo-button-item.hpp │ │ ├── combo-button.cpp │ │ ├── combo-button.hpp │ │ ├── console.cpp │ │ ├── console.hpp │ │ ├── frame.cpp │ │ ├── frame.hpp │ │ ├── hex-edit.cpp │ │ ├── hex-edit.hpp │ │ ├── horizontal-scroll-bar.cpp │ │ ├── horizontal-scroll-bar.hpp │ │ ├── horizontal-slider.cpp │ │ ├── horizontal-slider.hpp │ │ ├── label.cpp │ │ ├── label.hpp │ │ ├── line-edit.cpp │ │ ├── line-edit.hpp │ │ ├── progress-bar.cpp │ │ ├── progress-bar.hpp │ │ ├── radio-button.cpp │ │ ├── radio-button.hpp │ │ ├── radio-label.cpp │ │ ├── radio-label.hpp │ │ ├── tab-frame-item.cpp │ │ ├── tab-frame-item.hpp │ │ ├── tab-frame.cpp │ │ ├── tab-frame.hpp │ │ ├── table-view-cell.cpp │ │ ├── table-view-cell.hpp │ │ ├── table-view-column.cpp │ │ ├── table-view-column.hpp │ │ ├── table-view-item.cpp │ │ ├── table-view-item.hpp │ │ ├── table-view.cpp │ │ ├── table-view.hpp │ │ ├── text-edit.cpp │ │ ├── text-edit.hpp │ │ ├── vertical-scroll-bar.cpp │ │ ├── vertical-scroll-bar.hpp │ │ ├── vertical-slider.cpp │ │ ├── vertical-slider.hpp │ │ ├── viewport.cpp │ │ ├── viewport.hpp │ │ ├── widget.cpp │ │ └── widget.hpp │ ├── window.cpp │ └── window.hpp ├── components.hpp ├── core │ ├── action │ │ ├── action.cpp │ │ ├── menu-check-item.cpp │ │ ├── menu-item.cpp │ │ ├── menu-radio-item.cpp │ │ ├── menu-separator.cpp │ │ └── menu.cpp │ ├── alignment.cpp │ ├── application.cpp │ ├── application.hpp │ ├── attribute.cpp │ ├── attribute.hpp │ ├── browser-window.cpp │ ├── color.cpp │ ├── core.cpp │ ├── core.hpp │ ├── desktop.cpp │ ├── desktop.hpp │ ├── font.cpp │ ├── font.hpp │ ├── geometry.cpp │ ├── gradient.cpp │ ├── group.cpp │ ├── group.hpp │ ├── hotkey.cpp │ ├── keyboard.cpp │ ├── lock.hpp │ ├── menu-bar.cpp │ ├── message-window.cpp │ ├── monitor.cpp │ ├── monitor.hpp │ ├── mouse-cursor.cpp │ ├── mouse-cursor.hpp │ ├── mouse.cpp │ ├── object.cpp │ ├── object.hpp │ ├── popup-menu.cpp │ ├── position.cpp │ ├── shared.hpp │ ├── sizable.cpp │ ├── sizable.hpp │ ├── size.cpp │ ├── status-bar.cpp │ ├── text-cursor.cpp │ ├── text-cursor.hpp │ ├── timer.cpp │ ├── timer.hpp │ ├── widget │ │ ├── button.cpp │ │ ├── canvas.cpp │ │ ├── canvas.hpp │ │ ├── check-button.cpp │ │ ├── check-label.cpp │ │ ├── combo-button-item.cpp │ │ ├── combo-button.cpp │ │ ├── combo-edit-item.cpp │ │ ├── combo-edit.cpp │ │ ├── console.cpp │ │ ├── frame.cpp │ │ ├── hex-edit.cpp │ │ ├── horizontal-scroll-bar.cpp │ │ ├── horizontal-slider.cpp │ │ ├── icon-view-item.cpp │ │ ├── icon-view.cpp │ │ ├── label.cpp │ │ ├── label.hpp │ │ ├── line-edit.cpp │ │ ├── progress-bar.cpp │ │ ├── radio-button.cpp │ │ ├── radio-label.cpp │ │ ├── source-edit.cpp │ │ ├── source-edit.hpp │ │ ├── tab-frame-item.cpp │ │ ├── tab-frame-item.hpp │ │ ├── tab-frame.cpp │ │ ├── tab-frame.hpp │ │ ├── table-view-cell.cpp │ │ ├── table-view-cell.hpp │ │ ├── table-view-column.cpp │ │ ├── table-view-column.hpp │ │ ├── table-view-item.cpp │ │ ├── table-view-item.hpp │ │ ├── table-view.cpp │ │ ├── table-view.hpp │ │ ├── text-edit.cpp │ │ ├── text-edit.hpp │ │ ├── tree-view-item.cpp │ │ ├── tree-view-item.hpp │ │ ├── tree-view.cpp │ │ ├── tree-view.hpp │ │ ├── vertical-scroll-bar.cpp │ │ ├── vertical-slider.cpp │ │ ├── viewport.cpp │ │ ├── viewport.hpp │ │ ├── widget.cpp │ │ └── widget.hpp │ ├── window.cpp │ └── window.hpp ├── extension │ ├── about-dialog.cpp │ ├── about-dialog.hpp │ ├── browser-dialog.cpp │ ├── browser-dialog.hpp │ ├── extension.cpp │ ├── extension.hpp │ ├── fixed-layout.cpp │ ├── fixed-layout.hpp │ ├── horizontal-layout.cpp │ ├── horizontal-layout.hpp │ ├── horizontal-resize-grip.cpp │ ├── horizontal-resize-grip.hpp │ ├── list-view.cpp │ ├── list-view.hpp │ ├── message-dialog.cpp │ ├── message-dialog.hpp │ ├── name-dialog.cpp │ ├── name-dialog.hpp │ ├── shared.hpp │ ├── table-layout.cpp │ ├── table-layout.hpp │ ├── vertical-layout.cpp │ ├── vertical-layout.hpp │ ├── vertical-resize-grip.cpp │ └── vertical-resize-grip.hpp ├── gtk │ ├── action │ │ ├── action.cpp │ │ ├── action.hpp │ │ ├── menu-check-item.cpp │ │ ├── menu-check-item.hpp │ │ ├── menu-item.cpp │ │ ├── menu-item.hpp │ │ ├── menu-radio-item.cpp │ │ ├── menu-radio-item.hpp │ │ ├── menu-separator.cpp │ │ ├── menu-separator.hpp │ │ ├── menu.cpp │ │ └── menu.hpp │ ├── application.cpp │ ├── application.hpp │ ├── browser-window.cpp │ ├── browser-window.hpp │ ├── desktop.cpp │ ├── desktop.hpp │ ├── font.cpp │ ├── font.hpp │ ├── group.cpp │ ├── group.hpp │ ├── header.hpp │ ├── keyboard.cpp │ ├── keyboard.hpp │ ├── menu-bar.cpp │ ├── menu-bar.hpp │ ├── message-window.cpp │ ├── message-window.hpp │ ├── monitor.cpp │ ├── monitor.hpp │ ├── mouse.cpp │ ├── mouse.hpp │ ├── object.cpp │ ├── object.hpp │ ├── platform.cpp │ ├── platform.hpp │ ├── popup-menu.cpp │ ├── popup-menu.hpp │ ├── settings.cpp │ ├── settings.hpp │ ├── sizable.cpp │ ├── sizable.hpp │ ├── status-bar.cpp │ ├── status-bar.hpp │ ├── timer.cpp │ ├── timer.hpp │ ├── utility.cpp │ ├── widget │ │ ├── button.cpp │ │ ├── button.hpp │ │ ├── canvas.cpp │ │ ├── canvas.hpp │ │ ├── check-button.cpp │ │ ├── check-button.hpp │ │ ├── check-label.cpp │ │ ├── check-label.hpp │ │ ├── combo-button-item.cpp │ │ ├── combo-button-item.hpp │ │ ├── combo-button.cpp │ │ ├── combo-button.hpp │ │ ├── combo-edit-item.cpp │ │ ├── combo-edit-item.hpp │ │ ├── combo-edit.cpp │ │ ├── combo-edit.hpp │ │ ├── console.cpp │ │ ├── console.hpp │ │ ├── frame.cpp │ │ ├── frame.hpp │ │ ├── hex-edit.cpp │ │ ├── hex-edit.hpp │ │ ├── horizontal-scroll-bar.cpp │ │ ├── horizontal-scroll-bar.hpp │ │ ├── horizontal-slider.cpp │ │ ├── horizontal-slider.hpp │ │ ├── icon-view-item.cpp │ │ ├── icon-view-item.hpp │ │ ├── icon-view.cpp │ │ ├── icon-view.hpp │ │ ├── label.cpp │ │ ├── label.hpp │ │ ├── line-edit.cpp │ │ ├── line-edit.hpp │ │ ├── progress-bar.cpp │ │ ├── progress-bar.hpp │ │ ├── radio-button.cpp │ │ ├── radio-button.hpp │ │ ├── radio-label.cpp │ │ ├── radio-label.hpp │ │ ├── source-edit.cpp │ │ ├── source-edit.hpp │ │ ├── tab-frame-item.cpp │ │ ├── tab-frame-item.hpp │ │ ├── tab-frame.cpp │ │ ├── tab-frame.hpp │ │ ├── table-view-cell.cpp │ │ ├── table-view-cell.hpp │ │ ├── table-view-column.cpp │ │ ├── table-view-column.hpp │ │ ├── table-view-item.cpp │ │ ├── table-view-item.hpp │ │ ├── table-view.cpp │ │ ├── table-view.hpp │ │ ├── text-edit.cpp │ │ ├── text-edit.hpp │ │ ├── tree-view-item.cpp │ │ ├── tree-view-item.hpp │ │ ├── tree-view.cpp │ │ ├── tree-view.hpp │ │ ├── vertical-scroll-bar.cpp │ │ ├── vertical-scroll-bar.hpp │ │ ├── vertical-slider.cpp │ │ ├── vertical-slider.hpp │ │ ├── viewport.cpp │ │ ├── viewport.hpp │ │ ├── widget.cpp │ │ └── widget.hpp │ ├── window.cpp │ └── window.hpp ├── hiro.cpp ├── hiro.hpp ├── platform │ ├── .gitignore │ ├── windows │ │ └── keyboard.hpp │ └── xorg │ │ └── keyboard.hpp ├── qt │ ├── action │ │ ├── action.cpp │ │ ├── action.hpp │ │ ├── menu-check-item.cpp │ │ ├── menu-check-item.hpp │ │ ├── menu-item.cpp │ │ ├── menu-item.hpp │ │ ├── menu-radio-item.cpp │ │ ├── menu-radio-item.hpp │ │ ├── menu-separator.cpp │ │ ├── menu-separator.hpp │ │ ├── menu.cpp │ │ └── menu.hpp │ ├── application.cpp │ ├── application.hpp │ ├── browser-window.cpp │ ├── browser-window.hpp │ ├── desktop.cpp │ ├── desktop.hpp │ ├── font.cpp │ ├── font.hpp │ ├── group.cpp │ ├── group.hpp │ ├── header.hpp │ ├── keyboard.cpp │ ├── keyboard.hpp │ ├── menu-bar.cpp │ ├── menu-bar.hpp │ ├── message-window.cpp │ ├── message-window.hpp │ ├── monitor.cpp │ ├── monitor.hpp │ ├── mouse.cpp │ ├── mouse.hpp │ ├── object.cpp │ ├── object.hpp │ ├── platform.cpp │ ├── platform.hpp │ ├── popup-menu.cpp │ ├── popup-menu.hpp │ ├── qt.hpp │ ├── settings.cpp │ ├── settings.hpp │ ├── sizable.cpp │ ├── sizable.hpp │ ├── status-bar.cpp │ ├── status-bar.hpp │ ├── timer.cpp │ ├── timer.hpp │ ├── utility.cpp │ ├── widget │ │ ├── button.cpp │ │ ├── button.hpp │ │ ├── canvas.cpp │ │ ├── canvas.hpp │ │ ├── check-button.cpp │ │ ├── check-button.hpp │ │ ├── check-label.cpp │ │ ├── check-label.hpp │ │ ├── combo-button-item.cpp │ │ ├── combo-button-item.hpp │ │ ├── combo-button.cpp │ │ ├── combo-button.hpp │ │ ├── frame.cpp │ │ ├── frame.hpp │ │ ├── hex-edit.cpp │ │ ├── hex-edit.hpp │ │ ├── horizontal-scroll-bar.cpp │ │ ├── horizontal-scroll-bar.hpp │ │ ├── horizontal-slider.cpp │ │ ├── horizontal-slider.hpp │ │ ├── label.cpp │ │ ├── label.hpp │ │ ├── line-edit.cpp │ │ ├── line-edit.hpp │ │ ├── progress-bar.cpp │ │ ├── progress-bar.hpp │ │ ├── radio-button.cpp │ │ ├── radio-button.hpp │ │ ├── radio-label.cpp │ │ ├── radio-label.hpp │ │ ├── tab-frame-item.cpp │ │ ├── tab-frame-item.hpp │ │ ├── tab-frame.cpp │ │ ├── tab-frame.hpp │ │ ├── table-view-cell.cpp │ │ ├── table-view-cell.hpp │ │ ├── table-view-column.cpp │ │ ├── table-view-column.hpp │ │ ├── table-view-item.cpp │ │ ├── table-view-item.hpp │ │ ├── table-view.cpp │ │ ├── table-view.hpp │ │ ├── text-edit.cpp │ │ ├── text-edit.hpp │ │ ├── vertical-scroll-bar.cpp │ │ ├── vertical-scroll-bar.hpp │ │ ├── vertical-slider.cpp │ │ ├── vertical-slider.hpp │ │ ├── viewport.cpp │ │ ├── viewport.hpp │ │ ├── widget.cpp │ │ └── widget.hpp │ ├── window.cpp │ └── window.hpp ├── resource │ ├── GNUmakefile │ ├── icon │ │ ├── .gitignore │ │ ├── action │ │ │ ├── add.png │ │ │ ├── attach.png │ │ │ ├── bookmark.png │ │ │ ├── close.png │ │ │ ├── full-screen.png │ │ │ ├── mute.png │ │ │ ├── new-file.png │ │ │ ├── new-folder.png │ │ │ ├── open.png │ │ │ ├── properties.png │ │ │ ├── quit.png │ │ │ ├── refresh.png │ │ │ ├── remove.png │ │ │ ├── save.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ └── stop.png │ │ ├── application │ │ │ ├── browser.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── chat.png │ │ │ ├── file-manager.png │ │ │ ├── mail.png │ │ │ ├── monitor.png │ │ │ ├── terminal.png │ │ │ └── text-editor.png │ │ ├── device │ │ │ ├── clock.png │ │ │ ├── display.png │ │ │ ├── joypad.png │ │ │ ├── keyboard.png │ │ │ ├── microphone.png │ │ │ ├── mouse.png │ │ │ ├── network.png │ │ │ ├── optical.png │ │ │ ├── printer.png │ │ │ ├── speaker.png │ │ │ └── storage.png │ │ ├── edit │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── delete.png │ │ │ ├── find.png │ │ │ ├── paste.png │ │ │ ├── redo.png │ │ │ ├── replace.png │ │ │ └── undo.png │ │ ├── emblem │ │ │ ├── archive.png │ │ │ ├── audio.png │ │ │ ├── binary.png │ │ │ ├── file.png │ │ │ ├── folder-open.png │ │ │ ├── folder-template.png │ │ │ ├── folder.png │ │ │ ├── font.png │ │ │ ├── image.png │ │ │ ├── markup.png │ │ │ ├── program.png │ │ │ ├── script.png │ │ │ ├── text.png │ │ │ └── video.png │ │ ├── go │ │ │ ├── down.png │ │ │ ├── home.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── up.png │ │ ├── media │ │ │ ├── back.png │ │ │ ├── eject.png │ │ │ ├── flash.png │ │ │ ├── floppy.png │ │ │ ├── next.png │ │ │ ├── optical.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── record.png │ │ │ ├── rewind.png │ │ │ ├── skip.png │ │ │ └── stop.png │ │ ├── place │ │ │ ├── bookmarks.png │ │ │ ├── desktop.png │ │ │ ├── home.png │ │ │ ├── server.png │ │ │ ├── settings.png │ │ │ └── share.png │ │ └── prompt │ │ │ ├── error.png │ │ │ ├── information.png │ │ │ ├── question.png │ │ │ └── warning.png │ ├── resource.bml │ ├── resource.cpp │ └── resource.hpp └── windows │ ├── action │ ├── action.cpp │ ├── action.hpp │ ├── menu-check-item.cpp │ ├── menu-check-item.hpp │ ├── menu-item.cpp │ ├── menu-item.hpp │ ├── menu-radio-item.cpp │ ├── menu-radio-item.hpp │ ├── menu-separator.cpp │ ├── menu-separator.hpp │ ├── menu.cpp │ └── menu.hpp │ ├── application.cpp │ ├── application.hpp │ ├── browser-window.cpp │ ├── browser-window.hpp │ ├── desktop.cpp │ ├── desktop.hpp │ ├── font.cpp │ ├── font.hpp │ ├── group.cpp │ ├── group.hpp │ ├── header.hpp │ ├── hiro.Manifest │ ├── hiro.rc │ ├── keyboard.cpp │ ├── keyboard.hpp │ ├── menu-bar.cpp │ ├── menu-bar.hpp │ ├── message-window.cpp │ ├── message-window.hpp │ ├── monitor.cpp │ ├── monitor.hpp │ ├── mouse.cpp │ ├── mouse.hpp │ ├── object.cpp │ ├── object.hpp │ ├── platform.cpp │ ├── platform.hpp │ ├── popup-menu.cpp │ ├── popup-menu.hpp │ ├── settings.cpp │ ├── settings.hpp │ ├── sizable.cpp │ ├── sizable.hpp │ ├── status-bar.cpp │ ├── status-bar.hpp │ ├── timer.cpp │ ├── timer.hpp │ ├── tool-tip.cpp │ ├── tool-tip.hpp │ ├── utility.cpp │ ├── widget │ ├── button.cpp │ ├── button.hpp │ ├── canvas.cpp │ ├── canvas.hpp │ ├── check-button.cpp │ ├── check-button.hpp │ ├── check-label.cpp │ ├── check-label.hpp │ ├── combo-button-item.cpp │ ├── combo-button-item.hpp │ ├── combo-button.cpp │ ├── combo-button.hpp │ ├── frame.cpp │ ├── frame.hpp │ ├── hex-edit.cpp │ ├── hex-edit.hpp │ ├── horizontal-scroll-bar.cpp │ ├── horizontal-scroll-bar.hpp │ ├── horizontal-slider.cpp │ ├── horizontal-slider.hpp │ ├── label.cpp │ ├── label.hpp │ ├── line-edit.cpp │ ├── line-edit.hpp │ ├── progress-bar.cpp │ ├── progress-bar.hpp │ ├── radio-button.cpp │ ├── radio-button.hpp │ ├── radio-label.cpp │ ├── radio-label.hpp │ ├── tab-frame-item.cpp │ ├── tab-frame-item.hpp │ ├── tab-frame.cpp │ ├── tab-frame.hpp │ ├── table-view-cell.cpp │ ├── table-view-cell.hpp │ ├── table-view-column.cpp │ ├── table-view-column.hpp │ ├── table-view-item.cpp │ ├── table-view-item.hpp │ ├── table-view.cpp │ ├── table-view.hpp │ ├── text-edit.cpp │ ├── text-edit.hpp │ ├── vertical-scroll-bar.cpp │ ├── vertical-scroll-bar.hpp │ ├── vertical-slider.cpp │ ├── vertical-slider.hpp │ ├── viewport.cpp │ ├── viewport.hpp │ ├── widget.cpp │ └── widget.hpp │ ├── window.cpp │ └── window.hpp ├── icarus ├── Database │ ├── BS Memory.bml │ ├── Sufami Turbo.bml │ └── Super Famicom.bml ├── Firmware │ ├── cx4.data.rom │ ├── sgb1.boot.rom │ └── sgb2.boot.rom ├── GNUmakefile ├── cartridge │ ├── bs-memory.cpp │ ├── cartridge.cpp │ ├── cartridge.hpp │ ├── colecovision.cpp │ ├── famicom.cpp │ ├── game-boy-advance.cpp │ ├── game-boy-color.cpp │ ├── game-boy.cpp │ ├── game-gear.cpp │ ├── master-system.cpp │ ├── mega-drive.cpp │ ├── msx.cpp │ ├── msx2.cpp │ ├── neo-geo-pocket-color.cpp │ ├── neo-geo-pocket.cpp │ ├── pc-engine.cpp │ ├── pocket-challenge-v2.cpp │ ├── sc-3000.cpp │ ├── sg-1000.cpp │ ├── sufami-turbo.cpp │ ├── super-famicom.cpp │ ├── supergrafx.cpp │ ├── wonderswan-color.cpp │ └── wonderswan.cpp ├── compact-disc │ ├── compact-disc.cpp │ ├── compact-disc.hpp │ ├── mega-cd.cpp │ └── pc-engine-cd.cpp ├── floppy-disk │ ├── famicom-disk.cpp │ ├── famicom-disk.hpp │ ├── floppy-disk.cpp │ ├── floppy-disk.hpp │ ├── nintendo-64dd.cpp │ └── nintendo-64dd.hpp ├── icarus.cpp ├── icarus.hpp ├── media │ ├── media.cpp │ └── media.hpp ├── obj │ └── .gitignore ├── out │ └── .gitignore ├── program │ ├── game-importer.cpp │ ├── game-importer.hpp │ ├── game-manager.cpp │ ├── game-manager.hpp │ ├── home.cpp │ ├── home.hpp │ ├── program.cpp │ ├── program.hpp │ ├── system-selection.cpp │ └── system-selection.hpp ├── resource │ ├── GNUmakefile │ ├── icarus.Manifest │ ├── icarus.desktop │ ├── icarus.ico │ ├── icarus.plist │ ├── icarus.png │ ├── icarus.rc │ ├── icarus.svg │ ├── resource.bml │ ├── resource.cpp │ └── resource.hpp └── settings │ ├── settings.cpp │ └── settings.hpp ├── libco ├── GNUmakefile ├── LICENSE ├── README.md ├── aarch64.c ├── amd64.c ├── arm.c ├── doc │ ├── targets.md │ └── usage.md ├── fiber.c ├── libco.c ├── libco.h ├── ppc.c ├── ppc64v2.c ├── settings.h ├── sjlj.c ├── ucontext.c └── x86.c ├── nall ├── GNUmakefile ├── adaptive-array.hpp ├── algorithm.hpp ├── any.hpp ├── arguments.hpp ├── arithmetic.hpp ├── arithmetic │ ├── barrett.hpp │ ├── natural.hpp │ └── unsigned.hpp ├── array-span.hpp ├── array-view.hpp ├── array.hpp ├── atoi.hpp ├── beat │ ├── .gitignore │ ├── archive │ │ ├── container.hpp │ │ ├── create.hpp │ │ ├── extract.hpp │ │ └── node.hpp │ └── single │ │ ├── apply.hpp │ │ └── create.hpp ├── bit.hpp ├── bump-allocator.hpp ├── cd.hpp ├── cd │ ├── crc16.hpp │ ├── edc.hpp │ ├── efm.hpp │ ├── rspc.hpp │ ├── scrambler.hpp │ ├── session.hpp │ └── sync.hpp ├── chrono.hpp ├── cipher │ └── chacha20.hpp ├── counting-sort.hpp ├── database │ ├── odbc.hpp │ └── sqlite3.hpp ├── decode │ ├── base.hpp │ ├── base64.hpp │ ├── bmp.hpp │ ├── bwt.hpp │ ├── cue.hpp │ ├── gzip.hpp │ ├── html.hpp │ ├── huffman.hpp │ ├── inflate.hpp │ ├── lzsa.hpp │ ├── mtf.hpp │ ├── png.hpp │ ├── rle.hpp │ ├── url.hpp │ ├── wav.hpp │ └── zip.hpp ├── directory.hpp ├── dl.hpp ├── dsp │ ├── dsp.hpp │ ├── iir │ │ ├── biquad.hpp │ │ ├── dc-removal.hpp │ │ └── one-pole.hpp │ └── resampler │ │ └── cubic.hpp ├── elliptic-curve │ ├── curve25519.hpp │ ├── ed25519.hpp │ ├── modulo25519-optimized.hpp │ └── modulo25519-reference.hpp ├── emulation │ └── 21fx.hpp ├── encode │ ├── base.hpp │ ├── base64.hpp │ ├── bmp.hpp │ ├── bwt.hpp │ ├── html.hpp │ ├── huffman.hpp │ ├── lzsa.hpp │ ├── mtf.hpp │ ├── png.hpp │ ├── rle.hpp │ ├── url.hpp │ ├── wav.hpp │ └── zip.hpp ├── endian.hpp ├── file-buffer.hpp ├── file-map.hpp ├── file.hpp ├── function.hpp ├── galois-field.hpp ├── hash │ ├── crc16.hpp │ ├── crc32.hpp │ ├── crc64.hpp │ ├── hash.hpp │ ├── sha224.hpp │ ├── sha256.hpp │ ├── sha384.hpp │ └── sha512.hpp ├── hashset.hpp ├── hid.hpp ├── http │ ├── client.hpp │ ├── message.hpp │ ├── request.hpp │ ├── response.hpp │ ├── role.hpp │ └── server.hpp ├── image.hpp ├── image │ ├── blend.hpp │ ├── core.hpp │ ├── fill.hpp │ ├── interpolation.hpp │ ├── load.hpp │ ├── scale.hpp │ ├── static.hpp │ └── utility.hpp ├── induced-sort.hpp ├── inline-if.hpp ├── inode.hpp ├── instance.hpp ├── interpolation.hpp ├── intrinsics.hpp ├── iterator.hpp ├── literals.hpp ├── locale.hpp ├── location.hpp ├── mac │ └── poly1305.hpp ├── macos │ └── guard.hpp ├── main.hpp ├── map.hpp ├── matrix-multiply.hpp ├── matrix.hpp ├── maybe.hpp ├── memory.hpp ├── merge-sort.hpp ├── nall.hpp ├── path.hpp ├── platform.hpp ├── pointer.hpp ├── posix │ ├── service.hpp │ └── shared-memory.hpp ├── primitives.hpp ├── primitives │ ├── bit-field.hpp │ ├── bit-range.hpp │ ├── boolean.hpp │ ├── integer.hpp │ ├── literals.hpp │ ├── natural.hpp │ ├── real.hpp │ └── types.hpp ├── property.hpp ├── queue.hpp ├── random.hpp ├── range.hpp ├── recompiler │ ├── .gitignore │ └── amd64 │ │ ├── amd64.hpp │ │ ├── constants.hpp │ │ ├── emitter.hpp │ │ ├── encoder-calls.hpp │ │ └── encoder-instructions.hpp ├── reed-solomon.hpp ├── run.hpp ├── serial.hpp ├── serializer.hpp ├── service.hpp ├── set.hpp ├── shared-memory.hpp ├── shared-pointer.hpp ├── smtp.hpp ├── stdint.hpp ├── string.hpp ├── string │ ├── allocator │ │ ├── adaptive.hpp │ │ ├── copy-on-write.hpp │ │ ├── small-string-optimization.hpp │ │ └── vector.hpp │ ├── atoi.hpp │ ├── cast.hpp │ ├── compare.hpp │ ├── convert.hpp │ ├── core.hpp │ ├── eval │ │ ├── evaluator.hpp │ │ ├── literal.hpp │ │ ├── node.hpp │ │ └── parser.hpp │ ├── find.hpp │ ├── format.hpp │ ├── markup │ │ ├── bml.hpp │ │ ├── find.hpp │ │ ├── node.hpp │ │ └── xml.hpp │ ├── match.hpp │ ├── pascal.hpp │ ├── replace.hpp │ ├── split.hpp │ ├── transform │ │ ├── cml.hpp │ │ └── dml.hpp │ ├── trim.hpp │ ├── utf8.hpp │ ├── utility.hpp │ ├── vector.hpp │ └── view.hpp ├── suffix-array.hpp ├── terminal.hpp ├── thread.hpp ├── traits.hpp ├── unique-pointer.hpp ├── utility.hpp ├── variant.hpp ├── varint.hpp ├── vector.hpp ├── vector │ ├── access.hpp │ ├── assign.hpp │ ├── compare.hpp │ ├── core.hpp │ ├── iterator.hpp │ ├── memory.hpp │ ├── modify.hpp │ ├── specialization │ │ └── uint8_t.hpp │ └── utility.hpp ├── vfs.hpp ├── vfs │ ├── cdrom.hpp │ ├── disk.hpp │ ├── memory.hpp │ └── vfs.hpp ├── view.hpp ├── windows │ ├── detour.hpp │ ├── guard.hpp │ ├── guid.hpp │ ├── launcher.hpp │ ├── registry.hpp │ ├── service.hpp │ ├── shared-memory.hpp │ └── utf8.hpp └── xorg │ ├── clipboard.hpp │ ├── guard.hpp │ └── xorg.hpp ├── ruby ├── GNUmakefile ├── audio │ ├── alsa.cpp │ ├── ao.cpp │ ├── asio.cpp │ ├── asio.hpp │ ├── audio.cpp │ ├── audio.hpp │ ├── directsound.cpp │ ├── openal.cpp │ ├── oss.cpp │ ├── pulseaudio-simple.cpp │ ├── pulseaudio.cpp │ ├── wasapi.cpp │ ├── waveout.cpp │ ├── xaudio2.cpp │ └── xaudio2.hpp ├── input │ ├── carbon.cpp │ ├── input.cpp │ ├── input.hpp │ ├── joypad │ │ ├── directinput.cpp │ │ ├── iokit.cpp │ │ ├── sdl.cpp │ │ ├── udev.cpp │ │ ├── uhid.cpp │ │ └── xinput.cpp │ ├── keyboard │ │ ├── carbon.cpp │ │ ├── quartz.cpp │ │ ├── rawinput.cpp │ │ └── xlib.cpp │ ├── mouse │ │ ├── rawinput.cpp │ │ └── xlib.cpp │ ├── quartz.cpp │ ├── sdl.cpp │ ├── shared │ │ └── rawinput.cpp │ ├── udev.cpp │ ├── uhid.cpp │ ├── windows.cpp │ └── xlib.cpp ├── ruby.cpp ├── ruby.hpp └── video │ ├── cgl.cpp │ ├── direct3d.cpp │ ├── directdraw.cpp │ ├── gdi.cpp │ ├── glx.cpp │ ├── glx2.cpp │ ├── opengl │ ├── bind.hpp │ ├── main.hpp │ ├── opengl.hpp │ ├── program.hpp │ ├── shaders.hpp │ ├── surface.hpp │ ├── texture.hpp │ └── utility.hpp │ ├── video.cpp │ ├── video.hpp │ ├── wgl.cpp │ ├── xshm.cpp │ └── xvideo.cpp ├── sourcery ├── GNUmakefile ├── obj │ └── .gitignore ├── out │ └── .gitignore └── sourcery.cpp └── update-subtrees.sh /.cirrus.upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/.cirrus.upload.sh -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/CREDITS.md -------------------------------------------------------------------------------- /GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/GPLv3.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/README.md -------------------------------------------------------------------------------- /extras/README.md: -------------------------------------------------------------------------------- 1 | Extra files included in official release builds. 2 | -------------------------------------------------------------------------------- /extras/Shaders/Bicubic-sharp.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: bicubic-sharp.fs -------------------------------------------------------------------------------- /extras/Shaders/Bicubic.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: bicubic.fs -------------------------------------------------------------------------------- /extras/Shaders/Gaussian Scanlines.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: gaussian-scanlines.fs -------------------------------------------------------------------------------- /extras/Shaders/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/extras/Shaders/LICENSE -------------------------------------------------------------------------------- /extras/Shaders/Phosphor-21x.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: phosphor-21x.fs -------------------------------------------------------------------------------- /extras/Shaders/Phosphorish.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: phosphorish.fs -------------------------------------------------------------------------------- /extras/Shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/extras/Shaders/README.md -------------------------------------------------------------------------------- /extras/Shaders/old-obsolete/Image Adjustment.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: gamma.fs -------------------------------------------------------------------------------- /extras/Shaders/old-obsolete/Integer Scale.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | vertex: integer-scale.vs -------------------------------------------------------------------------------- /extras/Shaders/old-obsolete/RGB-Triad.shader/manifest.bml: -------------------------------------------------------------------------------- 1 | program 2 | fragment: caligari.fs -------------------------------------------------------------------------------- /extras/paths.bml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/extras/paths.bml -------------------------------------------------------------------------------- /higan-ui/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/GNUmakefile -------------------------------------------------------------------------------- /higan-ui/emulator/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/emulator/audio.cpp -------------------------------------------------------------------------------- /higan-ui/emulator/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/emulator/input.cpp -------------------------------------------------------------------------------- /higan-ui/emulator/states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/emulator/states.cpp -------------------------------------------------------------------------------- /higan-ui/emulator/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/emulator/status.cpp -------------------------------------------------------------------------------- /higan-ui/emulator/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/emulator/video.cpp -------------------------------------------------------------------------------- /higan-ui/higan-ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/higan-ui.cpp -------------------------------------------------------------------------------- /higan-ui/higan-ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/higan-ui.hpp -------------------------------------------------------------------------------- /higan-ui/input/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/input/hotkeys.cpp -------------------------------------------------------------------------------- /higan-ui/input/hotkeys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/input/hotkeys.hpp -------------------------------------------------------------------------------- /higan-ui/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/input/input.cpp -------------------------------------------------------------------------------- /higan-ui/input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/input/input.hpp -------------------------------------------------------------------------------- /higan-ui/menus/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/action.cpp -------------------------------------------------------------------------------- /higan-ui/menus/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/help.cpp -------------------------------------------------------------------------------- /higan-ui/menus/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/menus.cpp -------------------------------------------------------------------------------- /higan-ui/menus/menus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/menus.hpp -------------------------------------------------------------------------------- /higan-ui/menus/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/settings.cpp -------------------------------------------------------------------------------- /higan-ui/menus/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/system.cpp -------------------------------------------------------------------------------- /higan-ui/menus/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/menus/tools.cpp -------------------------------------------------------------------------------- /higan-ui/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /higan-ui/out/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /higan-ui/program/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/program/program.cpp -------------------------------------------------------------------------------- /higan-ui/program/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/program/program.hpp -------------------------------------------------------------------------------- /higan-ui/resource/higan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/resource/higan.ico -------------------------------------------------------------------------------- /higan-ui/resource/higan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/resource/higan.png -------------------------------------------------------------------------------- /higan-ui/resource/higan.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan-ui/resource/higan.rc -------------------------------------------------------------------------------- /higan-ui/resource/resource.bml: -------------------------------------------------------------------------------- 1 | namespace name=Resource 2 | -------------------------------------------------------------------------------- /higan-ui/resource/resource.hpp: -------------------------------------------------------------------------------- 1 | namespace Resource { 2 | } 3 | -------------------------------------------------------------------------------- /higan/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/GNUmakefile -------------------------------------------------------------------------------- /higan/System/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/ColecoVision/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/ColecoVision/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/ColecoVision/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Famicom/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Famicom/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Famicom/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Game Boy Advance/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Game Boy Player/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Game Gear/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX/Keyboard/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX/bios.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/System/MSX/bios.rom -------------------------------------------------------------------------------- /higan/System/MSX2/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX2/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX2/Keyboard/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/MSX2/bios.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/System/MSX2/bios.rom -------------------------------------------------------------------------------- /higan/System/MSX2/sub.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/System/MSX2/sub.rom -------------------------------------------------------------------------------- /higan/System/Master System/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Master System/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Master System/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Mega Drive/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Mega Drive/Controller/Control Pad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Mega Drive/Controller/Fighting Pad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Neo Geo Pocket Color/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Neo Geo Pocket/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Nintendo 64/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Nintendo 64/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine Duo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine Duo/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine Duo/Controller/Avenue Pad 6/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine Duo/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine/Controller/Avenue Pad 6/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PC Engine/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PlayStation/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PlayStation/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/PlayStation/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SC-3000/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SC-3000/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SC-3000/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SG-1000/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SG-1000/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SG-1000/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Justifier/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Justifiers/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Mouse/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/NTT Data Keypad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Super Multitap/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Super Scope/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Controller/Twin Tap/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Expansion/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Expansion/21fx/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/Super Famicom/Expansion/Satellaview/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SuperGrafx/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SuperGrafx/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/System/SuperGrafx/Controller/Gamepad/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/component/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/component/GNUmakefile -------------------------------------------------------------------------------- /higan/component/audio/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/component/eeprom/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/component/processor/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/component/video/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/cv/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/GNUmakefile -------------------------------------------------------------------------------- /higan/cv/cartridge/slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cartridge/slot.cpp -------------------------------------------------------------------------------- /higan/cv/cartridge/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cartridge/slot.hpp -------------------------------------------------------------------------------- /higan/cv/controller/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/controller/port.cpp -------------------------------------------------------------------------------- /higan/cv/controller/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/controller/port.hpp -------------------------------------------------------------------------------- /higan/cv/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/cv/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/cv/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/cv/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/cv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/cv.hpp -------------------------------------------------------------------------------- /higan/cv/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/psg/psg.cpp -------------------------------------------------------------------------------- /higan/cv/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/psg/psg.hpp -------------------------------------------------------------------------------- /higan/cv/system/controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/system/controls.cpp -------------------------------------------------------------------------------- /higan/cv/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/system/system.cpp -------------------------------------------------------------------------------- /higan/cv/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/system/system.hpp -------------------------------------------------------------------------------- /higan/cv/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/vdp/color.cpp -------------------------------------------------------------------------------- /higan/cv/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/cv/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/cv/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/fc/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/GNUmakefile -------------------------------------------------------------------------------- /higan/fc/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/apu.cpp -------------------------------------------------------------------------------- /higan/fc/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/apu.hpp -------------------------------------------------------------------------------- /higan/fc/apu/dmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/dmc.cpp -------------------------------------------------------------------------------- /higan/fc/apu/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/envelope.cpp -------------------------------------------------------------------------------- /higan/fc/apu/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/noise.cpp -------------------------------------------------------------------------------- /higan/fc/apu/pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/pulse.cpp -------------------------------------------------------------------------------- /higan/fc/apu/sweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/sweep.cpp -------------------------------------------------------------------------------- /higan/fc/apu/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/apu/triangle.cpp -------------------------------------------------------------------------------- /higan/fc/cartridge/slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cartridge/slot.cpp -------------------------------------------------------------------------------- /higan/fc/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/fc/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/fc/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/fc/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/fc/cpu/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/cpu/timing.cpp -------------------------------------------------------------------------------- /higan/fc/fc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fc.hpp -------------------------------------------------------------------------------- /higan/fc/fds/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/audio.cpp -------------------------------------------------------------------------------- /higan/fc/fds/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/audio.hpp -------------------------------------------------------------------------------- /higan/fc/fds/drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/drive.cpp -------------------------------------------------------------------------------- /higan/fc/fds/drive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/drive.hpp -------------------------------------------------------------------------------- /higan/fc/fds/fds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/fds.cpp -------------------------------------------------------------------------------- /higan/fc/fds/fds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/fds.hpp -------------------------------------------------------------------------------- /higan/fc/fds/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/timer.cpp -------------------------------------------------------------------------------- /higan/fc/fds/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/fds/timer.hpp -------------------------------------------------------------------------------- /higan/fc/ppu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/color.cpp -------------------------------------------------------------------------------- /higan/fc/ppu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/debugger.cpp -------------------------------------------------------------------------------- /higan/fc/ppu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/memory.cpp -------------------------------------------------------------------------------- /higan/fc/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/ppu.cpp -------------------------------------------------------------------------------- /higan/fc/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/ppu.hpp -------------------------------------------------------------------------------- /higan/fc/ppu/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/ppu/render.cpp -------------------------------------------------------------------------------- /higan/fc/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/system/system.cpp -------------------------------------------------------------------------------- /higan/fc/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/fc/system/system.hpp -------------------------------------------------------------------------------- /higan/gb/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/GNUmakefile -------------------------------------------------------------------------------- /higan/gb/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/apu.cpp -------------------------------------------------------------------------------- /higan/gb/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/apu.hpp -------------------------------------------------------------------------------- /higan/gb/apu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/io.cpp -------------------------------------------------------------------------------- /higan/gb/apu/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/noise.cpp -------------------------------------------------------------------------------- /higan/gb/apu/sequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/sequencer.cpp -------------------------------------------------------------------------------- /higan/gb/apu/square1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/square1.cpp -------------------------------------------------------------------------------- /higan/gb/apu/square2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/square2.cpp -------------------------------------------------------------------------------- /higan/gb/apu/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/apu/wave.cpp -------------------------------------------------------------------------------- /higan/gb/bus/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/bus/bus.cpp -------------------------------------------------------------------------------- /higan/gb/bus/bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/bus/bus.hpp -------------------------------------------------------------------------------- /higan/gb/cartridge/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cartridge/io.cpp -------------------------------------------------------------------------------- /higan/gb/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/gb/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/gb/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/gb/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/io.cpp -------------------------------------------------------------------------------- /higan/gb/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/gb/cpu/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/cpu/timing.cpp -------------------------------------------------------------------------------- /higan/gb/gb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/gb.hpp -------------------------------------------------------------------------------- /higan/gb/ppu/cgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/cgb.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/color.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/debugger.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/dmg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/dmg.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/io.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/ppu.cpp -------------------------------------------------------------------------------- /higan/gb/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/ppu.hpp -------------------------------------------------------------------------------- /higan/gb/ppu/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/ppu/timing.cpp -------------------------------------------------------------------------------- /higan/gb/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/system/system.cpp -------------------------------------------------------------------------------- /higan/gb/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gb/system/system.hpp -------------------------------------------------------------------------------- /higan/gba/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/GNUmakefile -------------------------------------------------------------------------------- /higan/gba/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/apu.cpp -------------------------------------------------------------------------------- /higan/gba/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/apu.hpp -------------------------------------------------------------------------------- /higan/gba/apu/fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/fifo.cpp -------------------------------------------------------------------------------- /higan/gba/apu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/io.cpp -------------------------------------------------------------------------------- /higan/gba/apu/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/noise.cpp -------------------------------------------------------------------------------- /higan/gba/apu/square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/square.cpp -------------------------------------------------------------------------------- /higan/gba/apu/square1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/square1.cpp -------------------------------------------------------------------------------- /higan/gba/apu/square2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/square2.cpp -------------------------------------------------------------------------------- /higan/gba/apu/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/apu/wave.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/bus.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/gba/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/dma.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/io.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/keypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/keypad.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/prefetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/prefetch.cpp -------------------------------------------------------------------------------- /higan/gba/cpu/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/cpu/timer.cpp -------------------------------------------------------------------------------- /higan/gba/gba.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/gba.hpp -------------------------------------------------------------------------------- /higan/gba/ppu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/color.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/dac.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/debugger.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/io.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/memory.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/object.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/ppu.cpp -------------------------------------------------------------------------------- /higan/gba/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/ppu.hpp -------------------------------------------------------------------------------- /higan/gba/ppu/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/ppu/window.cpp -------------------------------------------------------------------------------- /higan/gba/system/bios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/system/bios.cpp -------------------------------------------------------------------------------- /higan/gba/system/bios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/gba/system/bios.hpp -------------------------------------------------------------------------------- /higan/higan/higan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/higan.cpp -------------------------------------------------------------------------------- /higan/higan/higan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/higan.hpp -------------------------------------------------------------------------------- /higan/higan/inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/inline.hpp -------------------------------------------------------------------------------- /higan/higan/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/interface.hpp -------------------------------------------------------------------------------- /higan/higan/node/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/node/class.hpp -------------------------------------------------------------------------------- /higan/higan/node/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/node/input.hpp -------------------------------------------------------------------------------- /higan/higan/node/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/node/node.cpp -------------------------------------------------------------------------------- /higan/higan/node/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/node/node.hpp -------------------------------------------------------------------------------- /higan/higan/node/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/node/port.hpp -------------------------------------------------------------------------------- /higan/higan/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/platform.hpp -------------------------------------------------------------------------------- /higan/higan/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/random.hpp -------------------------------------------------------------------------------- /higan/higan/resource/sprite/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /higan/higan/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/higan/types.hpp -------------------------------------------------------------------------------- /higan/md/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/GNUmakefile -------------------------------------------------------------------------------- /higan/md/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/apu/apu.cpp -------------------------------------------------------------------------------- /higan/md/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/apu/apu.hpp -------------------------------------------------------------------------------- /higan/md/apu/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/apu/bus.cpp -------------------------------------------------------------------------------- /higan/md/apu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/apu/debugger.cpp -------------------------------------------------------------------------------- /higan/md/cpu/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/cpu/bus.cpp -------------------------------------------------------------------------------- /higan/md/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/md/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/md/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/md/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/cpu/io.cpp -------------------------------------------------------------------------------- /higan/md/mcd/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/bus.cpp -------------------------------------------------------------------------------- /higan/md/mcd/cdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/cdc.cpp -------------------------------------------------------------------------------- /higan/md/mcd/cdd-dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/cdd-dac.cpp -------------------------------------------------------------------------------- /higan/md/mcd/cdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/cdd.cpp -------------------------------------------------------------------------------- /higan/md/mcd/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/debugger.cpp -------------------------------------------------------------------------------- /higan/md/mcd/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/gpu.cpp -------------------------------------------------------------------------------- /higan/md/mcd/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/io.cpp -------------------------------------------------------------------------------- /higan/md/mcd/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/irq.cpp -------------------------------------------------------------------------------- /higan/md/mcd/mcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/mcd.cpp -------------------------------------------------------------------------------- /higan/md/mcd/mcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/mcd.hpp -------------------------------------------------------------------------------- /higan/md/mcd/pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/pcm.cpp -------------------------------------------------------------------------------- /higan/md/mcd/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/mcd/timer.cpp -------------------------------------------------------------------------------- /higan/md/md.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/md.hpp -------------------------------------------------------------------------------- /higan/md/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/psg/psg.cpp -------------------------------------------------------------------------------- /higan/md/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/psg/psg.hpp -------------------------------------------------------------------------------- /higan/md/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/system/system.cpp -------------------------------------------------------------------------------- /higan/md/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/system/system.hpp -------------------------------------------------------------------------------- /higan/md/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/color.cpp -------------------------------------------------------------------------------- /higan/md/vdp/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/debugger.cpp -------------------------------------------------------------------------------- /higan/md/vdp/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/dma.cpp -------------------------------------------------------------------------------- /higan/md/vdp/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/io.cpp -------------------------------------------------------------------------------- /higan/md/vdp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/memory.cpp -------------------------------------------------------------------------------- /higan/md/vdp/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/render.cpp -------------------------------------------------------------------------------- /higan/md/vdp/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/sprite.cpp -------------------------------------------------------------------------------- /higan/md/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/md/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/md/ym2612/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/ym2612/io.cpp -------------------------------------------------------------------------------- /higan/md/ym2612/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/ym2612/timer.cpp -------------------------------------------------------------------------------- /higan/md/ym2612/ym2612.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/ym2612/ym2612.cpp -------------------------------------------------------------------------------- /higan/md/ym2612/ym2612.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/md/ym2612/ym2612.hpp -------------------------------------------------------------------------------- /higan/ms/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/GNUmakefile -------------------------------------------------------------------------------- /higan/ms/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/ms/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/ms/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/ms/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/ms/ms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/ms.hpp -------------------------------------------------------------------------------- /higan/ms/opll/opll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/opll/opll.cpp -------------------------------------------------------------------------------- /higan/ms/opll/opll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/opll/opll.hpp -------------------------------------------------------------------------------- /higan/ms/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/psg/psg.cpp -------------------------------------------------------------------------------- /higan/ms/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/psg/psg.hpp -------------------------------------------------------------------------------- /higan/ms/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/system/system.cpp -------------------------------------------------------------------------------- /higan/ms/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/system/system.hpp -------------------------------------------------------------------------------- /higan/ms/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/color.cpp -------------------------------------------------------------------------------- /higan/ms/vdp/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/debugger.cpp -------------------------------------------------------------------------------- /higan/ms/vdp/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/io.cpp -------------------------------------------------------------------------------- /higan/ms/vdp/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/sprite.cpp -------------------------------------------------------------------------------- /higan/ms/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/ms/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ms/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/msx/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/GNUmakefile -------------------------------------------------------------------------------- /higan/msx/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/msx/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/msx/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/msx/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/msx/msx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/msx.hpp -------------------------------------------------------------------------------- /higan/msx/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/psg/psg.cpp -------------------------------------------------------------------------------- /higan/msx/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/psg/psg.hpp -------------------------------------------------------------------------------- /higan/msx/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/vdp/color.cpp -------------------------------------------------------------------------------- /higan/msx/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/msx/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/msx/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/ngp/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/GNUmakefile -------------------------------------------------------------------------------- /higan/ngp/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/apu/apu.cpp -------------------------------------------------------------------------------- /higan/ngp/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/apu/apu.hpp -------------------------------------------------------------------------------- /higan/ngp/apu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/apu/debugger.cpp -------------------------------------------------------------------------------- /higan/ngp/apu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/apu/memory.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/adc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/adc.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/ngp/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/io.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/ports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/ports.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/rtc.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/timers.cpp -------------------------------------------------------------------------------- /higan/ngp/cpu/watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/cpu/watchdog.cpp -------------------------------------------------------------------------------- /higan/ngp/ngp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/ngp.hpp -------------------------------------------------------------------------------- /higan/ngp/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/psg/psg.cpp -------------------------------------------------------------------------------- /higan/ngp/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/psg/psg.hpp -------------------------------------------------------------------------------- /higan/ngp/vpu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/color.cpp -------------------------------------------------------------------------------- /higan/ngp/vpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/memory.cpp -------------------------------------------------------------------------------- /higan/ngp/vpu/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/plane.cpp -------------------------------------------------------------------------------- /higan/ngp/vpu/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/sprite.cpp -------------------------------------------------------------------------------- /higan/ngp/vpu/vpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/vpu.cpp -------------------------------------------------------------------------------- /higan/ngp/vpu/vpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/vpu.hpp -------------------------------------------------------------------------------- /higan/ngp/vpu/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ngp/vpu/window.cpp -------------------------------------------------------------------------------- /higan/pce/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/GNUmakefile -------------------------------------------------------------------------------- /higan/pce/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/pce/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/pce/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/pce/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/cpu/io.cpp -------------------------------------------------------------------------------- /higan/pce/cpu/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/cpu/irq.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/adpcm.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/cdda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/cdda.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/debugger.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/drive.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/fader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/fader.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/io.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/pcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/pcd.cpp -------------------------------------------------------------------------------- /higan/pce/pcd/pcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/pcd.hpp -------------------------------------------------------------------------------- /higan/pce/pcd/scsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pcd/scsi.cpp -------------------------------------------------------------------------------- /higan/pce/pce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/pce.hpp -------------------------------------------------------------------------------- /higan/pce/psg/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/psg/channel.cpp -------------------------------------------------------------------------------- /higan/pce/psg/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/psg/io.cpp -------------------------------------------------------------------------------- /higan/pce/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/psg/psg.cpp -------------------------------------------------------------------------------- /higan/pce/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/psg/psg.hpp -------------------------------------------------------------------------------- /higan/pce/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/color.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/debugger.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/dma.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/irq.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/sprite.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/vce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vce.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/vce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vce.hpp -------------------------------------------------------------------------------- /higan/pce/vdp/vdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vdc.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/vdc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vdc.hpp -------------------------------------------------------------------------------- /higan/pce/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/pce/vdp/vpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vpc.cpp -------------------------------------------------------------------------------- /higan/pce/vdp/vpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/pce/vdp/vpc.hpp -------------------------------------------------------------------------------- /higan/sfc/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/GNUmakefile -------------------------------------------------------------------------------- /higan/sfc/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/sfc/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/dma.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/io.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/irq.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/sfc/cpu/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/cpu/timing.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/brr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/brr.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/counter.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/debugger.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/dsp.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/dsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/dsp.hpp -------------------------------------------------------------------------------- /higan/sfc/dsp/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/echo.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/envelope.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/gaussian.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/memory.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/misc.cpp -------------------------------------------------------------------------------- /higan/sfc/dsp/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/dsp/voice.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/color.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/dac.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/dac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/dac.hpp -------------------------------------------------------------------------------- /higan/sfc/ppu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/debugger.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/io.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/main.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/mode7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/mode7.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/mosaic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/mosaic.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/mosaic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/mosaic.hpp -------------------------------------------------------------------------------- /higan/sfc/ppu/oam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/oam.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/oam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/oam.hpp -------------------------------------------------------------------------------- /higan/sfc/ppu/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/object.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/object.hpp -------------------------------------------------------------------------------- /higan/sfc/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/ppu.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/ppu.hpp -------------------------------------------------------------------------------- /higan/sfc/ppu/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/window.cpp -------------------------------------------------------------------------------- /higan/sfc/ppu/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/ppu/window.hpp -------------------------------------------------------------------------------- /higan/sfc/sfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/sfc.hpp -------------------------------------------------------------------------------- /higan/sfc/slot/slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/slot/slot.cpp -------------------------------------------------------------------------------- /higan/sfc/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/slot/slot.hpp -------------------------------------------------------------------------------- /higan/sfc/smp/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/debugger.cpp -------------------------------------------------------------------------------- /higan/sfc/smp/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/io.cpp -------------------------------------------------------------------------------- /higan/sfc/smp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/memory.cpp -------------------------------------------------------------------------------- /higan/sfc/smp/smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/smp.cpp -------------------------------------------------------------------------------- /higan/sfc/smp/smp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/smp.hpp -------------------------------------------------------------------------------- /higan/sfc/smp/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sfc/smp/timing.cpp -------------------------------------------------------------------------------- /higan/sg/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/GNUmakefile -------------------------------------------------------------------------------- /higan/sg/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/sg/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/sg/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/sg/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/cpu/memory.cpp -------------------------------------------------------------------------------- /higan/sg/psg/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/psg/psg.cpp -------------------------------------------------------------------------------- /higan/sg/psg/psg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/psg/psg.hpp -------------------------------------------------------------------------------- /higan/sg/sg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/sg.hpp -------------------------------------------------------------------------------- /higan/sg/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/system/system.cpp -------------------------------------------------------------------------------- /higan/sg/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/system/system.hpp -------------------------------------------------------------------------------- /higan/sg/vdp/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/vdp/color.cpp -------------------------------------------------------------------------------- /higan/sg/vdp/vdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/vdp/vdp.cpp -------------------------------------------------------------------------------- /higan/sg/vdp/vdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/sg/vdp/vdp.hpp -------------------------------------------------------------------------------- /higan/ws/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/GNUmakefile -------------------------------------------------------------------------------- /higan/ws/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/apu.cpp -------------------------------------------------------------------------------- /higan/ws/apu/apu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/apu.hpp -------------------------------------------------------------------------------- /higan/ws/apu/channel1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/channel1.cpp -------------------------------------------------------------------------------- /higan/ws/apu/channel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/channel2.cpp -------------------------------------------------------------------------------- /higan/ws/apu/channel3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/channel3.cpp -------------------------------------------------------------------------------- /higan/ws/apu/channel4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/channel4.cpp -------------------------------------------------------------------------------- /higan/ws/apu/channel5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/channel5.cpp -------------------------------------------------------------------------------- /higan/ws/apu/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/dma.cpp -------------------------------------------------------------------------------- /higan/ws/apu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/apu/io.cpp -------------------------------------------------------------------------------- /higan/ws/cartridge/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cartridge/io.cpp -------------------------------------------------------------------------------- /higan/ws/cartridge/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cartridge/rtc.cpp -------------------------------------------------------------------------------- /higan/ws/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/cpu.cpp -------------------------------------------------------------------------------- /higan/ws/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/cpu.hpp -------------------------------------------------------------------------------- /higan/ws/cpu/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/debugger.cpp -------------------------------------------------------------------------------- /higan/ws/cpu/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/dma.cpp -------------------------------------------------------------------------------- /higan/ws/cpu/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/interrupt.cpp -------------------------------------------------------------------------------- /higan/ws/cpu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/cpu/io.cpp -------------------------------------------------------------------------------- /higan/ws/eeprom/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/eeprom/eeprom.cpp -------------------------------------------------------------------------------- /higan/ws/eeprom/eeprom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/eeprom/eeprom.hpp -------------------------------------------------------------------------------- /higan/ws/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/memory/memory.cpp -------------------------------------------------------------------------------- /higan/ws/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/memory/memory.hpp -------------------------------------------------------------------------------- /higan/ws/ppu/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/color.cpp -------------------------------------------------------------------------------- /higan/ws/ppu/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/io.cpp -------------------------------------------------------------------------------- /higan/ws/ppu/latch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/latch.cpp -------------------------------------------------------------------------------- /higan/ws/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/ppu.cpp -------------------------------------------------------------------------------- /higan/ws/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/ppu.hpp -------------------------------------------------------------------------------- /higan/ws/ppu/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ppu/render.cpp -------------------------------------------------------------------------------- /higan/ws/system/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/system/io.cpp -------------------------------------------------------------------------------- /higan/ws/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/system/system.cpp -------------------------------------------------------------------------------- /higan/ws/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/system/system.hpp -------------------------------------------------------------------------------- /higan/ws/ws.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/higan/ws/ws.hpp -------------------------------------------------------------------------------- /hiro/.gitignore: -------------------------------------------------------------------------------- 1 | qt/qt.moc 2 | -------------------------------------------------------------------------------- /hiro/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/GNUmakefile -------------------------------------------------------------------------------- /hiro/cocoa/action/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/action/menu.cpp -------------------------------------------------------------------------------- /hiro/cocoa/action/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/action/menu.hpp -------------------------------------------------------------------------------- /hiro/cocoa/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/application.cpp -------------------------------------------------------------------------------- /hiro/cocoa/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/application.hpp -------------------------------------------------------------------------------- /hiro/cocoa/desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/desktop.cpp -------------------------------------------------------------------------------- /hiro/cocoa/desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/desktop.hpp -------------------------------------------------------------------------------- /hiro/cocoa/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/font.cpp -------------------------------------------------------------------------------- /hiro/cocoa/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/font.hpp -------------------------------------------------------------------------------- /hiro/cocoa/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/group.cpp -------------------------------------------------------------------------------- /hiro/cocoa/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/group.hpp -------------------------------------------------------------------------------- /hiro/cocoa/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/header.hpp -------------------------------------------------------------------------------- /hiro/cocoa/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/keyboard.cpp -------------------------------------------------------------------------------- /hiro/cocoa/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/keyboard.hpp -------------------------------------------------------------------------------- /hiro/cocoa/menu-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/menu-bar.cpp -------------------------------------------------------------------------------- /hiro/cocoa/menu-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/menu-bar.hpp -------------------------------------------------------------------------------- /hiro/cocoa/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/monitor.cpp -------------------------------------------------------------------------------- /hiro/cocoa/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/monitor.hpp -------------------------------------------------------------------------------- /hiro/cocoa/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/mouse.cpp -------------------------------------------------------------------------------- /hiro/cocoa/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/mouse.hpp -------------------------------------------------------------------------------- /hiro/cocoa/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/object.cpp -------------------------------------------------------------------------------- /hiro/cocoa/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/object.hpp -------------------------------------------------------------------------------- /hiro/cocoa/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/platform.cpp -------------------------------------------------------------------------------- /hiro/cocoa/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/platform.hpp -------------------------------------------------------------------------------- /hiro/cocoa/popup-menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/popup-menu.cpp -------------------------------------------------------------------------------- /hiro/cocoa/popup-menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/popup-menu.hpp -------------------------------------------------------------------------------- /hiro/cocoa/sizable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/sizable.cpp -------------------------------------------------------------------------------- /hiro/cocoa/sizable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/sizable.hpp -------------------------------------------------------------------------------- /hiro/cocoa/status-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/status-bar.cpp -------------------------------------------------------------------------------- /hiro/cocoa/status-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/status-bar.hpp -------------------------------------------------------------------------------- /hiro/cocoa/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/timer.cpp -------------------------------------------------------------------------------- /hiro/cocoa/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/timer.hpp -------------------------------------------------------------------------------- /hiro/cocoa/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/utility.cpp -------------------------------------------------------------------------------- /hiro/cocoa/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/window.cpp -------------------------------------------------------------------------------- /hiro/cocoa/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/cocoa/window.hpp -------------------------------------------------------------------------------- /hiro/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/components.hpp -------------------------------------------------------------------------------- /hiro/core/action/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/action/menu.cpp -------------------------------------------------------------------------------- /hiro/core/alignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/alignment.cpp -------------------------------------------------------------------------------- /hiro/core/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/application.cpp -------------------------------------------------------------------------------- /hiro/core/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/application.hpp -------------------------------------------------------------------------------- /hiro/core/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/attribute.cpp -------------------------------------------------------------------------------- /hiro/core/attribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/attribute.hpp -------------------------------------------------------------------------------- /hiro/core/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/color.cpp -------------------------------------------------------------------------------- /hiro/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/core.cpp -------------------------------------------------------------------------------- /hiro/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/core.hpp -------------------------------------------------------------------------------- /hiro/core/desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/desktop.cpp -------------------------------------------------------------------------------- /hiro/core/desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/desktop.hpp -------------------------------------------------------------------------------- /hiro/core/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/font.cpp -------------------------------------------------------------------------------- /hiro/core/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/font.hpp -------------------------------------------------------------------------------- /hiro/core/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/geometry.cpp -------------------------------------------------------------------------------- /hiro/core/gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/gradient.cpp -------------------------------------------------------------------------------- /hiro/core/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/group.cpp -------------------------------------------------------------------------------- /hiro/core/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/group.hpp -------------------------------------------------------------------------------- /hiro/core/hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/hotkey.cpp -------------------------------------------------------------------------------- /hiro/core/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/keyboard.cpp -------------------------------------------------------------------------------- /hiro/core/lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/lock.hpp -------------------------------------------------------------------------------- /hiro/core/menu-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/menu-bar.cpp -------------------------------------------------------------------------------- /hiro/core/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/monitor.cpp -------------------------------------------------------------------------------- /hiro/core/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/monitor.hpp -------------------------------------------------------------------------------- /hiro/core/mouse-cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/mouse-cursor.cpp -------------------------------------------------------------------------------- /hiro/core/mouse-cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/mouse-cursor.hpp -------------------------------------------------------------------------------- /hiro/core/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/mouse.cpp -------------------------------------------------------------------------------- /hiro/core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/object.cpp -------------------------------------------------------------------------------- /hiro/core/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/object.hpp -------------------------------------------------------------------------------- /hiro/core/popup-menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/popup-menu.cpp -------------------------------------------------------------------------------- /hiro/core/position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/position.cpp -------------------------------------------------------------------------------- /hiro/core/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/shared.hpp -------------------------------------------------------------------------------- /hiro/core/sizable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/sizable.cpp -------------------------------------------------------------------------------- /hiro/core/sizable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/sizable.hpp -------------------------------------------------------------------------------- /hiro/core/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/size.cpp -------------------------------------------------------------------------------- /hiro/core/status-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/status-bar.cpp -------------------------------------------------------------------------------- /hiro/core/text-cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/text-cursor.cpp -------------------------------------------------------------------------------- /hiro/core/text-cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/text-cursor.hpp -------------------------------------------------------------------------------- /hiro/core/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/timer.cpp -------------------------------------------------------------------------------- /hiro/core/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/timer.hpp -------------------------------------------------------------------------------- /hiro/core/widget/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/widget/frame.cpp -------------------------------------------------------------------------------- /hiro/core/widget/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/widget/label.cpp -------------------------------------------------------------------------------- /hiro/core/widget/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/widget/label.hpp -------------------------------------------------------------------------------- /hiro/core/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/window.cpp -------------------------------------------------------------------------------- /hiro/core/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/core/window.hpp -------------------------------------------------------------------------------- /hiro/extension/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/extension/shared.hpp -------------------------------------------------------------------------------- /hiro/gtk/action/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/action/action.cpp -------------------------------------------------------------------------------- /hiro/gtk/action/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/action/action.hpp -------------------------------------------------------------------------------- /hiro/gtk/action/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/action/menu.cpp -------------------------------------------------------------------------------- /hiro/gtk/action/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/action/menu.hpp -------------------------------------------------------------------------------- /hiro/gtk/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/application.cpp -------------------------------------------------------------------------------- /hiro/gtk/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/application.hpp -------------------------------------------------------------------------------- /hiro/gtk/desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/desktop.cpp -------------------------------------------------------------------------------- /hiro/gtk/desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/desktop.hpp -------------------------------------------------------------------------------- /hiro/gtk/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/font.cpp -------------------------------------------------------------------------------- /hiro/gtk/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/font.hpp -------------------------------------------------------------------------------- /hiro/gtk/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/group.cpp -------------------------------------------------------------------------------- /hiro/gtk/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/group.hpp -------------------------------------------------------------------------------- /hiro/gtk/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/header.hpp -------------------------------------------------------------------------------- /hiro/gtk/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/keyboard.cpp -------------------------------------------------------------------------------- /hiro/gtk/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/keyboard.hpp -------------------------------------------------------------------------------- /hiro/gtk/menu-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/menu-bar.cpp -------------------------------------------------------------------------------- /hiro/gtk/menu-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/menu-bar.hpp -------------------------------------------------------------------------------- /hiro/gtk/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/monitor.cpp -------------------------------------------------------------------------------- /hiro/gtk/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/monitor.hpp -------------------------------------------------------------------------------- /hiro/gtk/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/mouse.cpp -------------------------------------------------------------------------------- /hiro/gtk/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/mouse.hpp -------------------------------------------------------------------------------- /hiro/gtk/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/object.cpp -------------------------------------------------------------------------------- /hiro/gtk/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/object.hpp -------------------------------------------------------------------------------- /hiro/gtk/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/platform.cpp -------------------------------------------------------------------------------- /hiro/gtk/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/platform.hpp -------------------------------------------------------------------------------- /hiro/gtk/popup-menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/popup-menu.cpp -------------------------------------------------------------------------------- /hiro/gtk/popup-menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/popup-menu.hpp -------------------------------------------------------------------------------- /hiro/gtk/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/settings.cpp -------------------------------------------------------------------------------- /hiro/gtk/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/settings.hpp -------------------------------------------------------------------------------- /hiro/gtk/sizable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/sizable.cpp -------------------------------------------------------------------------------- /hiro/gtk/sizable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/sizable.hpp -------------------------------------------------------------------------------- /hiro/gtk/status-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/status-bar.cpp -------------------------------------------------------------------------------- /hiro/gtk/status-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/status-bar.hpp -------------------------------------------------------------------------------- /hiro/gtk/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/timer.cpp -------------------------------------------------------------------------------- /hiro/gtk/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/timer.hpp -------------------------------------------------------------------------------- /hiro/gtk/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/utility.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/button.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/button.hpp -------------------------------------------------------------------------------- /hiro/gtk/widget/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/canvas.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/canvas.hpp -------------------------------------------------------------------------------- /hiro/gtk/widget/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/frame.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/frame.hpp -------------------------------------------------------------------------------- /hiro/gtk/widget/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/label.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/label.hpp -------------------------------------------------------------------------------- /hiro/gtk/widget/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/widget.cpp -------------------------------------------------------------------------------- /hiro/gtk/widget/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/widget/widget.hpp -------------------------------------------------------------------------------- /hiro/gtk/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/window.cpp -------------------------------------------------------------------------------- /hiro/gtk/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/gtk/window.hpp -------------------------------------------------------------------------------- /hiro/hiro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/hiro.cpp -------------------------------------------------------------------------------- /hiro/hiro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/hiro.hpp -------------------------------------------------------------------------------- /hiro/platform/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hiro/qt/action/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/action/action.cpp -------------------------------------------------------------------------------- /hiro/qt/action/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/action/action.hpp -------------------------------------------------------------------------------- /hiro/qt/action/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/action/menu.cpp -------------------------------------------------------------------------------- /hiro/qt/action/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/action/menu.hpp -------------------------------------------------------------------------------- /hiro/qt/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/application.cpp -------------------------------------------------------------------------------- /hiro/qt/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/application.hpp -------------------------------------------------------------------------------- /hiro/qt/browser-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/browser-window.cpp -------------------------------------------------------------------------------- /hiro/qt/browser-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/browser-window.hpp -------------------------------------------------------------------------------- /hiro/qt/desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/desktop.cpp -------------------------------------------------------------------------------- /hiro/qt/desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/desktop.hpp -------------------------------------------------------------------------------- /hiro/qt/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/font.cpp -------------------------------------------------------------------------------- /hiro/qt/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/font.hpp -------------------------------------------------------------------------------- /hiro/qt/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/group.cpp -------------------------------------------------------------------------------- /hiro/qt/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/group.hpp -------------------------------------------------------------------------------- /hiro/qt/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/header.hpp -------------------------------------------------------------------------------- /hiro/qt/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/keyboard.cpp -------------------------------------------------------------------------------- /hiro/qt/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/keyboard.hpp -------------------------------------------------------------------------------- /hiro/qt/menu-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/menu-bar.cpp -------------------------------------------------------------------------------- /hiro/qt/menu-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/menu-bar.hpp -------------------------------------------------------------------------------- /hiro/qt/message-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/message-window.cpp -------------------------------------------------------------------------------- /hiro/qt/message-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/message-window.hpp -------------------------------------------------------------------------------- /hiro/qt/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/monitor.cpp -------------------------------------------------------------------------------- /hiro/qt/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/monitor.hpp -------------------------------------------------------------------------------- /hiro/qt/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/mouse.cpp -------------------------------------------------------------------------------- /hiro/qt/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/mouse.hpp -------------------------------------------------------------------------------- /hiro/qt/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/object.cpp -------------------------------------------------------------------------------- /hiro/qt/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/object.hpp -------------------------------------------------------------------------------- /hiro/qt/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/platform.cpp -------------------------------------------------------------------------------- /hiro/qt/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/platform.hpp -------------------------------------------------------------------------------- /hiro/qt/popup-menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/popup-menu.cpp -------------------------------------------------------------------------------- /hiro/qt/popup-menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/popup-menu.hpp -------------------------------------------------------------------------------- /hiro/qt/qt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/qt.hpp -------------------------------------------------------------------------------- /hiro/qt/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/settings.cpp -------------------------------------------------------------------------------- /hiro/qt/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/settings.hpp -------------------------------------------------------------------------------- /hiro/qt/sizable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/sizable.cpp -------------------------------------------------------------------------------- /hiro/qt/sizable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/sizable.hpp -------------------------------------------------------------------------------- /hiro/qt/status-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/status-bar.cpp -------------------------------------------------------------------------------- /hiro/qt/status-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/status-bar.hpp -------------------------------------------------------------------------------- /hiro/qt/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/timer.cpp -------------------------------------------------------------------------------- /hiro/qt/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/timer.hpp -------------------------------------------------------------------------------- /hiro/qt/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/utility.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/button.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/button.hpp -------------------------------------------------------------------------------- /hiro/qt/widget/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/canvas.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/canvas.hpp -------------------------------------------------------------------------------- /hiro/qt/widget/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/frame.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/frame.hpp -------------------------------------------------------------------------------- /hiro/qt/widget/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/label.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/label.hpp -------------------------------------------------------------------------------- /hiro/qt/widget/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/widget.cpp -------------------------------------------------------------------------------- /hiro/qt/widget/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/widget/widget.hpp -------------------------------------------------------------------------------- /hiro/qt/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/window.cpp -------------------------------------------------------------------------------- /hiro/qt/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/qt/window.hpp -------------------------------------------------------------------------------- /hiro/resource/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/resource/GNUmakefile -------------------------------------------------------------------------------- /hiro/resource/icon/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hiro/resource/resource.bml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/resource/resource.bml -------------------------------------------------------------------------------- /hiro/resource/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/resource/resource.cpp -------------------------------------------------------------------------------- /hiro/resource/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/resource/resource.hpp -------------------------------------------------------------------------------- /hiro/windows/desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/desktop.cpp -------------------------------------------------------------------------------- /hiro/windows/desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/desktop.hpp -------------------------------------------------------------------------------- /hiro/windows/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/font.cpp -------------------------------------------------------------------------------- /hiro/windows/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/font.hpp -------------------------------------------------------------------------------- /hiro/windows/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/group.cpp -------------------------------------------------------------------------------- /hiro/windows/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/group.hpp -------------------------------------------------------------------------------- /hiro/windows/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/header.hpp -------------------------------------------------------------------------------- /hiro/windows/hiro.Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/hiro.Manifest -------------------------------------------------------------------------------- /hiro/windows/hiro.rc: -------------------------------------------------------------------------------- 1 | 1 24 "hiro.Manifest" 2 | -------------------------------------------------------------------------------- /hiro/windows/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/keyboard.cpp -------------------------------------------------------------------------------- /hiro/windows/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/keyboard.hpp -------------------------------------------------------------------------------- /hiro/windows/menu-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/menu-bar.cpp -------------------------------------------------------------------------------- /hiro/windows/menu-bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/menu-bar.hpp -------------------------------------------------------------------------------- /hiro/windows/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/monitor.cpp -------------------------------------------------------------------------------- /hiro/windows/monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/monitor.hpp -------------------------------------------------------------------------------- /hiro/windows/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/mouse.cpp -------------------------------------------------------------------------------- /hiro/windows/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/mouse.hpp -------------------------------------------------------------------------------- /hiro/windows/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/object.cpp -------------------------------------------------------------------------------- /hiro/windows/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/object.hpp -------------------------------------------------------------------------------- /hiro/windows/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/platform.cpp -------------------------------------------------------------------------------- /hiro/windows/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/platform.hpp -------------------------------------------------------------------------------- /hiro/windows/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/settings.cpp -------------------------------------------------------------------------------- /hiro/windows/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/settings.hpp -------------------------------------------------------------------------------- /hiro/windows/sizable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/sizable.cpp -------------------------------------------------------------------------------- /hiro/windows/sizable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/sizable.hpp -------------------------------------------------------------------------------- /hiro/windows/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/timer.cpp -------------------------------------------------------------------------------- /hiro/windows/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/timer.hpp -------------------------------------------------------------------------------- /hiro/windows/tool-tip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/tool-tip.cpp -------------------------------------------------------------------------------- /hiro/windows/tool-tip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/tool-tip.hpp -------------------------------------------------------------------------------- /hiro/windows/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/utility.cpp -------------------------------------------------------------------------------- /hiro/windows/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/window.cpp -------------------------------------------------------------------------------- /hiro/windows/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/hiro/windows/window.hpp -------------------------------------------------------------------------------- /icarus/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/GNUmakefile -------------------------------------------------------------------------------- /icarus/cartridge/msx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/cartridge/msx.cpp -------------------------------------------------------------------------------- /icarus/cartridge/msx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/cartridge/msx2.cpp -------------------------------------------------------------------------------- /icarus/icarus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/icarus.cpp -------------------------------------------------------------------------------- /icarus/icarus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/icarus.hpp -------------------------------------------------------------------------------- /icarus/media/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/media/media.cpp -------------------------------------------------------------------------------- /icarus/media/media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/media/media.hpp -------------------------------------------------------------------------------- /icarus/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /icarus/out/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /icarus/program/home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/program/home.cpp -------------------------------------------------------------------------------- /icarus/program/home.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/program/home.hpp -------------------------------------------------------------------------------- /icarus/program/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/program/program.cpp -------------------------------------------------------------------------------- /icarus/program/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/program/program.hpp -------------------------------------------------------------------------------- /icarus/resource/icarus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/resource/icarus.ico -------------------------------------------------------------------------------- /icarus/resource/icarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/resource/icarus.png -------------------------------------------------------------------------------- /icarus/resource/icarus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/resource/icarus.rc -------------------------------------------------------------------------------- /icarus/resource/icarus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/icarus/resource/icarus.svg -------------------------------------------------------------------------------- /icarus/resource/resource.bml: -------------------------------------------------------------------------------- 1 | namespace name=Resource 2 | -------------------------------------------------------------------------------- /icarus/resource/resource.hpp: -------------------------------------------------------------------------------- 1 | namespace Resource { 2 | } 3 | -------------------------------------------------------------------------------- /libco/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/GNUmakefile -------------------------------------------------------------------------------- /libco/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/LICENSE -------------------------------------------------------------------------------- /libco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/README.md -------------------------------------------------------------------------------- /libco/aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/aarch64.c -------------------------------------------------------------------------------- /libco/amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/amd64.c -------------------------------------------------------------------------------- /libco/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/arm.c -------------------------------------------------------------------------------- /libco/doc/targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/doc/targets.md -------------------------------------------------------------------------------- /libco/doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/doc/usage.md -------------------------------------------------------------------------------- /libco/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/fiber.c -------------------------------------------------------------------------------- /libco/libco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/libco.c -------------------------------------------------------------------------------- /libco/libco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/libco.h -------------------------------------------------------------------------------- /libco/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/ppc.c -------------------------------------------------------------------------------- /libco/ppc64v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/ppc64v2.c -------------------------------------------------------------------------------- /libco/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/settings.h -------------------------------------------------------------------------------- /libco/sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/sjlj.c -------------------------------------------------------------------------------- /libco/ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/ucontext.c -------------------------------------------------------------------------------- /libco/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/libco/x86.c -------------------------------------------------------------------------------- /nall/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/GNUmakefile -------------------------------------------------------------------------------- /nall/adaptive-array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/adaptive-array.hpp -------------------------------------------------------------------------------- /nall/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/algorithm.hpp -------------------------------------------------------------------------------- /nall/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/any.hpp -------------------------------------------------------------------------------- /nall/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/arguments.hpp -------------------------------------------------------------------------------- /nall/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/arithmetic.hpp -------------------------------------------------------------------------------- /nall/array-span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/array-span.hpp -------------------------------------------------------------------------------- /nall/array-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/array-view.hpp -------------------------------------------------------------------------------- /nall/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/array.hpp -------------------------------------------------------------------------------- /nall/atoi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/atoi.hpp -------------------------------------------------------------------------------- /nall/beat/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nall/beat/archive/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/beat/archive/node.hpp -------------------------------------------------------------------------------- /nall/beat/single/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/beat/single/apply.hpp -------------------------------------------------------------------------------- /nall/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/bit.hpp -------------------------------------------------------------------------------- /nall/bump-allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/bump-allocator.hpp -------------------------------------------------------------------------------- /nall/cd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd.hpp -------------------------------------------------------------------------------- /nall/cd/crc16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/crc16.hpp -------------------------------------------------------------------------------- /nall/cd/edc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/edc.hpp -------------------------------------------------------------------------------- /nall/cd/efm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/efm.hpp -------------------------------------------------------------------------------- /nall/cd/rspc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/rspc.hpp -------------------------------------------------------------------------------- /nall/cd/scrambler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/scrambler.hpp -------------------------------------------------------------------------------- /nall/cd/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/session.hpp -------------------------------------------------------------------------------- /nall/cd/sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cd/sync.hpp -------------------------------------------------------------------------------- /nall/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/chrono.hpp -------------------------------------------------------------------------------- /nall/cipher/chacha20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/cipher/chacha20.hpp -------------------------------------------------------------------------------- /nall/counting-sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/counting-sort.hpp -------------------------------------------------------------------------------- /nall/database/odbc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/database/odbc.hpp -------------------------------------------------------------------------------- /nall/database/sqlite3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/database/sqlite3.hpp -------------------------------------------------------------------------------- /nall/decode/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/base.hpp -------------------------------------------------------------------------------- /nall/decode/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/base64.hpp -------------------------------------------------------------------------------- /nall/decode/bmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/bmp.hpp -------------------------------------------------------------------------------- /nall/decode/bwt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/bwt.hpp -------------------------------------------------------------------------------- /nall/decode/cue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/cue.hpp -------------------------------------------------------------------------------- /nall/decode/gzip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/gzip.hpp -------------------------------------------------------------------------------- /nall/decode/html.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/html.hpp -------------------------------------------------------------------------------- /nall/decode/huffman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/huffman.hpp -------------------------------------------------------------------------------- /nall/decode/inflate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/inflate.hpp -------------------------------------------------------------------------------- /nall/decode/lzsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/lzsa.hpp -------------------------------------------------------------------------------- /nall/decode/mtf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/mtf.hpp -------------------------------------------------------------------------------- /nall/decode/png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/png.hpp -------------------------------------------------------------------------------- /nall/decode/rle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/rle.hpp -------------------------------------------------------------------------------- /nall/decode/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/url.hpp -------------------------------------------------------------------------------- /nall/decode/wav.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/wav.hpp -------------------------------------------------------------------------------- /nall/decode/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/decode/zip.hpp -------------------------------------------------------------------------------- /nall/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/directory.hpp -------------------------------------------------------------------------------- /nall/dl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/dl.hpp -------------------------------------------------------------------------------- /nall/dsp/dsp.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace nall::DSP { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /nall/dsp/iir/biquad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/dsp/iir/biquad.hpp -------------------------------------------------------------------------------- /nall/dsp/iir/one-pole.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/dsp/iir/one-pole.hpp -------------------------------------------------------------------------------- /nall/emulation/21fx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/emulation/21fx.hpp -------------------------------------------------------------------------------- /nall/encode/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/base.hpp -------------------------------------------------------------------------------- /nall/encode/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/base64.hpp -------------------------------------------------------------------------------- /nall/encode/bmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/bmp.hpp -------------------------------------------------------------------------------- /nall/encode/bwt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/bwt.hpp -------------------------------------------------------------------------------- /nall/encode/html.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/html.hpp -------------------------------------------------------------------------------- /nall/encode/huffman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/huffman.hpp -------------------------------------------------------------------------------- /nall/encode/lzsa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/lzsa.hpp -------------------------------------------------------------------------------- /nall/encode/mtf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/mtf.hpp -------------------------------------------------------------------------------- /nall/encode/png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/png.hpp -------------------------------------------------------------------------------- /nall/encode/rle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/rle.hpp -------------------------------------------------------------------------------- /nall/encode/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/url.hpp -------------------------------------------------------------------------------- /nall/encode/wav.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/wav.hpp -------------------------------------------------------------------------------- /nall/encode/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/encode/zip.hpp -------------------------------------------------------------------------------- /nall/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/endian.hpp -------------------------------------------------------------------------------- /nall/file-buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/file-buffer.hpp -------------------------------------------------------------------------------- /nall/file-map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/file-map.hpp -------------------------------------------------------------------------------- /nall/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/file.hpp -------------------------------------------------------------------------------- /nall/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/function.hpp -------------------------------------------------------------------------------- /nall/galois-field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/galois-field.hpp -------------------------------------------------------------------------------- /nall/hash/crc16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/crc16.hpp -------------------------------------------------------------------------------- /nall/hash/crc32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/crc32.hpp -------------------------------------------------------------------------------- /nall/hash/crc64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/crc64.hpp -------------------------------------------------------------------------------- /nall/hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/hash.hpp -------------------------------------------------------------------------------- /nall/hash/sha224.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/sha224.hpp -------------------------------------------------------------------------------- /nall/hash/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/sha256.hpp -------------------------------------------------------------------------------- /nall/hash/sha384.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/sha384.hpp -------------------------------------------------------------------------------- /nall/hash/sha512.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hash/sha512.hpp -------------------------------------------------------------------------------- /nall/hashset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hashset.hpp -------------------------------------------------------------------------------- /nall/hid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/hid.hpp -------------------------------------------------------------------------------- /nall/http/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/client.hpp -------------------------------------------------------------------------------- /nall/http/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/message.hpp -------------------------------------------------------------------------------- /nall/http/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/request.hpp -------------------------------------------------------------------------------- /nall/http/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/response.hpp -------------------------------------------------------------------------------- /nall/http/role.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/role.hpp -------------------------------------------------------------------------------- /nall/http/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/http/server.hpp -------------------------------------------------------------------------------- /nall/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image.hpp -------------------------------------------------------------------------------- /nall/image/blend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/blend.hpp -------------------------------------------------------------------------------- /nall/image/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/core.hpp -------------------------------------------------------------------------------- /nall/image/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/fill.hpp -------------------------------------------------------------------------------- /nall/image/load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/load.hpp -------------------------------------------------------------------------------- /nall/image/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/scale.hpp -------------------------------------------------------------------------------- /nall/image/static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/static.hpp -------------------------------------------------------------------------------- /nall/image/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/image/utility.hpp -------------------------------------------------------------------------------- /nall/induced-sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/induced-sort.hpp -------------------------------------------------------------------------------- /nall/inline-if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/inline-if.hpp -------------------------------------------------------------------------------- /nall/inode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/inode.hpp -------------------------------------------------------------------------------- /nall/instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/instance.hpp -------------------------------------------------------------------------------- /nall/interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/interpolation.hpp -------------------------------------------------------------------------------- /nall/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/intrinsics.hpp -------------------------------------------------------------------------------- /nall/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/iterator.hpp -------------------------------------------------------------------------------- /nall/literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/literals.hpp -------------------------------------------------------------------------------- /nall/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/locale.hpp -------------------------------------------------------------------------------- /nall/location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/location.hpp -------------------------------------------------------------------------------- /nall/mac/poly1305.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/mac/poly1305.hpp -------------------------------------------------------------------------------- /nall/macos/guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/macos/guard.hpp -------------------------------------------------------------------------------- /nall/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/main.hpp -------------------------------------------------------------------------------- /nall/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/map.hpp -------------------------------------------------------------------------------- /nall/matrix-multiply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/matrix-multiply.hpp -------------------------------------------------------------------------------- /nall/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/matrix.hpp -------------------------------------------------------------------------------- /nall/maybe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/maybe.hpp -------------------------------------------------------------------------------- /nall/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/memory.hpp -------------------------------------------------------------------------------- /nall/merge-sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/merge-sort.hpp -------------------------------------------------------------------------------- /nall/nall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/nall.hpp -------------------------------------------------------------------------------- /nall/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/path.hpp -------------------------------------------------------------------------------- /nall/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/platform.hpp -------------------------------------------------------------------------------- /nall/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/pointer.hpp -------------------------------------------------------------------------------- /nall/posix/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/posix/service.hpp -------------------------------------------------------------------------------- /nall/primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/primitives.hpp -------------------------------------------------------------------------------- /nall/primitives/real.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/primitives/real.hpp -------------------------------------------------------------------------------- /nall/primitives/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/primitives/types.hpp -------------------------------------------------------------------------------- /nall/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/property.hpp -------------------------------------------------------------------------------- /nall/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/queue.hpp -------------------------------------------------------------------------------- /nall/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/random.hpp -------------------------------------------------------------------------------- /nall/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/range.hpp -------------------------------------------------------------------------------- /nall/recompiler/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nall/reed-solomon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/reed-solomon.hpp -------------------------------------------------------------------------------- /nall/run.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/run.hpp -------------------------------------------------------------------------------- /nall/serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/serial.hpp -------------------------------------------------------------------------------- /nall/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/serializer.hpp -------------------------------------------------------------------------------- /nall/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/service.hpp -------------------------------------------------------------------------------- /nall/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/set.hpp -------------------------------------------------------------------------------- /nall/shared-memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/shared-memory.hpp -------------------------------------------------------------------------------- /nall/shared-pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/shared-pointer.hpp -------------------------------------------------------------------------------- /nall/smtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/smtp.hpp -------------------------------------------------------------------------------- /nall/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/stdint.hpp -------------------------------------------------------------------------------- /nall/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string.hpp -------------------------------------------------------------------------------- /nall/string/atoi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/atoi.hpp -------------------------------------------------------------------------------- /nall/string/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/cast.hpp -------------------------------------------------------------------------------- /nall/string/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/compare.hpp -------------------------------------------------------------------------------- /nall/string/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/convert.hpp -------------------------------------------------------------------------------- /nall/string/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/core.hpp -------------------------------------------------------------------------------- /nall/string/eval/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/eval/node.hpp -------------------------------------------------------------------------------- /nall/string/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/find.hpp -------------------------------------------------------------------------------- /nall/string/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/format.hpp -------------------------------------------------------------------------------- /nall/string/markup/bml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/markup/bml.hpp -------------------------------------------------------------------------------- /nall/string/markup/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/markup/xml.hpp -------------------------------------------------------------------------------- /nall/string/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/match.hpp -------------------------------------------------------------------------------- /nall/string/pascal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/pascal.hpp -------------------------------------------------------------------------------- /nall/string/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/replace.hpp -------------------------------------------------------------------------------- /nall/string/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/split.hpp -------------------------------------------------------------------------------- /nall/string/trim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/trim.hpp -------------------------------------------------------------------------------- /nall/string/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/utf8.hpp -------------------------------------------------------------------------------- /nall/string/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/utility.hpp -------------------------------------------------------------------------------- /nall/string/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/vector.hpp -------------------------------------------------------------------------------- /nall/string/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/string/view.hpp -------------------------------------------------------------------------------- /nall/suffix-array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/suffix-array.hpp -------------------------------------------------------------------------------- /nall/terminal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/terminal.hpp -------------------------------------------------------------------------------- /nall/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/thread.hpp -------------------------------------------------------------------------------- /nall/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/traits.hpp -------------------------------------------------------------------------------- /nall/unique-pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/unique-pointer.hpp -------------------------------------------------------------------------------- /nall/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/utility.hpp -------------------------------------------------------------------------------- /nall/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/variant.hpp -------------------------------------------------------------------------------- /nall/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/varint.hpp -------------------------------------------------------------------------------- /nall/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector.hpp -------------------------------------------------------------------------------- /nall/vector/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/access.hpp -------------------------------------------------------------------------------- /nall/vector/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/assign.hpp -------------------------------------------------------------------------------- /nall/vector/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/compare.hpp -------------------------------------------------------------------------------- /nall/vector/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/core.hpp -------------------------------------------------------------------------------- /nall/vector/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/iterator.hpp -------------------------------------------------------------------------------- /nall/vector/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/memory.hpp -------------------------------------------------------------------------------- /nall/vector/modify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/modify.hpp -------------------------------------------------------------------------------- /nall/vector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vector/utility.hpp -------------------------------------------------------------------------------- /nall/vfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vfs.hpp -------------------------------------------------------------------------------- /nall/vfs/cdrom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vfs/cdrom.hpp -------------------------------------------------------------------------------- /nall/vfs/disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vfs/disk.hpp -------------------------------------------------------------------------------- /nall/vfs/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vfs/memory.hpp -------------------------------------------------------------------------------- /nall/vfs/vfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/vfs/vfs.hpp -------------------------------------------------------------------------------- /nall/windows/detour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/detour.hpp -------------------------------------------------------------------------------- /nall/windows/guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/guard.hpp -------------------------------------------------------------------------------- /nall/windows/guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/guid.hpp -------------------------------------------------------------------------------- /nall/windows/launcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/launcher.hpp -------------------------------------------------------------------------------- /nall/windows/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/registry.hpp -------------------------------------------------------------------------------- /nall/windows/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/service.hpp -------------------------------------------------------------------------------- /nall/windows/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/windows/utf8.hpp -------------------------------------------------------------------------------- /nall/xorg/clipboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/xorg/clipboard.hpp -------------------------------------------------------------------------------- /nall/xorg/guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/xorg/guard.hpp -------------------------------------------------------------------------------- /nall/xorg/xorg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/nall/xorg/xorg.hpp -------------------------------------------------------------------------------- /ruby/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/GNUmakefile -------------------------------------------------------------------------------- /ruby/audio/alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/alsa.cpp -------------------------------------------------------------------------------- /ruby/audio/ao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/ao.cpp -------------------------------------------------------------------------------- /ruby/audio/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/asio.cpp -------------------------------------------------------------------------------- /ruby/audio/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/asio.hpp -------------------------------------------------------------------------------- /ruby/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/audio.cpp -------------------------------------------------------------------------------- /ruby/audio/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/audio.hpp -------------------------------------------------------------------------------- /ruby/audio/directsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/directsound.cpp -------------------------------------------------------------------------------- /ruby/audio/openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/openal.cpp -------------------------------------------------------------------------------- /ruby/audio/oss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/oss.cpp -------------------------------------------------------------------------------- /ruby/audio/pulseaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/pulseaudio.cpp -------------------------------------------------------------------------------- /ruby/audio/wasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/wasapi.cpp -------------------------------------------------------------------------------- /ruby/audio/waveout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/waveout.cpp -------------------------------------------------------------------------------- /ruby/audio/xaudio2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/xaudio2.cpp -------------------------------------------------------------------------------- /ruby/audio/xaudio2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/audio/xaudio2.hpp -------------------------------------------------------------------------------- /ruby/input/carbon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/carbon.cpp -------------------------------------------------------------------------------- /ruby/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/input.cpp -------------------------------------------------------------------------------- /ruby/input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/input.hpp -------------------------------------------------------------------------------- /ruby/input/joypad/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/joypad/sdl.cpp -------------------------------------------------------------------------------- /ruby/input/joypad/udev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/joypad/udev.cpp -------------------------------------------------------------------------------- /ruby/input/joypad/uhid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/joypad/uhid.cpp -------------------------------------------------------------------------------- /ruby/input/mouse/xlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/mouse/xlib.cpp -------------------------------------------------------------------------------- /ruby/input/quartz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/quartz.cpp -------------------------------------------------------------------------------- /ruby/input/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/sdl.cpp -------------------------------------------------------------------------------- /ruby/input/udev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/udev.cpp -------------------------------------------------------------------------------- /ruby/input/uhid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/uhid.cpp -------------------------------------------------------------------------------- /ruby/input/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/windows.cpp -------------------------------------------------------------------------------- /ruby/input/xlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/input/xlib.cpp -------------------------------------------------------------------------------- /ruby/ruby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/ruby.cpp -------------------------------------------------------------------------------- /ruby/ruby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/ruby.hpp -------------------------------------------------------------------------------- /ruby/video/cgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/cgl.cpp -------------------------------------------------------------------------------- /ruby/video/direct3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/direct3d.cpp -------------------------------------------------------------------------------- /ruby/video/directdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/directdraw.cpp -------------------------------------------------------------------------------- /ruby/video/gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/gdi.cpp -------------------------------------------------------------------------------- /ruby/video/glx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/glx.cpp -------------------------------------------------------------------------------- /ruby/video/glx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/glx2.cpp -------------------------------------------------------------------------------- /ruby/video/opengl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/opengl/bind.hpp -------------------------------------------------------------------------------- /ruby/video/opengl/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/opengl/main.hpp -------------------------------------------------------------------------------- /ruby/video/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/video.cpp -------------------------------------------------------------------------------- /ruby/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/video.hpp -------------------------------------------------------------------------------- /ruby/video/wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/wgl.cpp -------------------------------------------------------------------------------- /ruby/video/xshm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/xshm.cpp -------------------------------------------------------------------------------- /ruby/video/xvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/ruby/video/xvideo.cpp -------------------------------------------------------------------------------- /sourcery/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/sourcery/GNUmakefile -------------------------------------------------------------------------------- /sourcery/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sourcery/out/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sourcery/sourcery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/sourcery/sourcery.cpp -------------------------------------------------------------------------------- /update-subtrees.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/higan-emu/higan/HEAD/update-subtrees.sh --------------------------------------------------------------------------------