├── .gitignore ├── .gitmodules ├── appveyor.yml ├── bin └── x64 │ ├── Debug │ └── config │ │ └── NxEmu.config │ └── Release │ └── config │ └── NxEmu.config ├── config └── NxEmu.config.development ├── external ├── cubeb.vcxproj ├── cubeb.vcxproj.filters ├── enet.vcxproj ├── enet.vcxproj.filters ├── fmt.vcxproj ├── fmt.vcxproj.filters ├── libusb.vcxproj ├── libusb.vcxproj.filters ├── mcl.vcxproj ├── mcl.vcxproj.filters ├── opus.vcxproj ├── opus.vcxproj.filters ├── sdl.vcxproj ├── sdl.vcxproj.filters ├── sirit.vcxproj ├── sirit.vcxproj.filters ├── speex.vcxproj ├── speex.vcxproj.filters ├── zstd.vcxproj ├── zstd.vcxproj.filters ├── zydis.vcxproj └── zydis.vcxproj.filters ├── lang └── english │ ├── css │ ├── base.css │ ├── config.css │ └── main_window.css │ ├── html │ ├── input_config.html │ ├── input_config_player.html │ ├── loading.html │ ├── main_window.html │ ├── system_config.html │ ├── system_config_audio.html │ ├── system_config_debug.html │ ├── system_config_game_browser.html │ └── system_config_graphics.html │ └── image │ ├── window-icon-32.png │ └── window-icon.png ├── nxemu.sln ├── property_sheets ├── debug.props ├── platform.debug.props ├── platform.props ├── platform.release.props └── release.props └── src ├── 3rd_party ├── bc_decoder │ ├── bc_decoder.cpp │ ├── bc_decoder.h │ ├── bc_decoder.vcxproj │ └── bc_decoder.vcxproj.filters ├── cubeb │ └── cubeb_export.h ├── fidelityfx_fsr │ ├── ffx-fsr │ │ ├── ffx_a.h │ │ └── ffx_fsr1.h │ └── license.txt ├── glad │ ├── glad.vcxproj │ ├── glad.vcxproj.filters │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ ├── glad.h │ │ │ └── glad_wgl.h │ └── src │ │ ├── glad.c │ │ └── glad_wgl.c ├── lz4 │ ├── LICENSE │ ├── lz4.c │ ├── lz4.h │ ├── lz4.vcxproj │ ├── lz4.vcxproj.filters │ ├── lz4frame.c │ ├── lz4frame.h │ ├── lz4frame_static.h │ ├── lz4hc.c │ ├── lz4hc.h │ ├── xxhash.c │ └── xxhash.h ├── microprofile │ ├── README.md │ ├── microprofile.h │ ├── microprofile_html.h │ └── microprofileui.h ├── nx_tzdb │ ├── include │ │ ├── .gitignore │ │ └── nx_tzdb.h │ └── tzdb_template.h.in ├── stb │ ├── stb.vcxproj │ ├── stb.vcxproj.filters │ ├── stb_dxt.cpp │ ├── stb_dxt.h │ ├── stb_image.h │ ├── stb_image_resize.h │ └── stb_image_write.h ├── tz │ ├── tz.cpp │ ├── tz.h │ ├── tz.vcxproj │ └── tz.vcxproj.filters ├── wtl │ ├── atlapp.h │ ├── atlcrack.h │ ├── atlctrls.h │ ├── atlctrlw.h │ ├── atlctrlx.h │ ├── atlddx.h │ ├── atldlgs.h │ ├── atldwm.h │ ├── atlfind.h │ ├── atlframe.h │ ├── atlgdi.h │ ├── atlmisc.h │ ├── atlprint.h │ ├── atlres.h │ ├── atlribbon.h │ ├── atlscrl.h │ ├── atlsplit.h │ ├── atltheme.h │ ├── atluser.h │ ├── atlwinx.h │ ├── wtl.vcxproj │ └── wtl.vcxproj.filters └── zoneinfo │ ├── Africa │ ├── Abidjan │ ├── Accra │ ├── Addis_Ababa │ ├── Algiers │ ├── Asmara │ ├── Asmera │ ├── Bamako │ ├── Bangui │ ├── Banjul │ ├── Bissau │ ├── Blantyre │ ├── Brazzaville │ ├── Bujumbura │ ├── Cairo │ ├── Casablanca │ ├── Ceuta │ ├── Conakry │ ├── Dakar │ ├── Dar_es_Salaam │ ├── Djibouti │ ├── Douala │ ├── El_Aaiun │ ├── Freetown │ ├── Gaborone │ ├── Harare │ ├── Johannesburg │ ├── Juba │ ├── Kampala │ ├── Khartoum │ ├── Kigali │ ├── Kinshasa │ ├── Lagos │ ├── Libreville │ ├── Lome │ ├── Luanda │ ├── Lubumbashi │ ├── Lusaka │ ├── Malabo │ ├── Maputo │ ├── Maseru │ ├── Mbabane │ ├── Mogadishu │ ├── Monrovia │ ├── Nairobi │ ├── Ndjamena │ ├── Niamey │ ├── Nouakchott │ ├── Ouagadougou │ ├── Porto-Novo │ ├── Sao_Tome │ ├── Timbuktu │ ├── Tripoli │ ├── Tunis │ └── Windhoek │ ├── America │ ├── Adak │ ├── Anchorage │ ├── Anguilla │ ├── Antigua │ ├── Araguaina │ ├── Argentina │ │ ├── Buenos_Aires │ │ ├── Catamarca │ │ ├── ComodRivadavia │ │ ├── Cordoba │ │ ├── Jujuy │ │ ├── La_Rioja │ │ ├── Mendoza │ │ ├── Rio_Gallegos │ │ ├── Salta │ │ ├── San_Juan │ │ ├── San_Luis │ │ ├── Tucuman │ │ └── Ushuaia │ ├── Aruba │ ├── Asuncion │ ├── Atikokan │ ├── Atka │ ├── Bahia │ ├── Bahia_Banderas │ ├── Barbados │ ├── Belem │ ├── Belize │ ├── Blanc-Sablon │ ├── Boa_Vista │ ├── Bogota │ ├── Boise │ ├── Buenos_Aires │ ├── Cambridge_Bay │ ├── Campo_Grande │ ├── Cancun │ ├── Caracas │ ├── Catamarca │ ├── Cayenne │ ├── Cayman │ ├── Chicago │ ├── Chihuahua │ ├── Ciudad_Juarez │ ├── Coral_Harbour │ ├── Cordoba │ ├── Costa_Rica │ ├── Creston │ ├── Cuiaba │ ├── Curacao │ ├── Danmarkshavn │ ├── Dawson │ ├── Dawson_Creek │ ├── Denver │ ├── Detroit │ ├── Dominica │ ├── Edmonton │ ├── Eirunepe │ ├── El_Salvador │ ├── Ensenada │ ├── Fort_Nelson │ ├── Fort_Wayne │ ├── Fortaleza │ ├── Glace_Bay │ ├── Godthab │ ├── Goose_Bay │ ├── Grand_Turk │ ├── Grenada │ ├── Guadeloupe │ ├── Guatemala │ ├── Guayaquil │ ├── Guyana │ ├── Halifax │ ├── Havana │ ├── Hermosillo │ ├── Indiana │ │ ├── Indianapolis │ │ ├── Knox │ │ ├── Marengo │ │ ├── Petersburg │ │ ├── Tell_City │ │ ├── Vevay │ │ ├── Vincennes │ │ └── Winamac │ ├── Indianapolis │ ├── Inuvik │ ├── Iqaluit │ ├── Jamaica │ ├── Jujuy │ ├── Juneau │ ├── Kentucky │ │ ├── Louisville │ │ └── Monticello │ ├── Knox_IN │ ├── Kralendijk │ ├── La_Paz │ ├── Lima │ ├── Los_Angeles │ ├── Louisville │ ├── Lower_Princes │ ├── Maceio │ ├── Managua │ ├── Manaus │ ├── Marigot │ ├── Martinique │ ├── Matamoros │ ├── Mazatlan │ ├── Mendoza │ ├── Menominee │ ├── Merida │ ├── Metlakatla │ ├── Mexico_City │ ├── Miquelon │ ├── Moncton │ ├── Monterrey │ ├── Montevideo │ ├── Montreal │ ├── Montserrat │ ├── Nassau │ ├── New_York │ ├── Nipigon │ ├── Nome │ ├── Noronha │ ├── North_Dakota │ │ ├── Beulah │ │ ├── Center │ │ └── New_Salem │ ├── Nuuk │ ├── Ojinaga │ ├── Panama │ ├── Pangnirtung │ ├── Paramaribo │ ├── Phoenix │ ├── Port-au-Prince │ ├── Port_of_Spain │ ├── Porto_Acre │ ├── Porto_Velho │ ├── Puerto_Rico │ ├── Punta_Arenas │ ├── Rainy_River │ ├── Rankin_Inlet │ ├── Recife │ ├── Regina │ ├── Resolute │ ├── Rio_Branco │ ├── Rosario │ ├── Santa_Isabel │ ├── Santarem │ ├── Santiago │ ├── Santo_Domingo │ ├── Sao_Paulo │ ├── Scoresbysund │ ├── Shiprock │ ├── Sitka │ ├── St_Barthelemy │ ├── St_Johns │ ├── St_Kitts │ ├── St_Lucia │ ├── St_Thomas │ ├── St_Vincent │ ├── Swift_Current │ ├── Tegucigalpa │ ├── Thule │ ├── Thunder_Bay │ ├── Tijuana │ ├── Toronto │ ├── Tortola │ ├── Vancouver │ ├── Virgin │ ├── Whitehorse │ ├── Winnipeg │ ├── Yakutat │ └── Yellowknife │ ├── Antarctica │ ├── Casey │ ├── Davis │ ├── DumontDUrville │ ├── Macquarie │ ├── Mawson │ ├── McMurdo │ ├── Palmer │ ├── Rothera │ ├── South_Pole │ ├── Syowa │ ├── Troll │ └── Vostok │ ├── Arctic │ └── Longyearbyen │ ├── Asia │ ├── Aden │ ├── Almaty │ ├── Amman │ ├── Anadyr │ ├── Aqtau │ ├── Aqtobe │ ├── Ashgabat │ ├── Ashkhabad │ ├── Atyrau │ ├── Baghdad │ ├── Bahrain │ ├── Baku │ ├── Bangkok │ ├── Barnaul │ ├── Beirut │ ├── Bishkek │ ├── Brunei │ ├── Calcutta │ ├── Chita │ ├── Choibalsan │ ├── Chongqing │ ├── Chungking │ ├── Colombo │ ├── Dacca │ ├── Damascus │ ├── Dhaka │ ├── Dili │ ├── Dubai │ ├── Dushanbe │ ├── Famagusta │ ├── Gaza │ ├── Harbin │ ├── Hebron │ ├── Ho_Chi_Minh │ ├── Hong_Kong │ ├── Hovd │ ├── Irkutsk │ ├── Istanbul │ ├── Jakarta │ ├── Jayapura │ ├── Jerusalem │ ├── Kabul │ ├── Kamchatka │ ├── Karachi │ ├── Kashgar │ ├── Kathmandu │ ├── Katmandu │ ├── Khandyga │ ├── Kolkata │ ├── Krasnoyarsk │ ├── Kuala_Lumpur │ ├── Kuching │ ├── Kuwait │ ├── Macao │ ├── Macau │ ├── Magadan │ ├── Makassar │ ├── Manila │ ├── Muscat │ ├── Nicosia │ ├── Novokuznetsk │ ├── Novosibirsk │ ├── Omsk │ ├── Oral │ ├── Phnom_Penh │ ├── Pontianak │ ├── Pyongyang │ ├── Qatar │ ├── Qostanay │ ├── Qyzylorda │ ├── Rangoon │ ├── Riyadh │ ├── Saigon │ ├── Sakhalin │ ├── Samarkand │ ├── Seoul │ ├── Shanghai │ ├── Singapore │ ├── Srednekolymsk │ ├── Taipei │ ├── Tashkent │ ├── Tbilisi │ ├── Tehran │ ├── Tel_Aviv │ ├── Thimbu │ ├── Thimphu │ ├── Tokyo │ ├── Tomsk │ ├── Ujung_Pandang │ ├── Ulaanbaatar │ ├── Ulan_Bator │ ├── Urumqi │ ├── Ust-Nera │ ├── Vientiane │ ├── Vladivostok │ ├── Yakutsk │ ├── Yangon │ ├── Yekaterinburg │ └── Yerevan │ ├── Atlantic │ ├── Azores │ ├── Bermuda │ ├── Canary │ ├── Cape_Verde │ ├── Faeroe │ ├── Faroe │ ├── Jan_Mayen │ ├── Madeira │ ├── Reykjavik │ ├── South_Georgia │ ├── St_Helena │ └── Stanley │ ├── Australia │ ├── ACT │ ├── Adelaide │ ├── Brisbane │ ├── Broken_Hill │ ├── Canberra │ ├── Currie │ ├── Darwin │ ├── Eucla │ ├── Hobart │ ├── LHI │ ├── Lindeman │ ├── Lord_Howe │ ├── Melbourne │ ├── NSW │ ├── North │ ├── Perth │ ├── Queensland │ ├── South │ ├── Sydney │ ├── Tasmania │ ├── Victoria │ ├── West │ └── Yancowinna │ ├── Base │ ├── binaryList.txt │ └── version.txt │ ├── Brazil │ ├── Acre │ ├── DeNoronha │ ├── East │ └── West │ ├── CET │ ├── CST6CDT │ ├── Canada │ ├── Atlantic │ ├── Central │ ├── Eastern │ ├── Mountain │ ├── Newfoundland │ ├── Pacific │ ├── Saskatchewan │ └── Yukon │ ├── Chile │ ├── Continental │ └── EasterIsland │ ├── Cuba │ ├── EET │ ├── EST │ ├── EST5EDT │ ├── Egypt │ ├── Eire │ ├── Etc │ ├── GMT │ ├── GMT+0 │ ├── GMT+1 │ ├── GMT+10 │ ├── GMT+11 │ ├── GMT+12 │ ├── GMT+2 │ ├── GMT+3 │ ├── GMT+4 │ ├── GMT+5 │ ├── GMT+6 │ ├── GMT+7 │ ├── GMT+8 │ ├── GMT+9 │ ├── GMT-0 │ ├── GMT-1 │ ├── GMT-10 │ ├── GMT-11 │ ├── GMT-12 │ ├── GMT-13 │ ├── GMT-14 │ ├── GMT-2 │ ├── GMT-3 │ ├── GMT-4 │ ├── GMT-5 │ ├── GMT-6 │ ├── GMT-7 │ ├── GMT-8 │ ├── GMT-9 │ ├── GMT0 │ ├── Greenwich │ ├── UCT │ ├── UTC │ ├── Universal │ └── Zulu │ ├── Europe │ ├── Amsterdam │ ├── Andorra │ ├── Astrakhan │ ├── Athens │ ├── Belfast │ ├── Belgrade │ ├── Berlin │ ├── Bratislava │ ├── Brussels │ ├── Bucharest │ ├── Budapest │ ├── Busingen │ ├── Chisinau │ ├── Copenhagen │ ├── Dublin │ ├── Gibraltar │ ├── Guernsey │ ├── Helsinki │ ├── Isle_of_Man │ ├── Istanbul │ ├── Jersey │ ├── Kaliningrad │ ├── Kiev │ ├── Kirov │ ├── Kyiv │ ├── Lisbon │ ├── Ljubljana │ ├── London │ ├── Luxembourg │ ├── Madrid │ ├── Malta │ ├── Mariehamn │ ├── Minsk │ ├── Monaco │ ├── Moscow │ ├── Nicosia │ ├── Oslo │ ├── Paris │ ├── Podgorica │ ├── Prague │ ├── Riga │ ├── Rome │ ├── Samara │ ├── San_Marino │ ├── Sarajevo │ ├── Saratov │ ├── Simferopol │ ├── Skopje │ ├── Sofia │ ├── Stockholm │ ├── Tallinn │ ├── Tirane │ ├── Tiraspol │ ├── Ulyanovsk │ ├── Uzhgorod │ ├── Vaduz │ ├── Vatican │ ├── Vienna │ ├── Vilnius │ ├── Volgograd │ ├── Warsaw │ ├── Zagreb │ ├── Zaporozhye │ └── Zurich │ ├── Factory │ ├── GB │ ├── GB-Eire │ ├── GMT │ ├── GMT+0 │ ├── GMT-0 │ ├── GMT0 │ ├── Greenwich │ ├── HST │ ├── Hongkong │ ├── Iceland │ ├── Indian │ ├── Antananarivo │ ├── Chagos │ ├── Christmas │ ├── Cocos │ ├── Comoro │ ├── Kerguelen │ ├── Mahe │ ├── Maldives │ ├── Mauritius │ ├── Mayotte │ └── Reunion │ ├── Iran │ ├── Israel │ ├── Jamaica │ ├── Japan │ ├── Kwajalein │ ├── Libya │ ├── MET │ ├── MST │ ├── MST7MDT │ ├── Mexico │ ├── BajaNorte │ ├── BajaSur │ └── General │ ├── NZ │ ├── NZ-CHAT │ ├── Navajo │ ├── PRC │ ├── PST8PDT │ ├── Pacific │ ├── Apia │ ├── Auckland │ ├── Bougainville │ ├── Chatham │ ├── Chuuk │ ├── Easter │ ├── Efate │ ├── Enderbury │ ├── Fakaofo │ ├── Fiji │ ├── Funafuti │ ├── Galapagos │ ├── Gambier │ ├── Guadalcanal │ ├── Guam │ ├── Honolulu │ ├── Johnston │ ├── Kanton │ ├── Kiritimati │ ├── Kosrae │ ├── Kwajalein │ ├── Majuro │ ├── Marquesas │ ├── Midway │ ├── Nauru │ ├── Niue │ ├── Norfolk │ ├── Noumea │ ├── Pago_Pago │ ├── Palau │ ├── Pitcairn │ ├── Pohnpei │ ├── Ponape │ ├── Port_Moresby │ ├── Rarotonga │ ├── Saipan │ ├── Samoa │ ├── Tahiti │ ├── Tarawa │ ├── Tongatapu │ ├── Truk │ ├── Wake │ ├── Wallis │ └── Yap │ ├── Poland │ ├── Portugal │ ├── ROC │ ├── ROK │ ├── Singapore │ ├── Turkey │ ├── UCT │ ├── US │ ├── Alaska │ ├── Aleutian │ ├── Arizona │ ├── Central │ ├── East-Indiana │ ├── Eastern │ ├── Hawaii │ ├── Indiana-Starke │ ├── Michigan │ ├── Mountain │ ├── Pacific │ └── Samoa │ ├── UTC │ ├── Universal │ ├── W-SU │ ├── WET │ └── Zulu ├── common ├── common.vcxproj ├── common.vcxproj.filters ├── common.vcxproj.user ├── dynamic_library.cpp ├── dynamic_library.h ├── file.cpp ├── file.h ├── json.cpp ├── json.h ├── maths.cpp ├── maths.h ├── padding.h ├── path.cpp ├── path.h ├── sha256.cpp ├── sha256.h ├── std_string.cpp └── std_string.h ├── host_shaders ├── host_shaders.vcxproj └── host_shaders.vcxproj.filters ├── network ├── announce_multiplayer_session.cpp ├── announce_multiplayer_session.h ├── network.cpp ├── network.h ├── network.vcxproj ├── network.vcxproj.filters ├── packet.cpp ├── packet.h ├── precompiled_headers.h ├── room.cpp ├── room.h ├── room_member.cpp ├── room_member.h ├── verify_user.cpp └── verify_user.h ├── nx_tzdb ├── africa.h.rule ├── america.h.rule ├── america_argentina.h.rule ├── america_indiana.h.rule ├── america_kentucky.h.rule ├── america_north_dakota.h.rule ├── antarctica.h.rule ├── arctic.h.rule ├── asia.h.rule ├── atlantic.h.rule ├── australia.h.rule ├── base.h.rule ├── brazil.h.rule ├── canada.h.rule ├── chile.h.rule ├── etc.h.rule ├── europe.h.rule ├── indian.h.rule ├── mexico.h.rule ├── nx_tzdb.vcxproj ├── nx_tzdb.vcxproj.filters ├── pacific.h.rule ├── us.h.rule └── zoneinfo.h.rule ├── nx_tzdb_create_header ├── nx_tzdb_create_header.cpp ├── nx_tzdb_create_header.vcxproj └── nx_tzdb_create_header.vcxproj.filters ├── nxemu-core ├── app_init.cpp ├── app_init.h ├── logging.cpp ├── logging.h ├── machine │ ├── switch_system.cpp │ └── switch_system.h ├── modules │ ├── cpu_module.cpp │ ├── cpu_module.h │ ├── loader_module.cpp │ ├── loader_module.h │ ├── module_base.cpp │ ├── module_base.h │ ├── module_list.cpp │ ├── module_list.h │ ├── module_notification.cpp │ ├── module_notification.h │ ├── module_settings.cpp │ ├── module_settings.h │ ├── modules.cpp │ ├── modules.h │ ├── operating_system_module.cpp │ ├── operating_system_module.h │ ├── video_module.cpp │ └── video_module.h ├── notification.cpp ├── notification.h ├── nxemu-core.vcxproj ├── nxemu-core.vcxproj.filters ├── nxemu-core.vcxproj.user ├── settings │ ├── core_settings.cpp │ ├── core_settings.h │ ├── identifiers.h │ ├── settings.cpp │ └── settings.h └── version.h.in ├── nxemu-cpu ├── arm64_registers.cpp ├── arm64_registers.h ├── arm_dynarmic_64.cpp ├── arm_dynarmic_64.h ├── cpu_manager.cpp ├── cpu_manager.h ├── dynarmic │ ├── CMakeLists.txt │ ├── backend │ │ ├── arm64 │ │ │ ├── a32_address_space.cpp │ │ │ ├── a32_address_space.h │ │ │ ├── a32_core.h │ │ │ ├── a32_interface.cpp │ │ │ ├── a32_jitstate.cpp │ │ │ ├── a32_jitstate.h │ │ │ ├── a64_address_space.cpp │ │ │ ├── a64_address_space.h │ │ │ ├── a64_core.h │ │ │ ├── a64_interface.cpp │ │ │ ├── a64_jitstate.h │ │ │ ├── abi.cpp │ │ │ ├── abi.h │ │ │ ├── address_space.cpp │ │ │ ├── address_space.h │ │ │ ├── devirtualize.h │ │ │ ├── emit_arm64.cpp │ │ │ ├── emit_arm64.h │ │ │ ├── emit_arm64_a32.cpp │ │ │ ├── emit_arm64_a32_coprocessor.cpp │ │ │ ├── emit_arm64_a32_memory.cpp │ │ │ ├── emit_arm64_a64.cpp │ │ │ ├── emit_arm64_a64_memory.cpp │ │ │ ├── emit_arm64_cryptography.cpp │ │ │ ├── emit_arm64_data_processing.cpp │ │ │ ├── emit_arm64_floating_point.cpp │ │ │ ├── emit_arm64_memory.cpp │ │ │ ├── emit_arm64_memory.h │ │ │ ├── emit_arm64_packed.cpp │ │ │ ├── emit_arm64_saturation.cpp │ │ │ ├── emit_arm64_vector.cpp │ │ │ ├── emit_arm64_vector_floating_point.cpp │ │ │ ├── emit_arm64_vector_saturation.cpp │ │ │ ├── emit_context.h │ │ │ ├── exclusive_monitor.cpp │ │ │ ├── fastmem.h │ │ │ ├── fpsr_manager.cpp │ │ │ ├── fpsr_manager.h │ │ │ ├── reg_alloc.cpp │ │ │ ├── reg_alloc.h │ │ │ ├── stack_layout.h │ │ │ ├── verbose_debugging_output.cpp │ │ │ └── verbose_debugging_output.h │ │ ├── block_range_information.cpp │ │ ├── block_range_information.h │ │ ├── exception_handler.h │ │ ├── exception_handler_generic.cpp │ │ ├── exception_handler_macos.cpp │ │ ├── exception_handler_macos_mig.c │ │ ├── exception_handler_posix.cpp │ │ ├── exception_handler_windows.cpp │ │ └── x64 │ │ │ ├── a32_emit_x64.cpp │ │ │ ├── a32_emit_x64.h │ │ │ ├── a32_emit_x64_memory.cpp │ │ │ ├── a32_interface.cpp │ │ │ ├── a32_jitstate.cpp │ │ │ ├── a32_jitstate.h │ │ │ ├── a64_emit_x64.cpp │ │ │ ├── a64_emit_x64.h │ │ │ ├── a64_emit_x64_memory.cpp │ │ │ ├── a64_interface.cpp │ │ │ ├── a64_jitstate.cpp │ │ │ ├── a64_jitstate.h │ │ │ ├── abi.cpp │ │ │ ├── abi.h │ │ │ ├── block_of_code.cpp │ │ │ ├── block_of_code.h │ │ │ ├── callback.cpp │ │ │ ├── callback.h │ │ │ ├── constant_pool.cpp │ │ │ ├── constant_pool.h │ │ │ ├── constants.h │ │ │ ├── devirtualize.h │ │ │ ├── emit_x64.cpp │ │ │ ├── emit_x64.h │ │ │ ├── emit_x64_aes.cpp │ │ │ ├── emit_x64_crc32.cpp │ │ │ ├── emit_x64_data_processing.cpp │ │ │ ├── emit_x64_floating_point.cpp │ │ │ ├── emit_x64_memory.cpp.inc │ │ │ ├── emit_x64_memory.h │ │ │ ├── emit_x64_packed.cpp │ │ │ ├── emit_x64_saturation.cpp │ │ │ ├── emit_x64_sha.cpp │ │ │ ├── emit_x64_sm4.cpp │ │ │ ├── emit_x64_vector.cpp │ │ │ ├── emit_x64_vector_floating_point.cpp │ │ │ ├── emit_x64_vector_saturation.cpp │ │ │ ├── exception_handler_windows_x64.cpp │ │ │ ├── exclusive_monitor.cpp │ │ │ ├── exclusive_monitor_friend.h │ │ │ ├── host_feature.h │ │ │ ├── hostloc.cpp │ │ │ ├── hostloc.h │ │ │ ├── jitstate_info.h │ │ │ ├── nzcv_util.h │ │ │ ├── oparg.h │ │ │ ├── perf_map.cpp │ │ │ ├── perf_map.h │ │ │ ├── reg_alloc.cpp │ │ │ ├── reg_alloc.h │ │ │ ├── stack_layout.h │ │ │ ├── verbose_debugging_output.cpp │ │ │ └── verbose_debugging_output.h │ ├── common │ │ ├── always_false.h │ │ ├── atomic.h │ │ ├── cast_util.h │ │ ├── crypto │ │ │ ├── aes.cpp │ │ │ ├── aes.h │ │ │ ├── crc32.cpp │ │ │ ├── crc32.h │ │ │ ├── sm4.cpp │ │ │ └── sm4.h │ │ ├── fp │ │ │ ├── fpcr.h │ │ │ ├── fpsr.h │ │ │ ├── fused.cpp │ │ │ ├── fused.h │ │ │ ├── info.h │ │ │ ├── mantissa_util.h │ │ │ ├── op.h │ │ │ ├── op │ │ │ │ ├── FPCompare.cpp │ │ │ │ ├── FPCompare.h │ │ │ │ ├── FPConvert.cpp │ │ │ │ ├── FPConvert.h │ │ │ │ ├── FPMulAdd.cpp │ │ │ │ ├── FPMulAdd.h │ │ │ │ ├── FPNeg.h │ │ │ │ ├── FPRSqrtEstimate.cpp │ │ │ │ ├── FPRSqrtEstimate.h │ │ │ │ ├── FPRSqrtStepFused.cpp │ │ │ │ ├── FPRSqrtStepFused.h │ │ │ │ ├── FPRecipEstimate.cpp │ │ │ │ ├── FPRecipEstimate.h │ │ │ │ ├── FPRecipExponent.cpp │ │ │ │ ├── FPRecipExponent.h │ │ │ │ ├── FPRecipStepFused.cpp │ │ │ │ ├── FPRecipStepFused.h │ │ │ │ ├── FPRoundInt.cpp │ │ │ │ ├── FPRoundInt.h │ │ │ │ ├── FPToFixed.cpp │ │ │ │ └── FPToFixed.h │ │ │ ├── process_exception.cpp │ │ │ ├── process_exception.h │ │ │ ├── process_nan.cpp │ │ │ ├── process_nan.h │ │ │ ├── rounding_mode.h │ │ │ ├── unpacked.cpp │ │ │ ├── unpacked.h │ │ │ └── util.h │ │ ├── llvm_disassemble.cpp │ │ ├── llvm_disassemble.h │ │ ├── lut_from_list.h │ │ ├── math_util.cpp │ │ ├── math_util.h │ │ ├── memory_pool.cpp │ │ ├── memory_pool.h │ │ ├── safe_ops.h │ │ ├── spin_lock.h │ │ ├── spin_lock_arm64.cpp │ │ ├── spin_lock_arm64.h │ │ ├── spin_lock_x64.cpp │ │ ├── spin_lock_x64.h │ │ ├── string_util.h │ │ ├── u128.cpp │ │ ├── u128.h │ │ ├── variant_util.h │ │ ├── x64_disassemble.cpp │ │ └── x64_disassemble.h │ ├── frontend │ │ ├── A32 │ │ │ ├── FPSCR.h │ │ │ ├── ITState.h │ │ │ ├── PSR.h │ │ │ ├── a32_ir_emitter.cpp │ │ │ ├── a32_ir_emitter.h │ │ │ ├── a32_location_descriptor.cpp │ │ │ ├── a32_location_descriptor.h │ │ │ ├── a32_types.cpp │ │ │ ├── a32_types.h │ │ │ ├── decoder │ │ │ │ ├── arm.h │ │ │ │ ├── arm.inc │ │ │ │ ├── asimd.h │ │ │ │ ├── asimd.inc │ │ │ │ ├── thumb16.h │ │ │ │ ├── thumb16.inc │ │ │ │ ├── thumb32.h │ │ │ │ ├── thumb32.inc │ │ │ │ ├── vfp.h │ │ │ │ └── vfp.inc │ │ │ ├── disassembler │ │ │ │ ├── disassembler.h │ │ │ │ ├── disassembler_arm.cpp │ │ │ │ └── disassembler_thumb.cpp │ │ │ └── translate │ │ │ │ ├── a32_translate.cpp │ │ │ │ ├── a32_translate.h │ │ │ │ ├── conditional_state.cpp │ │ │ │ ├── conditional_state.h │ │ │ │ ├── impl │ │ │ │ ├── a32_branch.cpp │ │ │ │ ├── a32_crc32.cpp │ │ │ │ ├── a32_exception_generating.cpp │ │ │ │ ├── a32_translate_impl.cpp │ │ │ │ ├── a32_translate_impl.h │ │ │ │ ├── asimd_load_store_structures.cpp │ │ │ │ ├── asimd_misc.cpp │ │ │ │ ├── asimd_one_reg_modified_immediate.cpp │ │ │ │ ├── asimd_three_regs.cpp │ │ │ │ ├── asimd_two_regs_misc.cpp │ │ │ │ ├── asimd_two_regs_scalar.cpp │ │ │ │ ├── asimd_two_regs_shift.cpp │ │ │ │ ├── barrier.cpp │ │ │ │ ├── coprocessor.cpp │ │ │ │ ├── data_processing.cpp │ │ │ │ ├── divide.cpp │ │ │ │ ├── extension.cpp │ │ │ │ ├── hint.cpp │ │ │ │ ├── load_store.cpp │ │ │ │ ├── misc.cpp │ │ │ │ ├── multiply.cpp │ │ │ │ ├── packing.cpp │ │ │ │ ├── parallel.cpp │ │ │ │ ├── reversal.cpp │ │ │ │ ├── saturated.cpp │ │ │ │ ├── status_register_access.cpp │ │ │ │ ├── synchronization.cpp │ │ │ │ ├── thumb16.cpp │ │ │ │ ├── thumb32_branch.cpp │ │ │ │ ├── thumb32_control.cpp │ │ │ │ ├── thumb32_coprocessor.cpp │ │ │ │ ├── thumb32_data_processing_modified_immediate.cpp │ │ │ │ ├── thumb32_data_processing_plain_binary_immediate.cpp │ │ │ │ ├── thumb32_data_processing_register.cpp │ │ │ │ ├── thumb32_data_processing_shifted_register.cpp │ │ │ │ ├── thumb32_load_byte.cpp │ │ │ │ ├── thumb32_load_halfword.cpp │ │ │ │ ├── thumb32_load_store_dual.cpp │ │ │ │ ├── thumb32_load_store_multiple.cpp │ │ │ │ ├── thumb32_load_word.cpp │ │ │ │ ├── thumb32_long_multiply.cpp │ │ │ │ ├── thumb32_misc.cpp │ │ │ │ ├── thumb32_multiply.cpp │ │ │ │ ├── thumb32_parallel.cpp │ │ │ │ ├── thumb32_store_single_data_item.cpp │ │ │ │ └── vfp.cpp │ │ │ │ ├── translate_arm.cpp │ │ │ │ ├── translate_callbacks.h │ │ │ │ └── translate_thumb.cpp │ │ ├── A64 │ │ │ ├── a64_ir_emitter.cpp │ │ │ ├── a64_ir_emitter.h │ │ │ ├── a64_location_descriptor.cpp │ │ │ ├── a64_location_descriptor.h │ │ │ ├── a64_types.cpp │ │ │ ├── a64_types.h │ │ │ ├── decoder │ │ │ │ ├── a64.h │ │ │ │ └── a64.inc │ │ │ └── translate │ │ │ │ ├── a64_translate.cpp │ │ │ │ ├── a64_translate.h │ │ │ │ └── impl │ │ │ │ ├── a64_branch.cpp │ │ │ │ ├── a64_exception_generating.cpp │ │ │ │ ├── data_processing_addsub.cpp │ │ │ │ ├── data_processing_bitfield.cpp │ │ │ │ ├── data_processing_conditional_compare.cpp │ │ │ │ ├── data_processing_conditional_select.cpp │ │ │ │ ├── data_processing_crc32.cpp │ │ │ │ ├── data_processing_logical.cpp │ │ │ │ ├── data_processing_multiply.cpp │ │ │ │ ├── data_processing_pcrel.cpp │ │ │ │ ├── data_processing_register.cpp │ │ │ │ ├── data_processing_shift.cpp │ │ │ │ ├── floating_point_compare.cpp │ │ │ │ ├── floating_point_conditional_compare.cpp │ │ │ │ ├── floating_point_conditional_select.cpp │ │ │ │ ├── floating_point_conversion_fixed_point.cpp │ │ │ │ ├── floating_point_conversion_integer.cpp │ │ │ │ ├── floating_point_data_processing_one_register.cpp │ │ │ │ ├── floating_point_data_processing_three_register.cpp │ │ │ │ ├── floating_point_data_processing_two_register.cpp │ │ │ │ ├── impl.cpp │ │ │ │ ├── impl.h │ │ │ │ ├── load_store_exclusive.cpp │ │ │ │ ├── load_store_load_literal.cpp │ │ │ │ ├── load_store_multiple_structures.cpp │ │ │ │ ├── load_store_no_allocate_pair.cpp │ │ │ │ ├── load_store_register_immediate.cpp │ │ │ │ ├── load_store_register_pair.cpp │ │ │ │ ├── load_store_register_register_offset.cpp │ │ │ │ ├── load_store_register_unprivileged.cpp │ │ │ │ ├── load_store_single_structure.cpp │ │ │ │ ├── move_wide.cpp │ │ │ │ ├── simd_across_lanes.cpp │ │ │ │ ├── simd_aes.cpp │ │ │ │ ├── simd_copy.cpp │ │ │ │ ├── simd_crypto_four_register.cpp │ │ │ │ ├── simd_crypto_three_register.cpp │ │ │ │ ├── simd_extract.cpp │ │ │ │ ├── simd_modified_immediate.cpp │ │ │ │ ├── simd_permute.cpp │ │ │ │ ├── simd_scalar_pairwise.cpp │ │ │ │ ├── simd_scalar_shift_by_immediate.cpp │ │ │ │ ├── simd_scalar_three_same.cpp │ │ │ │ ├── simd_scalar_two_register_misc.cpp │ │ │ │ ├── simd_scalar_x_indexed_element.cpp │ │ │ │ ├── simd_sha.cpp │ │ │ │ ├── simd_sha512.cpp │ │ │ │ ├── simd_shift_by_immediate.cpp │ │ │ │ ├── simd_table_lookup.cpp │ │ │ │ ├── simd_three_different.cpp │ │ │ │ ├── simd_three_same.cpp │ │ │ │ ├── simd_three_same_extra.cpp │ │ │ │ ├── simd_two_register_misc.cpp │ │ │ │ ├── simd_vector_x_indexed_element.cpp │ │ │ │ ├── sys_dc.cpp │ │ │ │ ├── sys_ic.cpp │ │ │ │ ├── system.cpp │ │ │ │ ├── system_flag_format.cpp │ │ │ │ └── system_flag_manipulation.cpp │ │ ├── decoder │ │ │ ├── decoder_detail.h │ │ │ └── matcher.h │ │ ├── imm.cpp │ │ └── imm.h │ ├── interface │ │ ├── A32 │ │ │ ├── a32.h │ │ │ ├── arch_version.h │ │ │ ├── config.h │ │ │ ├── coprocessor.h │ │ │ ├── coprocessor_util.h │ │ │ └── disassembler.h │ │ ├── A64 │ │ │ ├── a64.h │ │ │ └── config.h │ │ ├── exclusive_monitor.h │ │ ├── halt_reason.h │ │ └── optimization_flags.h │ └── ir │ │ ├── acc_type.h │ │ ├── basic_block.cpp │ │ ├── basic_block.h │ │ ├── cond.h │ │ ├── ir_emitter.cpp │ │ ├── ir_emitter.h │ │ ├── location_descriptor.cpp │ │ ├── location_descriptor.h │ │ ├── microinstruction.cpp │ │ ├── microinstruction.h │ │ ├── opcodes.cpp │ │ ├── opcodes.h │ │ ├── opcodes.inc │ │ ├── opt │ │ ├── a32_constant_memory_reads_pass.cpp │ │ ├── a32_get_set_elimination_pass.cpp │ │ ├── a64_callback_config_pass.cpp │ │ ├── a64_get_set_elimination_pass.cpp │ │ ├── a64_merge_interpret_blocks.cpp │ │ ├── constant_propagation_pass.cpp │ │ ├── dead_code_elimination_pass.cpp │ │ ├── identity_removal_pass.cpp │ │ ├── ir_matcher.h │ │ ├── naming_pass.cpp │ │ ├── passes.h │ │ ├── polyfill_pass.cpp │ │ └── verification_pass.cpp │ │ ├── terminal.h │ │ ├── type.cpp │ │ ├── type.h │ │ ├── value.cpp │ │ └── value.h ├── exclusive_monitor_interface.cpp ├── exclusive_monitor_interface.h ├── nxemu-cpu.cpp ├── nxemu-cpu.vcxproj ├── nxemu-cpu.vcxproj.filters └── version.h.in ├── nxemu-loader ├── core │ ├── core.cpp │ ├── core.h │ ├── file_sys │ │ ├── bis_factory.cpp │ │ ├── bis_factory.h │ │ ├── card_image.cpp │ │ ├── card_image.h │ │ ├── common_funcs.h │ │ ├── content_archive.cpp │ │ ├── content_archive.h │ │ ├── control_metadata.cpp │ │ ├── control_metadata.h │ │ ├── errors.h │ │ ├── filesystem.cpp │ │ ├── filesystem.h │ │ ├── fs_save_data_types.h │ │ ├── fsmitm_romfsbuild.cpp │ │ ├── fsmitm_romfsbuild.h │ │ ├── fssystem │ │ │ ├── fs_i_storage.h │ │ │ ├── fs_types.h │ │ │ ├── fssystem_aes_ctr_counter_extended_storage.cpp │ │ │ ├── fssystem_aes_ctr_counter_extended_storage.h │ │ │ ├── fssystem_aes_ctr_storage.h │ │ │ ├── fssystem_alignment_matching_storage.h │ │ │ ├── fssystem_alignment_matching_storage_impl.cpp │ │ │ ├── fssystem_alignment_matching_storage_impl.h │ │ │ ├── fssystem_bucket_tree.cpp │ │ │ ├── fssystem_bucket_tree.h │ │ │ ├── fssystem_bucket_tree_template_impl.h │ │ │ ├── fssystem_bucket_tree_utils.h │ │ │ ├── fssystem_compressed_storage.h │ │ │ ├── fssystem_compression_common.h │ │ │ ├── fssystem_compression_configuration.cpp │ │ │ ├── fssystem_compression_configuration.h │ │ │ ├── fssystem_hierarchical_integrity_verification_storage.cpp │ │ │ ├── fssystem_hierarchical_integrity_verification_storage.h │ │ │ ├── fssystem_hierarchical_sha256_storage.cpp │ │ │ ├── fssystem_hierarchical_sha256_storage.h │ │ │ ├── fssystem_indirect_storage.cpp │ │ │ ├── fssystem_indirect_storage.h │ │ │ ├── fssystem_integrity_romfs_storage.cpp │ │ │ ├── fssystem_integrity_romfs_storage.h │ │ │ ├── fssystem_integrity_verification_storage.cpp │ │ │ ├── fssystem_integrity_verification_storage.h │ │ │ ├── fssystem_memory_resource_buffer_hold_storage.h │ │ │ ├── fssystem_nca_file_system_driver.cpp │ │ │ ├── fssystem_nca_file_system_driver.h │ │ │ ├── fssystem_nca_header.cpp │ │ │ ├── fssystem_nca_header.h │ │ │ ├── fssystem_nca_reader.cpp │ │ │ ├── fssystem_pooled_buffer.cpp │ │ │ ├── fssystem_pooled_buffer.h │ │ │ ├── fssystem_sparse_storage.cpp │ │ │ ├── fssystem_sparse_storage.h │ │ │ └── fssystem_switch_storage.h │ │ ├── ips_layer.cpp │ │ ├── ips_layer.h │ │ ├── nca_metadata.cpp │ │ ├── nca_metadata.h │ │ ├── partition_filesystem.cpp │ │ ├── partition_filesystem.h │ │ ├── patch_manager.cpp │ │ ├── patch_manager.h │ │ ├── program_metadata.cpp │ │ ├── program_metadata.h │ │ ├── registered_cache.cpp │ │ ├── registered_cache.h │ │ ├── romfs.cpp │ │ ├── romfs.h │ │ ├── romfs_factory.cpp │ │ ├── romfs_factory.h │ │ ├── save_data_controller.cpp │ │ ├── save_data_controller.h │ │ ├── savedata_factory.cpp │ │ ├── savedata_factory.h │ │ ├── sdmc_factory.cpp │ │ ├── sdmc_factory.h │ │ ├── submission_package.cpp │ │ ├── submission_package.h │ │ ├── system_archive │ │ │ ├── data │ │ │ │ ├── font_chinese_simplified.cpp │ │ │ │ ├── font_chinese_simplified.h │ │ │ │ ├── font_chinese_traditional.cpp │ │ │ │ ├── font_chinese_traditional.h │ │ │ │ ├── font_extended_chinese_simplified.cpp │ │ │ │ ├── font_extended_chinese_simplified.h │ │ │ │ ├── font_korean.cpp │ │ │ │ ├── font_korean.h │ │ │ │ ├── font_nintendo_extended.cpp │ │ │ │ ├── font_nintendo_extended.h │ │ │ │ ├── font_standard.cpp │ │ │ │ └── font_standard.h │ │ │ ├── mii_model.cpp │ │ │ ├── mii_model.h │ │ │ ├── ng_word.cpp │ │ │ ├── ng_word.h │ │ │ ├── shared_font.cpp │ │ │ ├── shared_font.h │ │ │ ├── system_archive.cpp │ │ │ ├── system_archive.h │ │ │ ├── system_version.cpp │ │ │ ├── system_version.h │ │ │ ├── time_zone_binary.cpp │ │ │ └── time_zone_binary.h │ │ ├── vfs │ │ │ ├── vfs.cpp │ │ │ ├── vfs.h │ │ │ ├── vfs_cached.cpp │ │ │ ├── vfs_cached.h │ │ │ ├── vfs_concat.cpp │ │ │ ├── vfs_concat.h │ │ │ ├── vfs_layered.cpp │ │ │ ├── vfs_layered.h │ │ │ ├── vfs_offset.cpp │ │ │ ├── vfs_offset.h │ │ │ ├── vfs_real.cpp │ │ │ ├── vfs_real.h │ │ │ ├── vfs_static.h │ │ │ ├── vfs_types.cpp │ │ │ ├── vfs_types.h │ │ │ ├── vfs_vector.cpp │ │ │ └── vfs_vector.h │ │ ├── xts_archive.cpp │ │ └── xts_archive.h │ ├── hle │ │ ├── api_version.h │ │ ├── kernel │ │ │ ├── code_set.cpp │ │ │ ├── code_set.h │ │ │ ├── k_thread.h │ │ │ ├── k_typed_address.h │ │ │ └── physical_memory.h │ │ ├── result.h │ │ └── service │ │ │ ├── cmif_types.h │ │ │ ├── ns │ │ │ ├── language.cpp │ │ │ ├── language.h │ │ │ ├── platform_service_manager.cpp │ │ │ └── platform_service_manager.h │ │ │ └── set │ │ │ ├── settings_server.cpp │ │ │ ├── settings_server.h │ │ │ └── settings_types.h │ ├── loader │ │ ├── deconstructed_rom_directory.cpp │ │ ├── deconstructed_rom_directory.h │ │ ├── loader.cpp │ │ ├── loader.h │ │ ├── nca.cpp │ │ ├── nca.h │ │ ├── nro.cpp │ │ ├── nro.h │ │ ├── nso.cpp │ │ ├── nso.h │ │ ├── nsp.cpp │ │ ├── nsp.h │ │ ├── xci.cpp │ │ └── xci.h │ └── memory.h ├── nxemu-loader.cpp ├── nxemu-loader.vcxproj ├── nxemu-loader.vcxproj.filters ├── system_loader.cpp ├── system_loader.h └── version.h.in ├── nxemu-module-spec ├── base.h ├── cpu.h ├── operating_system.h ├── system_loader.h └── video.h ├── nxemu-os ├── core │ ├── arm │ │ ├── arm_interface.h │ │ ├── cpu_module.cpp │ │ ├── cpu_module.h │ │ ├── debug.h │ │ ├── dynarmic │ │ │ └── arm_dynarmic.h │ │ └── exclusive_monitor.h │ ├── constants.cpp │ ├── constants.h │ ├── core.cpp │ ├── core.h │ ├── core_timing.cpp │ ├── core_timing.h │ ├── cpu_manager.cpp │ ├── cpu_manager.h │ ├── debugger │ │ └── debugger.h │ ├── device_memory.cpp │ ├── device_memory.h │ ├── file_sys │ │ ├── errors.h │ │ ├── filesystem_interfaces.cpp │ │ ├── filesystem_interfaces.h │ │ ├── fs_directory.h │ │ ├── fs_file.h │ │ ├── fs_filesystem.h │ │ ├── fs_memory_management.h │ │ ├── fs_operate_range.h │ │ ├── fs_path.h │ │ ├── fs_path_utility.h │ │ ├── fs_save_data_types.h │ │ ├── fs_string_util.h │ │ ├── fsa │ │ │ ├── fs_i_directory.h │ │ │ ├── fs_i_file.h │ │ │ └── fs_i_filesystem.h │ │ └── fssrv │ │ │ └── fssrv_sf_path.h │ ├── gpu_dirty_memory_manager.h │ ├── guest_memory.h │ ├── hardware_properties.h │ ├── hle │ │ ├── ipc.h │ │ ├── kernel │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── k_memory_region_device_types.inc │ │ │ ├── board │ │ │ │ └── nintendo │ │ │ │ │ └── nx │ │ │ │ │ ├── k_memory_layout.h │ │ │ │ │ ├── k_memory_layout_nx.cpp │ │ │ │ │ ├── k_memory_region_device_types.inc │ │ │ │ │ ├── k_system_control.cpp │ │ │ │ │ ├── k_system_control.h │ │ │ │ │ └── secure_monitor.h │ │ │ ├── code_set.cpp │ │ │ ├── code_set.h │ │ │ ├── global_scheduler_context.cpp │ │ │ ├── global_scheduler_context.h │ │ │ ├── init │ │ │ │ ├── init_slab_setup.cpp │ │ │ │ └── init_slab_setup.h │ │ │ ├── initial_process.h │ │ │ ├── k_address_arbiter.cpp │ │ │ ├── k_address_arbiter.h │ │ │ ├── k_address_space_info.cpp │ │ │ ├── k_address_space_info.h │ │ │ ├── k_affinity_mask.h │ │ │ ├── k_auto_object.cpp │ │ │ ├── k_auto_object.h │ │ │ ├── k_auto_object_container.cpp │ │ │ ├── k_auto_object_container.h │ │ │ ├── k_capabilities.cpp │ │ │ ├── k_capabilities.h │ │ │ ├── k_class_token.cpp │ │ │ ├── k_class_token.h │ │ │ ├── k_client_port.cpp │ │ │ ├── k_client_port.h │ │ │ ├── k_client_session.cpp │ │ │ ├── k_client_session.h │ │ │ ├── k_code_memory.cpp │ │ │ ├── k_code_memory.h │ │ │ ├── k_condition_variable.cpp │ │ │ ├── k_condition_variable.h │ │ │ ├── k_debug.h │ │ │ ├── k_device_address_space.cpp │ │ │ ├── k_device_address_space.h │ │ │ ├── k_dynamic_page_manager.h │ │ │ ├── k_dynamic_resource_manager.h │ │ │ ├── k_dynamic_slab_heap.h │ │ │ ├── k_event.cpp │ │ │ ├── k_event.h │ │ │ ├── k_event_info.h │ │ │ ├── k_handle_table.cpp │ │ │ ├── k_handle_table.h │ │ │ ├── k_hardware_timer.cpp │ │ │ ├── k_hardware_timer.h │ │ │ ├── k_hardware_timer_base.h │ │ │ ├── k_interrupt_manager.cpp │ │ │ ├── k_interrupt_manager.h │ │ │ ├── k_light_client_session.cpp │ │ │ ├── k_light_client_session.h │ │ │ ├── k_light_condition_variable.cpp │ │ │ ├── k_light_condition_variable.h │ │ │ ├── k_light_lock.cpp │ │ │ ├── k_light_lock.h │ │ │ ├── k_light_server_session.cpp │ │ │ ├── k_light_server_session.h │ │ │ ├── k_light_session.cpp │ │ │ ├── k_light_session.h │ │ │ ├── k_memory_block.h │ │ │ ├── k_memory_block_manager.cpp │ │ │ ├── k_memory_block_manager.h │ │ │ ├── k_memory_layout.cpp │ │ │ ├── k_memory_layout.h │ │ │ ├── k_memory_manager.cpp │ │ │ ├── k_memory_manager.h │ │ │ ├── k_memory_region.h │ │ │ ├── k_memory_region_type.h │ │ │ ├── k_object_name.cpp │ │ │ ├── k_object_name.h │ │ │ ├── k_page_bitmap.h │ │ │ ├── k_page_buffer.cpp │ │ │ ├── k_page_buffer.h │ │ │ ├── k_page_group.cpp │ │ │ ├── k_page_group.h │ │ │ ├── k_page_heap.cpp │ │ │ ├── k_page_heap.h │ │ │ ├── k_page_table.h │ │ │ ├── k_page_table_base.cpp │ │ │ ├── k_page_table_base.h │ │ │ ├── k_page_table_manager.h │ │ │ ├── k_page_table_slab_heap.h │ │ │ ├── k_port.cpp │ │ │ ├── k_port.h │ │ │ ├── k_priority_queue.h │ │ │ ├── k_process.cpp │ │ │ ├── k_process.h │ │ │ ├── k_process_page_table.h │ │ │ ├── k_readable_event.cpp │ │ │ ├── k_readable_event.h │ │ │ ├── k_resource_limit.cpp │ │ │ ├── k_resource_limit.h │ │ │ ├── k_scheduler.cpp │ │ │ ├── k_scheduler.h │ │ │ ├── k_scheduler_lock.h │ │ │ ├── k_scoped_lock.h │ │ │ ├── k_scoped_resource_reservation.h │ │ │ ├── k_scoped_scheduler_lock_and_sleep.h │ │ │ ├── k_server_port.cpp │ │ │ ├── k_server_port.h │ │ │ ├── k_server_session.cpp │ │ │ ├── k_server_session.h │ │ │ ├── k_session.cpp │ │ │ ├── k_session.h │ │ │ ├── k_session_request.cpp │ │ │ ├── k_session_request.h │ │ │ ├── k_shared_memory.cpp │ │ │ ├── k_shared_memory.h │ │ │ ├── k_shared_memory_info.h │ │ │ ├── k_slab_heap.h │ │ │ ├── k_spin_lock.cpp │ │ │ ├── k_spin_lock.h │ │ │ ├── k_synchronization_object.cpp │ │ │ ├── k_synchronization_object.h │ │ │ ├── k_system_control.h │ │ │ ├── k_system_resource.cpp │ │ │ ├── k_system_resource.h │ │ │ ├── k_thread.cpp │ │ │ ├── k_thread.h │ │ │ ├── k_thread_local_page.cpp │ │ │ ├── k_thread_local_page.h │ │ │ ├── k_thread_queue.cpp │ │ │ ├── k_thread_queue.h │ │ │ ├── k_timer_task.h │ │ │ ├── k_trace.h │ │ │ ├── k_transfer_memory.cpp │ │ │ ├── k_transfer_memory.h │ │ │ ├── k_typed_address.h │ │ │ ├── k_worker_task.h │ │ │ ├── k_worker_task_manager.cpp │ │ │ ├── k_worker_task_manager.h │ │ │ ├── kernel.cpp │ │ │ ├── kernel.h │ │ │ ├── memory_types.h │ │ │ ├── message_buffer.h │ │ │ ├── physical_core.cpp │ │ │ ├── physical_core.h │ │ │ ├── physical_memory.h │ │ │ ├── slab_helpers.h │ │ │ ├── svc.cpp │ │ │ ├── svc.h │ │ │ ├── svc │ │ │ │ ├── svc_activity.cpp │ │ │ │ ├── svc_address_arbiter.cpp │ │ │ │ ├── svc_address_translation.cpp │ │ │ │ ├── svc_cache.cpp │ │ │ │ ├── svc_code_memory.cpp │ │ │ │ ├── svc_condition_variable.cpp │ │ │ │ ├── svc_debug.cpp │ │ │ │ ├── svc_debug_string.cpp │ │ │ │ ├── svc_device_address_space.cpp │ │ │ │ ├── svc_event.cpp │ │ │ │ ├── svc_exception.cpp │ │ │ │ ├── svc_info.cpp │ │ │ │ ├── svc_insecure_memory.cpp │ │ │ │ ├── svc_interrupt_event.cpp │ │ │ │ ├── svc_io_pool.cpp │ │ │ │ ├── svc_ipc.cpp │ │ │ │ ├── svc_kernel_debug.cpp │ │ │ │ ├── svc_light_ipc.cpp │ │ │ │ ├── svc_lock.cpp │ │ │ │ ├── svc_memory.cpp │ │ │ │ ├── svc_physical_memory.cpp │ │ │ │ ├── svc_port.cpp │ │ │ │ ├── svc_power_management.cpp │ │ │ │ ├── svc_process.cpp │ │ │ │ ├── svc_process_memory.cpp │ │ │ │ ├── svc_processor.cpp │ │ │ │ ├── svc_query_memory.cpp │ │ │ │ ├── svc_register.cpp │ │ │ │ ├── svc_resource_limit.cpp │ │ │ │ ├── svc_secure_monitor_call.cpp │ │ │ │ ├── svc_session.cpp │ │ │ │ ├── svc_shared_memory.cpp │ │ │ │ ├── svc_synchronization.cpp │ │ │ │ ├── svc_thread.cpp │ │ │ │ ├── svc_thread_profiler.cpp │ │ │ │ ├── svc_tick.cpp │ │ │ │ └── svc_transfer_memory.cpp │ │ │ ├── svc_common.h │ │ │ ├── svc_results.h │ │ │ ├── svc_types.h │ │ │ └── svc_version.h │ │ ├── result.h │ │ └── service │ │ │ ├── acc │ │ │ ├── acc.cpp │ │ │ ├── acc.h │ │ │ ├── acc_aa.cpp │ │ │ ├── acc_aa.h │ │ │ ├── acc_su.cpp │ │ │ ├── acc_su.h │ │ │ ├── acc_u0.cpp │ │ │ ├── acc_u0.h │ │ │ ├── acc_u1.cpp │ │ │ ├── acc_u1.h │ │ │ ├── async_context.cpp │ │ │ ├── async_context.h │ │ │ ├── errors.h │ │ │ ├── profile_manager.cpp │ │ │ └── profile_manager.h │ │ │ ├── am │ │ │ ├── am.cpp │ │ │ ├── am.h │ │ │ ├── am_results.h │ │ │ ├── am_types.h │ │ │ ├── applet.cpp │ │ │ ├── applet.h │ │ │ ├── applet_data_broker.cpp │ │ │ ├── applet_data_broker.h │ │ │ ├── applet_manager.cpp │ │ │ ├── applet_manager.h │ │ │ ├── applet_message_queue.cpp │ │ │ ├── applet_message_queue.h │ │ │ ├── display_layer_manager.cpp │ │ │ ├── display_layer_manager.h │ │ │ ├── frontend │ │ │ │ ├── applet_cabinet.cpp │ │ │ │ ├── applet_cabinet.h │ │ │ │ ├── applet_controller.cpp │ │ │ │ ├── applet_controller.h │ │ │ │ ├── applet_error.cpp │ │ │ │ ├── applet_error.h │ │ │ │ ├── applet_general.cpp │ │ │ │ ├── applet_general.h │ │ │ │ ├── applet_mii_edit.cpp │ │ │ │ ├── applet_profile_select.cpp │ │ │ │ ├── applet_profile_select.h │ │ │ │ ├── applet_software_keyboard_types.h │ │ │ │ ├── applet_web_browser.cpp │ │ │ │ ├── applet_web_browser.h │ │ │ │ ├── applet_web_browser_types.h │ │ │ │ ├── applets.cpp │ │ │ │ └── applets.h │ │ │ ├── hid_registration.cpp │ │ │ ├── hid_registration.h │ │ │ ├── library_applet_storage.cpp │ │ │ ├── library_applet_storage.h │ │ │ ├── process.cpp │ │ │ ├── process.h │ │ │ └── service │ │ │ │ ├── all_system_applet_proxies_service.cpp │ │ │ │ ├── all_system_applet_proxies_service.h │ │ │ │ ├── applet_common_functions.cpp │ │ │ │ ├── applet_common_functions.h │ │ │ │ ├── application_accessor.cpp │ │ │ │ ├── application_accessor.h │ │ │ │ ├── application_creator.cpp │ │ │ │ ├── application_creator.h │ │ │ │ ├── application_functions.cpp │ │ │ │ ├── application_functions.h │ │ │ │ ├── application_proxy.cpp │ │ │ │ ├── application_proxy.h │ │ │ │ ├── application_proxy_service.cpp │ │ │ │ ├── application_proxy_service.h │ │ │ │ ├── audio_controller.h │ │ │ │ ├── audio_controller_am.cpp │ │ │ │ ├── common_state_getter.cpp │ │ │ │ ├── common_state_getter.h │ │ │ │ ├── cradle_firmware_updater.cpp │ │ │ │ ├── cradle_firmware_updater.h │ │ │ │ ├── debug_functions.cpp │ │ │ │ ├── debug_functions.h │ │ │ │ ├── display_controller.cpp │ │ │ │ ├── display_controller.h │ │ │ │ ├── global_state_controller.cpp │ │ │ │ ├── global_state_controller.h │ │ │ │ ├── home_menu_functions.cpp │ │ │ │ ├── home_menu_functions.h │ │ │ │ ├── library_applet_accessor.cpp │ │ │ │ ├── library_applet_accessor.h │ │ │ │ ├── library_applet_creator.cpp │ │ │ │ ├── library_applet_creator.h │ │ │ │ ├── library_applet_proxy.cpp │ │ │ │ ├── library_applet_proxy.h │ │ │ │ ├── library_applet_self_accessor.cpp │ │ │ │ ├── library_applet_self_accessor.h │ │ │ │ ├── lock_accessor.cpp │ │ │ │ ├── lock_accessor.h │ │ │ │ ├── process_winding_controller.cpp │ │ │ │ ├── process_winding_controller.h │ │ │ │ ├── self_controller.cpp │ │ │ │ ├── self_controller.h │ │ │ │ ├── storage.cpp │ │ │ │ ├── storage.h │ │ │ │ ├── storage_accessor.cpp │ │ │ │ ├── storage_accessor.h │ │ │ │ ├── system_applet_proxy.cpp │ │ │ │ ├── system_applet_proxy.h │ │ │ │ ├── window_controller.cpp │ │ │ │ └── window_controller.h │ │ │ ├── aoc │ │ │ ├── addon_content_manager.cpp │ │ │ ├── addon_content_manager.h │ │ │ ├── purchase_event_manager.cpp │ │ │ └── purchase_event_manager.h │ │ │ ├── apm │ │ │ ├── apm.cpp │ │ │ ├── apm.h │ │ │ ├── apm_controller.cpp │ │ │ ├── apm_controller.h │ │ │ ├── apm_interface.cpp │ │ │ └── apm_interface.h │ │ │ ├── audio │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── audio_controller.cpp │ │ │ ├── audio_controller.h │ │ │ ├── audio_device.cpp │ │ │ ├── audio_device.h │ │ │ ├── audio_in.cpp │ │ │ ├── audio_in.h │ │ │ ├── audio_in_manager.cpp │ │ │ ├── audio_in_manager.h │ │ │ ├── audio_out.cpp │ │ │ ├── audio_out.h │ │ │ ├── audio_out_manager.cpp │ │ │ ├── audio_out_manager.h │ │ │ ├── audio_renderer.cpp │ │ │ ├── audio_renderer.h │ │ │ ├── audio_renderer_manager.cpp │ │ │ ├── audio_renderer_manager.h │ │ │ ├── errors.h │ │ │ ├── final_output_recorder_manager.cpp │ │ │ ├── final_output_recorder_manager.h │ │ │ ├── final_output_recorder_manager_for_applet.cpp │ │ │ ├── final_output_recorder_manager_for_applet.h │ │ │ ├── hardware_opus_decoder.cpp │ │ │ ├── hardware_opus_decoder.h │ │ │ ├── hardware_opus_decoder_manager.cpp │ │ │ └── hardware_opus_decoder_manager.h │ │ │ ├── bpc │ │ │ ├── bpc.cpp │ │ │ └── bpc.h │ │ │ ├── btdrv │ │ │ ├── btdrv.cpp │ │ │ └── btdrv.h │ │ │ ├── btm │ │ │ ├── btm.cpp │ │ │ ├── btm.h │ │ │ ├── btm_debug.cpp │ │ │ ├── btm_debug.h │ │ │ ├── btm_system.cpp │ │ │ ├── btm_system.h │ │ │ ├── btm_system_core.cpp │ │ │ ├── btm_system_core.h │ │ │ ├── btm_user.cpp │ │ │ ├── btm_user.h │ │ │ ├── btm_user_core.cpp │ │ │ └── btm_user_core.h │ │ │ ├── caps │ │ │ ├── caps.cpp │ │ │ ├── caps.h │ │ │ ├── caps_a.cpp │ │ │ ├── caps_a.h │ │ │ ├── caps_c.cpp │ │ │ ├── caps_c.h │ │ │ ├── caps_manager.cpp │ │ │ ├── caps_manager.h │ │ │ ├── caps_result.h │ │ │ ├── caps_sc.cpp │ │ │ ├── caps_sc.h │ │ │ ├── caps_ss.cpp │ │ │ ├── caps_ss.h │ │ │ ├── caps_su.cpp │ │ │ ├── caps_su.h │ │ │ ├── caps_types.h │ │ │ ├── caps_u.cpp │ │ │ └── caps_u.h │ │ │ ├── cmif_serialization.h │ │ │ ├── cmif_types.h │ │ │ ├── erpt │ │ │ ├── erpt.cpp │ │ │ └── erpt.h │ │ │ ├── es │ │ │ ├── es.cpp │ │ │ └── es.h │ │ │ ├── eupld │ │ │ ├── eupld.cpp │ │ │ └── eupld.h │ │ │ ├── fatal │ │ │ ├── fatal.cpp │ │ │ ├── fatal.h │ │ │ ├── fatal_p.cpp │ │ │ ├── fatal_p.h │ │ │ ├── fatal_u.cpp │ │ │ └── fatal_u.h │ │ │ ├── fgm │ │ │ ├── fgm.cpp │ │ │ └── fgm.h │ │ │ ├── filesystem │ │ │ ├── filesystem.cpp │ │ │ ├── filesystem.h │ │ │ ├── fsp │ │ │ │ ├── fs_i_directory.cpp │ │ │ │ ├── fs_i_directory.h │ │ │ │ ├── fs_i_file.cpp │ │ │ │ ├── fs_i_file.h │ │ │ │ ├── fs_i_filesystem.cpp │ │ │ │ ├── fs_i_filesystem.h │ │ │ │ ├── fs_i_multi_commit_manager.cpp │ │ │ │ ├── fs_i_multi_commit_manager.h │ │ │ │ ├── fs_i_save_data_info_reader.cpp │ │ │ │ ├── fs_i_save_data_info_reader.h │ │ │ │ ├── fs_i_storage.cpp │ │ │ │ ├── fs_i_storage.h │ │ │ │ ├── fsp_ldr.cpp │ │ │ │ ├── fsp_ldr.h │ │ │ │ ├── fsp_pr.cpp │ │ │ │ ├── fsp_pr.h │ │ │ │ ├── fsp_srv.cpp │ │ │ │ ├── fsp_srv.h │ │ │ │ ├── fsp_types.h │ │ │ │ ├── save_data_transfer_prohibiter.cpp │ │ │ │ └── save_data_transfer_prohibiter.h │ │ │ ├── romfs_controller.cpp │ │ │ └── romfs_controller.h │ │ │ ├── friend │ │ │ ├── friend.cpp │ │ │ ├── friend.h │ │ │ ├── friend_interface.cpp │ │ │ └── friend_interface.h │ │ │ ├── glue │ │ │ ├── bgtc.cpp │ │ │ ├── bgtc.h │ │ │ ├── ectx.cpp │ │ │ ├── ectx.h │ │ │ ├── errors.h │ │ │ ├── glue.cpp │ │ │ ├── glue.h │ │ │ ├── glue_manager.cpp │ │ │ ├── glue_manager.h │ │ │ ├── notif.cpp │ │ │ ├── notif.h │ │ │ └── time │ │ │ │ ├── alarm_worker.cpp │ │ │ │ ├── alarm_worker.h │ │ │ │ ├── file_timestamp_worker.cpp │ │ │ │ ├── file_timestamp_worker.h │ │ │ │ ├── manager.cpp │ │ │ │ ├── manager.h │ │ │ │ ├── pm_state_change_handler.cpp │ │ │ │ ├── pm_state_change_handler.h │ │ │ │ ├── standard_steady_clock_resource.cpp │ │ │ │ ├── standard_steady_clock_resource.h │ │ │ │ ├── static.cpp │ │ │ │ ├── static.h │ │ │ │ ├── time_zone.cpp │ │ │ │ ├── time_zone.h │ │ │ │ ├── time_zone_binary.cpp │ │ │ │ ├── time_zone_binary.h │ │ │ │ ├── worker.cpp │ │ │ │ └── worker.h │ │ │ ├── grc │ │ │ ├── grc.cpp │ │ │ └── grc.h │ │ │ ├── hid │ │ │ ├── active_vibration_device_list.cpp │ │ │ ├── active_vibration_device_list.h │ │ │ ├── applet_resource.cpp │ │ │ ├── applet_resource.h │ │ │ ├── hid.cpp │ │ │ ├── hid.h │ │ │ ├── hid_debug_server.cpp │ │ │ ├── hid_debug_server.h │ │ │ ├── hid_server.cpp │ │ │ ├── hid_server.h │ │ │ ├── hid_system_server.cpp │ │ │ ├── hid_system_server.h │ │ │ ├── hidbus.cpp │ │ │ ├── hidbus.h │ │ │ ├── irs.cpp │ │ │ ├── irs.h │ │ │ ├── xcd.cpp │ │ │ └── xcd.h │ │ │ ├── hle_ipc.cpp │ │ │ ├── hle_ipc.h │ │ │ ├── ipc_helpers.h │ │ │ ├── kernel_helpers.cpp │ │ │ ├── kernel_helpers.h │ │ │ ├── lbl │ │ │ ├── lbl.cpp │ │ │ └── lbl.h │ │ │ ├── ldr │ │ │ ├── ldr.cpp │ │ │ └── ldr.h │ │ │ ├── lm │ │ │ ├── lm.cpp │ │ │ └── lm.h │ │ │ ├── mig │ │ │ ├── mig.cpp │ │ │ └── mig.h │ │ │ ├── mii │ │ │ ├── mii.cpp │ │ │ ├── mii.h │ │ │ ├── mii_database.cpp │ │ │ ├── mii_database.h │ │ │ ├── mii_database_manager.cpp │ │ │ ├── mii_database_manager.h │ │ │ ├── mii_manager.cpp │ │ │ ├── mii_manager.h │ │ │ ├── mii_result.h │ │ │ ├── mii_types.h │ │ │ ├── mii_util.h │ │ │ └── types │ │ │ │ ├── char_info.cpp │ │ │ │ ├── char_info.h │ │ │ │ ├── core_data.cpp │ │ │ │ ├── core_data.h │ │ │ │ ├── raw_data.cpp │ │ │ │ ├── raw_data.h │ │ │ │ ├── store_data.cpp │ │ │ │ ├── store_data.h │ │ │ │ ├── ver3_store_data.cpp │ │ │ │ └── ver3_store_data.h │ │ │ ├── mm │ │ │ ├── mm_u.cpp │ │ │ └── mm_u.h │ │ │ ├── mnpp │ │ │ ├── mnpp_app.cpp │ │ │ └── mnpp_app.h │ │ │ ├── ncm │ │ │ ├── ncm.cpp │ │ │ └── ncm.h │ │ │ ├── nfc │ │ │ ├── common │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ ├── device_manager.cpp │ │ │ │ └── device_manager.h │ │ │ ├── mifare_types.h │ │ │ ├── nfc_interface.cpp │ │ │ ├── nfc_interface.h │ │ │ ├── nfc_result.h │ │ │ └── nfc_types.h │ │ │ ├── nfp │ │ │ ├── nfp.cpp │ │ │ ├── nfp.h │ │ │ ├── nfp_interface.cpp │ │ │ ├── nfp_interface.h │ │ │ ├── nfp_result.h │ │ │ └── nfp_types.h │ │ │ ├── ngc │ │ │ ├── ngc.cpp │ │ │ └── ngc.h │ │ │ ├── nifm │ │ │ ├── nifm.cpp │ │ │ └── nifm.h │ │ │ ├── nim │ │ │ ├── nim.cpp │ │ │ └── nim.h │ │ │ ├── npns │ │ │ ├── npns.cpp │ │ │ └── npns.h │ │ │ ├── ns │ │ │ ├── account_proxy_interface.cpp │ │ │ ├── account_proxy_interface.h │ │ │ ├── application_manager_interface.cpp │ │ │ ├── application_manager_interface.h │ │ │ ├── application_version_interface.cpp │ │ │ ├── application_version_interface.h │ │ │ ├── content_management_interface.cpp │ │ │ ├── content_management_interface.h │ │ │ ├── develop_interface.cpp │ │ │ ├── develop_interface.h │ │ │ ├── document_interface.cpp │ │ │ ├── document_interface.h │ │ │ ├── download_task_interface.cpp │ │ │ ├── download_task_interface.h │ │ │ ├── dynamic_rights_interface.cpp │ │ │ ├── dynamic_rights_interface.h │ │ │ ├── ecommerce_interface.cpp │ │ │ ├── ecommerce_interface.h │ │ │ ├── factory_reset_interface.cpp │ │ │ ├── factory_reset_interface.h │ │ │ ├── language.cpp │ │ │ ├── language.h │ │ │ ├── ns.cpp │ │ │ ├── ns.h │ │ │ ├── ns_results.h │ │ │ ├── ns_types.h │ │ │ ├── platform_service_manager.cpp │ │ │ ├── platform_service_manager.h │ │ │ ├── query_service.cpp │ │ │ ├── query_service.h │ │ │ ├── read_only_application_control_data_interface.cpp │ │ │ ├── read_only_application_control_data_interface.h │ │ │ ├── read_only_application_record_interface.cpp │ │ │ ├── read_only_application_record_interface.h │ │ │ ├── service_getter_interface.cpp │ │ │ ├── service_getter_interface.h │ │ │ ├── system_update_control.cpp │ │ │ ├── system_update_control.h │ │ │ ├── system_update_interface.cpp │ │ │ ├── system_update_interface.h │ │ │ ├── vulnerability_manager_interface.cpp │ │ │ └── vulnerability_manager_interface.h │ │ │ ├── nvdrv │ │ │ ├── core │ │ │ │ ├── container.cpp │ │ │ │ ├── container.h │ │ │ │ ├── heap_mapper.cpp │ │ │ │ ├── heap_mapper.h │ │ │ │ ├── nvmap.cpp │ │ │ │ ├── nvmap.h │ │ │ │ ├── syncpoint_manager.cpp │ │ │ │ └── syncpoint_manager.h │ │ │ ├── devices │ │ │ │ ├── ioctl_serialization.h │ │ │ │ ├── nvdevice.h │ │ │ │ ├── nvdisp_disp0.cpp │ │ │ │ ├── nvdisp_disp0.h │ │ │ │ ├── nvhost_as_gpu.cpp │ │ │ │ ├── nvhost_as_gpu.h │ │ │ │ ├── nvhost_ctrl.cpp │ │ │ │ ├── nvhost_ctrl.h │ │ │ │ ├── nvhost_ctrl_gpu.cpp │ │ │ │ ├── nvhost_ctrl_gpu.h │ │ │ │ ├── nvhost_gpu.cpp │ │ │ │ ├── nvhost_gpu.h │ │ │ │ ├── nvhost_nvdec.cpp │ │ │ │ ├── nvhost_nvdec.h │ │ │ │ ├── nvhost_nvdec_common.cpp │ │ │ │ ├── nvhost_nvdec_common.h │ │ │ │ ├── nvhost_nvjpg.cpp │ │ │ │ ├── nvhost_nvjpg.h │ │ │ │ ├── nvhost_vic.cpp │ │ │ │ ├── nvhost_vic.h │ │ │ │ ├── nvmap.cpp │ │ │ │ └── nvmap.h │ │ │ ├── nvdrv.cpp │ │ │ ├── nvdrv.h │ │ │ ├── nvdrv_interface.cpp │ │ │ ├── nvdrv_interface.h │ │ │ ├── nvmemp.cpp │ │ │ └── nvmemp.h │ │ │ ├── nvnflinger │ │ │ ├── binder.h │ │ │ ├── buffer_item.h │ │ │ ├── buffer_item_consumer.cpp │ │ │ ├── buffer_item_consumer.h │ │ │ ├── buffer_queue_consumer.cpp │ │ │ ├── buffer_queue_consumer.h │ │ │ ├── buffer_queue_core.cpp │ │ │ ├── buffer_queue_core.h │ │ │ ├── buffer_queue_defs.h │ │ │ ├── buffer_queue_producer.cpp │ │ │ ├── buffer_queue_producer.h │ │ │ ├── buffer_slot.h │ │ │ ├── consumer_base.cpp │ │ │ ├── consumer_base.h │ │ │ ├── consumer_listener.h │ │ │ ├── display.h │ │ │ ├── graphic_buffer_producer.cpp │ │ │ ├── graphic_buffer_producer.h │ │ │ ├── hardware_composer.cpp │ │ │ ├── hardware_composer.h │ │ │ ├── hos_binder_driver.cpp │ │ │ ├── hos_binder_driver.h │ │ │ ├── hos_binder_driver_server.cpp │ │ │ ├── hos_binder_driver_server.h │ │ │ ├── hwc_layer.h │ │ │ ├── nvnflinger.cpp │ │ │ ├── nvnflinger.h │ │ │ ├── parcel.h │ │ │ ├── producer_listener.h │ │ │ ├── status.h │ │ │ ├── surface_flinger.cpp │ │ │ ├── surface_flinger.h │ │ │ ├── ui │ │ │ │ ├── graphic_buffer.cpp │ │ │ │ └── graphic_buffer.h │ │ │ └── window.h │ │ │ ├── olsc │ │ │ ├── daemon_controller.cpp │ │ │ ├── daemon_controller.h │ │ │ ├── native_handle_holder.cpp │ │ │ ├── native_handle_holder.h │ │ │ ├── olsc.cpp │ │ │ ├── olsc.h │ │ │ ├── olsc_service_for_application.cpp │ │ │ ├── olsc_service_for_application.h │ │ │ ├── olsc_service_for_system_service.cpp │ │ │ ├── olsc_service_for_system_service.h │ │ │ ├── remote_storage_controller.cpp │ │ │ ├── remote_storage_controller.h │ │ │ ├── transfer_task_list_controller.cpp │ │ │ └── transfer_task_list_controller.h │ │ │ ├── omm │ │ │ ├── omm.cpp │ │ │ ├── omm.h │ │ │ ├── operation_mode_manager.cpp │ │ │ ├── operation_mode_manager.h │ │ │ ├── policy_manager_system.cpp │ │ │ ├── policy_manager_system.h │ │ │ ├── power_state_interface.cpp │ │ │ └── power_state_interface.h │ │ │ ├── os │ │ │ ├── event.cpp │ │ │ ├── event.h │ │ │ ├── multi_wait.cpp │ │ │ ├── multi_wait.h │ │ │ ├── multi_wait_holder.cpp │ │ │ ├── multi_wait_holder.h │ │ │ ├── multi_wait_utils.h │ │ │ ├── mutex.cpp │ │ │ └── mutex.h │ │ │ ├── pcie │ │ │ ├── pcie.cpp │ │ │ └── pcie.h │ │ │ ├── pctl │ │ │ ├── parental_control_service.cpp │ │ │ ├── parental_control_service.h │ │ │ ├── parental_control_service_factory.cpp │ │ │ ├── parental_control_service_factory.h │ │ │ ├── pctl.cpp │ │ │ ├── pctl.h │ │ │ ├── pctl_results.h │ │ │ └── pctl_types.h │ │ │ ├── pcv │ │ │ ├── pcv.cpp │ │ │ └── pcv.h │ │ │ ├── pm │ │ │ ├── pm.cpp │ │ │ └── pm.h │ │ │ ├── prepo │ │ │ ├── prepo.cpp │ │ │ └── prepo.h │ │ │ ├── psc │ │ │ ├── ovln │ │ │ │ ├── ovln_types.h │ │ │ │ ├── receiver.cpp │ │ │ │ ├── receiver.h │ │ │ │ ├── receiver_service.cpp │ │ │ │ ├── receiver_service.h │ │ │ │ ├── sender.cpp │ │ │ │ ├── sender.h │ │ │ │ ├── sender_service.cpp │ │ │ │ └── sender_service.h │ │ │ ├── pm_control.cpp │ │ │ ├── pm_control.h │ │ │ ├── pm_module.cpp │ │ │ ├── pm_module.h │ │ │ ├── pm_service.cpp │ │ │ ├── pm_service.h │ │ │ ├── psc.cpp │ │ │ ├── psc.h │ │ │ └── time │ │ │ │ ├── alarms.cpp │ │ │ │ ├── alarms.h │ │ │ │ ├── clocks │ │ │ │ ├── context_writers.cpp │ │ │ │ ├── context_writers.h │ │ │ │ ├── ephemeral_network_system_clock_core.h │ │ │ │ ├── standard_local_system_clock_core.cpp │ │ │ │ ├── standard_local_system_clock_core.h │ │ │ │ ├── standard_network_system_clock_core.cpp │ │ │ │ ├── standard_network_system_clock_core.h │ │ │ │ ├── standard_steady_clock_core.cpp │ │ │ │ ├── standard_steady_clock_core.h │ │ │ │ ├── standard_user_system_clock_core.cpp │ │ │ │ ├── standard_user_system_clock_core.h │ │ │ │ ├── steady_clock_core.h │ │ │ │ ├── system_clock_core.cpp │ │ │ │ ├── system_clock_core.h │ │ │ │ ├── tick_based_steady_clock_core.cpp │ │ │ │ └── tick_based_steady_clock_core.h │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── errors.h │ │ │ │ ├── manager.h │ │ │ │ ├── power_state_request_manager.cpp │ │ │ │ ├── power_state_request_manager.h │ │ │ │ ├── power_state_service.cpp │ │ │ │ ├── power_state_service.h │ │ │ │ ├── service_manager.cpp │ │ │ │ ├── service_manager.h │ │ │ │ ├── shared_memory.cpp │ │ │ │ ├── shared_memory.h │ │ │ │ ├── static.cpp │ │ │ │ ├── static.h │ │ │ │ ├── steady_clock.cpp │ │ │ │ ├── steady_clock.h │ │ │ │ ├── system_clock.cpp │ │ │ │ ├── system_clock.h │ │ │ │ ├── time_zone.cpp │ │ │ │ ├── time_zone.h │ │ │ │ ├── time_zone_service.cpp │ │ │ │ └── time_zone_service.h │ │ │ ├── ptm │ │ │ ├── psm.cpp │ │ │ ├── psm.h │ │ │ ├── ptm.cpp │ │ │ ├── ptm.h │ │ │ ├── ts.cpp │ │ │ └── ts.h │ │ │ ├── ro │ │ │ ├── ro.cpp │ │ │ ├── ro.h │ │ │ ├── ro_nro_utils.cpp │ │ │ ├── ro_nro_utils.h │ │ │ ├── ro_results.h │ │ │ └── ro_types.h │ │ │ ├── server_manager.cpp │ │ │ ├── server_manager.h │ │ │ ├── service.cpp │ │ │ ├── service.h │ │ │ ├── services.cpp │ │ │ ├── services.h │ │ │ ├── set │ │ │ ├── factory_settings_server.cpp │ │ │ ├── factory_settings_server.h │ │ │ ├── firmware_debug_settings_server.cpp │ │ │ ├── firmware_debug_settings_server.h │ │ │ ├── key_code_map.h │ │ │ ├── setting_formats │ │ │ │ ├── appln_settings.cpp │ │ │ │ ├── appln_settings.h │ │ │ │ ├── device_settings.cpp │ │ │ │ ├── device_settings.h │ │ │ │ ├── private_settings.cpp │ │ │ │ ├── private_settings.h │ │ │ │ ├── system_settings.cpp │ │ │ │ └── system_settings.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── settings_server.cpp │ │ │ ├── settings_server.h │ │ │ ├── settings_types.h │ │ │ ├── system_settings_server.cpp │ │ │ └── system_settings_server.h │ │ │ ├── sm │ │ │ ├── sm.cpp │ │ │ ├── sm.h │ │ │ ├── sm_controller.cpp │ │ │ └── sm_controller.h │ │ │ ├── sockets │ │ │ ├── bsd.cpp │ │ │ ├── bsd.h │ │ │ ├── nsd.cpp │ │ │ ├── nsd.h │ │ │ ├── sfdnsres.cpp │ │ │ ├── sfdnsres.h │ │ │ ├── sockets.cpp │ │ │ ├── sockets.h │ │ │ ├── sockets_translate.cpp │ │ │ └── sockets_translate.h │ │ │ ├── spl │ │ │ ├── csrng.cpp │ │ │ ├── csrng.h │ │ │ ├── spl.cpp │ │ │ ├── spl.h │ │ │ ├── spl_module.cpp │ │ │ ├── spl_module.h │ │ │ ├── spl_results.h │ │ │ └── spl_types.h │ │ │ ├── ssl │ │ │ ├── cert_store.cpp │ │ │ ├── cert_store.h │ │ │ ├── ssl.cpp │ │ │ ├── ssl.h │ │ │ ├── ssl_backend.h │ │ │ ├── ssl_backend_none.cpp │ │ │ ├── ssl_backend_openssl.cpp │ │ │ ├── ssl_backend_schannel.cpp │ │ │ ├── ssl_backend_securetransport.cpp │ │ │ └── ssl_types.h │ │ │ ├── usb │ │ │ ├── usb.cpp │ │ │ └── usb.h │ │ │ └── vi │ │ │ ├── application_display_service.cpp │ │ │ ├── application_display_service.h │ │ │ ├── application_root_service.cpp │ │ │ ├── application_root_service.h │ │ │ ├── conductor.cpp │ │ │ ├── conductor.h │ │ │ ├── container.cpp │ │ │ ├── container.h │ │ │ ├── display.h │ │ │ ├── display_list.h │ │ │ ├── layer.h │ │ │ ├── layer_list.h │ │ │ ├── manager_display_service.cpp │ │ │ ├── manager_display_service.h │ │ │ ├── manager_root_service.cpp │ │ │ ├── manager_root_service.h │ │ │ ├── service_creator.cpp │ │ │ ├── service_creator.h │ │ │ ├── shared_buffer_manager.cpp │ │ │ ├── shared_buffer_manager.h │ │ │ ├── system_display_service.cpp │ │ │ ├── system_display_service.h │ │ │ ├── system_root_service.cpp │ │ │ ├── system_root_service.h │ │ │ ├── vi.cpp │ │ │ ├── vi.h │ │ │ ├── vi_results.h │ │ │ ├── vi_types.h │ │ │ ├── vsync_manager.cpp │ │ │ └── vsync_manager.h │ ├── internal_network │ │ ├── network.cpp │ │ ├── network.h │ │ ├── network_interface.cpp │ │ ├── network_interface.h │ │ ├── socket_proxy.cpp │ │ ├── socket_proxy.h │ │ └── sockets.h │ ├── memory.cpp │ ├── memory.h │ ├── memory │ │ ├── cheat_engine.cpp │ │ ├── cheat_engine.h │ │ ├── dmnt_cheat_types.h │ │ ├── dmnt_cheat_vm.cpp │ │ └── dmnt_cheat_vm.h │ ├── perf_stats.cpp │ ├── perf_stats.h │ ├── reporter.cpp │ └── reporter.h ├── nxemu-os.cpp ├── nxemu-os.vcxproj ├── nxemu-os.vcxproj.filters ├── os_manager.cpp ├── os_manager.h ├── os_settings.cpp ├── os_settings.h ├── os_settings_identifiers.h └── version.h.in ├── nxemu-video ├── nxemu-video.cpp ├── nxemu-video.vcxproj ├── nxemu-video.vcxproj.filters ├── render_window.cpp ├── render_window.h ├── version.h.in ├── video_manager.cpp ├── video_manager.h ├── video_settings.cpp ├── video_settings.h └── video_settings_identifiers.h ├── nxemu ├── main.cpp ├── nxemu.vcxproj ├── nxemu.vcxproj.filters ├── settings │ ├── ui_settings.cpp │ └── ui_settings.h ├── startup_checks.cpp ├── startup_checks.h └── user_interface │ ├── icons │ └── nxemu.ico │ ├── key_mappings.cpp │ ├── key_mappings.h │ ├── notification.cpp │ ├── notification.h │ ├── nxemu.rc │ ├── resource.h │ ├── sciter_main_window.cpp │ ├── sciter_main_window.h │ └── settings │ ├── config_setting .cpp │ ├── config_setting.h │ ├── input_config.cpp │ ├── input_config.h │ ├── input_config_player.cpp │ ├── input_config_player.h │ ├── system_config.cpp │ ├── system_config.h │ ├── system_config_audio.cpp │ ├── system_config_audio.h │ ├── system_config_debug.cpp │ ├── system_config_debug.h │ ├── system_config_game_browser.cpp │ ├── system_config_game_browser.h │ ├── system_config_graphics.cpp │ └── system_config_graphics.h ├── script ├── build.cmd ├── generate_shader_header.cmd ├── generate_shader_spc_header.cmd ├── generate_spc_header.cmd ├── manage_version.cmd ├── manage_version_powershell.ps1 ├── package_zip.cmd ├── set_env_vars.cmd ├── set_git_properties.cmd ├── update_version.cmd └── website-upload.ps1 ├── string_shader_header ├── main.cpp ├── string_shader_header.vcxproj └── string_shader_header.vcxproj.filters ├── update_version ├── update_version.cpp ├── update_version.vcxproj ├── update_version.vcxproj.filters └── update_version.vcxproj.user ├── web_service └── web_result.h ├── yuzu_audio_core ├── adsp │ ├── adsp.cpp │ ├── adsp.h │ ├── apps │ │ ├── audio_renderer │ │ │ ├── audio_renderer.cpp │ │ │ ├── audio_renderer.h │ │ │ ├── command_buffer.h │ │ │ ├── command_list_processor.cpp │ │ │ └── command_list_processor.h │ │ └── opus │ │ │ ├── opus_decode_object.cpp │ │ │ ├── opus_decode_object.h │ │ │ ├── opus_decoder.cpp │ │ │ ├── opus_decoder.h │ │ │ ├── opus_multistream_decode_object.cpp │ │ │ ├── opus_multistream_decode_object.h │ │ │ └── shared_memory.h │ └── mailbox.h ├── audio_core.cpp ├── audio_core.h ├── audio_event.cpp ├── audio_event.h ├── audio_in_manager.cpp ├── audio_in_manager.h ├── audio_manager.cpp ├── audio_manager.h ├── audio_out_manager.cpp ├── audio_out_manager.h ├── audio_render_manager.cpp ├── audio_render_manager.h ├── common │ ├── audio_renderer_parameter.h │ ├── common.h │ ├── feature_support.h │ ├── wave_buffer.h │ └── workbuffer_allocator.h ├── device │ ├── audio_buffer.h │ ├── audio_buffers.h │ ├── device_session.cpp │ └── device_session.h ├── in │ ├── audio_in.cpp │ ├── audio_in.h │ ├── audio_in_system.cpp │ └── audio_in_system.h ├── opus │ ├── decoder.cpp │ ├── decoder.h │ ├── decoder_manager.cpp │ ├── decoder_manager.h │ ├── hardware_opus.cpp │ ├── hardware_opus.h │ └── parameters.h ├── out │ ├── audio_out.cpp │ ├── audio_out.h │ ├── audio_out_system.cpp │ └── audio_out_system.h ├── precompiled_headers.h ├── renderer │ ├── audio_device.cpp │ ├── audio_device.h │ ├── audio_renderer.cpp │ ├── audio_renderer.h │ ├── behavior │ │ ├── behavior_info.cpp │ │ ├── behavior_info.h │ │ ├── info_updater.cpp │ │ └── info_updater.h │ ├── command │ │ ├── command_buffer.cpp │ │ ├── command_buffer.h │ │ ├── command_generator.cpp │ │ ├── command_generator.h │ │ ├── command_list_header.h │ │ ├── command_processing_time_estimator.cpp │ │ ├── command_processing_time_estimator.h │ │ ├── commands.h │ │ ├── data_source │ │ │ ├── adpcm.cpp │ │ │ ├── adpcm.h │ │ │ ├── decode.cpp │ │ │ ├── decode.h │ │ │ ├── pcm_float.cpp │ │ │ ├── pcm_float.h │ │ │ ├── pcm_int16.cpp │ │ │ └── pcm_int16.h │ │ ├── effect │ │ │ ├── aux_.cpp │ │ │ ├── aux_.h │ │ │ ├── biquad_filter.cpp │ │ │ ├── biquad_filter.h │ │ │ ├── capture.cpp │ │ │ ├── capture.h │ │ │ ├── compressor.cpp │ │ │ ├── compressor.h │ │ │ ├── delay.cpp │ │ │ ├── delay.h │ │ │ ├── i3dl2_reverb.cpp │ │ │ ├── i3dl2_reverb.h │ │ │ ├── light_limiter.cpp │ │ │ ├── light_limiter.h │ │ │ ├── multi_tap_biquad_filter.cpp │ │ │ ├── multi_tap_biquad_filter.h │ │ │ ├── reverb.cpp │ │ │ └── reverb.h │ │ ├── icommand.h │ │ ├── mix │ │ │ ├── clear_mix.cpp │ │ │ ├── clear_mix.h │ │ │ ├── copy_mix.cpp │ │ │ ├── copy_mix.h │ │ │ ├── depop_for_mix_buffers.cpp │ │ │ ├── depop_for_mix_buffers.h │ │ │ ├── depop_prepare.cpp │ │ │ ├── depop_prepare.h │ │ │ ├── mix.cpp │ │ │ ├── mix.h │ │ │ ├── mix_ramp.cpp │ │ │ ├── mix_ramp.h │ │ │ ├── mix_ramp_grouped.cpp │ │ │ ├── mix_ramp_grouped.h │ │ │ ├── volume.cpp │ │ │ ├── volume.h │ │ │ ├── volume_ramp.cpp │ │ │ └── volume_ramp.h │ │ ├── performance │ │ │ ├── performance.cpp │ │ │ └── performance.h │ │ ├── resample │ │ │ ├── downmix_6ch_to_2ch.cpp │ │ │ ├── downmix_6ch_to_2ch.h │ │ │ ├── resample.cpp │ │ │ ├── resample.h │ │ │ ├── upsample.cpp │ │ │ └── upsample.h │ │ └── sink │ │ │ ├── circular_buffer.cpp │ │ │ ├── circular_buffer.h │ │ │ ├── device.cpp │ │ │ └── device.h │ ├── effect │ │ ├── aux_.cpp │ │ ├── aux_.h │ │ ├── biquad_filter.cpp │ │ ├── biquad_filter.h │ │ ├── buffer_mixer.cpp │ │ ├── buffer_mixer.h │ │ ├── capture.cpp │ │ ├── capture.h │ │ ├── compressor.cpp │ │ ├── compressor.h │ │ ├── delay.cpp │ │ ├── delay.h │ │ ├── effect_context.cpp │ │ ├── effect_context.h │ │ ├── effect_info_base.h │ │ ├── effect_reset.h │ │ ├── effect_result_state.h │ │ ├── i3dl2.cpp │ │ ├── i3dl2.h │ │ ├── light_limiter.cpp │ │ ├── light_limiter.h │ │ ├── reverb.cpp │ │ └── reverb.h │ ├── memory │ │ ├── address_info.h │ │ ├── memory_pool_info.cpp │ │ ├── memory_pool_info.h │ │ ├── pool_mapper.cpp │ │ └── pool_mapper.h │ ├── mix │ │ ├── mix_context.cpp │ │ ├── mix_context.h │ │ ├── mix_info.cpp │ │ └── mix_info.h │ ├── nodes │ │ ├── bit_array.h │ │ ├── edge_matrix.cpp │ │ ├── edge_matrix.h │ │ ├── node_states.cpp │ │ └── node_states.h │ ├── performance │ │ ├── detail_aspect.cpp │ │ ├── detail_aspect.h │ │ ├── entry_aspect.cpp │ │ ├── entry_aspect.h │ │ ├── performance_detail.h │ │ ├── performance_entry.h │ │ ├── performance_entry_addresses.h │ │ ├── performance_frame_header.h │ │ ├── performance_manager.cpp │ │ └── performance_manager.h │ ├── sink │ │ ├── circular_buffer_sink_info.cpp │ │ ├── circular_buffer_sink_info.h │ │ ├── device_sink_info.cpp │ │ ├── device_sink_info.h │ │ ├── sink_context.cpp │ │ ├── sink_context.h │ │ ├── sink_info_base.cpp │ │ └── sink_info_base.h │ ├── splitter │ │ ├── splitter_context.cpp │ │ ├── splitter_context.h │ │ ├── splitter_destinations_data.cpp │ │ ├── splitter_destinations_data.h │ │ ├── splitter_info.cpp │ │ └── splitter_info.h │ ├── system.cpp │ ├── system.h │ ├── system_manager.cpp │ ├── system_manager.h │ ├── upsampler │ │ ├── upsampler_info.cpp │ │ ├── upsampler_info.h │ │ ├── upsampler_manager.cpp │ │ ├── upsampler_manager.h │ │ └── upsampler_state.h │ └── voice │ │ ├── voice_channel_resource.h │ │ ├── voice_context.cpp │ │ ├── voice_context.h │ │ ├── voice_info.cpp │ │ ├── voice_info.h │ │ └── voice_state.h ├── sink │ ├── cubeb_sink.cpp │ ├── cubeb_sink.h │ ├── null_sink.h │ ├── oboe_sink.cpp │ ├── oboe_sink.h │ ├── sdl2_sink.cpp │ ├── sdl2_sink.h │ ├── sink.h │ ├── sink_details.cpp │ ├── sink_details.h │ ├── sink_stream.cpp │ └── sink_stream.h ├── yuzu_audio_core.vcxproj └── yuzu_audio_core.vcxproj.filters ├── yuzu_common ├── address_space.cpp ├── address_space.h ├── address_space.inc ├── algorithm.h ├── alignment.h ├── announce_multiplayer_room.h ├── atomic_helpers.h ├── atomic_ops.h ├── bit_cast.h ├── bit_field.h ├── bit_set.h ├── bit_util.h ├── bounded_threadsafe_queue.h ├── cityhash.cpp ├── cityhash.h ├── common_funcs.h ├── common_types.h ├── concepts.h ├── container_hash.h ├── div_ceil.h ├── dynamic_library.cpp ├── dynamic_library.h ├── error.cpp ├── error.h ├── expected.h ├── fence.h ├── fiber.cpp ├── fiber.h ├── fixed_point.h ├── free_region_manager.h ├── fs │ ├── file.cpp │ ├── file.h │ ├── fs.cpp │ ├── fs.h │ ├── fs_paths.h │ ├── fs_types.h │ ├── fs_util.cpp │ ├── fs_util.h │ ├── path_util.cpp │ └── path_util.h ├── hash.h ├── heap_tracker.cpp ├── heap_tracker.h ├── hex_util.cpp ├── hex_util.h ├── host_memory.cpp ├── host_memory.h ├── input.h ├── interface_pointer.h ├── interface_pointer_def.h ├── intrusive_list.h ├── intrusive_red_black_tree.h ├── literals.h ├── logging │ ├── backend.cpp │ ├── backend.h │ ├── filter.cpp │ ├── filter.h │ ├── formatter.h │ ├── log.h │ ├── log_entry.h │ ├── text_formatter.cpp │ └── text_formatter.h ├── lru_cache.h ├── lz4_compression.cpp ├── lz4_compression.h ├── make_unique_for_overwrite.h ├── math_util.h ├── microprofile.cpp ├── microprofile.h ├── multi_level_page_table.cpp ├── multi_level_page_table.h ├── multi_level_page_table.inc ├── nvdata.h ├── overflow.h ├── page_table.cpp ├── page_table.h ├── param_package.cpp ├── param_package.h ├── parent_of_member.h ├── point.h ├── polyfill_ranges.h ├── polyfill_thread.h ├── quaternion.h ├── range_map.h ├── range_mutex.h ├── range_sets.h ├── range_sets.inc ├── reader_writer_queue.h ├── ring_buffer.h ├── scope_exit.h ├── scratch_buffer.h ├── settings.cpp ├── settings.h ├── settings_common.cpp ├── settings_common.h ├── settings_enums.h ├── settings_input.cpp ├── settings_input.h ├── settings_setting.h ├── slot_vector.h ├── socket_types.h ├── spin_lock.cpp ├── spin_lock.h ├── stb.cpp ├── stb.h ├── steady_clock.cpp ├── steady_clock.h ├── stream.cpp ├── stream.h ├── string_util.cpp ├── string_util.h ├── swap.h ├── thread.cpp ├── thread.h ├── thread_worker.h ├── threadsafe_queue.h ├── time_zone.cpp ├── time_zone.h ├── tiny_mt.h ├── tree.h ├── typed_address.h ├── unique_function.h ├── uuid.cpp ├── uuid.h ├── vector_math.h ├── virtual_buffer.cpp ├── virtual_buffer.h ├── wall_clock.cpp ├── wall_clock.h ├── windows │ ├── timer_resolution.cpp │ └── timer_resolution.h ├── x64 │ ├── xbyak_abi.h │ └── xbyak_util.h ├── yuzu_assert.cpp ├── yuzu_assert.h ├── yuzu_common.vcxproj ├── yuzu_common.vcxproj.filters ├── zstd_compression.cpp └── zstd_compression.h ├── yuzu_hid_core ├── CMakeLists.txt ├── frontend │ ├── emulated_console.cpp │ ├── emulated_console.h │ ├── emulated_controller.cpp │ ├── emulated_controller.h │ ├── emulated_devices.cpp │ ├── emulated_devices.h │ ├── input_converter.cpp │ ├── input_converter.h │ ├── input_interpreter.cpp │ ├── input_interpreter.h │ ├── motion_input.cpp │ └── motion_input.h ├── hid_core.cpp ├── hid_core.h ├── hid_result.h ├── hid_types.h ├── hid_util.h ├── hidbus │ ├── hidbus_base.cpp │ ├── hidbus_base.h │ ├── ringcon.cpp │ ├── ringcon.h │ ├── starlink.cpp │ ├── starlink.h │ ├── stubbed.cpp │ └── stubbed.h ├── irsensor │ ├── clustering_processor.cpp │ ├── clustering_processor.h │ ├── image_transfer_processor.cpp │ ├── image_transfer_processor.h │ ├── ir_led_processor.cpp │ ├── ir_led_processor.h │ ├── irs_types.h │ ├── moment_processor.cpp │ ├── moment_processor.h │ ├── pointing_processor.cpp │ ├── pointing_processor.h │ ├── processor_base.cpp │ ├── processor_base.h │ ├── tera_plugin_processor.cpp │ └── tera_plugin_processor.h ├── precompiled_headers.h ├── resource_manager.cpp ├── resource_manager.h ├── resources │ ├── abstracted_pad │ │ ├── abstract_battery_handler.cpp │ │ ├── abstract_battery_handler.h │ │ ├── abstract_button_handler.cpp │ │ ├── abstract_button_handler.h │ │ ├── abstract_ir_sensor_handler.cpp │ │ ├── abstract_ir_sensor_handler.h │ │ ├── abstract_led_handler.cpp │ │ ├── abstract_led_handler.h │ │ ├── abstract_mcu_handler.cpp │ │ ├── abstract_mcu_handler.h │ │ ├── abstract_nfc_handler.cpp │ │ ├── abstract_nfc_handler.h │ │ ├── abstract_pad.cpp │ │ ├── abstract_pad.h │ │ ├── abstract_pad_holder.cpp │ │ ├── abstract_pad_holder.h │ │ ├── abstract_palma_handler.cpp │ │ ├── abstract_palma_handler.h │ │ ├── abstract_properties_handler.cpp │ │ ├── abstract_properties_handler.h │ │ ├── abstract_sixaxis_handler.cpp │ │ ├── abstract_sixaxis_handler.h │ │ ├── abstract_vibration_handler.cpp │ │ └── abstract_vibration_handler.h │ ├── applet_resource.cpp │ ├── applet_resource.h │ ├── controller_base.cpp │ ├── controller_base.h │ ├── debug_pad │ │ ├── debug_pad.cpp │ │ ├── debug_pad.h │ │ └── debug_pad_types.h │ ├── digitizer │ │ ├── digitizer.cpp │ │ └── digitizer.h │ ├── hid_firmware_settings.cpp │ ├── hid_firmware_settings.h │ ├── irs_ring_lifo.h │ ├── keyboard │ │ ├── keyboard.cpp │ │ ├── keyboard.h │ │ └── keyboard_types.h │ ├── mouse │ │ ├── debug_mouse.cpp │ │ ├── debug_mouse.h │ │ ├── mouse.cpp │ │ ├── mouse.h │ │ └── mouse_types.h │ ├── npad │ │ ├── npad.cpp │ │ ├── npad.h │ │ ├── npad_data.cpp │ │ ├── npad_data.h │ │ ├── npad_resource.cpp │ │ ├── npad_resource.h │ │ ├── npad_types.h │ │ ├── npad_vibration.cpp │ │ └── npad_vibration.h │ ├── palma │ │ ├── palma.cpp │ │ └── palma.h │ ├── ring_lifo.h │ ├── shared_memory_format.h │ ├── shared_memory_holder.cpp │ ├── shared_memory_holder.h │ ├── six_axis │ │ ├── console_six_axis.cpp │ │ ├── console_six_axis.h │ │ ├── seven_six_axis.cpp │ │ ├── seven_six_axis.h │ │ ├── six_axis.cpp │ │ └── six_axis.h │ ├── system_buttons │ │ ├── capture_button.cpp │ │ ├── capture_button.h │ │ ├── home_button.cpp │ │ ├── home_button.h │ │ ├── sleep_button.cpp │ │ ├── sleep_button.h │ │ └── system_button_types.h │ ├── touch_screen │ │ ├── gesture.cpp │ │ ├── gesture.h │ │ ├── gesture_handler.cpp │ │ ├── gesture_handler.h │ │ ├── touch_screen.cpp │ │ ├── touch_screen.h │ │ ├── touch_screen_driver.cpp │ │ ├── touch_screen_driver.h │ │ ├── touch_screen_resource.cpp │ │ ├── touch_screen_resource.h │ │ └── touch_types.h │ ├── unique_pad │ │ ├── unique_pad.cpp │ │ └── unique_pad.h │ └── vibration │ │ ├── gc_vibration_device.cpp │ │ ├── gc_vibration_device.h │ │ ├── n64_vibration_device.cpp │ │ ├── n64_vibration_device.h │ │ ├── vibration_base.cpp │ │ ├── vibration_base.h │ │ ├── vibration_device.cpp │ │ └── vibration_device.h ├── yuzu_hid_core.vcxproj └── yuzu_hid_core.vcxproj.filters ├── yuzu_input_common ├── CMakeLists.txt ├── drivers │ ├── android.cpp │ ├── android.h │ ├── camera.cpp │ ├── camera.h │ ├── gc_adapter.cpp │ ├── gc_adapter.h │ ├── joycon.cpp │ ├── joycon.h │ ├── keyboard.cpp │ ├── keyboard.h │ ├── mouse.cpp │ ├── mouse.h │ ├── sdl_driver.cpp │ ├── sdl_driver.h │ ├── tas_input.cpp │ ├── tas_input.h │ ├── touch_screen.cpp │ ├── touch_screen.h │ ├── udp_client.cpp │ ├── udp_client.h │ ├── virtual_amiibo.cpp │ ├── virtual_amiibo.h │ ├── virtual_gamepad.cpp │ └── virtual_gamepad.h ├── helpers │ ├── joycon_driver.cpp │ ├── joycon_driver.h │ ├── joycon_protocol │ │ ├── calibration.cpp │ │ ├── calibration.h │ │ ├── common_protocol.cpp │ │ ├── common_protocol.h │ │ ├── generic_functions.cpp │ │ ├── generic_functions.h │ │ ├── irs.cpp │ │ ├── irs.h │ │ ├── joycon_types.h │ │ ├── nfc.cpp │ │ ├── nfc.h │ │ ├── poller.cpp │ │ ├── poller.h │ │ ├── ringcon.cpp │ │ ├── ringcon.h │ │ ├── rumble.cpp │ │ └── rumble.h │ ├── stick_from_buttons.cpp │ ├── stick_from_buttons.h │ ├── touch_from_buttons.cpp │ ├── touch_from_buttons.h │ ├── udp_protocol.cpp │ └── udp_protocol.h ├── input_engine.cpp ├── input_engine.h ├── input_mapping.cpp ├── input_mapping.h ├── input_poller.cpp ├── input_poller.h ├── main.cpp ├── main.h ├── precompiled_headers.h ├── yuzu_input_common.vcxproj └── yuzu_input_common.vcxproj.filters ├── yuzu_shader_recompiler ├── CMakeLists.txt ├── backend │ ├── bindings.h │ ├── glasm │ │ ├── emit_glasm.cpp │ │ ├── emit_glasm.h │ │ ├── emit_glasm_barriers.cpp │ │ ├── emit_glasm_bitwise_conversion.cpp │ │ ├── emit_glasm_composite.cpp │ │ ├── emit_glasm_context_get_set.cpp │ │ ├── emit_glasm_control_flow.cpp │ │ ├── emit_glasm_convert.cpp │ │ ├── emit_glasm_floating_point.cpp │ │ ├── emit_glasm_image.cpp │ │ ├── emit_glasm_instructions.h │ │ ├── emit_glasm_integer.cpp │ │ ├── emit_glasm_logical.cpp │ │ ├── emit_glasm_memory.cpp │ │ ├── emit_glasm_not_implemented.cpp │ │ ├── emit_glasm_select.cpp │ │ ├── emit_glasm_shared_memory.cpp │ │ ├── emit_glasm_special.cpp │ │ ├── emit_glasm_undefined.cpp │ │ ├── emit_glasm_warp.cpp │ │ ├── glasm_emit_context.cpp │ │ ├── glasm_emit_context.h │ │ ├── reg_alloc.cpp │ │ └── reg_alloc.h │ ├── glsl │ │ ├── emit_glsl.cpp │ │ ├── emit_glsl.h │ │ ├── emit_glsl_atomic.cpp │ │ ├── emit_glsl_barriers.cpp │ │ ├── emit_glsl_bitwise_conversion.cpp │ │ ├── emit_glsl_composite.cpp │ │ ├── emit_glsl_context_get_set.cpp │ │ ├── emit_glsl_control_flow.cpp │ │ ├── emit_glsl_convert.cpp │ │ ├── emit_glsl_floating_point.cpp │ │ ├── emit_glsl_image.cpp │ │ ├── emit_glsl_instructions.h │ │ ├── emit_glsl_integer.cpp │ │ ├── emit_glsl_logical.cpp │ │ ├── emit_glsl_memory.cpp │ │ ├── emit_glsl_not_implemented.cpp │ │ ├── emit_glsl_select.cpp │ │ ├── emit_glsl_shared_memory.cpp │ │ ├── emit_glsl_special.cpp │ │ ├── emit_glsl_undefined.cpp │ │ ├── emit_glsl_warp.cpp │ │ ├── glsl_emit_context.cpp │ │ ├── glsl_emit_context.h │ │ ├── var_alloc.cpp │ │ └── var_alloc.h │ └── spirv │ │ ├── emit_spirv.cpp │ │ ├── emit_spirv.h │ │ ├── emit_spirv_atomic.cpp │ │ ├── emit_spirv_barriers.cpp │ │ ├── emit_spirv_bitwise_conversion.cpp │ │ ├── emit_spirv_composite.cpp │ │ ├── emit_spirv_context_get_set.cpp │ │ ├── emit_spirv_control_flow.cpp │ │ ├── emit_spirv_convert.cpp │ │ ├── emit_spirv_floating_point.cpp │ │ ├── emit_spirv_image.cpp │ │ ├── emit_spirv_image_atomic.cpp │ │ ├── emit_spirv_instructions.h │ │ ├── emit_spirv_integer.cpp │ │ ├── emit_spirv_logical.cpp │ │ ├── emit_spirv_memory.cpp │ │ ├── emit_spirv_select.cpp │ │ ├── emit_spirv_shared_memory.cpp │ │ ├── emit_spirv_special.cpp │ │ ├── emit_spirv_undefined.cpp │ │ ├── emit_spirv_warp.cpp │ │ ├── spirv_emit_context.cpp │ │ └── spirv_emit_context.h ├── environment.h ├── exception.h ├── frontend │ ├── ir │ │ ├── abstract_syntax_list.h │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── basic_block.cpp │ │ ├── basic_block.h │ │ ├── breadth_first_search.h │ │ ├── condition.cpp │ │ ├── condition.h │ │ ├── flow_test.cpp │ │ ├── flow_test.h │ │ ├── ir_emitter.cpp │ │ ├── ir_emitter.h │ │ ├── microinstruction.cpp │ │ ├── modifiers.h │ │ ├── opcodes.cpp │ │ ├── opcodes.h │ │ ├── opcodes.inc │ │ ├── patch.cpp │ │ ├── patch.h │ │ ├── post_order.cpp │ │ ├── post_order.h │ │ ├── pred.h │ │ ├── program.cpp │ │ ├── program.h │ │ ├── reg.h │ │ ├── type.cpp │ │ ├── type.h │ │ ├── value.cpp │ │ └── value.h │ └── maxwell │ │ ├── control_flow.cpp │ │ ├── control_flow.h │ │ ├── decode.cpp │ │ ├── decode.h │ │ ├── indirect_branch_table_track.cpp │ │ ├── indirect_branch_table_track.h │ │ ├── instruction.h │ │ ├── location.h │ │ ├── maxwell.inc │ │ ├── opcodes.cpp │ │ ├── opcodes.h │ │ ├── structured_control_flow.cpp │ │ ├── structured_control_flow.h │ │ ├── translate │ │ ├── impl │ │ │ ├── atomic_operations_global_memory.cpp │ │ │ ├── atomic_operations_shared_memory.cpp │ │ │ ├── attribute_memory_to_physical.cpp │ │ │ ├── barrier_operations.cpp │ │ │ ├── bitfield_extract.cpp │ │ │ ├── bitfield_insert.cpp │ │ │ ├── branch_indirect.cpp │ │ │ ├── common_encoding.h │ │ │ ├── common_funcs.cpp │ │ │ ├── common_funcs.h │ │ │ ├── condition_code_set.cpp │ │ │ ├── double_add.cpp │ │ │ ├── double_compare_and_set.cpp │ │ │ ├── double_fused_multiply_add.cpp │ │ │ ├── double_min_max.cpp │ │ │ ├── double_multiply.cpp │ │ │ ├── double_set_predicate.cpp │ │ │ ├── exit_program.cpp │ │ │ ├── find_leading_one.cpp │ │ │ ├── floating_point_add.cpp │ │ │ ├── floating_point_compare.cpp │ │ │ ├── floating_point_compare_and_set.cpp │ │ │ ├── floating_point_conversion_floating_point.cpp │ │ │ ├── floating_point_conversion_integer.cpp │ │ │ ├── floating_point_fused_multiply_add.cpp │ │ │ ├── floating_point_min_max.cpp │ │ │ ├── floating_point_multi_function.cpp │ │ │ ├── floating_point_multiply.cpp │ │ │ ├── floating_point_range_reduction.cpp │ │ │ ├── floating_point_set_predicate.cpp │ │ │ ├── floating_point_swizzled_add.cpp │ │ │ ├── half_floating_point_add.cpp │ │ │ ├── half_floating_point_fused_multiply_add.cpp │ │ │ ├── half_floating_point_helper.cpp │ │ │ ├── half_floating_point_helper.h │ │ │ ├── half_floating_point_multiply.cpp │ │ │ ├── half_floating_point_set.cpp │ │ │ ├── half_floating_point_set_predicate.cpp │ │ │ ├── impl.cpp │ │ │ ├── impl.h │ │ │ ├── integer_add.cpp │ │ │ ├── integer_add_three_input.cpp │ │ │ ├── integer_compare.cpp │ │ │ ├── integer_compare_and_set.cpp │ │ │ ├── integer_floating_point_conversion.cpp │ │ │ ├── integer_funnel_shift.cpp │ │ │ ├── integer_minimum_maximum.cpp │ │ │ ├── integer_popcount.cpp │ │ │ ├── integer_scaled_add.cpp │ │ │ ├── integer_set_predicate.cpp │ │ │ ├── integer_shift_left.cpp │ │ │ ├── integer_shift_right.cpp │ │ │ ├── integer_short_multiply_add.cpp │ │ │ ├── integer_to_integer_conversion.cpp │ │ │ ├── internal_stage_buffer_entry_read.cpp │ │ │ ├── load_constant.cpp │ │ │ ├── load_constant.h │ │ │ ├── load_effective_address.cpp │ │ │ ├── load_store_attribute.cpp │ │ │ ├── load_store_local_shared.cpp │ │ │ ├── load_store_memory.cpp │ │ │ ├── logic_operation.cpp │ │ │ ├── logic_operation_three_input.cpp │ │ │ ├── logic_operation_three_input_lut3.py │ │ │ ├── move_predicate_to_register.cpp │ │ │ ├── move_register.cpp │ │ │ ├── move_register_to_predicate.cpp │ │ │ ├── move_special_register.cpp │ │ │ ├── not_implemented.cpp │ │ │ ├── output_geometry.cpp │ │ │ ├── pixel_load.cpp │ │ │ ├── predicate_set_predicate.cpp │ │ │ ├── predicate_set_register.cpp │ │ │ ├── select_source_with_predicate.cpp │ │ │ ├── surface_atomic_operations.cpp │ │ │ ├── surface_load_store.cpp │ │ │ ├── texture_fetch.cpp │ │ │ ├── texture_fetch_swizzled.cpp │ │ │ ├── texture_gather.cpp │ │ │ ├── texture_gather_swizzled.cpp │ │ │ ├── texture_gradient.cpp │ │ │ ├── texture_load.cpp │ │ │ ├── texture_load_swizzled.cpp │ │ │ ├── texture_mipmap_level.cpp │ │ │ ├── texture_query.cpp │ │ │ ├── video_helper.cpp │ │ │ ├── video_helper.h │ │ │ ├── video_minimum_maximum.cpp │ │ │ ├── video_multiply_add.cpp │ │ │ ├── video_set_predicate.cpp │ │ │ ├── vote.cpp │ │ │ └── warp_shuffle.cpp │ │ ├── translate.cpp │ │ └── translate.h │ │ ├── translate_program.cpp │ │ └── translate_program.h ├── host_translate_info.h ├── ir_opt │ ├── collect_shader_info_pass.cpp │ ├── conditional_barrier_pass.cpp │ ├── constant_propagation_pass.cpp │ ├── dead_code_elimination_pass.cpp │ ├── dual_vertex_pass.cpp │ ├── global_memory_to_storage_buffer_pass.cpp │ ├── identity_removal_pass.cpp │ ├── layer_pass.cpp │ ├── lower_fp16_to_fp32.cpp │ ├── lower_fp64_to_fp32.cpp │ ├── lower_int64_to_int32.cpp │ ├── passes.h │ ├── position_pass.cpp │ ├── rescaling_pass.cpp │ ├── ssa_rewrite_pass.cpp │ ├── texture_pass.cpp │ ├── vendor_workaround_pass.cpp │ └── verification_pass.cpp ├── object_pool.h ├── precompiled_headers.h ├── profile.h ├── program_header.h ├── runtime_info.h ├── shader_info.h ├── stage.h ├── varying_state.h ├── yuzu_shader_recompiler.vcxproj └── yuzu_shader_recompiler.vcxproj.filters └── yuzu_video_core ├── CMakeLists.txt ├── buffer_cache ├── buffer_base.h ├── buffer_cache.cpp ├── buffer_cache.h ├── buffer_cache_base.h ├── memory_tracker_base.h ├── usage_tracker.h └── word_manager.h ├── cache_types.h ├── capture.h ├── cdma_pusher.cpp ├── cdma_pusher.h ├── compatible_formats.cpp ├── compatible_formats.h ├── control ├── channel_state.cpp ├── channel_state.h ├── channel_state_cache.cpp ├── channel_state_cache.h ├── channel_state_cache.inc ├── scheduler.cpp └── scheduler.h ├── delayed_destruction_ring.h ├── device_memory_manager.h ├── dirty_flags.cpp ├── dirty_flags.h ├── dma_pusher.cpp ├── dma_pusher.h ├── engines ├── const_buffer_info.h ├── draw_manager.cpp ├── draw_manager.h ├── engine_interface.h ├── engine_upload.cpp ├── engine_upload.h ├── fermi_2d.cpp ├── fermi_2d.h ├── kepler_compute.cpp ├── kepler_compute.h ├── kepler_memory.cpp ├── kepler_memory.h ├── maxwell_3d.cpp ├── maxwell_3d.h ├── maxwell_dma.cpp ├── maxwell_dma.h ├── puller.cpp ├── puller.h └── sw_blitter │ ├── blitter.cpp │ ├── blitter.h │ ├── converter.cpp │ ├── converter.h │ └── generate_converters.py ├── fence_manager.h ├── framebuffer_config.cpp ├── framebuffer_config.h ├── frontend ├── applets │ ├── applet.h │ ├── cabinet.cpp │ ├── cabinet.h │ ├── controller.cpp │ ├── controller.h │ ├── error.cpp │ ├── error.h │ ├── general.cpp │ ├── general.h │ ├── mii_edit.cpp │ ├── mii_edit.h │ ├── profile_select.cpp │ ├── profile_select.h │ ├── software_keyboard.cpp │ ├── software_keyboard.h │ ├── web_browser.cpp │ └── web_browser.h ├── emu_window.cpp ├── emu_window.h ├── framebuffer_layout.cpp ├── framebuffer_layout.h └── graphics_context.h ├── fsr.cpp ├── fsr.h ├── gpu.cpp ├── gpu.h ├── gpu_thread.cpp ├── gpu_thread.h ├── guest_memory.h ├── host1x ├── codecs │ ├── codec.cpp │ ├── codec.h │ ├── h264.cpp │ ├── h264.h │ ├── vp8.cpp │ ├── vp8.h │ ├── vp9.cpp │ ├── vp9.h │ └── vp9_types.h ├── control.cpp ├── control.h ├── ffmpeg │ ├── ffmpeg.cpp │ └── ffmpeg.h ├── gpu_device_memory_manager.cpp ├── gpu_device_memory_manager.h ├── host1x.cpp ├── host1x.h ├── nvdec.cpp ├── nvdec.h ├── nvdec_common.h ├── sync_manager.cpp ├── sync_manager.h ├── syncpoint_manager.cpp ├── syncpoint_manager.h ├── vic.cpp └── vic.h ├── host_shaders ├── .gitignore ├── CMakeLists.txt ├── StringShaderHeader.cmake ├── astc_decoder.comp ├── blit_color_float.frag ├── block_linear_unswizzle_2d.comp ├── block_linear_unswizzle_3d.comp ├── convert_abgr8_to_d24s8.frag ├── convert_abgr8_to_d32f.frag ├── convert_d24s8_to_abgr8.frag ├── convert_d32f_to_abgr8.frag ├── convert_depth_to_float.frag ├── convert_float_to_depth.frag ├── convert_msaa_to_non_msaa.comp ├── convert_non_msaa_to_msaa.comp ├── convert_s8d24_to_abgr8.frag ├── fidelityfx_fsr.frag ├── full_screen_triangle.vert ├── fxaa.frag ├── fxaa.vert ├── opengl_convert_s8d24.comp ├── opengl_copy_bc4.comp ├── opengl_fidelityfx_fsr.frag ├── opengl_fidelityfx_fsr_easu.frag ├── opengl_fidelityfx_fsr_rcas.frag ├── opengl_lmem_warmup.comp ├── opengl_present.frag ├── opengl_present.vert ├── opengl_present_scaleforce.frag ├── opengl_smaa.glsl ├── pitch_unswizzle.comp ├── present_bicubic.frag ├── present_gaussian.frag ├── queries_prefix_scan_sum.comp ├── queries_prefix_scan_sum_nosubgroups.comp ├── resolve_conditional_render.comp ├── smaa_blending_weight_calculation.frag ├── smaa_blending_weight_calculation.vert ├── smaa_edge_detection.frag ├── smaa_edge_detection.vert ├── smaa_neighborhood_blending.frag ├── smaa_neighborhood_blending.vert ├── source_shader.h.in ├── vulkan_blit_depth_stencil.frag ├── vulkan_color_clear.frag ├── vulkan_color_clear.vert ├── vulkan_depthstencil_clear.frag ├── vulkan_fidelityfx_fsr.vert ├── vulkan_fidelityfx_fsr_easu_fp16.frag ├── vulkan_fidelityfx_fsr_easu_fp32.frag ├── vulkan_fidelityfx_fsr_rcas_fp16.frag ├── vulkan_fidelityfx_fsr_rcas_fp32.frag ├── vulkan_present.frag ├── vulkan_present.vert ├── vulkan_present_scaleforce_fp16.frag ├── vulkan_present_scaleforce_fp32.frag ├── vulkan_quad_indexed.comp ├── vulkan_turbo_mode.comp ├── vulkan_uint8.comp ├── watermark.frag └── watermark.vert ├── invalidation_accumulator.h ├── macro ├── macro.cpp ├── macro.h ├── macro_hle.cpp ├── macro_hle.h ├── macro_interpreter.cpp ├── macro_interpreter.h ├── macro_jit_x64.cpp └── macro_jit_x64.h ├── memory_manager.cpp ├── memory_manager.h ├── precompiled_headers.h ├── present.h ├── pte_kind.h ├── query_cache.h ├── query_cache ├── bank_base.h ├── query_base.h ├── query_cache.h ├── query_cache_base.h ├── query_stream.h └── types.h ├── rasterizer_interface.h ├── renderer_base.cpp ├── renderer_base.h ├── renderer_null ├── null_rasterizer.cpp ├── null_rasterizer.h ├── renderer_null.cpp └── renderer_null.h ├── renderer_opengl ├── blit_image.cpp ├── blit_image.h ├── gl_blit_screen.cpp ├── gl_blit_screen.h ├── gl_buffer_cache.cpp ├── gl_buffer_cache.h ├── gl_buffer_cache_base.cpp ├── gl_compute_pipeline.cpp ├── gl_compute_pipeline.h ├── gl_device.cpp ├── gl_device.h ├── gl_fence_manager.cpp ├── gl_fence_manager.h ├── gl_graphics_pipeline.cpp ├── gl_graphics_pipeline.h ├── gl_query_cache.cpp ├── gl_query_cache.h ├── gl_rasterizer.cpp ├── gl_rasterizer.h ├── gl_resource_manager.cpp ├── gl_resource_manager.h ├── gl_shader_cache.cpp ├── gl_shader_cache.h ├── gl_shader_context.h ├── gl_shader_manager.cpp ├── gl_shader_manager.h ├── gl_shader_util.cpp ├── gl_shader_util.h ├── gl_staging_buffer_pool.cpp ├── gl_staging_buffer_pool.h ├── gl_state_tracker.cpp ├── gl_state_tracker.h ├── gl_texture_cache.cpp ├── gl_texture_cache.h ├── gl_texture_cache_base.cpp ├── maxwell_to_gl.h ├── present │ ├── filters.cpp │ ├── filters.h │ ├── fsr.cpp │ ├── fsr.h │ ├── fxaa.cpp │ ├── fxaa.h │ ├── layer.cpp │ ├── layer.h │ ├── present_uniforms.h │ ├── smaa.cpp │ ├── smaa.h │ ├── util.h │ ├── window_adapt_pass.cpp │ └── window_adapt_pass.h ├── renderer_opengl.cpp ├── renderer_opengl.h ├── util_shaders.cpp └── util_shaders.h ├── renderer_vulkan ├── blit_image.cpp ├── blit_image.h ├── fixed_pipeline_state.cpp ├── fixed_pipeline_state.h ├── maxwell_to_vk.cpp ├── maxwell_to_vk.h ├── pipeline_helper.h ├── pipeline_statistics.cpp ├── pipeline_statistics.h ├── present │ ├── anti_alias_pass.h │ ├── filters.cpp │ ├── filters.h │ ├── fsr.cpp │ ├── fsr.h │ ├── fxaa.cpp │ ├── fxaa.h │ ├── layer.cpp │ ├── layer.h │ ├── present_push_constants.h │ ├── smaa.cpp │ ├── smaa.h │ ├── util.cpp │ ├── util.h │ ├── window_adapt_pass.cpp │ └── window_adapt_pass.h ├── renderer_vulkan.cpp ├── renderer_vulkan.h ├── vk_blit_screen.cpp ├── vk_blit_screen.h ├── vk_buffer_cache.cpp ├── vk_buffer_cache.h ├── vk_buffer_cache_base.cpp ├── vk_command_pool.cpp ├── vk_command_pool.h ├── vk_compute_pass.cpp ├── vk_compute_pass.h ├── vk_compute_pipeline.cpp ├── vk_compute_pipeline.h ├── vk_descriptor_pool.cpp ├── vk_descriptor_pool.h ├── vk_fence_manager.cpp ├── vk_fence_manager.h ├── vk_graphics_pipeline.cpp ├── vk_graphics_pipeline.h ├── vk_master_semaphore.cpp ├── vk_master_semaphore.h ├── vk_pipeline_cache.cpp ├── vk_pipeline_cache.h ├── vk_present_manager.cpp ├── vk_present_manager.h ├── vk_query_cache.cpp ├── vk_query_cache.h ├── vk_rasterizer.cpp ├── vk_rasterizer.h ├── vk_render_pass_cache.cpp ├── vk_render_pass_cache.h ├── vk_resource_pool.cpp ├── vk_resource_pool.h ├── vk_scheduler.cpp ├── vk_scheduler.h ├── vk_shader_util.cpp ├── vk_shader_util.h ├── vk_staging_buffer_pool.cpp ├── vk_staging_buffer_pool.h ├── vk_state_tracker.cpp ├── vk_state_tracker.h ├── vk_swapchain.cpp ├── vk_swapchain.h ├── vk_texture_cache.cpp ├── vk_texture_cache.h ├── vk_texture_cache_base.cpp ├── vk_turbo_mode.cpp ├── vk_turbo_mode.h ├── vk_update_descriptor.cpp └── vk_update_descriptor.h ├── shader_cache.cpp ├── shader_cache.h ├── shader_environment.cpp ├── shader_environment.h ├── shader_notify.cpp ├── shader_notify.h ├── smaa_area_tex.h ├── smaa_search_tex.h ├── surface.cpp ├── surface.h ├── texture_cache ├── accelerated_swizzle.cpp ├── accelerated_swizzle.h ├── decode_bc.cpp ├── decode_bc.h ├── descriptor_table.h ├── format_lookup_table.cpp ├── format_lookup_table.h ├── formatter.cpp ├── formatter.h ├── image_base.cpp ├── image_base.h ├── image_info.cpp ├── image_info.h ├── image_view_base.cpp ├── image_view_base.h ├── image_view_info.cpp ├── image_view_info.h ├── render_targets.h ├── samples_helper.h ├── texture_cache.cpp ├── texture_cache.h ├── texture_cache_base.h ├── types.h ├── util.cpp └── util.h ├── textures ├── astc.cpp ├── astc.h ├── bcn.cpp ├── bcn.h ├── decoders.cpp ├── decoders.h ├── texture.cpp ├── texture.h ├── workers.cpp └── workers.h ├── transform_feedback.cpp ├── transform_feedback.h ├── video_core.cpp ├── video_core.h ├── vulkan_common ├── nsight_aftermath_tracker.cpp ├── nsight_aftermath_tracker.h ├── vk_enum_string_helper.h ├── vma.cpp ├── vma.h ├── vulkan.h ├── vulkan_debug_callback.cpp ├── vulkan_debug_callback.h ├── vulkan_device.cpp ├── vulkan_device.h ├── vulkan_instance.cpp ├── vulkan_instance.h ├── vulkan_library.cpp ├── vulkan_library.h ├── vulkan_memory_allocator.cpp ├── vulkan_memory_allocator.h ├── vulkan_surface.cpp ├── vulkan_surface.h ├── vulkan_wrapper.cpp └── vulkan_wrapper.h ├── watermark.cpp ├── watermark.h ├── yuzu_video_core.vcxproj └── yuzu_video_core.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/.gitmodules -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/x64/Debug/config/NxEmu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/bin/x64/Debug/config/NxEmu.config -------------------------------------------------------------------------------- /bin/x64/Release/config/NxEmu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/bin/x64/Release/config/NxEmu.config -------------------------------------------------------------------------------- /config/NxEmu.config.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/config/NxEmu.config.development -------------------------------------------------------------------------------- /external/cubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/cubeb.vcxproj -------------------------------------------------------------------------------- /external/cubeb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/cubeb.vcxproj.filters -------------------------------------------------------------------------------- /external/enet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/enet.vcxproj -------------------------------------------------------------------------------- /external/enet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/enet.vcxproj.filters -------------------------------------------------------------------------------- /external/fmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/fmt.vcxproj -------------------------------------------------------------------------------- /external/fmt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/fmt.vcxproj.filters -------------------------------------------------------------------------------- /external/libusb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/libusb.vcxproj -------------------------------------------------------------------------------- /external/libusb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/libusb.vcxproj.filters -------------------------------------------------------------------------------- /external/mcl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/mcl.vcxproj -------------------------------------------------------------------------------- /external/mcl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/mcl.vcxproj.filters -------------------------------------------------------------------------------- /external/opus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/opus.vcxproj -------------------------------------------------------------------------------- /external/opus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/opus.vcxproj.filters -------------------------------------------------------------------------------- /external/sdl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/sdl.vcxproj -------------------------------------------------------------------------------- /external/sdl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/sdl.vcxproj.filters -------------------------------------------------------------------------------- /external/sirit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/sirit.vcxproj -------------------------------------------------------------------------------- /external/sirit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/sirit.vcxproj.filters -------------------------------------------------------------------------------- /external/speex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/speex.vcxproj -------------------------------------------------------------------------------- /external/speex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/speex.vcxproj.filters -------------------------------------------------------------------------------- /external/zstd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/zstd.vcxproj -------------------------------------------------------------------------------- /external/zstd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/zstd.vcxproj.filters -------------------------------------------------------------------------------- /external/zydis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/zydis.vcxproj -------------------------------------------------------------------------------- /external/zydis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/external/zydis.vcxproj.filters -------------------------------------------------------------------------------- /lang/english/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/css/base.css -------------------------------------------------------------------------------- /lang/english/css/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/css/config.css -------------------------------------------------------------------------------- /lang/english/css/main_window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/css/main_window.css -------------------------------------------------------------------------------- /lang/english/html/input_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/html/input_config.html -------------------------------------------------------------------------------- /lang/english/html/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/html/loading.html -------------------------------------------------------------------------------- /lang/english/html/main_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/html/main_window.html -------------------------------------------------------------------------------- /lang/english/html/system_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/html/system_config.html -------------------------------------------------------------------------------- /lang/english/image/window-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/image/window-icon-32.png -------------------------------------------------------------------------------- /lang/english/image/window-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/lang/english/image/window-icon.png -------------------------------------------------------------------------------- /nxemu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/nxemu.sln -------------------------------------------------------------------------------- /property_sheets/debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/property_sheets/debug.props -------------------------------------------------------------------------------- /property_sheets/platform.debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/property_sheets/platform.debug.props -------------------------------------------------------------------------------- /property_sheets/platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/property_sheets/platform.props -------------------------------------------------------------------------------- /property_sheets/platform.release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/property_sheets/platform.release.props -------------------------------------------------------------------------------- /property_sheets/release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/property_sheets/release.props -------------------------------------------------------------------------------- /src/3rd_party/bc_decoder/bc_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/bc_decoder/bc_decoder.cpp -------------------------------------------------------------------------------- /src/3rd_party/bc_decoder/bc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/bc_decoder/bc_decoder.h -------------------------------------------------------------------------------- /src/3rd_party/cubeb/cubeb_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/cubeb/cubeb_export.h -------------------------------------------------------------------------------- /src/3rd_party/fidelityfx_fsr/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/fidelityfx_fsr/license.txt -------------------------------------------------------------------------------- /src/3rd_party/glad/glad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/glad/glad.vcxproj -------------------------------------------------------------------------------- /src/3rd_party/glad/glad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/glad/glad.vcxproj.filters -------------------------------------------------------------------------------- /src/3rd_party/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/glad/include/glad/glad.h -------------------------------------------------------------------------------- /src/3rd_party/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/glad/src/glad.c -------------------------------------------------------------------------------- /src/3rd_party/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /src/3rd_party/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/LICENSE -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4.c -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4.h -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4.vcxproj -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4.vcxproj.filters -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4frame.c -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4frame.h -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4frame_static.h -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4hc.c -------------------------------------------------------------------------------- /src/3rd_party/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/lz4hc.h -------------------------------------------------------------------------------- /src/3rd_party/lz4/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/xxhash.c -------------------------------------------------------------------------------- /src/3rd_party/lz4/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/lz4/xxhash.h -------------------------------------------------------------------------------- /src/3rd_party/microprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/microprofile/README.md -------------------------------------------------------------------------------- /src/3rd_party/nx_tzdb/include/.gitignore: -------------------------------------------------------------------------------- 1 | /nx_tzdb 2 | -------------------------------------------------------------------------------- /src/3rd_party/nx_tzdb/include/nx_tzdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/nx_tzdb/include/nx_tzdb.h -------------------------------------------------------------------------------- /src/3rd_party/nx_tzdb/tzdb_template.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/nx_tzdb/tzdb_template.h.in -------------------------------------------------------------------------------- /src/3rd_party/stb/stb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb.vcxproj -------------------------------------------------------------------------------- /src/3rd_party/stb/stb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb.vcxproj.filters -------------------------------------------------------------------------------- /src/3rd_party/stb/stb_dxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb_dxt.cpp -------------------------------------------------------------------------------- /src/3rd_party/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb_dxt.h -------------------------------------------------------------------------------- /src/3rd_party/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb_image.h -------------------------------------------------------------------------------- /src/3rd_party/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb_image_resize.h -------------------------------------------------------------------------------- /src/3rd_party/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/stb/stb_image_write.h -------------------------------------------------------------------------------- /src/3rd_party/tz/tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/tz/tz.cpp -------------------------------------------------------------------------------- /src/3rd_party/tz/tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/tz/tz.h -------------------------------------------------------------------------------- /src/3rd_party/tz/tz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/tz/tz.vcxproj -------------------------------------------------------------------------------- /src/3rd_party/tz/tz.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/tz/tz.vcxproj.filters -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlapp.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlcrack.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlctrls.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlctrlw.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlctrlx.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlddx.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atldlgs.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atldwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atldwm.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlfind.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlframe.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlgdi.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlmisc.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlprint.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlres.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlribbon.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlscrl.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlsplit.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atltheme.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atluser.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/atlwinx.h -------------------------------------------------------------------------------- /src/3rd_party/wtl/wtl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/wtl.vcxproj -------------------------------------------------------------------------------- /src/3rd_party/wtl/wtl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/wtl/wtl.vcxproj.filters -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Bujumbura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Bujumbura -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Casablanca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Casablanca -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Libreville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Libreville -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Lubumbashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Lubumbashi -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Mogadishu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Mogadishu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Nouakchott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Nouakchott -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Porto-Novo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Porto-Novo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Adak -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Anchorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Anchorage -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Anguilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Anguilla -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Araguaina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Araguaina -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Asuncion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Asuncion -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Atikokan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Atikokan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Atka -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Barbados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Barbados -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Belem -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Belize -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Boa_Vista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Boa_Vista -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Boise -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Cancun -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Caracas -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Catamarca -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Cayenne -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Cayman -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Chicago -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Chihuahua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Chihuahua -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Cordoba -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Creston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Creston -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Cuiaba -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Curacao -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Dawson -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Denver -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Detroit -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Dominica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Dominica -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Edmonton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Edmonton -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Eirunepe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Eirunepe -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Ensenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Ensenada -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Fortaleza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Fortaleza -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Guyana -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Havana -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Inuvik -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Juneau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/La_Paz -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Lima -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Maceio -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Manaus -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Merida -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Nassau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Nome -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Panama -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Recife -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Regina -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Thule -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/America/Virgin -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Ashkhabad -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Chongqing -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Chungking -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Famagusta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Famagusta -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Hong_Kong -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Jerusalem -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kamchatka -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kathmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kathmandu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Pontianak -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Pyongyang -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Qostanay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Qostanay -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Qyzylorda -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Samarkand -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Singapore -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Vientiane -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Atlantic/Faroe -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Australia/West -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Base/version.txt: -------------------------------------------------------------------------------- 1 | 221202 2 | -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/CET -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Canada/Central -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Canada/Eastern -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Canada/Pacific -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Cuba -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/EET -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/EST -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Egypt -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Eire -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-1 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-2 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-3 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-4 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-5 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-6 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-7 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/GMT0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/Greenwich -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/UCT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/UTC -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/Universal -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Etc/Zulu -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Andorra -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Belfast -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Kyiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Kyiv -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/London -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Nicosia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Saratov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Saratov -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Tallinn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Tallinn -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Vatican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Vatican -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Vilnius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Vilnius -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Factory -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GB -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GMT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GMT+0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GMT-0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/GMT0 -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Greenwich -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/HST -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Hongkong -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Iceland -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Mayotte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Mayotte -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Indian/Reunion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Indian/Reunion -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Iran -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Israel -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Jamaica -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Japan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Libya -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/MET -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/MST -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Mexico/BajaSur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Mexico/BajaSur -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Mexico/General: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Mexico/General -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/NZ -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Navajo -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/PRC -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Easter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Easter -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Kanton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Kanton -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Kosrae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Kosrae -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Majuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Majuro -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Midway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Midway -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Noumea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Noumea -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Ponape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Ponape -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Saipan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Saipan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Tahiti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Tahiti -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Tarawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Tarawa -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Wallis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Wallis -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Poland -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Portugal -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/ROC -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/ROK -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Singapore -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Turkey -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/UCT -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Central -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/UTC -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Universal -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/W-SU -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/WET -------------------------------------------------------------------------------- /src/3rd_party/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/3rd_party/zoneinfo/Zulu -------------------------------------------------------------------------------- /src/common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/common.vcxproj -------------------------------------------------------------------------------- /src/common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/common.vcxproj.filters -------------------------------------------------------------------------------- /src/common/common.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/common.vcxproj.user -------------------------------------------------------------------------------- /src/common/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/dynamic_library.cpp -------------------------------------------------------------------------------- /src/common/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/dynamic_library.h -------------------------------------------------------------------------------- /src/common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/file.cpp -------------------------------------------------------------------------------- /src/common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/file.h -------------------------------------------------------------------------------- /src/common/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/json.cpp -------------------------------------------------------------------------------- /src/common/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/json.h -------------------------------------------------------------------------------- /src/common/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/maths.cpp -------------------------------------------------------------------------------- /src/common/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/maths.h -------------------------------------------------------------------------------- /src/common/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/padding.h -------------------------------------------------------------------------------- /src/common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/path.cpp -------------------------------------------------------------------------------- /src/common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/path.h -------------------------------------------------------------------------------- /src/common/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/sha256.cpp -------------------------------------------------------------------------------- /src/common/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/sha256.h -------------------------------------------------------------------------------- /src/common/std_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/std_string.cpp -------------------------------------------------------------------------------- /src/common/std_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/common/std_string.h -------------------------------------------------------------------------------- /src/host_shaders/host_shaders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/host_shaders/host_shaders.vcxproj -------------------------------------------------------------------------------- /src/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/network.cpp -------------------------------------------------------------------------------- /src/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/network.h -------------------------------------------------------------------------------- /src/network/network.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/network.vcxproj -------------------------------------------------------------------------------- /src/network/network.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/network.vcxproj.filters -------------------------------------------------------------------------------- /src/network/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/packet.cpp -------------------------------------------------------------------------------- /src/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/packet.h -------------------------------------------------------------------------------- /src/network/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/precompiled_headers.h -------------------------------------------------------------------------------- /src/network/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/room.cpp -------------------------------------------------------------------------------- /src/network/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/room.h -------------------------------------------------------------------------------- /src/network/room_member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/room_member.cpp -------------------------------------------------------------------------------- /src/network/room_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/room_member.h -------------------------------------------------------------------------------- /src/network/verify_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/verify_user.cpp -------------------------------------------------------------------------------- /src/network/verify_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/network/verify_user.h -------------------------------------------------------------------------------- /src/nx_tzdb/africa.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/america.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/america_argentina.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/america_indiana.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/america_kentucky.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/america_north_dakota.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/antarctica.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/arctic.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/asia.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/atlantic.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/australia.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/base.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/brazil.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/canada.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/chile.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/etc.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/europe.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/indian.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/mexico.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/nx_tzdb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nx_tzdb/nx_tzdb.vcxproj -------------------------------------------------------------------------------- /src/nx_tzdb/nx_tzdb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nx_tzdb/nx_tzdb.vcxproj.filters -------------------------------------------------------------------------------- /src/nx_tzdb/pacific.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/us.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nx_tzdb/zoneinfo.h.rule: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nxemu-core/app_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/app_init.cpp -------------------------------------------------------------------------------- /src/nxemu-core/app_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/app_init.h -------------------------------------------------------------------------------- /src/nxemu-core/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/logging.cpp -------------------------------------------------------------------------------- /src/nxemu-core/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/logging.h -------------------------------------------------------------------------------- /src/nxemu-core/modules/cpu_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/cpu_module.cpp -------------------------------------------------------------------------------- /src/nxemu-core/modules/cpu_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/cpu_module.h -------------------------------------------------------------------------------- /src/nxemu-core/modules/module_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/module_base.h -------------------------------------------------------------------------------- /src/nxemu-core/modules/module_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/module_list.h -------------------------------------------------------------------------------- /src/nxemu-core/modules/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/modules.cpp -------------------------------------------------------------------------------- /src/nxemu-core/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/modules.h -------------------------------------------------------------------------------- /src/nxemu-core/modules/video_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/modules/video_module.h -------------------------------------------------------------------------------- /src/nxemu-core/notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/notification.cpp -------------------------------------------------------------------------------- /src/nxemu-core/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/notification.h -------------------------------------------------------------------------------- /src/nxemu-core/nxemu-core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/nxemu-core.vcxproj -------------------------------------------------------------------------------- /src/nxemu-core/settings/identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/settings/identifiers.h -------------------------------------------------------------------------------- /src/nxemu-core/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/settings/settings.cpp -------------------------------------------------------------------------------- /src/nxemu-core/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/settings/settings.h -------------------------------------------------------------------------------- /src/nxemu-core/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-core/version.h.in -------------------------------------------------------------------------------- /src/nxemu-cpu/arm64_registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/arm64_registers.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/arm64_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/arm64_registers.h -------------------------------------------------------------------------------- /src/nxemu-cpu/arm_dynarmic_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/arm_dynarmic_64.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/arm_dynarmic_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/arm_dynarmic_64.h -------------------------------------------------------------------------------- /src/nxemu-cpu/cpu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/cpu_manager.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/cpu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/cpu_manager.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/CMakeLists.txt -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/common/fp/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/common/fp/op.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/common/u128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/common/u128.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/frontend/imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/frontend/imm.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/acc_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/acc_type.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/cond.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/opcodes.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/opcodes.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/opcodes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/opcodes.inc -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/terminal.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/type.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/type.h -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/value.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/dynarmic/ir/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/dynarmic/ir/value.h -------------------------------------------------------------------------------- /src/nxemu-cpu/nxemu-cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/nxemu-cpu.cpp -------------------------------------------------------------------------------- /src/nxemu-cpu/nxemu-cpu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/nxemu-cpu.vcxproj -------------------------------------------------------------------------------- /src/nxemu-cpu/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-cpu/version.h.in -------------------------------------------------------------------------------- /src/nxemu-loader/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/core.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/core.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/hle/result.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/loader.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nca.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nca.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nro.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nro.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nso.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nso.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nsp.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/nsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/nsp.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/xci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/xci.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/core/loader/xci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/loader/xci.h -------------------------------------------------------------------------------- /src/nxemu-loader/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/core/memory.h -------------------------------------------------------------------------------- /src/nxemu-loader/nxemu-loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/nxemu-loader.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/nxemu-loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/nxemu-loader.vcxproj -------------------------------------------------------------------------------- /src/nxemu-loader/system_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/system_loader.cpp -------------------------------------------------------------------------------- /src/nxemu-loader/system_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/system_loader.h -------------------------------------------------------------------------------- /src/nxemu-loader/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-loader/version.h.in -------------------------------------------------------------------------------- /src/nxemu-module-spec/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-module-spec/base.h -------------------------------------------------------------------------------- /src/nxemu-module-spec/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-module-spec/cpu.h -------------------------------------------------------------------------------- /src/nxemu-module-spec/system_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-module-spec/system_loader.h -------------------------------------------------------------------------------- /src/nxemu-module-spec/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-module-spec/video.h -------------------------------------------------------------------------------- /src/nxemu-os/core/arm/arm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/arm/arm_interface.h -------------------------------------------------------------------------------- /src/nxemu-os/core/arm/cpu_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/arm/cpu_module.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/arm/cpu_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/arm/cpu_module.h -------------------------------------------------------------------------------- /src/nxemu-os/core/arm/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/arm/debug.h -------------------------------------------------------------------------------- /src/nxemu-os/core/arm/exclusive_monitor.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /src/nxemu-os/core/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/constants.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/constants.h -------------------------------------------------------------------------------- /src/nxemu-os/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/core.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/core.h -------------------------------------------------------------------------------- /src/nxemu-os/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/core_timing.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/core_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/core_timing.h -------------------------------------------------------------------------------- /src/nxemu-os/core/cpu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/cpu_manager.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/cpu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/cpu_manager.h -------------------------------------------------------------------------------- /src/nxemu-os/core/debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/debugger/debugger.h -------------------------------------------------------------------------------- /src/nxemu-os/core/device_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/device_memory.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/device_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/device_memory.h -------------------------------------------------------------------------------- /src/nxemu-os/core/file_sys/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/file_sys/errors.h -------------------------------------------------------------------------------- /src/nxemu-os/core/file_sys/fs_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/file_sys/fs_file.h -------------------------------------------------------------------------------- /src/nxemu-os/core/file_sys/fs_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/file_sys/fs_path.h -------------------------------------------------------------------------------- /src/nxemu-os/core/guest_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/guest_memory.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/ipc.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/kernel/k_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/kernel/k_port.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/kernel/kernel.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/kernel/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/kernel/svc.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/kernel/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/kernel/svc.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/result.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/am/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/am/am.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/es/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/es/es.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/lm/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/lm/lm.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/ns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/ns/ns.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/pm/pm.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/ro/ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/ro/ro.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/sm/sm.h -------------------------------------------------------------------------------- /src/nxemu-os/core/hle/service/vi/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/hle/service/vi/vi.h -------------------------------------------------------------------------------- /src/nxemu-os/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/memory.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/memory.h -------------------------------------------------------------------------------- /src/nxemu-os/core/perf_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/perf_stats.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/perf_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/perf_stats.h -------------------------------------------------------------------------------- /src/nxemu-os/core/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/reporter.cpp -------------------------------------------------------------------------------- /src/nxemu-os/core/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/core/reporter.h -------------------------------------------------------------------------------- /src/nxemu-os/nxemu-os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/nxemu-os.cpp -------------------------------------------------------------------------------- /src/nxemu-os/nxemu-os.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/nxemu-os.vcxproj -------------------------------------------------------------------------------- /src/nxemu-os/nxemu-os.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/nxemu-os.vcxproj.filters -------------------------------------------------------------------------------- /src/nxemu-os/os_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/os_manager.cpp -------------------------------------------------------------------------------- /src/nxemu-os/os_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/os_manager.h -------------------------------------------------------------------------------- /src/nxemu-os/os_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/os_settings.cpp -------------------------------------------------------------------------------- /src/nxemu-os/os_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/os_settings.h -------------------------------------------------------------------------------- /src/nxemu-os/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-os/version.h.in -------------------------------------------------------------------------------- /src/nxemu-video/nxemu-video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/nxemu-video.cpp -------------------------------------------------------------------------------- /src/nxemu-video/nxemu-video.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/nxemu-video.vcxproj -------------------------------------------------------------------------------- /src/nxemu-video/render_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/render_window.cpp -------------------------------------------------------------------------------- /src/nxemu-video/render_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/render_window.h -------------------------------------------------------------------------------- /src/nxemu-video/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/version.h.in -------------------------------------------------------------------------------- /src/nxemu-video/video_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/video_manager.cpp -------------------------------------------------------------------------------- /src/nxemu-video/video_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/video_manager.h -------------------------------------------------------------------------------- /src/nxemu-video/video_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/video_settings.cpp -------------------------------------------------------------------------------- /src/nxemu-video/video_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu-video/video_settings.h -------------------------------------------------------------------------------- /src/nxemu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/main.cpp -------------------------------------------------------------------------------- /src/nxemu/nxemu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/nxemu.vcxproj -------------------------------------------------------------------------------- /src/nxemu/nxemu.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/nxemu.vcxproj.filters -------------------------------------------------------------------------------- /src/nxemu/settings/ui_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/settings/ui_settings.cpp -------------------------------------------------------------------------------- /src/nxemu/settings/ui_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/settings/ui_settings.h -------------------------------------------------------------------------------- /src/nxemu/startup_checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/startup_checks.cpp -------------------------------------------------------------------------------- /src/nxemu/startup_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/startup_checks.h -------------------------------------------------------------------------------- /src/nxemu/user_interface/nxemu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/user_interface/nxemu.rc -------------------------------------------------------------------------------- /src/nxemu/user_interface/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/nxemu/user_interface/resource.h -------------------------------------------------------------------------------- /src/script/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/build.cmd -------------------------------------------------------------------------------- /src/script/generate_shader_header.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/generate_shader_header.cmd -------------------------------------------------------------------------------- /src/script/generate_spc_header.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/generate_spc_header.cmd -------------------------------------------------------------------------------- /src/script/manage_version.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/manage_version.cmd -------------------------------------------------------------------------------- /src/script/package_zip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/package_zip.cmd -------------------------------------------------------------------------------- /src/script/set_env_vars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/set_env_vars.cmd -------------------------------------------------------------------------------- /src/script/set_git_properties.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/set_git_properties.cmd -------------------------------------------------------------------------------- /src/script/update_version.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/update_version.cmd -------------------------------------------------------------------------------- /src/script/website-upload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/script/website-upload.ps1 -------------------------------------------------------------------------------- /src/string_shader_header/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/string_shader_header/main.cpp -------------------------------------------------------------------------------- /src/update_version/update_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/update_version/update_version.cpp -------------------------------------------------------------------------------- /src/web_service/web_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/web_service/web_result.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/adsp/adsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/adsp/adsp.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/adsp/adsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/adsp/adsp.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/adsp/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/adsp/mailbox.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_core.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_core.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_event.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_event.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_manager.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/audio_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/audio_manager.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/common/common.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/in/audio_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/in/audio_in.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/in/audio_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/in/audio_in.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/opus/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/opus/decoder.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/opus/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/opus/decoder.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/opus/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/opus/parameters.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/out/audio_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/out/audio_out.cpp -------------------------------------------------------------------------------- /src/yuzu_audio_core/out/audio_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/out/audio_out.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/renderer/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/renderer/system.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/sink/cubeb_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/sink/cubeb_sink.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/sink/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/sink/null_sink.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/sink/oboe_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/sink/oboe_sink.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/sink/sdl2_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/sink/sdl2_sink.h -------------------------------------------------------------------------------- /src/yuzu_audio_core/sink/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_audio_core/sink/sink.h -------------------------------------------------------------------------------- /src/yuzu_common/address_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/address_space.cpp -------------------------------------------------------------------------------- /src/yuzu_common/address_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/address_space.h -------------------------------------------------------------------------------- /src/yuzu_common/address_space.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/address_space.inc -------------------------------------------------------------------------------- /src/yuzu_common/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/algorithm.h -------------------------------------------------------------------------------- /src/yuzu_common/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/alignment.h -------------------------------------------------------------------------------- /src/yuzu_common/atomic_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/atomic_helpers.h -------------------------------------------------------------------------------- /src/yuzu_common/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/atomic_ops.h -------------------------------------------------------------------------------- /src/yuzu_common/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/bit_cast.h -------------------------------------------------------------------------------- /src/yuzu_common/bit_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/bit_field.h -------------------------------------------------------------------------------- /src/yuzu_common/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/bit_set.h -------------------------------------------------------------------------------- /src/yuzu_common/bit_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/bit_util.h -------------------------------------------------------------------------------- /src/yuzu_common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/cityhash.cpp -------------------------------------------------------------------------------- /src/yuzu_common/cityhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/cityhash.h -------------------------------------------------------------------------------- /src/yuzu_common/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/common_funcs.h -------------------------------------------------------------------------------- /src/yuzu_common/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/common_types.h -------------------------------------------------------------------------------- /src/yuzu_common/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/concepts.h -------------------------------------------------------------------------------- /src/yuzu_common/container_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/container_hash.h -------------------------------------------------------------------------------- /src/yuzu_common/div_ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/div_ceil.h -------------------------------------------------------------------------------- /src/yuzu_common/dynamic_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/dynamic_library.cpp -------------------------------------------------------------------------------- /src/yuzu_common/dynamic_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/dynamic_library.h -------------------------------------------------------------------------------- /src/yuzu_common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/error.cpp -------------------------------------------------------------------------------- /src/yuzu_common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/error.h -------------------------------------------------------------------------------- /src/yuzu_common/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/expected.h -------------------------------------------------------------------------------- /src/yuzu_common/fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fence.h -------------------------------------------------------------------------------- /src/yuzu_common/fiber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fiber.cpp -------------------------------------------------------------------------------- /src/yuzu_common/fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fiber.h -------------------------------------------------------------------------------- /src/yuzu_common/fixed_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fixed_point.h -------------------------------------------------------------------------------- /src/yuzu_common/free_region_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/free_region_manager.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/file.cpp -------------------------------------------------------------------------------- /src/yuzu_common/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/file.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs.cpp -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs_paths.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs_types.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs_util.cpp -------------------------------------------------------------------------------- /src/yuzu_common/fs/fs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/fs_util.h -------------------------------------------------------------------------------- /src/yuzu_common/fs/path_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/path_util.cpp -------------------------------------------------------------------------------- /src/yuzu_common/fs/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/fs/path_util.h -------------------------------------------------------------------------------- /src/yuzu_common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/hash.h -------------------------------------------------------------------------------- /src/yuzu_common/heap_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/heap_tracker.cpp -------------------------------------------------------------------------------- /src/yuzu_common/heap_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/heap_tracker.h -------------------------------------------------------------------------------- /src/yuzu_common/hex_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/hex_util.cpp -------------------------------------------------------------------------------- /src/yuzu_common/hex_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/hex_util.h -------------------------------------------------------------------------------- /src/yuzu_common/host_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/host_memory.cpp -------------------------------------------------------------------------------- /src/yuzu_common/host_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/host_memory.h -------------------------------------------------------------------------------- /src/yuzu_common/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/input.h -------------------------------------------------------------------------------- /src/yuzu_common/interface_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/interface_pointer.h -------------------------------------------------------------------------------- /src/yuzu_common/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/intrusive_list.h -------------------------------------------------------------------------------- /src/yuzu_common/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/literals.h -------------------------------------------------------------------------------- /src/yuzu_common/logging/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/backend.cpp -------------------------------------------------------------------------------- /src/yuzu_common/logging/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/backend.h -------------------------------------------------------------------------------- /src/yuzu_common/logging/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/filter.cpp -------------------------------------------------------------------------------- /src/yuzu_common/logging/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/filter.h -------------------------------------------------------------------------------- /src/yuzu_common/logging/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/formatter.h -------------------------------------------------------------------------------- /src/yuzu_common/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/log.h -------------------------------------------------------------------------------- /src/yuzu_common/logging/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/logging/log_entry.h -------------------------------------------------------------------------------- /src/yuzu_common/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/lru_cache.h -------------------------------------------------------------------------------- /src/yuzu_common/lz4_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/lz4_compression.cpp -------------------------------------------------------------------------------- /src/yuzu_common/lz4_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/lz4_compression.h -------------------------------------------------------------------------------- /src/yuzu_common/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/math_util.h -------------------------------------------------------------------------------- /src/yuzu_common/microprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/microprofile.cpp -------------------------------------------------------------------------------- /src/yuzu_common/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/microprofile.h -------------------------------------------------------------------------------- /src/yuzu_common/nvdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/nvdata.h -------------------------------------------------------------------------------- /src/yuzu_common/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/overflow.h -------------------------------------------------------------------------------- /src/yuzu_common/page_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/page_table.cpp -------------------------------------------------------------------------------- /src/yuzu_common/page_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/page_table.h -------------------------------------------------------------------------------- /src/yuzu_common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/param_package.cpp -------------------------------------------------------------------------------- /src/yuzu_common/param_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/param_package.h -------------------------------------------------------------------------------- /src/yuzu_common/parent_of_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/parent_of_member.h -------------------------------------------------------------------------------- /src/yuzu_common/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/point.h -------------------------------------------------------------------------------- /src/yuzu_common/polyfill_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/polyfill_ranges.h -------------------------------------------------------------------------------- /src/yuzu_common/polyfill_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/polyfill_thread.h -------------------------------------------------------------------------------- /src/yuzu_common/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/quaternion.h -------------------------------------------------------------------------------- /src/yuzu_common/range_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/range_map.h -------------------------------------------------------------------------------- /src/yuzu_common/range_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/range_mutex.h -------------------------------------------------------------------------------- /src/yuzu_common/range_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/range_sets.h -------------------------------------------------------------------------------- /src/yuzu_common/range_sets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/range_sets.inc -------------------------------------------------------------------------------- /src/yuzu_common/reader_writer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/reader_writer_queue.h -------------------------------------------------------------------------------- /src/yuzu_common/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/ring_buffer.h -------------------------------------------------------------------------------- /src/yuzu_common/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/scope_exit.h -------------------------------------------------------------------------------- /src/yuzu_common/scratch_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/scratch_buffer.h -------------------------------------------------------------------------------- /src/yuzu_common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings.cpp -------------------------------------------------------------------------------- /src/yuzu_common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings.h -------------------------------------------------------------------------------- /src/yuzu_common/settings_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_common.cpp -------------------------------------------------------------------------------- /src/yuzu_common/settings_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_common.h -------------------------------------------------------------------------------- /src/yuzu_common/settings_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_enums.h -------------------------------------------------------------------------------- /src/yuzu_common/settings_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_input.cpp -------------------------------------------------------------------------------- /src/yuzu_common/settings_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_input.h -------------------------------------------------------------------------------- /src/yuzu_common/settings_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/settings_setting.h -------------------------------------------------------------------------------- /src/yuzu_common/slot_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/slot_vector.h -------------------------------------------------------------------------------- /src/yuzu_common/socket_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/socket_types.h -------------------------------------------------------------------------------- /src/yuzu_common/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/spin_lock.cpp -------------------------------------------------------------------------------- /src/yuzu_common/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/spin_lock.h -------------------------------------------------------------------------------- /src/yuzu_common/stb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/stb.cpp -------------------------------------------------------------------------------- /src/yuzu_common/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/stb.h -------------------------------------------------------------------------------- /src/yuzu_common/steady_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/steady_clock.cpp -------------------------------------------------------------------------------- /src/yuzu_common/steady_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/steady_clock.h -------------------------------------------------------------------------------- /src/yuzu_common/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/stream.cpp -------------------------------------------------------------------------------- /src/yuzu_common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/stream.h -------------------------------------------------------------------------------- /src/yuzu_common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/string_util.cpp -------------------------------------------------------------------------------- /src/yuzu_common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/string_util.h -------------------------------------------------------------------------------- /src/yuzu_common/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/swap.h -------------------------------------------------------------------------------- /src/yuzu_common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/thread.cpp -------------------------------------------------------------------------------- /src/yuzu_common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/thread.h -------------------------------------------------------------------------------- /src/yuzu_common/thread_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/thread_worker.h -------------------------------------------------------------------------------- /src/yuzu_common/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/threadsafe_queue.h -------------------------------------------------------------------------------- /src/yuzu_common/time_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/time_zone.cpp -------------------------------------------------------------------------------- /src/yuzu_common/time_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/time_zone.h -------------------------------------------------------------------------------- /src/yuzu_common/tiny_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/tiny_mt.h -------------------------------------------------------------------------------- /src/yuzu_common/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/tree.h -------------------------------------------------------------------------------- /src/yuzu_common/typed_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/typed_address.h -------------------------------------------------------------------------------- /src/yuzu_common/unique_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/unique_function.h -------------------------------------------------------------------------------- /src/yuzu_common/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/uuid.cpp -------------------------------------------------------------------------------- /src/yuzu_common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/uuid.h -------------------------------------------------------------------------------- /src/yuzu_common/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/vector_math.h -------------------------------------------------------------------------------- /src/yuzu_common/virtual_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/virtual_buffer.cpp -------------------------------------------------------------------------------- /src/yuzu_common/virtual_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/virtual_buffer.h -------------------------------------------------------------------------------- /src/yuzu_common/wall_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/wall_clock.cpp -------------------------------------------------------------------------------- /src/yuzu_common/wall_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/wall_clock.h -------------------------------------------------------------------------------- /src/yuzu_common/x64/xbyak_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/x64/xbyak_abi.h -------------------------------------------------------------------------------- /src/yuzu_common/x64/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/x64/xbyak_util.h -------------------------------------------------------------------------------- /src/yuzu_common/yuzu_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/yuzu_assert.cpp -------------------------------------------------------------------------------- /src/yuzu_common/yuzu_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/yuzu_assert.h -------------------------------------------------------------------------------- /src/yuzu_common/yuzu_common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/yuzu_common.vcxproj -------------------------------------------------------------------------------- /src/yuzu_common/zstd_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/zstd_compression.cpp -------------------------------------------------------------------------------- /src/yuzu_common/zstd_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_common/zstd_compression.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/yuzu_hid_core/hid_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hid_core.cpp -------------------------------------------------------------------------------- /src/yuzu_hid_core/hid_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hid_core.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hid_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hid_result.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hid_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hid_types.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hid_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hid_util.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/ringcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/ringcon.cpp -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/ringcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/ringcon.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/starlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/starlink.cpp -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/starlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/starlink.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/stubbed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/stubbed.cpp -------------------------------------------------------------------------------- /src/yuzu_hid_core/hidbus/stubbed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/hidbus/stubbed.h -------------------------------------------------------------------------------- /src/yuzu_hid_core/resource_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_hid_core/resource_manager.h -------------------------------------------------------------------------------- /src/yuzu_input_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/CMakeLists.txt -------------------------------------------------------------------------------- /src/yuzu_input_common/drivers/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/drivers/mouse.h -------------------------------------------------------------------------------- /src/yuzu_input_common/input_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/input_engine.h -------------------------------------------------------------------------------- /src/yuzu_input_common/input_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/input_mapping.h -------------------------------------------------------------------------------- /src/yuzu_input_common/input_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/input_poller.h -------------------------------------------------------------------------------- /src/yuzu_input_common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/main.cpp -------------------------------------------------------------------------------- /src/yuzu_input_common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_input_common/main.h -------------------------------------------------------------------------------- /src/yuzu_shader_recompiler/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_shader_recompiler/profile.h -------------------------------------------------------------------------------- /src/yuzu_shader_recompiler/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_shader_recompiler/stage.h -------------------------------------------------------------------------------- /src/yuzu_video_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/yuzu_video_core/cache_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/cache_types.h -------------------------------------------------------------------------------- /src/yuzu_video_core/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/capture.h -------------------------------------------------------------------------------- /src/yuzu_video_core/cdma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/cdma_pusher.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/cdma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/cdma_pusher.h -------------------------------------------------------------------------------- /src/yuzu_video_core/dirty_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/dirty_flags.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/dirty_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/dirty_flags.h -------------------------------------------------------------------------------- /src/yuzu_video_core/dma_pusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/dma_pusher.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/dma_pusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/dma_pusher.h -------------------------------------------------------------------------------- /src/yuzu_video_core/engines/puller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/engines/puller.h -------------------------------------------------------------------------------- /src/yuzu_video_core/fence_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/fence_manager.h -------------------------------------------------------------------------------- /src/yuzu_video_core/fsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/fsr.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/fsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/fsr.h -------------------------------------------------------------------------------- /src/yuzu_video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/gpu.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/gpu.h -------------------------------------------------------------------------------- /src/yuzu_video_core/gpu_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/gpu_thread.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/gpu_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/gpu_thread.h -------------------------------------------------------------------------------- /src/yuzu_video_core/guest_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/guest_memory.h -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/control.h -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/host1x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/host1x.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/host1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/host1x.h -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/nvdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/nvdec.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/nvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/nvdec.h -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/vic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/vic.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/host1x/vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/host1x/vic.h -------------------------------------------------------------------------------- /src/yuzu_video_core/host_shaders/.gitignore: -------------------------------------------------------------------------------- 1 | /*.h 2 | -------------------------------------------------------------------------------- /src/yuzu_video_core/macro/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/macro/macro.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/macro/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/macro/macro.h -------------------------------------------------------------------------------- /src/yuzu_video_core/macro/macro_hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/macro/macro_hle.h -------------------------------------------------------------------------------- /src/yuzu_video_core/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/memory_manager.h -------------------------------------------------------------------------------- /src/yuzu_video_core/present.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/present.h -------------------------------------------------------------------------------- /src/yuzu_video_core/pte_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/pte_kind.h -------------------------------------------------------------------------------- /src/yuzu_video_core/query_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/query_cache.h -------------------------------------------------------------------------------- /src/yuzu_video_core/renderer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/renderer_base.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/renderer_base.h -------------------------------------------------------------------------------- /src/yuzu_video_core/shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/shader_cache.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/shader_cache.h -------------------------------------------------------------------------------- /src/yuzu_video_core/shader_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/shader_notify.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/shader_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/shader_notify.h -------------------------------------------------------------------------------- /src/yuzu_video_core/smaa_area_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/smaa_area_tex.h -------------------------------------------------------------------------------- /src/yuzu_video_core/smaa_search_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/smaa_search_tex.h -------------------------------------------------------------------------------- /src/yuzu_video_core/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/surface.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/surface.h -------------------------------------------------------------------------------- /src/yuzu_video_core/textures/astc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/textures/astc.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/textures/astc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/textures/astc.h -------------------------------------------------------------------------------- /src/yuzu_video_core/textures/bcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/textures/bcn.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/textures/bcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/textures/bcn.h -------------------------------------------------------------------------------- /src/yuzu_video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/video_core.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/video_core.h -------------------------------------------------------------------------------- /src/yuzu_video_core/watermark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/watermark.cpp -------------------------------------------------------------------------------- /src/yuzu_video_core/watermark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3xoX1/nxemu/HEAD/src/yuzu_video_core/watermark.h --------------------------------------------------------------------------------