├── .gitignore ├── BuildStrings ├── BuildStrings.h └── BuildStrings.mm ├── Camera ├── CameraFactory.h ├── CameraFactory.mm ├── CameraInterface.h └── CameraInterface.mm ├── CommonTypes.h ├── Configuration ├── Configuration.h ├── Configuration.mm └── DefaultINI.h ├── Core ├── audio_core │ ├── codec.cpp │ ├── coreaudio_sink.cpp │ ├── dsp_interface.cpp │ ├── hle │ │ ├── aac_decoder.cpp │ │ ├── decoder.cpp │ │ ├── filter.cpp │ │ ├── hle.cpp │ │ ├── mixers.cpp │ │ └── source.cpp │ ├── input_details.cpp │ ├── interpolate.cpp │ ├── lle │ │ └── lle.cpp │ ├── openal_input.cpp │ ├── openal_sink.cpp │ ├── sdl3_sink.cpp │ ├── sink_details.cpp │ ├── static_input.cpp │ └── time_stretch.cpp ├── common │ ├── aarch64 │ │ └── cpu_detect.cpp │ ├── cityhash.cpp │ ├── detached_tasks.cpp │ ├── dynamic_library │ │ ├── dynamic_library.cpp │ │ └── ffmpeg.cpp │ ├── error.cpp │ ├── file_util.cpp │ ├── hacks │ │ ├── hack_list.cpp │ │ └── hack_manager.cpp │ ├── logging │ │ ├── backend.cpp │ │ ├── filter.cpp │ │ └── text_formatter.cpp │ ├── math_util.cpp │ ├── memory_detect.cpp │ ├── memory_ref.cpp │ ├── microprofile.cpp │ ├── param_package.cpp │ ├── play_time_manager.cpp │ ├── scm_rev.cpp │ ├── settings.cpp │ ├── string_util.cpp │ ├── texture.cpp │ ├── thread.cpp │ ├── timer.cpp │ └── zstd_compression.cpp ├── core │ ├── arm │ │ ├── dynarmic │ │ │ ├── arm_dynarmic.cpp │ │ │ ├── arm_dynarmic_cp15.cpp │ │ │ ├── arm_exclusive_monitor.cpp │ │ │ └── arm_tick_counts.cpp │ │ ├── dyncom │ │ │ ├── arm_dyncom.cpp │ │ │ ├── arm_dyncom_dec.cpp │ │ │ ├── arm_dyncom_interpreter.cpp │ │ │ ├── arm_dyncom_thumb.cpp │ │ │ └── arm_dyncom_trans.cpp │ │ ├── exclusive_monitor.cpp │ │ └── skyeye_common │ │ │ ├── armstate.cpp │ │ │ ├── armsupp.cpp │ │ │ └── vfp │ │ │ ├── vfp.cpp │ │ │ ├── vfpdouble.cpp │ │ │ ├── vfpinstr.cpp │ │ │ └── vfpsingle.cpp │ ├── cheats │ │ ├── cheat_base.cpp │ │ ├── cheats.cpp │ │ └── gateway_cheat.cpp │ ├── core.cpp │ ├── core_timing.cpp │ ├── dumping │ │ ├── backend.cpp │ │ └── ffmpeg_backend.cpp │ ├── file_sys │ │ ├── archive_artic.cpp │ │ ├── archive_backend.cpp │ │ ├── archive_extsavedata.cpp │ │ ├── archive_ncch.cpp │ │ ├── archive_other_savedata.cpp │ │ ├── archive_savedata.cpp │ │ ├── archive_sdmc.cpp │ │ ├── archive_sdmcwriteonly.cpp │ │ ├── archive_selfncch.cpp │ │ ├── archive_source_sd_savedata.cpp │ │ ├── archive_systemsavedata.cpp │ │ ├── artic_cache.cpp │ │ ├── certificate.cpp │ │ ├── cia_container.cpp │ │ ├── delay_generator.cpp │ │ ├── disk_archive.cpp │ │ ├── ivfc_archive.cpp │ │ ├── layered_fs.cpp │ │ ├── ncch_container.cpp │ │ ├── otp.cpp │ │ ├── patch.cpp │ │ ├── path_parser.cpp │ │ ├── plugin_3gx.cpp │ │ ├── romfs_reader.cpp │ │ ├── savedata_archive.cpp │ │ ├── secure_value_backend.cpp │ │ ├── secure_value_backend_artic.cpp │ │ ├── seed_db.cpp │ │ ├── ticket.cpp │ │ └── title_metadata.cpp │ ├── frontend │ │ ├── applets │ │ │ ├── default_applets.cpp │ │ │ ├── mii_selector.cpp │ │ │ └── swkbd.cpp │ │ ├── camera │ │ │ ├── blank_camera.cpp │ │ │ ├── factory.cpp │ │ │ └── interface.cpp │ │ ├── emu_window.cpp │ │ ├── framebuffer_layout.cpp │ │ └── image_interface.cpp │ ├── gdbstub │ │ ├── gdbstub.cpp │ │ └── hio.cpp │ ├── hle │ │ ├── applets │ │ │ ├── applet.cpp │ │ │ ├── erreula.cpp │ │ │ ├── mii_selector.cpp │ │ │ ├── mint.cpp │ │ │ └── swkbd.cpp │ │ ├── kernel │ │ │ ├── address_arbiter.cpp │ │ │ ├── client_port.cpp │ │ │ ├── client_session.cpp │ │ │ ├── config_mem.cpp │ │ │ ├── event.cpp │ │ │ ├── handle_table.cpp │ │ │ ├── hle_ipc.cpp │ │ │ ├── ipc.cpp │ │ │ ├── ipc_debugger │ │ │ │ └── recorder.cpp │ │ │ ├── kernel.cpp │ │ │ ├── memory.cpp │ │ │ ├── mutex.cpp │ │ │ ├── object.cpp │ │ │ ├── process.cpp │ │ │ ├── resource_limit.cpp │ │ │ ├── semaphore.cpp │ │ │ ├── server_port.cpp │ │ │ ├── server_session.cpp │ │ │ ├── session.cpp │ │ │ ├── shared_memory.cpp │ │ │ ├── shared_page.cpp │ │ │ ├── svc.cpp │ │ │ ├── thread.cpp │ │ │ ├── timer.cpp │ │ │ ├── vm_manager.cpp │ │ │ └── wait_object.cpp │ │ ├── mii.cpp │ │ ├── romfs.cpp │ │ └── service │ │ │ ├── ac │ │ │ ├── ac.cpp │ │ │ ├── ac_i.cpp │ │ │ └── ac_u.cpp │ │ │ ├── act │ │ │ ├── act.cpp │ │ │ ├── act_a.cpp │ │ │ ├── act_errors.cpp │ │ │ └── act_u.cpp │ │ │ ├── am │ │ │ ├── am.cpp │ │ │ ├── am_app.cpp │ │ │ ├── am_net.cpp │ │ │ ├── am_sys.cpp │ │ │ └── am_u.cpp │ │ │ ├── apt │ │ │ ├── applet_manager.cpp │ │ │ ├── apt.cpp │ │ │ ├── apt_a.cpp │ │ │ ├── apt_s.cpp │ │ │ ├── apt_u.cpp │ │ │ ├── bcfnt │ │ │ │ └── bcfnt.cpp │ │ │ ├── ns.cpp │ │ │ ├── ns_c.cpp │ │ │ └── ns_s.cpp │ │ │ ├── boss │ │ │ ├── boss.cpp │ │ │ ├── boss_p.cpp │ │ │ ├── boss_u.cpp │ │ │ └── online_service.cpp │ │ │ ├── cam │ │ │ ├── cam.cpp │ │ │ ├── cam_c.cpp │ │ │ ├── cam_q.cpp │ │ │ ├── cam_s.cpp │ │ │ ├── cam_u.cpp │ │ │ └── y2r_u.cpp │ │ │ ├── cecd │ │ │ ├── cecd.cpp │ │ │ ├── cecd_ndm.cpp │ │ │ ├── cecd_s.cpp │ │ │ └── cecd_u.cpp │ │ │ ├── cfg │ │ │ ├── cfg.cpp │ │ │ ├── cfg_defaults.cpp │ │ │ ├── cfg_i.cpp │ │ │ ├── cfg_nor.cpp │ │ │ ├── cfg_s.cpp │ │ │ └── cfg_u.cpp │ │ │ ├── csnd │ │ │ └── csnd_snd.cpp │ │ │ ├── dlp │ │ │ ├── dlp.cpp │ │ │ ├── dlp_clnt.cpp │ │ │ ├── dlp_fkcl.cpp │ │ │ └── dlp_srvr.cpp │ │ │ ├── dsp │ │ │ └── dsp_dsp.cpp │ │ │ ├── err │ │ │ └── err_f.cpp │ │ │ ├── frd │ │ │ ├── frd.cpp │ │ │ ├── frd_a.cpp │ │ │ └── frd_u.cpp │ │ │ ├── fs │ │ │ ├── archive.cpp │ │ │ ├── directory.cpp │ │ │ ├── file.cpp │ │ │ └── fs_user.cpp │ │ │ ├── gsp │ │ │ ├── gsp.cpp │ │ │ ├── gsp_gpu.cpp │ │ │ └── gsp_lcd.cpp │ │ │ ├── hid │ │ │ ├── hid.cpp │ │ │ ├── hid_spvr.cpp │ │ │ └── hid_user.cpp │ │ │ ├── http │ │ │ └── http_c.cpp │ │ │ ├── ir │ │ │ ├── extra_hid.cpp │ │ │ ├── ir.cpp │ │ │ ├── ir_rst.cpp │ │ │ ├── ir_u.cpp │ │ │ └── ir_user.cpp │ │ │ ├── ldr_ro │ │ │ ├── cro_helper.cpp │ │ │ └── ldr_ro.cpp │ │ │ ├── mcu │ │ │ ├── mcu.cpp │ │ │ └── mcu_hwc.cpp │ │ │ ├── mic │ │ │ └── mic_u.cpp │ │ │ ├── mvd │ │ │ ├── mvd.cpp │ │ │ └── mvd_std.cpp │ │ │ ├── ndm │ │ │ └── ndm_u.cpp │ │ │ ├── news │ │ │ ├── news.cpp │ │ │ ├── news_s.cpp │ │ │ └── news_u.cpp │ │ │ ├── nfc │ │ │ ├── amiibo_crypto.cpp │ │ │ ├── nfc.cpp │ │ │ ├── nfc_device.cpp │ │ │ ├── nfc_m.cpp │ │ │ └── nfc_u.cpp │ │ │ ├── nim │ │ │ ├── nim.cpp │ │ │ ├── nim_aoc.cpp │ │ │ ├── nim_s.cpp │ │ │ └── nim_u.cpp │ │ │ ├── nwm │ │ │ ├── nwm.cpp │ │ │ ├── nwm_cec.cpp │ │ │ ├── nwm_ext.cpp │ │ │ ├── nwm_inf.cpp │ │ │ ├── nwm_sap.cpp │ │ │ ├── nwm_soc.cpp │ │ │ ├── nwm_tst.cpp │ │ │ ├── nwm_uds.cpp │ │ │ ├── uds_beacon.cpp │ │ │ ├── uds_connection.cpp │ │ │ └── uds_data.cpp │ │ │ ├── plgldr │ │ │ └── plgldr.cpp │ │ │ ├── pm │ │ │ ├── pm.cpp │ │ │ ├── pm_app.cpp │ │ │ └── pm_dbg.cpp │ │ │ ├── ps │ │ │ └── ps_ps.cpp │ │ │ ├── ptm │ │ │ ├── ptm.cpp │ │ │ ├── ptm_gets.cpp │ │ │ ├── ptm_play.cpp │ │ │ ├── ptm_sets.cpp │ │ │ ├── ptm_sysm.cpp │ │ │ └── ptm_u.cpp │ │ │ ├── pxi │ │ │ ├── dev.cpp │ │ │ └── pxi.cpp │ │ │ ├── qtm │ │ │ ├── qtm.cpp │ │ │ ├── qtm_c.cpp │ │ │ ├── qtm_s.cpp │ │ │ ├── qtm_sp.cpp │ │ │ └── qtm_u.cpp │ │ │ ├── service.cpp │ │ │ ├── sm │ │ │ ├── sm.cpp │ │ │ └── srv.cpp │ │ │ ├── soc │ │ │ └── soc_u.cpp │ │ │ └── ssl │ │ │ └── ssl_c.cpp │ ├── hw │ │ ├── aes │ │ │ ├── arithmetic128.cpp │ │ │ ├── ccm.cpp │ │ │ └── key.cpp │ │ ├── ecc.cpp │ │ ├── rsa │ │ │ └── rsa.cpp │ │ ├── unique_data.cpp │ │ └── y2r.cpp │ ├── loader │ │ ├── 3dsx.cpp │ │ ├── artic.cpp │ │ ├── elf.cpp │ │ ├── loader.cpp │ │ ├── ncch.cpp │ │ └── smdh.cpp │ ├── memory.cpp │ ├── movie.cpp │ ├── nus_download.cpp │ ├── perf_stats.cpp │ ├── rpc │ │ ├── packet.cpp │ │ ├── rpc_server.cpp │ │ ├── server.cpp │ │ └── udp_server.cpp │ ├── savestate.cpp │ ├── system_titles.cpp │ └── tracer │ │ └── recorder.cpp ├── include │ ├── audio_core │ │ ├── audio_types.h │ │ ├── codec.h │ │ ├── coreaudio_sink.h │ │ ├── dsp_interface.h │ │ ├── hle │ │ │ ├── aac_decoder.h │ │ │ ├── common.h │ │ │ ├── decoder.h │ │ │ ├── filter.h │ │ │ ├── hle.h │ │ │ ├── mixers.h │ │ │ ├── shared_memory.h │ │ │ └── source.h │ │ ├── input.h │ │ ├── input_details.h │ │ ├── interpolate.h │ │ ├── lle │ │ │ └── lle.h │ │ ├── null_input.h │ │ ├── null_sink.h │ │ ├── openal_input.h │ │ ├── openal_sink.h │ │ ├── precompiled_headers.h │ │ ├── sdl3_sink.h │ │ ├── sink.h │ │ ├── sink_details.h │ │ ├── static_input.h │ │ └── time_stretch.h │ ├── common │ │ ├── aarch64 │ │ │ ├── cpu_detect.h │ │ │ ├── oaknut_abi.h │ │ │ └── oaknut_util.h │ │ ├── alignment.h │ │ ├── announce_multiplayer_room.h │ │ ├── arch.h │ │ ├── archives.h │ │ ├── assert.h │ │ ├── atomic_ops.h │ │ ├── bit_field.h │ │ ├── bit_set.h │ │ ├── bounded_threadsafe_queue.h │ │ ├── cityhash.h │ │ ├── color.h │ │ ├── common_funcs.h │ │ ├── common_paths.h │ │ ├── common_precompiled_headers.h │ │ ├── common_types.h │ │ ├── construct.h │ │ ├── detached_tasks.h │ │ ├── dynamic_library │ │ │ ├── dynamic_library.h │ │ │ └── ffmpeg.h │ │ ├── error.h │ │ ├── expected.h │ │ ├── file_util.h │ │ ├── hacks │ │ │ ├── hack_list.h │ │ │ └── hack_manager.h │ │ ├── hash.h │ │ ├── literals.h │ │ ├── logging │ │ │ ├── backend.h │ │ │ ├── filter.h │ │ │ ├── formatter.h │ │ │ ├── log.h │ │ │ ├── log_entry.h │ │ │ ├── text_formatter.h │ │ │ └── types.h │ │ ├── math_util.h │ │ ├── memory_detect.h │ │ ├── memory_ref.h │ │ ├── microprofile.h │ │ ├── microprofileui.h │ │ ├── param_package.h │ │ ├── play_time_manager.h │ │ ├── polyfill_thread.h │ │ ├── precompiled_headers.h │ │ ├── quaternion.h │ │ ├── ring_buffer.h │ │ ├── scm_rev.h │ │ ├── scope_exit.h │ │ ├── serialization │ │ │ ├── atomic.h │ │ │ ├── boost_discrete_interval.hpp │ │ │ ├── boost_flat_set.h │ │ │ ├── boost_interval_set.hpp │ │ │ ├── boost_small_vector.hpp │ │ │ ├── boost_std_variant.hpp │ │ │ └── boost_vector.hpp │ │ ├── settings.h │ │ ├── slot_vector.h │ │ ├── static_lru_cache.h │ │ ├── string_literal.h │ │ ├── string_util.h │ │ ├── swap.h │ │ ├── texture.h │ │ ├── thread.h │ │ ├── thread_queue_list.h │ │ ├── thread_worker.h │ │ ├── threadsafe_queue.h │ │ ├── timer.h │ │ ├── unique_function.h │ │ ├── vector_math.h │ │ ├── web_result.h │ │ └── zstd_compression.h │ ├── core │ │ ├── 3ds.h │ │ ├── arm │ │ │ ├── arm_interface.h │ │ │ ├── dynarmic │ │ │ │ ├── arm_dynarmic.h │ │ │ │ ├── arm_dynarmic_cp15.h │ │ │ │ ├── arm_exclusive_monitor.h │ │ │ │ └── arm_tick_counts.h │ │ │ ├── dyncom │ │ │ │ ├── arm_dyncom.h │ │ │ │ ├── arm_dyncom_dec.h │ │ │ │ ├── arm_dyncom_interpreter.h │ │ │ │ ├── arm_dyncom_run.h │ │ │ │ ├── arm_dyncom_thumb.h │ │ │ │ └── arm_dyncom_trans.h │ │ │ ├── exclusive_monitor.h │ │ │ └── skyeye_common │ │ │ │ ├── arm_regformat.h │ │ │ │ ├── armstate.h │ │ │ │ ├── armsupp.h │ │ │ │ └── vfp │ │ │ │ ├── asm_vfp.h │ │ │ │ ├── vfp.h │ │ │ │ ├── vfp_helper.h │ │ │ │ └── vfpinstr.cpp │ │ ├── cheats │ │ │ ├── cheat_base.h │ │ │ ├── cheats.h │ │ │ └── gateway_cheat.h │ │ ├── core.h │ │ ├── core_timing.h │ │ ├── dumping │ │ │ ├── backend.h │ │ │ └── ffmpeg_backend.h │ │ ├── file_sys │ │ │ ├── archive_artic.h │ │ │ ├── archive_backend.h │ │ │ ├── archive_extsavedata.h │ │ │ ├── archive_ncch.h │ │ │ ├── archive_other_savedata.h │ │ │ ├── archive_savedata.h │ │ │ ├── archive_sdmc.h │ │ │ ├── archive_sdmcwriteonly.h │ │ │ ├── archive_selfncch.h │ │ │ ├── archive_source_sd_savedata.h │ │ │ ├── archive_systemsavedata.h │ │ │ ├── artic_cache.h │ │ │ ├── certificate.h │ │ │ ├── cia_container.h │ │ │ ├── delay_generator.h │ │ │ ├── directory_backend.h │ │ │ ├── disk_archive.h │ │ │ ├── errors.h │ │ │ ├── file_backend.h │ │ │ ├── ivfc_archive.h │ │ │ ├── layered_fs.h │ │ │ ├── ncch_container.h │ │ │ ├── otp.h │ │ │ ├── patch.h │ │ │ ├── path_parser.h │ │ │ ├── plugin_3gx.h │ │ │ ├── plugin_3gx_bootloader.h │ │ │ ├── romfs_reader.h │ │ │ ├── savedata_archive.h │ │ │ ├── secure_value_backend.h │ │ │ ├── secure_value_backend_artic.h │ │ │ ├── seed_db.h │ │ │ ├── signature.h │ │ │ ├── ticket.h │ │ │ └── title_metadata.h │ │ ├── frontend │ │ │ ├── applets │ │ │ │ ├── default_applets.h │ │ │ │ ├── mii_selector.h │ │ │ │ └── swkbd.h │ │ │ ├── camera │ │ │ │ ├── blank_camera.h │ │ │ │ ├── factory.h │ │ │ │ └── interface.h │ │ │ ├── emu_window.h │ │ │ ├── framebuffer_layout.h │ │ │ ├── image_interface.h │ │ │ └── input.h │ │ ├── gdbstub │ │ │ ├── gdbstub.h │ │ │ └── hio.h │ │ ├── global.h │ │ ├── hle │ │ │ ├── applets │ │ │ │ ├── applet.h │ │ │ │ ├── erreula.h │ │ │ │ ├── mii_selector.h │ │ │ │ ├── mint.h │ │ │ │ └── swkbd.h │ │ │ ├── ipc.h │ │ │ ├── ipc_helpers.h │ │ │ ├── kernel │ │ │ │ ├── address_arbiter.h │ │ │ │ ├── client_port.h │ │ │ │ ├── client_session.h │ │ │ │ ├── config_mem.h │ │ │ │ ├── errors.h │ │ │ │ ├── event.h │ │ │ │ ├── handle_table.h │ │ │ │ ├── hle_ipc.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipc_debugger │ │ │ │ │ └── recorder.h │ │ │ │ ├── kernel.h │ │ │ │ ├── memory.h │ │ │ │ ├── mutex.h │ │ │ │ ├── object.h │ │ │ │ ├── process.h │ │ │ │ ├── resource_limit.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── server_port.h │ │ │ │ ├── server_session.h │ │ │ │ ├── session.h │ │ │ │ ├── shared_memory.h │ │ │ │ ├── shared_page.h │ │ │ │ ├── svc.h │ │ │ │ ├── svc_wrapper.h │ │ │ │ ├── thread.h │ │ │ │ ├── timer.h │ │ │ │ ├── vm_manager.h │ │ │ │ └── wait_object.h │ │ │ ├── mii.h │ │ │ ├── result.h │ │ │ ├── romfs.h │ │ │ └── service │ │ │ │ ├── ac │ │ │ │ ├── ac.h │ │ │ │ ├── ac_i.h │ │ │ │ └── ac_u.h │ │ │ │ ├── act │ │ │ │ ├── act.h │ │ │ │ ├── act_a.h │ │ │ │ ├── act_errors.h │ │ │ │ └── act_u.h │ │ │ │ ├── am │ │ │ │ ├── am.h │ │ │ │ ├── am_app.h │ │ │ │ ├── am_net.h │ │ │ │ ├── am_sys.h │ │ │ │ └── am_u.h │ │ │ │ ├── apt │ │ │ │ ├── applet_manager.h │ │ │ │ ├── apt.h │ │ │ │ ├── apt_a.h │ │ │ │ ├── apt_s.h │ │ │ │ ├── apt_u.h │ │ │ │ ├── bcfnt │ │ │ │ │ └── bcfnt.h │ │ │ │ ├── errors.h │ │ │ │ ├── ns.h │ │ │ │ ├── ns_c.h │ │ │ │ └── ns_s.h │ │ │ │ ├── boss │ │ │ │ ├── boss.h │ │ │ │ ├── boss_p.h │ │ │ │ ├── boss_u.h │ │ │ │ └── online_service.h │ │ │ │ ├── cam │ │ │ │ ├── cam.h │ │ │ │ ├── cam_c.h │ │ │ │ ├── cam_params.h │ │ │ │ ├── cam_q.h │ │ │ │ ├── cam_s.h │ │ │ │ ├── cam_u.h │ │ │ │ └── y2r_u.h │ │ │ │ ├── cecd │ │ │ │ ├── cecd.h │ │ │ │ ├── cecd_ndm.h │ │ │ │ ├── cecd_s.h │ │ │ │ └── cecd_u.h │ │ │ │ ├── cfg │ │ │ │ ├── cfg.h │ │ │ │ ├── cfg_defaults.h │ │ │ │ ├── cfg_i.h │ │ │ │ ├── cfg_nor.h │ │ │ │ ├── cfg_s.h │ │ │ │ └── cfg_u.h │ │ │ │ ├── csnd │ │ │ │ └── csnd_snd.h │ │ │ │ ├── dlp │ │ │ │ ├── dlp.h │ │ │ │ ├── dlp_clnt.h │ │ │ │ ├── dlp_fkcl.h │ │ │ │ └── dlp_srvr.h │ │ │ │ ├── dsp │ │ │ │ └── dsp_dsp.h │ │ │ │ ├── err │ │ │ │ └── err_f.h │ │ │ │ ├── frd │ │ │ │ ├── frd.h │ │ │ │ ├── frd_a.h │ │ │ │ └── frd_u.h │ │ │ │ ├── fs │ │ │ │ ├── archive.h │ │ │ │ ├── directory.h │ │ │ │ ├── file.h │ │ │ │ └── fs_user.h │ │ │ │ ├── gsp │ │ │ │ ├── gsp.h │ │ │ │ ├── gsp_command.h │ │ │ │ ├── gsp_gpu.h │ │ │ │ ├── gsp_interrupt.h │ │ │ │ └── gsp_lcd.h │ │ │ │ ├── hid │ │ │ │ ├── hid.h │ │ │ │ ├── hid_spvr.h │ │ │ │ └── hid_user.h │ │ │ │ ├── http │ │ │ │ ├── ctr-common-1-cert.h │ │ │ │ ├── ctr-common-1-key.h │ │ │ │ └── http_c.h │ │ │ │ ├── ir │ │ │ │ ├── extra_hid.h │ │ │ │ ├── ir.h │ │ │ │ ├── ir_rst.h │ │ │ │ ├── ir_u.h │ │ │ │ └── ir_user.h │ │ │ │ ├── ldr_ro │ │ │ │ ├── cro_helper.h │ │ │ │ └── ldr_ro.h │ │ │ │ ├── mcu │ │ │ │ ├── mcu.h │ │ │ │ └── mcu_hwc.h │ │ │ │ ├── mic │ │ │ │ └── mic_u.h │ │ │ │ ├── mvd │ │ │ │ ├── mvd.h │ │ │ │ └── mvd_std.h │ │ │ │ ├── ndm │ │ │ │ └── ndm_u.h │ │ │ │ ├── news │ │ │ │ ├── news.h │ │ │ │ ├── news_s.h │ │ │ │ └── news_u.h │ │ │ │ ├── nfc │ │ │ │ ├── amiibo_crypto.h │ │ │ │ ├── nfc.h │ │ │ │ ├── nfc_device.h │ │ │ │ ├── nfc_m.h │ │ │ │ ├── nfc_results.h │ │ │ │ ├── nfc_types.h │ │ │ │ └── nfc_u.h │ │ │ │ ├── nim │ │ │ │ ├── nim.h │ │ │ │ ├── nim_aoc.h │ │ │ │ ├── nim_s.h │ │ │ │ └── nim_u.h │ │ │ │ ├── nwm │ │ │ │ ├── nwm.h │ │ │ │ ├── nwm_cec.h │ │ │ │ ├── nwm_ext.h │ │ │ │ ├── nwm_inf.h │ │ │ │ ├── nwm_sap.h │ │ │ │ ├── nwm_soc.h │ │ │ │ ├── nwm_tst.h │ │ │ │ ├── nwm_uds.h │ │ │ │ ├── uds_beacon.h │ │ │ │ ├── uds_common.h │ │ │ │ ├── uds_connection.h │ │ │ │ └── uds_data.h │ │ │ │ ├── plgldr │ │ │ │ └── plgldr.h │ │ │ │ ├── pm │ │ │ │ ├── pm.h │ │ │ │ ├── pm_app.h │ │ │ │ └── pm_dbg.h │ │ │ │ ├── ps │ │ │ │ └── ps_ps.h │ │ │ │ ├── ptm │ │ │ │ ├── ptm.h │ │ │ │ ├── ptm_gets.h │ │ │ │ ├── ptm_play.h │ │ │ │ ├── ptm_sets.h │ │ │ │ ├── ptm_sysm.h │ │ │ │ └── ptm_u.h │ │ │ │ ├── pxi │ │ │ │ ├── dev.h │ │ │ │ └── pxi.h │ │ │ │ ├── qtm │ │ │ │ ├── qtm.h │ │ │ │ ├── qtm_c.h │ │ │ │ ├── qtm_s.h │ │ │ │ ├── qtm_sp.h │ │ │ │ └── qtm_u.h │ │ │ │ ├── service.h │ │ │ │ ├── sm │ │ │ │ ├── sm.h │ │ │ │ └── srv.h │ │ │ │ ├── soc │ │ │ │ └── soc_u.h │ │ │ │ └── ssl │ │ │ │ └── ssl_c.h │ │ ├── hw │ │ │ ├── aes │ │ │ │ ├── arithmetic128.h │ │ │ │ ├── ccm.h │ │ │ │ └── key.h │ │ │ ├── default_keys.h │ │ │ ├── ecc.h │ │ │ ├── rsa │ │ │ │ └── rsa.h │ │ │ ├── unique_data.h │ │ │ └── y2r.h │ │ ├── loader │ │ │ ├── 3dsx.h │ │ │ ├── artic.h │ │ │ ├── elf.h │ │ │ ├── loader.h │ │ │ ├── ncch.h │ │ │ └── smdh.h │ │ ├── memory.h │ │ ├── movie.h │ │ ├── nus_download.h │ │ ├── perf_stats.h │ │ ├── precompiled_headers.h │ │ ├── rpc │ │ │ ├── packet.h │ │ │ ├── rpc_server.h │ │ │ ├── server.h │ │ │ └── udp_server.h │ │ ├── savestate.h │ │ ├── savestate_data.h │ │ ├── system_titles.h │ │ └── tracer │ │ │ ├── citrace.h │ │ │ └── recorder.h │ ├── input_common │ │ ├── analog_from_button.h │ │ ├── keyboard.h │ │ ├── main.h │ │ ├── motion_emu.h │ │ ├── precompiled_headers.h │ │ ├── sdl │ │ │ ├── sdl.h │ │ │ └── sdl_impl.h │ │ ├── touch_from_button.h │ │ └── udp │ │ │ ├── client.h │ │ │ ├── protocol.h │ │ │ └── udp.h │ ├── network │ │ ├── announce_multiplayer_session.h │ │ ├── artic_base │ │ │ ├── artic_base_client.h │ │ │ └── artic_base_common.h │ │ ├── network.h │ │ ├── network_settings.h │ │ ├── packet.h │ │ ├── precompiled_headers.h │ │ ├── room.h │ │ ├── room_member.h │ │ ├── socket_manager.h │ │ └── verify_user.h │ ├── romfs │ │ ├── bad_word_list.app.romfs.h │ │ ├── country_list.app.romfs.h │ │ ├── mii.app.romfs.h │ │ └── shared_font.app.romfs.h │ ├── video_core │ │ ├── custom_textures │ │ │ ├── custom_format.h │ │ │ ├── custom_tex_manager.h │ │ │ └── material.h │ │ ├── debug_utils │ │ │ └── debug_utils.h │ │ ├── gpu.h │ │ ├── gpu_debugger.h │ │ ├── gpu_impl.h │ │ ├── host_shaders │ │ │ ├── format_reinterpreter │ │ │ │ ├── d24s8_to_rgba8_frag.h │ │ │ │ ├── rgba4_to_rgb5a1_frag.h │ │ │ │ └── vulkan_d24s8_to_rgba8_comp.h │ │ │ ├── full_screen_triangle_vert.h │ │ │ ├── opengl_present_anaglyph_frag.h │ │ │ ├── opengl_present_frag.h │ │ │ ├── opengl_present_interlaced_frag.h │ │ │ ├── opengl_present_vert.h │ │ │ ├── texture_filtering │ │ │ │ ├── bicubic_frag.h │ │ │ │ ├── mmpx_frag.h │ │ │ │ ├── refine_frag.h │ │ │ │ ├── scale_force_frag.h │ │ │ │ ├── x_gradient_frag.h │ │ │ │ ├── xbrz_freescale_frag.h │ │ │ │ └── y_gradient_frag.h │ │ │ ├── vulkan_blit_depth_stencil_frag.h │ │ │ ├── vulkan_depth_to_buffer_comp.h │ │ │ ├── vulkan_present_anaglyph_frag.h │ │ │ ├── vulkan_present_frag.h │ │ │ ├── vulkan_present_interlaced_frag.h │ │ │ └── vulkan_present_vert.h │ │ ├── pica │ │ │ ├── dirty_regs.h │ │ │ ├── geometry_pipeline.h │ │ │ ├── output_vertex.h │ │ │ ├── packed_attribute.h │ │ │ ├── pica_core.h │ │ │ ├── primitive_assembly.h │ │ │ ├── regs_external.h │ │ │ ├── regs_framebuffer.h │ │ │ ├── regs_internal.h │ │ │ ├── regs_lcd.h │ │ │ ├── regs_lighting.h │ │ │ ├── regs_pipeline.h │ │ │ ├── regs_rasterizer.h │ │ │ ├── regs_shader.h │ │ │ ├── regs_texturing.h │ │ │ ├── shader_setup.h │ │ │ ├── shader_unit.h │ │ │ └── vertex_loader.h │ │ ├── pica_types.h │ │ ├── precompiled_headers.h │ │ ├── rasterizer_accelerated.h │ │ ├── rasterizer_cache │ │ │ ├── framebuffer_base.h │ │ │ ├── pixel_format.h │ │ │ ├── rasterizer_cache.h │ │ │ ├── rasterizer_cache_base.h │ │ │ ├── sampler_params.h │ │ │ ├── slot_id.h │ │ │ ├── surface_base.h │ │ │ ├── surface_params.h │ │ │ ├── texture_codec.h │ │ │ ├── texture_cube.h │ │ │ └── utils.h │ │ ├── rasterizer_interface.h │ │ ├── renderer_base.h │ │ ├── renderer_software │ │ │ └── sw_blitter.h │ │ ├── renderer_vulkan │ │ │ ├── pica_to_vk.h │ │ │ ├── renderer_vulkan.h │ │ │ ├── vk_blit_helper.h │ │ │ ├── vk_common.h │ │ │ ├── vk_descriptor_update_queue.h │ │ │ ├── vk_graphics_pipeline.h │ │ │ ├── vk_instance.h │ │ │ ├── vk_master_semaphore.h │ │ │ ├── vk_memory_util.h │ │ │ ├── vk_pipeline_cache.h │ │ │ ├── vk_platform.h │ │ │ ├── vk_present_window.h │ │ │ ├── vk_rasterizer.h │ │ │ ├── vk_render_manager.h │ │ │ ├── vk_resource_pool.h │ │ │ ├── vk_scheduler.h │ │ │ ├── vk_shader_util.h │ │ │ ├── vk_stream_buffer.h │ │ │ ├── vk_swapchain.h │ │ │ └── vk_texture_runtime.h │ │ ├── right_eye_disabler.h │ │ ├── shader │ │ │ ├── debug_data.h │ │ │ ├── generator │ │ │ │ ├── glsl_fs_shader_gen.h │ │ │ │ ├── glsl_shader_decompiler.h │ │ │ │ ├── glsl_shader_gen.h │ │ │ │ ├── pica_fs_config.h │ │ │ │ ├── profile.h │ │ │ │ ├── shader_gen.h │ │ │ │ ├── shader_uniforms.h │ │ │ │ └── spv_fs_shader_gen.h │ │ │ ├── shader.h │ │ │ ├── shader_interpreter.h │ │ │ ├── shader_jit.h │ │ │ ├── shader_jit_a64_compiler.h │ │ │ └── shader_jit_x64_compiler.h │ │ ├── texture │ │ │ ├── etc1.h │ │ │ └── texture_decode.h │ │ ├── utils.h │ │ └── video_core.h │ └── web_service │ │ ├── announce_room_json.h │ │ ├── precompiled_headers.h │ │ ├── verify_login.h │ │ ├── verify_user_jwt.h │ │ └── web_backend.h ├── input_common │ ├── analog_from_button.cpp │ ├── keyboard.cpp │ ├── main.cpp │ ├── motion_emu.cpp │ ├── sdl │ │ ├── sdl.cpp │ │ └── sdl_impl.cpp │ ├── touch_from_button.cpp │ └── udp │ │ ├── client.cpp │ │ ├── protocol.cpp │ │ └── udp.cpp ├── network │ ├── announce_multiplayer_session.cpp │ ├── artic_base │ │ └── artic_base_client.cpp │ ├── network.cpp │ ├── network_settings.cpp │ ├── packet.cpp │ ├── room.cpp │ ├── room_member.cpp │ ├── socket_manager.cpp │ └── verify_user.cpp ├── video_core │ ├── custom_textures │ │ ├── custom_format.cpp │ │ ├── custom_tex_manager.cpp │ │ └── material.cpp │ ├── debug_utils │ │ └── debug_utils.cpp │ ├── gpu.cpp │ ├── pica │ │ ├── geometry_pipeline.cpp │ │ ├── output_vertex.cpp │ │ ├── pica_core.cpp │ │ ├── primitive_assembly.cpp │ │ ├── regs_internal.cpp │ │ ├── shader_setup.cpp │ │ ├── shader_unit.cpp │ │ └── vertex_loader.cpp │ ├── rasterizer_accelerated.cpp │ ├── rasterizer_cache │ │ ├── pixel_format.cpp │ │ ├── rasterizer_cache.cpp │ │ ├── surface_base.cpp │ │ ├── surface_params.cpp │ │ └── utils.cpp │ ├── renderer_base.cpp │ ├── renderer_software │ │ └── sw_blitter.cpp │ ├── renderer_vulkan │ │ ├── renderer_vulkan.cpp │ │ ├── vk_blit_helper.cpp │ │ ├── vk_common.cpp │ │ ├── vk_descriptor_update_queue.cpp │ │ ├── vk_graphics_pipeline.cpp │ │ ├── vk_instance.cpp │ │ ├── vk_master_semaphore.cpp │ │ ├── vk_memory_util.cpp │ │ ├── vk_pipeline_cache.cpp │ │ ├── vk_platform.cpp │ │ ├── vk_present_window.cpp │ │ ├── vk_rasterizer.cpp │ │ ├── vk_rasterizer_cache.cpp │ │ ├── vk_render_manager.cpp │ │ ├── vk_resource_pool.cpp │ │ ├── vk_scheduler.cpp │ │ ├── vk_shader_util.cpp │ │ ├── vk_stream_buffer.cpp │ │ ├── vk_swapchain.cpp │ │ └── vk_texture_runtime.cpp │ ├── right_eye_disabler.cpp │ ├── shader │ │ ├── generator │ │ │ ├── glsl_fs_shader_gen.cpp │ │ │ ├── glsl_shader_decompiler.cpp │ │ │ ├── glsl_shader_gen.cpp │ │ │ ├── pica_fs_config.cpp │ │ │ ├── shader_gen.cpp │ │ │ ├── shader_uniforms.cpp │ │ │ └── spv_fs_shader_gen.cpp │ │ ├── shader.cpp │ │ ├── shader_interpreter.cpp │ │ ├── shader_jit.cpp │ │ ├── shader_jit_a64_compiler.cpp │ │ └── shader_jit_x64_compiler.cpp │ ├── texture │ │ ├── etc1.cpp │ │ └── texture_decode.cpp │ └── video_core.cpp └── web_service │ ├── announce_room_json.cpp │ ├── verify_login.cpp │ ├── verify_user_jwt.cpp │ └── web_backend.cpp ├── Cytrus-Bridging-Header.h ├── Cytrus.swift ├── CytrusEmulator.h ├── CytrusEmulator.mm ├── EmulationWindow ├── EmulationWindow_Vulkan.h ├── EmulationWindow_Vulkan.mm ├── GraphicsContext_Apple.cpp └── GraphicsContext_Apple.h ├── InputManager ├── InputManager.h └── InputManager.mm ├── LICENSE.md ├── Managers ├── CheatsManager │ ├── CheatsManager.h │ └── CheatsManager.mm ├── GameInformationManager │ ├── GameInformationManager.h │ └── GameInformationManager.mm └── MultiplayerManager │ ├── MultiplayerManager.h │ └── MultiplayerManager.mm ├── README.md └── SoftwareKeyboard ├── SoftwareKeyboard.h └── SoftwareKeyboard.mm /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /BuildStrings/BuildStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/BuildStrings/BuildStrings.h -------------------------------------------------------------------------------- /BuildStrings/BuildStrings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/BuildStrings/BuildStrings.mm -------------------------------------------------------------------------------- /Camera/CameraFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Camera/CameraFactory.h -------------------------------------------------------------------------------- /Camera/CameraFactory.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Camera/CameraFactory.mm -------------------------------------------------------------------------------- /Camera/CameraInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Camera/CameraInterface.h -------------------------------------------------------------------------------- /Camera/CameraInterface.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Camera/CameraInterface.mm -------------------------------------------------------------------------------- /CommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/CommonTypes.h -------------------------------------------------------------------------------- /Configuration/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Configuration/Configuration.h -------------------------------------------------------------------------------- /Configuration/Configuration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Configuration/Configuration.mm -------------------------------------------------------------------------------- /Configuration/DefaultINI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Configuration/DefaultINI.h -------------------------------------------------------------------------------- /Core/audio_core/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/codec.cpp -------------------------------------------------------------------------------- /Core/audio_core/coreaudio_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/coreaudio_sink.cpp -------------------------------------------------------------------------------- /Core/audio_core/dsp_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/dsp_interface.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/aac_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/aac_decoder.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/decoder.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/filter.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/hle.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/mixers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/mixers.cpp -------------------------------------------------------------------------------- /Core/audio_core/hle/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/hle/source.cpp -------------------------------------------------------------------------------- /Core/audio_core/input_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/input_details.cpp -------------------------------------------------------------------------------- /Core/audio_core/interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/interpolate.cpp -------------------------------------------------------------------------------- /Core/audio_core/lle/lle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/lle/lle.cpp -------------------------------------------------------------------------------- /Core/audio_core/openal_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/openal_input.cpp -------------------------------------------------------------------------------- /Core/audio_core/openal_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/openal_sink.cpp -------------------------------------------------------------------------------- /Core/audio_core/sdl3_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/sdl3_sink.cpp -------------------------------------------------------------------------------- /Core/audio_core/sink_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/sink_details.cpp -------------------------------------------------------------------------------- /Core/audio_core/static_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/static_input.cpp -------------------------------------------------------------------------------- /Core/audio_core/time_stretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/audio_core/time_stretch.cpp -------------------------------------------------------------------------------- /Core/common/aarch64/cpu_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/aarch64/cpu_detect.cpp -------------------------------------------------------------------------------- /Core/common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/cityhash.cpp -------------------------------------------------------------------------------- /Core/common/detached_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/detached_tasks.cpp -------------------------------------------------------------------------------- /Core/common/dynamic_library/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/dynamic_library/dynamic_library.cpp -------------------------------------------------------------------------------- /Core/common/dynamic_library/ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/dynamic_library/ffmpeg.cpp -------------------------------------------------------------------------------- /Core/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/error.cpp -------------------------------------------------------------------------------- /Core/common/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/file_util.cpp -------------------------------------------------------------------------------- /Core/common/hacks/hack_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/hacks/hack_list.cpp -------------------------------------------------------------------------------- /Core/common/hacks/hack_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/hacks/hack_manager.cpp -------------------------------------------------------------------------------- /Core/common/logging/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/logging/backend.cpp -------------------------------------------------------------------------------- /Core/common/logging/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/logging/filter.cpp -------------------------------------------------------------------------------- /Core/common/logging/text_formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/logging/text_formatter.cpp -------------------------------------------------------------------------------- /Core/common/math_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/math_util.cpp -------------------------------------------------------------------------------- /Core/common/memory_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/memory_detect.cpp -------------------------------------------------------------------------------- /Core/common/memory_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/memory_ref.cpp -------------------------------------------------------------------------------- /Core/common/microprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/microprofile.cpp -------------------------------------------------------------------------------- /Core/common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/param_package.cpp -------------------------------------------------------------------------------- /Core/common/play_time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/play_time_manager.cpp -------------------------------------------------------------------------------- /Core/common/scm_rev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/scm_rev.cpp -------------------------------------------------------------------------------- /Core/common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/settings.cpp -------------------------------------------------------------------------------- /Core/common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/string_util.cpp -------------------------------------------------------------------------------- /Core/common/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/texture.cpp -------------------------------------------------------------------------------- /Core/common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/thread.cpp -------------------------------------------------------------------------------- /Core/common/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/timer.cpp -------------------------------------------------------------------------------- /Core/common/zstd_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/common/zstd_compression.cpp -------------------------------------------------------------------------------- /Core/core/arm/dynarmic/arm_dynarmic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dynarmic/arm_dynarmic.cpp -------------------------------------------------------------------------------- /Core/core/arm/dynarmic/arm_dynarmic_cp15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dynarmic/arm_dynarmic_cp15.cpp -------------------------------------------------------------------------------- /Core/core/arm/dynarmic/arm_exclusive_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dynarmic/arm_exclusive_monitor.cpp -------------------------------------------------------------------------------- /Core/core/arm/dynarmic/arm_tick_counts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dynarmic/arm_tick_counts.cpp -------------------------------------------------------------------------------- /Core/core/arm/dyncom/arm_dyncom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dyncom/arm_dyncom.cpp -------------------------------------------------------------------------------- /Core/core/arm/dyncom/arm_dyncom_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dyncom/arm_dyncom_dec.cpp -------------------------------------------------------------------------------- /Core/core/arm/dyncom/arm_dyncom_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dyncom/arm_dyncom_interpreter.cpp -------------------------------------------------------------------------------- /Core/core/arm/dyncom/arm_dyncom_thumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dyncom/arm_dyncom_thumb.cpp -------------------------------------------------------------------------------- /Core/core/arm/dyncom/arm_dyncom_trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/dyncom/arm_dyncom_trans.cpp -------------------------------------------------------------------------------- /Core/core/arm/exclusive_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/exclusive_monitor.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/armstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/armstate.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/armsupp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/armsupp.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/vfp/vfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/vfp/vfp.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/vfp/vfpdouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/vfp/vfpdouble.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/vfp/vfpinstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/vfp/vfpinstr.cpp -------------------------------------------------------------------------------- /Core/core/arm/skyeye_common/vfp/vfpsingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/arm/skyeye_common/vfp/vfpsingle.cpp -------------------------------------------------------------------------------- /Core/core/cheats/cheat_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/cheats/cheat_base.cpp -------------------------------------------------------------------------------- /Core/core/cheats/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/cheats/cheats.cpp -------------------------------------------------------------------------------- /Core/core/cheats/gateway_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/cheats/gateway_cheat.cpp -------------------------------------------------------------------------------- /Core/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/core.cpp -------------------------------------------------------------------------------- /Core/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/core_timing.cpp -------------------------------------------------------------------------------- /Core/core/dumping/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/dumping/backend.cpp -------------------------------------------------------------------------------- /Core/core/dumping/ffmpeg_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/dumping/ffmpeg_backend.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_artic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_artic.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_backend.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_extsavedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_extsavedata.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_ncch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_ncch.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_other_savedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_other_savedata.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_savedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_savedata.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_sdmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_sdmc.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_sdmcwriteonly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_sdmcwriteonly.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_selfncch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_selfncch.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_source_sd_savedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_source_sd_savedata.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/archive_systemsavedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/archive_systemsavedata.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/artic_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/artic_cache.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/certificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/certificate.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/cia_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/cia_container.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/delay_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/delay_generator.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/disk_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/disk_archive.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/ivfc_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/ivfc_archive.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/layered_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/layered_fs.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/ncch_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/ncch_container.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/otp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/otp.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/patch.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/path_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/path_parser.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/plugin_3gx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/plugin_3gx.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/romfs_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/romfs_reader.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/savedata_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/savedata_archive.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/secure_value_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/secure_value_backend.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/secure_value_backend_artic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/secure_value_backend_artic.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/seed_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/seed_db.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/ticket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/ticket.cpp -------------------------------------------------------------------------------- /Core/core/file_sys/title_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/file_sys/title_metadata.cpp -------------------------------------------------------------------------------- /Core/core/frontend/applets/default_applets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/applets/default_applets.cpp -------------------------------------------------------------------------------- /Core/core/frontend/applets/mii_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/applets/mii_selector.cpp -------------------------------------------------------------------------------- /Core/core/frontend/applets/swkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/applets/swkbd.cpp -------------------------------------------------------------------------------- /Core/core/frontend/camera/blank_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/camera/blank_camera.cpp -------------------------------------------------------------------------------- /Core/core/frontend/camera/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/camera/factory.cpp -------------------------------------------------------------------------------- /Core/core/frontend/camera/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/camera/interface.cpp -------------------------------------------------------------------------------- /Core/core/frontend/emu_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/emu_window.cpp -------------------------------------------------------------------------------- /Core/core/frontend/framebuffer_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/framebuffer_layout.cpp -------------------------------------------------------------------------------- /Core/core/frontend/image_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/frontend/image_interface.cpp -------------------------------------------------------------------------------- /Core/core/gdbstub/gdbstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/gdbstub/gdbstub.cpp -------------------------------------------------------------------------------- /Core/core/gdbstub/hio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/gdbstub/hio.cpp -------------------------------------------------------------------------------- /Core/core/hle/applets/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/applets/applet.cpp -------------------------------------------------------------------------------- /Core/core/hle/applets/erreula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/applets/erreula.cpp -------------------------------------------------------------------------------- /Core/core/hle/applets/mii_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/applets/mii_selector.cpp -------------------------------------------------------------------------------- /Core/core/hle/applets/mint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/applets/mint.cpp -------------------------------------------------------------------------------- /Core/core/hle/applets/swkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/applets/swkbd.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/address_arbiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/address_arbiter.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/client_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/client_port.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/client_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/client_session.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/config_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/config_mem.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/event.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/handle_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/handle_table.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/hle_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/hle_ipc.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/ipc.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/ipc_debugger/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/ipc_debugger/recorder.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/kernel.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/memory.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/mutex.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/object.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/process.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/resource_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/resource_limit.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/semaphore.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/server_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/server_port.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/server_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/server_session.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/session.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/shared_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/shared_memory.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/shared_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/shared_page.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/svc.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/thread.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/timer.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/vm_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/vm_manager.cpp -------------------------------------------------------------------------------- /Core/core/hle/kernel/wait_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/kernel/wait_object.cpp -------------------------------------------------------------------------------- /Core/core/hle/mii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/mii.cpp -------------------------------------------------------------------------------- /Core/core/hle/romfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/romfs.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ac/ac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ac/ac.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ac/ac_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ac/ac_i.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ac/ac_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ac/ac_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/act/act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/act/act.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/act/act_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/act/act_a.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/act/act_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/act/act_errors.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/act/act_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/act/act_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/am/am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/am/am.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/am/am_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/am/am_app.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/am/am_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/am/am_net.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/am/am_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/am/am_sys.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/am/am_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/am/am_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/applet_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/applet_manager.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/apt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/apt.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/apt_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/apt_a.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/apt_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/apt_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/apt_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/apt_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/bcfnt/bcfnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/bcfnt/bcfnt.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/ns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/ns.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/ns_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/ns_c.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/apt/ns_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/apt/ns_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/boss/boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/boss/boss.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/boss/boss_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/boss/boss_p.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/boss/boss_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/boss/boss_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/boss/online_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/boss/online_service.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/cam.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/cam_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/cam_c.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/cam_q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/cam_q.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/cam_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/cam_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/cam_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/cam_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cam/y2r_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cam/y2r_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cecd/cecd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cecd/cecd.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cecd/cecd_ndm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cecd/cecd_ndm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cecd/cecd_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cecd/cecd_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cecd/cecd_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cecd/cecd_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg_defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg_defaults.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg_i.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg_nor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg_nor.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/cfg/cfg_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/cfg/cfg_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/csnd/csnd_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/csnd/csnd_snd.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/dlp/dlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/dlp/dlp.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/dlp/dlp_clnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/dlp/dlp_clnt.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/dlp/dlp_fkcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/dlp/dlp_fkcl.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/dlp/dlp_srvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/dlp/dlp_srvr.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/dsp/dsp_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/dsp/dsp_dsp.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/err/err_f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/err/err_f.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/frd/frd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/frd/frd.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/frd/frd_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/frd/frd_a.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/frd/frd_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/frd/frd_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/fs/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/fs/archive.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/fs/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/fs/directory.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/fs/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/fs/file.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/fs/fs_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/fs/fs_user.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/gsp/gsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/gsp/gsp.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/gsp/gsp_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/gsp/gsp_gpu.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/gsp/gsp_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/gsp/gsp_lcd.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/hid/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/hid/hid.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/hid/hid_spvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/hid/hid_spvr.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/hid/hid_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/hid/hid_user.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/http/http_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/http/http_c.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ir/extra_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ir/extra_hid.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ir/ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ir/ir.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ir/ir_rst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ir/ir_rst.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ir/ir_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ir/ir_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ir/ir_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ir/ir_user.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ldr_ro/cro_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ldr_ro/cro_helper.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ldr_ro/ldr_ro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ldr_ro/ldr_ro.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/mcu/mcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/mcu/mcu.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/mcu/mcu_hwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/mcu/mcu_hwc.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/mic/mic_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/mic/mic_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/mvd/mvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/mvd/mvd.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/mvd/mvd_std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/mvd/mvd_std.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ndm/ndm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ndm/ndm_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/news/news.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/news/news.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/news/news_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/news/news_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/news/news_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/news/news_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nfc/amiibo_crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nfc/amiibo_crypto.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nfc/nfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nfc/nfc.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nfc/nfc_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nfc/nfc_device.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nfc/nfc_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nfc/nfc_m.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nfc/nfc_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nfc/nfc_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nim/nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nim/nim.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nim/nim_aoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nim/nim_aoc.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nim/nim_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nim/nim_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nim/nim_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nim/nim_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_cec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_cec.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_ext.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_inf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_inf.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_sap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_sap.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_soc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_soc.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_tst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_tst.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/nwm_uds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/nwm_uds.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/uds_beacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/uds_beacon.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/uds_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/uds_connection.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/nwm/uds_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/nwm/uds_data.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/plgldr/plgldr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/plgldr/plgldr.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/pm/pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/pm/pm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/pm/pm_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/pm/pm_app.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/pm/pm_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/pm/pm_dbg.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ps/ps_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ps/ps_ps.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm_gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm_gets.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm_play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm_play.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm_sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm_sets.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm_sysm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm_sysm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ptm/ptm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ptm/ptm_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/pxi/dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/pxi/dev.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/pxi/pxi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/pxi/pxi.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/qtm/qtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/qtm/qtm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/qtm/qtm_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/qtm/qtm_c.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/qtm/qtm_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/qtm/qtm_s.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/qtm/qtm_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/qtm/qtm_sp.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/qtm/qtm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/qtm/qtm_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/service.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/sm/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/sm/sm.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/sm/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/sm/srv.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/soc/soc_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/soc/soc_u.cpp -------------------------------------------------------------------------------- /Core/core/hle/service/ssl/ssl_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hle/service/ssl/ssl_c.cpp -------------------------------------------------------------------------------- /Core/core/hw/aes/arithmetic128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/aes/arithmetic128.cpp -------------------------------------------------------------------------------- /Core/core/hw/aes/ccm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/aes/ccm.cpp -------------------------------------------------------------------------------- /Core/core/hw/aes/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/aes/key.cpp -------------------------------------------------------------------------------- /Core/core/hw/ecc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/ecc.cpp -------------------------------------------------------------------------------- /Core/core/hw/rsa/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/rsa/rsa.cpp -------------------------------------------------------------------------------- /Core/core/hw/unique_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/unique_data.cpp -------------------------------------------------------------------------------- /Core/core/hw/y2r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/hw/y2r.cpp -------------------------------------------------------------------------------- /Core/core/loader/3dsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/3dsx.cpp -------------------------------------------------------------------------------- /Core/core/loader/artic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/artic.cpp -------------------------------------------------------------------------------- /Core/core/loader/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/elf.cpp -------------------------------------------------------------------------------- /Core/core/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/loader.cpp -------------------------------------------------------------------------------- /Core/core/loader/ncch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/ncch.cpp -------------------------------------------------------------------------------- /Core/core/loader/smdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/loader/smdh.cpp -------------------------------------------------------------------------------- /Core/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/memory.cpp -------------------------------------------------------------------------------- /Core/core/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/movie.cpp -------------------------------------------------------------------------------- /Core/core/nus_download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/nus_download.cpp -------------------------------------------------------------------------------- /Core/core/perf_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/perf_stats.cpp -------------------------------------------------------------------------------- /Core/core/rpc/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/rpc/packet.cpp -------------------------------------------------------------------------------- /Core/core/rpc/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/rpc/rpc_server.cpp -------------------------------------------------------------------------------- /Core/core/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/rpc/server.cpp -------------------------------------------------------------------------------- /Core/core/rpc/udp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/rpc/udp_server.cpp -------------------------------------------------------------------------------- /Core/core/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/savestate.cpp -------------------------------------------------------------------------------- /Core/core/system_titles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/system_titles.cpp -------------------------------------------------------------------------------- /Core/core/tracer/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/core/tracer/recorder.cpp -------------------------------------------------------------------------------- /Core/include/audio_core/audio_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/audio_types.h -------------------------------------------------------------------------------- /Core/include/audio_core/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/codec.h -------------------------------------------------------------------------------- /Core/include/audio_core/coreaudio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/coreaudio_sink.h -------------------------------------------------------------------------------- /Core/include/audio_core/dsp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/dsp_interface.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/aac_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/aac_decoder.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/common.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/decoder.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/filter.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/hle.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/mixers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/mixers.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/shared_memory.h -------------------------------------------------------------------------------- /Core/include/audio_core/hle/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/hle/source.h -------------------------------------------------------------------------------- /Core/include/audio_core/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/input.h -------------------------------------------------------------------------------- /Core/include/audio_core/input_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/input_details.h -------------------------------------------------------------------------------- /Core/include/audio_core/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/interpolate.h -------------------------------------------------------------------------------- /Core/include/audio_core/lle/lle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/lle/lle.h -------------------------------------------------------------------------------- /Core/include/audio_core/null_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/null_input.h -------------------------------------------------------------------------------- /Core/include/audio_core/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/null_sink.h -------------------------------------------------------------------------------- /Core/include/audio_core/openal_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/openal_input.h -------------------------------------------------------------------------------- /Core/include/audio_core/openal_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/openal_sink.h -------------------------------------------------------------------------------- /Core/include/audio_core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/audio_core/sdl3_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/sdl3_sink.h -------------------------------------------------------------------------------- /Core/include/audio_core/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/sink.h -------------------------------------------------------------------------------- /Core/include/audio_core/sink_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/sink_details.h -------------------------------------------------------------------------------- /Core/include/audio_core/static_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/static_input.h -------------------------------------------------------------------------------- /Core/include/audio_core/time_stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/audio_core/time_stretch.h -------------------------------------------------------------------------------- /Core/include/common/aarch64/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/aarch64/cpu_detect.h -------------------------------------------------------------------------------- /Core/include/common/aarch64/oaknut_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/aarch64/oaknut_abi.h -------------------------------------------------------------------------------- /Core/include/common/aarch64/oaknut_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/aarch64/oaknut_util.h -------------------------------------------------------------------------------- /Core/include/common/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/alignment.h -------------------------------------------------------------------------------- /Core/include/common/announce_multiplayer_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/announce_multiplayer_room.h -------------------------------------------------------------------------------- /Core/include/common/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/arch.h -------------------------------------------------------------------------------- /Core/include/common/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/archives.h -------------------------------------------------------------------------------- /Core/include/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/assert.h -------------------------------------------------------------------------------- /Core/include/common/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/atomic_ops.h -------------------------------------------------------------------------------- /Core/include/common/bit_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/bit_field.h -------------------------------------------------------------------------------- /Core/include/common/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/bit_set.h -------------------------------------------------------------------------------- /Core/include/common/bounded_threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/bounded_threadsafe_queue.h -------------------------------------------------------------------------------- /Core/include/common/cityhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/cityhash.h -------------------------------------------------------------------------------- /Core/include/common/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/color.h -------------------------------------------------------------------------------- /Core/include/common/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/common_funcs.h -------------------------------------------------------------------------------- /Core/include/common/common_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/common_paths.h -------------------------------------------------------------------------------- /Core/include/common/common_precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/common_precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/common/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/common_types.h -------------------------------------------------------------------------------- /Core/include/common/construct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/construct.h -------------------------------------------------------------------------------- /Core/include/common/detached_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/detached_tasks.h -------------------------------------------------------------------------------- /Core/include/common/dynamic_library/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/dynamic_library/dynamic_library.h -------------------------------------------------------------------------------- /Core/include/common/dynamic_library/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/dynamic_library/ffmpeg.h -------------------------------------------------------------------------------- /Core/include/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/error.h -------------------------------------------------------------------------------- /Core/include/common/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/expected.h -------------------------------------------------------------------------------- /Core/include/common/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/file_util.h -------------------------------------------------------------------------------- /Core/include/common/hacks/hack_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/hacks/hack_list.h -------------------------------------------------------------------------------- /Core/include/common/hacks/hack_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/hacks/hack_manager.h -------------------------------------------------------------------------------- /Core/include/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/hash.h -------------------------------------------------------------------------------- /Core/include/common/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/literals.h -------------------------------------------------------------------------------- /Core/include/common/logging/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/backend.h -------------------------------------------------------------------------------- /Core/include/common/logging/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/filter.h -------------------------------------------------------------------------------- /Core/include/common/logging/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/formatter.h -------------------------------------------------------------------------------- /Core/include/common/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/log.h -------------------------------------------------------------------------------- /Core/include/common/logging/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/log_entry.h -------------------------------------------------------------------------------- /Core/include/common/logging/text_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/text_formatter.h -------------------------------------------------------------------------------- /Core/include/common/logging/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/logging/types.h -------------------------------------------------------------------------------- /Core/include/common/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/math_util.h -------------------------------------------------------------------------------- /Core/include/common/memory_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/memory_detect.h -------------------------------------------------------------------------------- /Core/include/common/memory_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/memory_ref.h -------------------------------------------------------------------------------- /Core/include/common/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/microprofile.h -------------------------------------------------------------------------------- /Core/include/common/microprofileui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/microprofileui.h -------------------------------------------------------------------------------- /Core/include/common/param_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/param_package.h -------------------------------------------------------------------------------- /Core/include/common/play_time_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/play_time_manager.h -------------------------------------------------------------------------------- /Core/include/common/polyfill_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/polyfill_thread.h -------------------------------------------------------------------------------- /Core/include/common/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/common/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/quaternion.h -------------------------------------------------------------------------------- /Core/include/common/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/ring_buffer.h -------------------------------------------------------------------------------- /Core/include/common/scm_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/scm_rev.h -------------------------------------------------------------------------------- /Core/include/common/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/scope_exit.h -------------------------------------------------------------------------------- /Core/include/common/serialization/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/serialization/atomic.h -------------------------------------------------------------------------------- /Core/include/common/serialization/boost_flat_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/serialization/boost_flat_set.h -------------------------------------------------------------------------------- /Core/include/common/serialization/boost_std_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/serialization/boost_std_variant.hpp -------------------------------------------------------------------------------- /Core/include/common/serialization/boost_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/serialization/boost_vector.hpp -------------------------------------------------------------------------------- /Core/include/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/settings.h -------------------------------------------------------------------------------- /Core/include/common/slot_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/slot_vector.h -------------------------------------------------------------------------------- /Core/include/common/static_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/static_lru_cache.h -------------------------------------------------------------------------------- /Core/include/common/string_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/string_literal.h -------------------------------------------------------------------------------- /Core/include/common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/string_util.h -------------------------------------------------------------------------------- /Core/include/common/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/swap.h -------------------------------------------------------------------------------- /Core/include/common/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/texture.h -------------------------------------------------------------------------------- /Core/include/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/thread.h -------------------------------------------------------------------------------- /Core/include/common/thread_queue_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/thread_queue_list.h -------------------------------------------------------------------------------- /Core/include/common/thread_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/thread_worker.h -------------------------------------------------------------------------------- /Core/include/common/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/threadsafe_queue.h -------------------------------------------------------------------------------- /Core/include/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/timer.h -------------------------------------------------------------------------------- /Core/include/common/unique_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/unique_function.h -------------------------------------------------------------------------------- /Core/include/common/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/vector_math.h -------------------------------------------------------------------------------- /Core/include/common/web_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/web_result.h -------------------------------------------------------------------------------- /Core/include/common/zstd_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/common/zstd_compression.h -------------------------------------------------------------------------------- /Core/include/core/3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/3ds.h -------------------------------------------------------------------------------- /Core/include/core/arm/arm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/arm_interface.h -------------------------------------------------------------------------------- /Core/include/core/arm/dynarmic/arm_dynarmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dynarmic/arm_dynarmic.h -------------------------------------------------------------------------------- /Core/include/core/arm/dynarmic/arm_dynarmic_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dynarmic/arm_dynarmic_cp15.h -------------------------------------------------------------------------------- /Core/include/core/arm/dynarmic/arm_exclusive_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dynarmic/arm_exclusive_monitor.h -------------------------------------------------------------------------------- /Core/include/core/arm/dynarmic/arm_tick_counts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dynarmic/arm_tick_counts.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom_dec.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom_interpreter.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom_run.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom_thumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom_thumb.h -------------------------------------------------------------------------------- /Core/include/core/arm/dyncom/arm_dyncom_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/dyncom/arm_dyncom_trans.h -------------------------------------------------------------------------------- /Core/include/core/arm/exclusive_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/exclusive_monitor.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/arm_regformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/arm_regformat.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/armstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/armstate.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/armsupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/armsupp.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/vfp/asm_vfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/vfp/asm_vfp.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/vfp/vfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/vfp/vfp.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/vfp/vfp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/vfp/vfp_helper.h -------------------------------------------------------------------------------- /Core/include/core/arm/skyeye_common/vfp/vfpinstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/arm/skyeye_common/vfp/vfpinstr.cpp -------------------------------------------------------------------------------- /Core/include/core/cheats/cheat_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/cheats/cheat_base.h -------------------------------------------------------------------------------- /Core/include/core/cheats/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/cheats/cheats.h -------------------------------------------------------------------------------- /Core/include/core/cheats/gateway_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/cheats/gateway_cheat.h -------------------------------------------------------------------------------- /Core/include/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/core.h -------------------------------------------------------------------------------- /Core/include/core/core_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/core_timing.h -------------------------------------------------------------------------------- /Core/include/core/dumping/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/dumping/backend.h -------------------------------------------------------------------------------- /Core/include/core/dumping/ffmpeg_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/dumping/ffmpeg_backend.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_artic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_artic.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_backend.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_extsavedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_extsavedata.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_ncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_ncch.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_other_savedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_other_savedata.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_savedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_savedata.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_sdmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_sdmc.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_sdmcwriteonly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_sdmcwriteonly.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_selfncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_selfncch.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_source_sd_savedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_source_sd_savedata.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/archive_systemsavedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/archive_systemsavedata.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/artic_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/artic_cache.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/certificate.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/cia_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/cia_container.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/delay_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/delay_generator.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/directory_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/directory_backend.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/disk_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/disk_archive.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/errors.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/file_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/file_backend.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/ivfc_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/ivfc_archive.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/layered_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/layered_fs.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/ncch_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/ncch_container.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/otp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/otp.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/patch.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/path_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/path_parser.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/plugin_3gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/plugin_3gx.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/plugin_3gx_bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/plugin_3gx_bootloader.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/romfs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/romfs_reader.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/savedata_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/savedata_archive.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/secure_value_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/secure_value_backend.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/secure_value_backend_artic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/secure_value_backend_artic.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/seed_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/seed_db.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/signature.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/ticket.h -------------------------------------------------------------------------------- /Core/include/core/file_sys/title_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/file_sys/title_metadata.h -------------------------------------------------------------------------------- /Core/include/core/frontend/applets/default_applets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/applets/default_applets.h -------------------------------------------------------------------------------- /Core/include/core/frontend/applets/mii_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/applets/mii_selector.h -------------------------------------------------------------------------------- /Core/include/core/frontend/applets/swkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/applets/swkbd.h -------------------------------------------------------------------------------- /Core/include/core/frontend/camera/blank_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/camera/blank_camera.h -------------------------------------------------------------------------------- /Core/include/core/frontend/camera/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/camera/factory.h -------------------------------------------------------------------------------- /Core/include/core/frontend/camera/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/camera/interface.h -------------------------------------------------------------------------------- /Core/include/core/frontend/emu_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/emu_window.h -------------------------------------------------------------------------------- /Core/include/core/frontend/framebuffer_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/framebuffer_layout.h -------------------------------------------------------------------------------- /Core/include/core/frontend/image_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/image_interface.h -------------------------------------------------------------------------------- /Core/include/core/frontend/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/frontend/input.h -------------------------------------------------------------------------------- /Core/include/core/gdbstub/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/gdbstub/gdbstub.h -------------------------------------------------------------------------------- /Core/include/core/gdbstub/hio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/gdbstub/hio.h -------------------------------------------------------------------------------- /Core/include/core/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/global.h -------------------------------------------------------------------------------- /Core/include/core/hle/applets/applet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/applets/applet.h -------------------------------------------------------------------------------- /Core/include/core/hle/applets/erreula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/applets/erreula.h -------------------------------------------------------------------------------- /Core/include/core/hle/applets/mii_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/applets/mii_selector.h -------------------------------------------------------------------------------- /Core/include/core/hle/applets/mint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/applets/mint.h -------------------------------------------------------------------------------- /Core/include/core/hle/applets/swkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/applets/swkbd.h -------------------------------------------------------------------------------- /Core/include/core/hle/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/ipc.h -------------------------------------------------------------------------------- /Core/include/core/hle/ipc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/ipc_helpers.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/address_arbiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/address_arbiter.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/client_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/client_port.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/client_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/client_session.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/config_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/config_mem.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/errors.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/event.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/handle_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/handle_table.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/hle_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/hle_ipc.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/ipc.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/ipc_debugger/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/ipc_debugger/recorder.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/kernel.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/memory.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/mutex.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/object.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/process.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/resource_limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/resource_limit.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/semaphore.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/server_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/server_port.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/server_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/server_session.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/session.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/shared_memory.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/shared_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/shared_page.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/svc.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/svc_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/svc_wrapper.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/thread.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/timer.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/vm_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/vm_manager.h -------------------------------------------------------------------------------- /Core/include/core/hle/kernel/wait_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/kernel/wait_object.h -------------------------------------------------------------------------------- /Core/include/core/hle/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/mii.h -------------------------------------------------------------------------------- /Core/include/core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/result.h -------------------------------------------------------------------------------- /Core/include/core/hle/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/romfs.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ac/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ac/ac.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ac/ac_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ac/ac_i.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ac/ac_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ac/ac_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/act/act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/act/act.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/act/act_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/act/act_a.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/act/act_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/act/act_errors.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/act/act_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/act/act_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/am/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/am/am.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/am/am_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/am/am_app.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/am/am_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/am/am_net.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/am/am_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/am/am_sys.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/am/am_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/am/am_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/applet_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/applet_manager.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/apt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/apt.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/apt_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/apt_a.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/apt_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/apt_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/apt_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/apt_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/bcfnt/bcfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/bcfnt/bcfnt.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/errors.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/ns.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/ns_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/ns_c.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/apt/ns_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/apt/ns_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/boss/boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/boss/boss.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/boss/boss_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/boss/boss_p.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/boss/boss_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/boss/boss_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/boss/online_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/boss/online_service.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam_c.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam_params.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam_q.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/cam_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/cam_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cam/y2r_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cam/y2r_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cecd/cecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cecd/cecd.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cecd/cecd_ndm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cecd/cecd_ndm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cecd/cecd_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cecd/cecd_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cecd/cecd_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cecd/cecd_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg_defaults.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg_i.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg_nor.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/cfg/cfg_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/cfg/cfg_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/csnd/csnd_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/csnd/csnd_snd.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/dlp/dlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/dlp/dlp.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/dlp/dlp_clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/dlp/dlp_clnt.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/dlp/dlp_fkcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/dlp/dlp_fkcl.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/dlp/dlp_srvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/dlp/dlp_srvr.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/dsp/dsp_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/dsp/dsp_dsp.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/err/err_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/err/err_f.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/frd/frd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/frd/frd.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/frd/frd_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/frd/frd_a.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/frd/frd_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/frd/frd_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/fs/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/fs/archive.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/fs/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/fs/directory.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/fs/file.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/fs/fs_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/fs/fs_user.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/gsp/gsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/gsp/gsp.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/gsp/gsp_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/gsp/gsp_command.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/gsp/gsp_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/gsp/gsp_gpu.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/gsp/gsp_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/gsp/gsp_interrupt.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/gsp/gsp_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/gsp/gsp_lcd.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/hid/hid.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/hid/hid_spvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/hid/hid_spvr.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/hid/hid_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/hid/hid_user.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/http/ctr-common-1-cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/http/ctr-common-1-cert.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/http/ctr-common-1-key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/http/ctr-common-1-key.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/http/http_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/http/http_c.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ir/extra_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ir/extra_hid.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ir/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ir/ir.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ir/ir_rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ir/ir_rst.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ir/ir_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ir/ir_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ir/ir_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ir/ir_user.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ldr_ro/cro_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ldr_ro/cro_helper.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ldr_ro/ldr_ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ldr_ro/ldr_ro.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/mcu/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/mcu/mcu.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/mcu/mcu_hwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/mcu/mcu_hwc.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/mic/mic_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/mic/mic_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/mvd/mvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/mvd/mvd.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/mvd/mvd_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/mvd/mvd_std.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ndm/ndm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ndm/ndm_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/news/news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/news/news.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/news/news_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/news/news_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/news/news_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/news/news_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/amiibo_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/amiibo_crypto.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc_device.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc_m.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc_results.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc_types.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nfc/nfc_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nfc/nfc_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nim/nim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nim/nim.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nim/nim_aoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nim/nim_aoc.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nim/nim_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nim/nim_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nim/nim_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nim/nim_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_cec.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_ext.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_inf.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_sap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_sap.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_soc.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_tst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_tst.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/nwm_uds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/nwm_uds.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/uds_beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/uds_beacon.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/uds_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/uds_common.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/uds_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/uds_connection.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/nwm/uds_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/nwm/uds_data.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/plgldr/plgldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/plgldr/plgldr.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/pm/pm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/pm/pm_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/pm/pm_app.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/pm/pm_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/pm/pm_dbg.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ps/ps_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ps/ps_ps.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm_gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm_gets.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm_play.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm_sets.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm_sysm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm_sysm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ptm/ptm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ptm/ptm_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/pxi/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/pxi/dev.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/pxi/pxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/pxi/pxi.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/qtm/qtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/qtm/qtm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/qtm/qtm_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/qtm/qtm_c.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/qtm/qtm_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/qtm/qtm_s.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/qtm/qtm_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/qtm/qtm_sp.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/qtm/qtm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/qtm/qtm_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/service.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/sm/sm.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/sm/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/sm/srv.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/soc/soc_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/soc/soc_u.h -------------------------------------------------------------------------------- /Core/include/core/hle/service/ssl/ssl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hle/service/ssl/ssl_c.h -------------------------------------------------------------------------------- /Core/include/core/hw/aes/arithmetic128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/aes/arithmetic128.h -------------------------------------------------------------------------------- /Core/include/core/hw/aes/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/aes/ccm.h -------------------------------------------------------------------------------- /Core/include/core/hw/aes/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/aes/key.h -------------------------------------------------------------------------------- /Core/include/core/hw/default_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/default_keys.h -------------------------------------------------------------------------------- /Core/include/core/hw/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/ecc.h -------------------------------------------------------------------------------- /Core/include/core/hw/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/rsa/rsa.h -------------------------------------------------------------------------------- /Core/include/core/hw/unique_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/unique_data.h -------------------------------------------------------------------------------- /Core/include/core/hw/y2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/hw/y2r.h -------------------------------------------------------------------------------- /Core/include/core/loader/3dsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/3dsx.h -------------------------------------------------------------------------------- /Core/include/core/loader/artic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/artic.h -------------------------------------------------------------------------------- /Core/include/core/loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/elf.h -------------------------------------------------------------------------------- /Core/include/core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/loader.h -------------------------------------------------------------------------------- /Core/include/core/loader/ncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/ncch.h -------------------------------------------------------------------------------- /Core/include/core/loader/smdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/loader/smdh.h -------------------------------------------------------------------------------- /Core/include/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/memory.h -------------------------------------------------------------------------------- /Core/include/core/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/movie.h -------------------------------------------------------------------------------- /Core/include/core/nus_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/nus_download.h -------------------------------------------------------------------------------- /Core/include/core/perf_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/perf_stats.h -------------------------------------------------------------------------------- /Core/include/core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/core/rpc/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/rpc/packet.h -------------------------------------------------------------------------------- /Core/include/core/rpc/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/rpc/rpc_server.h -------------------------------------------------------------------------------- /Core/include/core/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/rpc/server.h -------------------------------------------------------------------------------- /Core/include/core/rpc/udp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/rpc/udp_server.h -------------------------------------------------------------------------------- /Core/include/core/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/savestate.h -------------------------------------------------------------------------------- /Core/include/core/savestate_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/savestate_data.h -------------------------------------------------------------------------------- /Core/include/core/system_titles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/system_titles.h -------------------------------------------------------------------------------- /Core/include/core/tracer/citrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/tracer/citrace.h -------------------------------------------------------------------------------- /Core/include/core/tracer/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/core/tracer/recorder.h -------------------------------------------------------------------------------- /Core/include/input_common/analog_from_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/analog_from_button.h -------------------------------------------------------------------------------- /Core/include/input_common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/keyboard.h -------------------------------------------------------------------------------- /Core/include/input_common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/main.h -------------------------------------------------------------------------------- /Core/include/input_common/motion_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/motion_emu.h -------------------------------------------------------------------------------- /Core/include/input_common/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/input_common/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/sdl/sdl.h -------------------------------------------------------------------------------- /Core/include/input_common/sdl/sdl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/sdl/sdl_impl.h -------------------------------------------------------------------------------- /Core/include/input_common/touch_from_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/touch_from_button.h -------------------------------------------------------------------------------- /Core/include/input_common/udp/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/udp/client.h -------------------------------------------------------------------------------- /Core/include/input_common/udp/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/udp/protocol.h -------------------------------------------------------------------------------- /Core/include/input_common/udp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/input_common/udp/udp.h -------------------------------------------------------------------------------- /Core/include/network/announce_multiplayer_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/announce_multiplayer_session.h -------------------------------------------------------------------------------- /Core/include/network/artic_base/artic_base_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/artic_base/artic_base_client.h -------------------------------------------------------------------------------- /Core/include/network/artic_base/artic_base_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/artic_base/artic_base_common.h -------------------------------------------------------------------------------- /Core/include/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/network.h -------------------------------------------------------------------------------- /Core/include/network/network_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/network_settings.h -------------------------------------------------------------------------------- /Core/include/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/packet.h -------------------------------------------------------------------------------- /Core/include/network/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/network/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/room.h -------------------------------------------------------------------------------- /Core/include/network/room_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/room_member.h -------------------------------------------------------------------------------- /Core/include/network/socket_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/socket_manager.h -------------------------------------------------------------------------------- /Core/include/network/verify_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/network/verify_user.h -------------------------------------------------------------------------------- /Core/include/romfs/bad_word_list.app.romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/romfs/bad_word_list.app.romfs.h -------------------------------------------------------------------------------- /Core/include/romfs/country_list.app.romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/romfs/country_list.app.romfs.h -------------------------------------------------------------------------------- /Core/include/romfs/mii.app.romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/romfs/mii.app.romfs.h -------------------------------------------------------------------------------- /Core/include/romfs/shared_font.app.romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/romfs/shared_font.app.romfs.h -------------------------------------------------------------------------------- /Core/include/video_core/custom_textures/custom_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/custom_textures/custom_format.h -------------------------------------------------------------------------------- /Core/include/video_core/custom_textures/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/custom_textures/material.h -------------------------------------------------------------------------------- /Core/include/video_core/debug_utils/debug_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/debug_utils/debug_utils.h -------------------------------------------------------------------------------- /Core/include/video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/gpu.h -------------------------------------------------------------------------------- /Core/include/video_core/gpu_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/gpu_debugger.h -------------------------------------------------------------------------------- /Core/include/video_core/gpu_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/gpu_impl.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/dirty_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/dirty_regs.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/geometry_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/geometry_pipeline.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/output_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/output_vertex.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/packed_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/packed_attribute.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/pica_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/pica_core.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/primitive_assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/primitive_assembly.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_external.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_framebuffer.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_internal.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_lcd.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_lighting.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_pipeline.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_rasterizer.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_shader.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/regs_texturing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/regs_texturing.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/shader_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/shader_setup.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/shader_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/shader_unit.h -------------------------------------------------------------------------------- /Core/include/video_core/pica/vertex_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica/vertex_loader.h -------------------------------------------------------------------------------- /Core/include/video_core/pica_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/pica_types.h -------------------------------------------------------------------------------- /Core/include/video_core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_accelerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_accelerated.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_cache/pixel_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_cache/pixel_format.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_cache/slot_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_cache/slot_id.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_cache/surface_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_cache/surface_base.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_cache/texture_cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_cache/texture_cube.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_cache/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_cache/utils.h -------------------------------------------------------------------------------- /Core/include/video_core/rasterizer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/rasterizer_interface.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_base.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_software/sw_blitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_software/sw_blitter.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_vulkan/pica_to_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_vulkan/pica_to_vk.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_vulkan/vk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_vulkan/vk_common.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_vulkan/vk_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_vulkan/vk_instance.h -------------------------------------------------------------------------------- /Core/include/video_core/renderer_vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/renderer_vulkan/vk_platform.h -------------------------------------------------------------------------------- /Core/include/video_core/right_eye_disabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/right_eye_disabler.h -------------------------------------------------------------------------------- /Core/include/video_core/shader/debug_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/shader/debug_data.h -------------------------------------------------------------------------------- /Core/include/video_core/shader/generator/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/shader/generator/profile.h -------------------------------------------------------------------------------- /Core/include/video_core/shader/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/shader/shader.h -------------------------------------------------------------------------------- /Core/include/video_core/shader/shader_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/shader/shader_interpreter.h -------------------------------------------------------------------------------- /Core/include/video_core/shader/shader_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/shader/shader_jit.h -------------------------------------------------------------------------------- /Core/include/video_core/texture/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/texture/etc1.h -------------------------------------------------------------------------------- /Core/include/video_core/texture/texture_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/texture/texture_decode.h -------------------------------------------------------------------------------- /Core/include/video_core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/utils.h -------------------------------------------------------------------------------- /Core/include/video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/video_core/video_core.h -------------------------------------------------------------------------------- /Core/include/web_service/announce_room_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/web_service/announce_room_json.h -------------------------------------------------------------------------------- /Core/include/web_service/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/web_service/precompiled_headers.h -------------------------------------------------------------------------------- /Core/include/web_service/verify_login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/web_service/verify_login.h -------------------------------------------------------------------------------- /Core/include/web_service/verify_user_jwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/web_service/verify_user_jwt.h -------------------------------------------------------------------------------- /Core/include/web_service/web_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/include/web_service/web_backend.h -------------------------------------------------------------------------------- /Core/input_common/analog_from_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/analog_from_button.cpp -------------------------------------------------------------------------------- /Core/input_common/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/keyboard.cpp -------------------------------------------------------------------------------- /Core/input_common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/main.cpp -------------------------------------------------------------------------------- /Core/input_common/motion_emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/motion_emu.cpp -------------------------------------------------------------------------------- /Core/input_common/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/sdl/sdl.cpp -------------------------------------------------------------------------------- /Core/input_common/sdl/sdl_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/sdl/sdl_impl.cpp -------------------------------------------------------------------------------- /Core/input_common/touch_from_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/touch_from_button.cpp -------------------------------------------------------------------------------- /Core/input_common/udp/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/udp/client.cpp -------------------------------------------------------------------------------- /Core/input_common/udp/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/udp/protocol.cpp -------------------------------------------------------------------------------- /Core/input_common/udp/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/input_common/udp/udp.cpp -------------------------------------------------------------------------------- /Core/network/announce_multiplayer_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/announce_multiplayer_session.cpp -------------------------------------------------------------------------------- /Core/network/artic_base/artic_base_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/artic_base/artic_base_client.cpp -------------------------------------------------------------------------------- /Core/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/network.cpp -------------------------------------------------------------------------------- /Core/network/network_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/network_settings.cpp -------------------------------------------------------------------------------- /Core/network/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/packet.cpp -------------------------------------------------------------------------------- /Core/network/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/room.cpp -------------------------------------------------------------------------------- /Core/network/room_member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/room_member.cpp -------------------------------------------------------------------------------- /Core/network/socket_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/socket_manager.cpp -------------------------------------------------------------------------------- /Core/network/verify_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/network/verify_user.cpp -------------------------------------------------------------------------------- /Core/video_core/custom_textures/custom_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/custom_textures/custom_format.cpp -------------------------------------------------------------------------------- /Core/video_core/custom_textures/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/custom_textures/material.cpp -------------------------------------------------------------------------------- /Core/video_core/debug_utils/debug_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/debug_utils/debug_utils.cpp -------------------------------------------------------------------------------- /Core/video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/gpu.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/geometry_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/geometry_pipeline.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/output_vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/output_vertex.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/pica_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/pica_core.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/primitive_assembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/primitive_assembly.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/regs_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/regs_internal.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/shader_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/shader_setup.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/shader_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/shader_unit.cpp -------------------------------------------------------------------------------- /Core/video_core/pica/vertex_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/pica/vertex_loader.cpp -------------------------------------------------------------------------------- /Core/video_core/rasterizer_accelerated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/rasterizer_accelerated.cpp -------------------------------------------------------------------------------- /Core/video_core/rasterizer_cache/pixel_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/rasterizer_cache/pixel_format.cpp -------------------------------------------------------------------------------- /Core/video_core/rasterizer_cache/surface_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/rasterizer_cache/surface_base.cpp -------------------------------------------------------------------------------- /Core/video_core/rasterizer_cache/surface_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/rasterizer_cache/surface_params.cpp -------------------------------------------------------------------------------- /Core/video_core/rasterizer_cache/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/rasterizer_cache/utils.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_base.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_software/sw_blitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_software/sw_blitter.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/renderer_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/renderer_vulkan.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_blit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_blit_helper.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_common.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_instance.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_memory_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_memory_util.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_platform.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_rasterizer.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_resource_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_resource_pool.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_scheduler.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_shader_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_shader_util.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_stream_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_stream_buffer.cpp -------------------------------------------------------------------------------- /Core/video_core/renderer_vulkan/vk_swapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/renderer_vulkan/vk_swapchain.cpp -------------------------------------------------------------------------------- /Core/video_core/right_eye_disabler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/right_eye_disabler.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/generator/glsl_shader_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/generator/glsl_shader_gen.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/generator/pica_fs_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/generator/pica_fs_config.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/generator/shader_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/generator/shader_gen.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/generator/shader_uniforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/generator/shader_uniforms.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/shader.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/shader_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/shader_interpreter.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/shader_jit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/shader_jit.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/shader_jit_a64_compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/shader_jit_a64_compiler.cpp -------------------------------------------------------------------------------- /Core/video_core/shader/shader_jit_x64_compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/shader/shader_jit_x64_compiler.cpp -------------------------------------------------------------------------------- /Core/video_core/texture/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/texture/etc1.cpp -------------------------------------------------------------------------------- /Core/video_core/texture/texture_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/texture/texture_decode.cpp -------------------------------------------------------------------------------- /Core/video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/video_core/video_core.cpp -------------------------------------------------------------------------------- /Core/web_service/announce_room_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/web_service/announce_room_json.cpp -------------------------------------------------------------------------------- /Core/web_service/verify_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/web_service/verify_login.cpp -------------------------------------------------------------------------------- /Core/web_service/verify_user_jwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/web_service/verify_user_jwt.cpp -------------------------------------------------------------------------------- /Core/web_service/web_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Core/web_service/web_backend.cpp -------------------------------------------------------------------------------- /Cytrus-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Cytrus-Bridging-Header.h -------------------------------------------------------------------------------- /Cytrus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Cytrus.swift -------------------------------------------------------------------------------- /CytrusEmulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/CytrusEmulator.h -------------------------------------------------------------------------------- /CytrusEmulator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/CytrusEmulator.mm -------------------------------------------------------------------------------- /EmulationWindow/EmulationWindow_Vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/EmulationWindow/EmulationWindow_Vulkan.h -------------------------------------------------------------------------------- /EmulationWindow/EmulationWindow_Vulkan.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/EmulationWindow/EmulationWindow_Vulkan.mm -------------------------------------------------------------------------------- /EmulationWindow/GraphicsContext_Apple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/EmulationWindow/GraphicsContext_Apple.cpp -------------------------------------------------------------------------------- /EmulationWindow/GraphicsContext_Apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/EmulationWindow/GraphicsContext_Apple.h -------------------------------------------------------------------------------- /InputManager/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/InputManager/InputManager.h -------------------------------------------------------------------------------- /InputManager/InputManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/InputManager/InputManager.mm -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Managers/CheatsManager/CheatsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Managers/CheatsManager/CheatsManager.h -------------------------------------------------------------------------------- /Managers/CheatsManager/CheatsManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Managers/CheatsManager/CheatsManager.mm -------------------------------------------------------------------------------- /Managers/MultiplayerManager/MultiplayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Managers/MultiplayerManager/MultiplayerManager.h -------------------------------------------------------------------------------- /Managers/MultiplayerManager/MultiplayerManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/Managers/MultiplayerManager/MultiplayerManager.mm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/README.md -------------------------------------------------------------------------------- /SoftwareKeyboard/SoftwareKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/SoftwareKeyboard/SoftwareKeyboard.h -------------------------------------------------------------------------------- /SoftwareKeyboard/SoftwareKeyboard.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folium-app/Cytrus/HEAD/SoftwareKeyboard/SoftwareKeyboard.mm --------------------------------------------------------------------------------