├── .clang-format ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json ├── tasks.json └── warnings.h ├── LICENSE ├── README.md ├── config ├── eu │ ├── build.sha1 │ ├── config.yml │ ├── splits.txt │ └── symbols.txt ├── jp │ ├── build.sha1 │ ├── config.yml │ ├── splits.txt │ └── symbols.txt └── us │ ├── build.sha1 │ ├── config.yml │ ├── splits.txt │ └── symbols.txt ├── configure.py ├── docs ├── coding_style_guidelines.md └── decompiling_guide.md ├── include ├── compat.h ├── decomp.h ├── lang.h ├── macros.h ├── macros.inc └── types.h ├── libs ├── CriWare │ ├── include │ │ └── criware │ │ │ └── cri_adxf.h │ └── src │ │ └── adx │ │ ├── adxf │ │ ├── adx_fcch.c │ │ └── adx_fcch.h │ │ ├── ahx │ │ ├── ahx_atbl.c │ │ ├── ahx_atbl.h │ │ ├── ahx_ftbl.c │ │ ├── ahx_ftbl.h │ │ ├── ahx_wtbl.c │ │ └── ahx_wtbl.h │ │ └── sj │ │ ├── sj_crs.c │ │ └── sj_crs.h ├── NdevExi2A │ ├── include │ │ └── NdevExi2A │ │ │ ├── DebuggerDriver.h │ │ │ ├── ODEMU.h │ │ │ └── exi2.h │ └── src │ │ ├── DebuggerDriver.c │ │ └── exi2.c ├── PowerPC_EABI_Support │ ├── include │ │ ├── PowerPC_EABI_Support │ │ │ ├── MSL_C │ │ │ │ ├── MSL_Common │ │ │ │ │ ├── FILE_POS.h │ │ │ │ │ ├── alloc.h │ │ │ │ │ ├── ansi_files.h │ │ │ │ │ ├── ansi_fp.h │ │ │ │ │ ├── arith.h │ │ │ │ │ ├── assert_api.h │ │ │ │ │ ├── buffer_io.h │ │ │ │ │ ├── console_io.h │ │ │ │ │ ├── ctype_api.h │ │ │ │ │ ├── extras.h │ │ │ │ │ ├── file_io.h │ │ │ │ │ ├── file_struc.h │ │ │ │ │ ├── locale_api.h │ │ │ │ │ ├── math_api.h │ │ │ │ │ ├── math_double.h │ │ │ │ │ ├── mbstring.h │ │ │ │ │ ├── mem_funcs.h │ │ │ │ │ ├── misc_io.h │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── scanf.h │ │ │ │ │ ├── secure_error.h │ │ │ │ │ ├── stdio_api.h │ │ │ │ │ ├── string_api.h │ │ │ │ │ ├── strtold.h │ │ │ │ │ ├── strtoul.h │ │ │ │ │ ├── wchar_io.h │ │ │ │ │ ├── wcstoul.h │ │ │ │ │ ├── wctype_api.h │ │ │ │ │ ├── wmem.h │ │ │ │ │ ├── wprintf.h │ │ │ │ │ └── wstring.h │ │ │ │ └── MSL_Common_Embedded │ │ │ │ │ ├── Math │ │ │ │ │ └── fdlibm.h │ │ │ │ │ └── UART.h │ │ │ ├── MetroTRK │ │ │ │ ├── Processor │ │ │ │ │ └── ppc │ │ │ │ │ │ ├── Board │ │ │ │ │ │ └── dolphin │ │ │ │ │ │ │ ├── memmap.h │ │ │ │ │ │ │ ├── target.h │ │ │ │ │ │ │ └── target_asm.h │ │ │ │ │ │ ├── Export │ │ │ │ │ │ ├── m7xx_m603e_reg.h │ │ │ │ │ │ ├── ppc_except.h │ │ │ │ │ │ └── ppc_reg.h │ │ │ │ │ │ └── Generic │ │ │ │ │ │ ├── flush_cache.h │ │ │ │ │ │ ├── ppc_targimpl.h │ │ │ │ │ │ ├── ppc_version.h │ │ │ │ │ │ └── proc_mpc_7xx_603e.h │ │ │ │ ├── UART.h │ │ │ │ ├── __exception.h │ │ │ │ ├── custconn │ │ │ │ │ ├── CircleBuffer.h │ │ │ │ │ ├── MWCriticalSection_gc.h │ │ │ │ │ └── cc_gdev.h │ │ │ │ ├── dispatch.h │ │ │ │ ├── dolphin_trk.h │ │ │ │ ├── dolphin_trk_glue.h │ │ │ │ ├── dserror.h │ │ │ │ ├── dstypes.h │ │ │ │ ├── main_TRK.h │ │ │ │ ├── mainloop.h │ │ │ │ ├── mem_TRK.h │ │ │ │ ├── mpc_7xx_603e.h │ │ │ │ ├── msg.h │ │ │ │ ├── msgbuf.h │ │ │ │ ├── msgcmd.h │ │ │ │ ├── msghndlr.h │ │ │ │ ├── msgxtrct.h │ │ │ │ ├── mslsupp.h │ │ │ │ ├── notify.h │ │ │ │ ├── nubevent.h │ │ │ │ ├── nubinit.h │ │ │ │ ├── ppc_mem.h │ │ │ │ ├── rvl_mem.h │ │ │ │ ├── serpoll.h │ │ │ │ ├── string_TRK.h │ │ │ │ ├── support.h │ │ │ │ ├── targcont.h │ │ │ │ ├── target_options.h │ │ │ │ ├── targimpl.h │ │ │ │ ├── targsupp.h │ │ │ │ └── trk.h │ │ │ └── Runtime │ │ │ │ ├── Gecko_ExceptionPPC.h │ │ │ │ ├── MWCPlusLib.h │ │ │ │ ├── NMWException.h │ │ │ │ ├── __mem.h │ │ │ │ ├── __ppc_eabi_init.h │ │ │ │ └── __ppc_eabi_linker.h │ │ └── stl │ │ │ ├── algorithm │ │ │ ├── assert.h │ │ │ ├── cctype │ │ │ ├── cerrno │ │ │ ├── climits │ │ │ ├── clocale │ │ │ ├── cmath │ │ │ ├── cstdarg │ │ │ ├── cstddef │ │ │ ├── cstdio │ │ │ ├── cstdlib │ │ │ ├── cstring │ │ │ ├── ctype.h │ │ │ ├── cwchar │ │ │ ├── errno.h │ │ │ ├── exception │ │ │ ├── exception.h │ │ │ ├── float.h │ │ │ ├── iterator │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── math.h │ │ │ ├── new │ │ │ ├── signal.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── typeinfo │ │ │ ├── wchar.h │ │ │ └── wctype.h │ └── src │ │ ├── MSL_C │ │ ├── MSL_Common │ │ │ ├── FILE_POS.c │ │ │ ├── alloc.c │ │ │ ├── ansi_files.c │ │ │ ├── arith.c │ │ │ ├── assert.c │ │ │ ├── buffer_io.c │ │ │ ├── ctype.c │ │ │ ├── direct_io.c │ │ │ ├── errno.c │ │ │ ├── extras.c │ │ │ ├── file_io.c │ │ │ ├── float.c │ │ │ ├── locale.c │ │ │ ├── math_api.c │ │ │ ├── math_double.c │ │ │ ├── mbstring.c │ │ │ ├── mem.c │ │ │ ├── mem_funcs.c │ │ │ ├── misc_io.c │ │ │ ├── printf.c │ │ │ ├── rand.c │ │ │ ├── scanf.c │ │ │ ├── secure_error.c │ │ │ ├── signal.c │ │ │ ├── string.c │ │ │ ├── strtold.c │ │ │ ├── strtoul.c │ │ │ ├── wchar_io.c │ │ │ ├── wcstoul.c │ │ │ ├── wctype.c │ │ │ ├── wmem.c │ │ │ ├── wprintf.c │ │ │ ├── wscanf.c │ │ │ └── wstring.c │ │ ├── MSL_Common_Embedded │ │ │ ├── Math │ │ │ │ └── Double_precision │ │ │ │ │ ├── e_acos.c │ │ │ │ │ ├── e_asin.c │ │ │ │ │ ├── e_atan2.c │ │ │ │ │ ├── e_fmod.c │ │ │ │ │ ├── e_log.c │ │ │ │ │ ├── e_log10.c │ │ │ │ │ ├── e_pow.c │ │ │ │ │ ├── e_rem_pio2.c │ │ │ │ │ ├── e_sqrt.c │ │ │ │ │ ├── k_cos.c │ │ │ │ │ ├── k_rem_pio2.c │ │ │ │ │ ├── k_sin.c │ │ │ │ │ ├── k_tan.c │ │ │ │ │ ├── s_atan.c │ │ │ │ │ ├── s_ceil.c │ │ │ │ │ ├── s_copysign.c │ │ │ │ │ ├── s_cos.c │ │ │ │ │ ├── s_floor.c │ │ │ │ │ ├── s_frexp.c │ │ │ │ │ ├── s_ldexp.c │ │ │ │ │ ├── s_modf.c │ │ │ │ │ ├── s_sin.c │ │ │ │ │ ├── s_tan.c │ │ │ │ │ ├── w_acos.c │ │ │ │ │ ├── w_asin.c │ │ │ │ │ ├── w_atan2.c │ │ │ │ │ ├── w_fmod.c │ │ │ │ │ ├── w_log.c │ │ │ │ │ ├── w_log10.c │ │ │ │ │ ├── w_pow.c │ │ │ │ │ └── w_sqrt.c │ │ │ ├── ansi_fp.c │ │ │ └── math_sun.c │ │ └── PPC_EABI │ │ │ ├── abort_exit_ppc_eabi.c │ │ │ ├── math_ppc.c │ │ │ └── uart_console_io_gcn.c │ │ ├── MetroTRK │ │ ├── __exception.s │ │ ├── custconn │ │ │ ├── CircleBuffer.c │ │ │ ├── MWCriticalSection_gc.cpp │ │ │ └── cc_gdev.c │ │ ├── dispatch.c │ │ ├── dolphin_trk.c │ │ ├── dolphin_trk_glue.c │ │ ├── flush_cache.c │ │ ├── main_TRK.c │ │ ├── mainloop.c │ │ ├── mem_TRK.c │ │ ├── mpc_7xx_603e.c │ │ ├── msg.c │ │ ├── msgbuf.c │ │ ├── msghndlr.c │ │ ├── mslsupp.c │ │ ├── notify.c │ │ ├── nubevent.c │ │ ├── nubinit.c │ │ ├── serpoll.c │ │ ├── string_TRK.c │ │ ├── support.c │ │ ├── targcont.c │ │ ├── target_options.c │ │ ├── targimpl.c │ │ └── targsupp.s │ │ └── Runtime │ │ ├── GCN_mem_alloc.c │ │ ├── Gecko_ExceptionPPC.cp │ │ ├── MWRTTI.cp │ │ ├── NMWException.cp │ │ ├── New.cp │ │ ├── __init_cpp_exceptions.cpp │ │ ├── __mem.c │ │ ├── __va_arg.c │ │ ├── global_destructor_chain.c │ │ ├── ptmf.c │ │ └── runtime.c ├── RVL_SDK │ ├── include │ │ ├── private │ │ │ └── iostypes.h │ │ └── revolution │ │ │ ├── AI.h │ │ │ ├── ARC.h │ │ │ ├── AX.h │ │ │ ├── AXFX.h │ │ │ ├── BASE.h │ │ │ ├── BTE.h │ │ │ ├── CX.h │ │ │ ├── DB.h │ │ │ ├── DSP.h │ │ │ ├── DVD.h │ │ │ ├── ENC.h │ │ │ ├── ESP.h │ │ │ ├── EUART.h │ │ │ ├── EXI.h │ │ │ ├── FS.h │ │ │ ├── GX.h │ │ │ ├── IPC.h │ │ │ ├── KPAD.h │ │ │ ├── MEM.h │ │ │ ├── MTX.h │ │ │ ├── NAND.h │ │ │ ├── NAND │ │ │ ├── NANDCheck.h │ │ │ ├── NANDCore.h │ │ │ ├── NANDOpenClose.h │ │ │ └── nand.h │ │ │ ├── NWC24.h │ │ │ ├── OS.h │ │ │ ├── PAD.h │ │ │ ├── SC.h │ │ │ ├── SI.h │ │ │ ├── TPL.h │ │ │ ├── USB.h │ │ │ ├── VI.h │ │ │ ├── WENC.h │ │ │ ├── WPAD.h │ │ │ ├── WUD.h │ │ │ ├── ai │ │ │ ├── ai.h │ │ │ └── ai_hardware.h │ │ │ ├── arc │ │ │ └── arc.h │ │ │ ├── ax │ │ │ ├── AX.h │ │ │ ├── AXAlloc.h │ │ │ ├── AXAux.h │ │ │ ├── AXCL.h │ │ │ ├── AXComp.h │ │ │ ├── AXOut.h │ │ │ ├── AXPB.h │ │ │ ├── AXProf.h │ │ │ ├── AXSPB.h │ │ │ ├── AXVPB.h │ │ │ └── DSPCode.h │ │ │ ├── axfx │ │ │ ├── AXFXChorus.h │ │ │ ├── AXFXChorusExp.h │ │ │ ├── AXFXCommon.h │ │ │ ├── AXFXDelay.h │ │ │ ├── AXFXHooks.h │ │ │ ├── AXFXLfoTable.h │ │ │ ├── AXFXReverbHi.h │ │ │ ├── AXFXReverbHiDpl2.h │ │ │ ├── AXFXReverbHiExp.h │ │ │ ├── AXFXReverbHiExpDpl2.h │ │ │ └── AXFXSrcCoef.h │ │ │ ├── base │ │ │ └── PPCArch.h │ │ │ ├── bte │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── audio_a2dp_hw │ │ │ │ └── audio_a2dp_hw.h │ │ │ ├── bta │ │ │ │ ├── ag │ │ │ │ │ ├── bta_ag_at.h │ │ │ │ │ └── bta_ag_int.h │ │ │ │ ├── ar │ │ │ │ │ └── bta_ar_int.h │ │ │ │ ├── av │ │ │ │ │ └── bta_av_int.h │ │ │ │ ├── dm │ │ │ │ │ └── bta_dm_int.h │ │ │ │ ├── gatt │ │ │ │ │ ├── bta_gattc_int.h │ │ │ │ │ └── bta_gatts_int.h │ │ │ │ ├── hh │ │ │ │ │ └── bta_hh_int.h │ │ │ │ ├── hl │ │ │ │ │ └── bta_hl_int.h │ │ │ │ ├── include │ │ │ │ │ ├── bd.h │ │ │ │ │ ├── bta_ag_api.h │ │ │ │ │ ├── bta_ag_ci.h │ │ │ │ │ ├── bta_ag_co.h │ │ │ │ │ ├── bta_api.h │ │ │ │ │ ├── bta_ar_api.h │ │ │ │ │ ├── bta_av_api.h │ │ │ │ │ ├── bta_av_ci.h │ │ │ │ │ ├── bta_av_co.h │ │ │ │ │ ├── bta_av_sbc.h │ │ │ │ │ ├── bta_dm_ci.h │ │ │ │ │ ├── bta_dm_co.h │ │ │ │ │ ├── bta_fs_api.h │ │ │ │ │ ├── bta_fs_ci.h │ │ │ │ │ ├── bta_fs_co.h │ │ │ │ │ ├── bta_gatt_api.h │ │ │ │ │ ├── bta_gattc_ci.h │ │ │ │ │ ├── bta_gattc_co.h │ │ │ │ │ ├── bta_gatts_co.h │ │ │ │ │ ├── bta_hh_api.h │ │ │ │ │ ├── bta_hh_co.h │ │ │ │ │ ├── bta_hl_api.h │ │ │ │ │ ├── bta_hl_ci.h │ │ │ │ │ ├── bta_hl_co.h │ │ │ │ │ ├── bta_jv_api.h │ │ │ │ │ ├── bta_jv_co.h │ │ │ │ │ ├── bta_op_api.h │ │ │ │ │ ├── bta_pan_api.h │ │ │ │ │ ├── bta_pan_ci.h │ │ │ │ │ ├── bta_pan_co.h │ │ │ │ │ ├── bta_pbs_api.h │ │ │ │ │ ├── bta_sys_ci.h │ │ │ │ │ ├── bta_sys_co.h │ │ │ │ │ ├── ptim.h │ │ │ │ │ └── utl.h │ │ │ │ ├── jv │ │ │ │ │ └── bta_jv_int.h │ │ │ │ ├── pan │ │ │ │ │ └── bta_pan_int.h │ │ │ │ ├── pb │ │ │ │ │ └── bta_pbs_int.h │ │ │ │ └── sys │ │ │ │ │ ├── bta_sys.h │ │ │ │ │ └── bta_sys_int.h │ │ │ ├── btif │ │ │ │ └── include │ │ │ │ │ ├── btif_api.h │ │ │ │ │ ├── btif_av.h │ │ │ │ │ ├── btif_av_api.h │ │ │ │ │ ├── btif_av_co.h │ │ │ │ │ ├── btif_common.h │ │ │ │ │ ├── btif_config.h │ │ │ │ │ ├── btif_config_util.h │ │ │ │ │ ├── btif_dm.h │ │ │ │ │ ├── btif_hh.h │ │ │ │ │ ├── btif_hl.h │ │ │ │ │ ├── btif_media.h │ │ │ │ │ ├── btif_pan.h │ │ │ │ │ ├── btif_pan_internal.h │ │ │ │ │ ├── btif_profile_queue.h │ │ │ │ │ ├── btif_sm.h │ │ │ │ │ ├── btif_sock.h │ │ │ │ │ ├── btif_sock_rfc.h │ │ │ │ │ ├── btif_sock_sdp.h │ │ │ │ │ ├── btif_sock_thread.h │ │ │ │ │ ├── btif_sock_util.h │ │ │ │ │ ├── btif_storage.h │ │ │ │ │ ├── btif_util.h │ │ │ │ │ └── uinput.h │ │ │ ├── embdrv │ │ │ │ └── sbc │ │ │ │ │ └── encoder │ │ │ │ │ └── include │ │ │ │ │ ├── sbc_dct.h │ │ │ │ │ ├── sbc_enc_func_declare.h │ │ │ │ │ ├── sbc_encoder.h │ │ │ │ │ ├── sbc_if.h │ │ │ │ │ └── sbc_types.h │ │ │ ├── gki │ │ │ │ ├── common │ │ │ │ │ ├── gki.h │ │ │ │ │ ├── gki_common.h │ │ │ │ │ └── gki_inet.h │ │ │ │ └── platform │ │ │ │ │ ├── data_types.h │ │ │ │ │ └── gki_int.h │ │ │ ├── hci │ │ │ │ └── include │ │ │ │ │ ├── bt_hci_bdroid.h │ │ │ │ │ ├── bt_hci_lib.h │ │ │ │ │ ├── bt_vendor_lib.h │ │ │ │ │ ├── hci.h │ │ │ │ │ ├── userial.h │ │ │ │ │ └── utils.h │ │ │ ├── include │ │ │ │ ├── bt_target.h │ │ │ │ ├── bt_trace.h │ │ │ │ ├── bte.h │ │ │ │ ├── bte_appl.h │ │ │ │ ├── bte_common.h │ │ │ │ └── gki_target.h │ │ │ ├── rvl │ │ │ │ └── uusb_ppc.h │ │ │ ├── stack │ │ │ │ ├── a2dp │ │ │ │ │ └── a2d_int.h │ │ │ │ ├── avct │ │ │ │ │ ├── avct_defs.h │ │ │ │ │ └── avct_int.h │ │ │ │ ├── avdt │ │ │ │ │ ├── avdt_defs.h │ │ │ │ │ └── avdt_int.h │ │ │ │ ├── avrc │ │ │ │ │ └── avrc_int.h │ │ │ │ ├── bnep │ │ │ │ │ └── bnep_int.h │ │ │ │ ├── btm │ │ │ │ │ ├── btm_ble_int.h │ │ │ │ │ └── btm_int.h │ │ │ │ ├── gatt │ │ │ │ │ └── gatt_int.h │ │ │ │ ├── hid │ │ │ │ │ ├── hid_conn.h │ │ │ │ │ └── hidh_int.h │ │ │ │ ├── include │ │ │ │ │ ├── a2d_api.h │ │ │ │ │ ├── a2d_sbc.h │ │ │ │ │ ├── avct_api.h │ │ │ │ │ ├── avdt_api.h │ │ │ │ │ ├── avdtc_api.h │ │ │ │ │ ├── avrc_api.h │ │ │ │ │ ├── avrc_defs.h │ │ │ │ │ ├── bnep_api.h │ │ │ │ │ ├── bt_types.h │ │ │ │ │ ├── btm_api.h │ │ │ │ │ ├── btm_ble_api.h │ │ │ │ │ ├── btu.h │ │ │ │ │ ├── dyn_mem.h │ │ │ │ │ ├── gap_api.h │ │ │ │ │ ├── gatt_api.h │ │ │ │ │ ├── gattdefs.h │ │ │ │ │ ├── goep_fs.h │ │ │ │ │ ├── hcidefs.h │ │ │ │ │ ├── hcimsgs.h │ │ │ │ │ ├── hidd_api.h │ │ │ │ │ ├── hiddefs.h │ │ │ │ │ ├── hidh_api.h │ │ │ │ │ ├── l2c_api.h │ │ │ │ │ ├── l2cdefs.h │ │ │ │ │ ├── mca_api.h │ │ │ │ │ ├── mca_defs.h │ │ │ │ │ ├── obx_api.h │ │ │ │ │ ├── pan_api.h │ │ │ │ │ ├── port_api.h │ │ │ │ │ ├── port_ext.h │ │ │ │ │ ├── profiles_api.h │ │ │ │ │ ├── rfcdefs.h │ │ │ │ │ ├── sdp_api.h │ │ │ │ │ ├── sdpdefs.h │ │ │ │ │ ├── smp_api.h │ │ │ │ │ ├── uipc_msg.h │ │ │ │ │ ├── utfc.h │ │ │ │ │ ├── wbt_api.h │ │ │ │ │ └── wcassert.h │ │ │ │ ├── l2cap │ │ │ │ │ └── l2c_int.h │ │ │ │ ├── mcap │ │ │ │ │ └── mca_int.h │ │ │ │ ├── pan │ │ │ │ │ └── pan_int.h │ │ │ │ ├── rfcomm │ │ │ │ │ ├── port_int.h │ │ │ │ │ └── rfc_int.h │ │ │ │ ├── sdp │ │ │ │ │ └── sdpint.h │ │ │ │ └── smp │ │ │ │ │ ├── aes.h │ │ │ │ │ └── smp_int.h │ │ │ ├── udrv │ │ │ │ ├── include │ │ │ │ │ └── uipc.h │ │ │ │ └── ulinux │ │ │ │ │ └── uipc_linux.h │ │ │ └── utils │ │ │ │ └── include │ │ │ │ └── bt_utils.h │ │ │ ├── cx │ │ │ ├── CXSecureUncompression.h │ │ │ ├── CXStreamingUncompression.h │ │ │ └── CXUncompression.h │ │ │ ├── db │ │ │ └── db.h │ │ │ ├── dsp │ │ │ ├── dsp.h │ │ │ ├── dsp_debug.h │ │ │ ├── dsp_hardware.h │ │ │ └── dsp_task.h │ │ │ ├── dvd │ │ │ ├── dvd.h │ │ │ ├── dvdDeviceError.h │ │ │ ├── dvd_broadway.h │ │ │ ├── dvderror.h │ │ │ ├── dvdfatal.h │ │ │ ├── dvdfs.h │ │ │ ├── dvdidutils.h │ │ │ └── dvdqueue.h │ │ │ ├── enc │ │ │ ├── encjapanese.h │ │ │ ├── encunicode.h │ │ │ └── encutility.h │ │ │ ├── esp │ │ │ └── esp.h │ │ │ ├── euart │ │ │ └── euart.h │ │ │ ├── exi │ │ │ ├── EXIBios.h │ │ │ ├── EXICommon.h │ │ │ ├── EXIHardware.h │ │ │ └── EXIUart.h │ │ │ ├── fs │ │ │ └── fs.h │ │ │ ├── gx │ │ │ ├── GXAttr.h │ │ │ ├── GXBump.h │ │ │ ├── GXDisplayList.h │ │ │ ├── GXDraw.h │ │ │ ├── GXFifo.h │ │ │ ├── GXFrameBuf.h │ │ │ ├── GXGeometry.h │ │ │ ├── GXHardware.h │ │ │ ├── GXHardwareBP.h │ │ │ ├── GXHardwareCP.h │ │ │ ├── GXHardwareXF.h │ │ │ ├── GXInit.h │ │ │ ├── GXInternal.h │ │ │ ├── GXLight.h │ │ │ ├── GXMisc.h │ │ │ ├── GXPixel.h │ │ │ ├── GXTev.h │ │ │ ├── GXTexture.h │ │ │ ├── GXTransform.h │ │ │ ├── GXTypes.h │ │ │ └── GXVert.h │ │ │ ├── ipc │ │ │ ├── ipcHardware.h │ │ │ ├── ipcMain.h │ │ │ ├── ipcProfile.h │ │ │ ├── ipcclt.h │ │ │ └── memory.h │ │ │ ├── mem │ │ │ ├── mem_allocator.h │ │ │ ├── mem_expHeap.h │ │ │ ├── mem_frameHeap.h │ │ │ ├── mem_heapCommon.h │ │ │ └── mem_list.h │ │ │ ├── mtx │ │ │ ├── mtx.h │ │ │ ├── mtx44.h │ │ │ ├── mtxtypes.h │ │ │ ├── mtxvec.h │ │ │ ├── quat.h │ │ │ └── vec.h │ │ │ ├── nand │ │ │ ├── NANDCheck.h │ │ │ ├── NANDCore.h │ │ │ ├── NANDOpenClose.h │ │ │ └── nand.h │ │ │ ├── nwc24 │ │ │ ├── NWC24Schedule.h │ │ │ ├── NWC24System.h │ │ │ ├── NWC24Time.h │ │ │ └── NWC24Types.h │ │ │ ├── os │ │ │ ├── OS.h │ │ │ ├── OSAddress.h │ │ │ ├── OSAlarm.h │ │ │ ├── OSAlloc.h │ │ │ ├── OSArena.h │ │ │ ├── OSAudioSystem.h │ │ │ ├── OSCache.h │ │ │ ├── OSContext.h │ │ │ ├── OSCrc.h │ │ │ ├── OSError.h │ │ │ ├── OSExec.h │ │ │ ├── OSFastCast.h │ │ │ ├── OSFatal.h │ │ │ ├── OSFont.h │ │ │ ├── OSHardware.h │ │ │ ├── OSInterrupt.h │ │ │ ├── OSIpc.h │ │ │ ├── OSLink.h │ │ │ ├── OSMemory.h │ │ │ ├── OSMessage.h │ │ │ ├── OSMutex.h │ │ │ ├── OSNet.h │ │ │ ├── OSPlayRecord.h │ │ │ ├── OSPlayTime.h │ │ │ ├── OSReset.h │ │ │ ├── OSRtc.h │ │ │ ├── OSSerial.h │ │ │ ├── OSStateFlags.h │ │ │ ├── OSStateTM.h │ │ │ ├── OSSync.h │ │ │ ├── OSThread.h │ │ │ ├── OSTime.h │ │ │ ├── OSUtf.h │ │ │ └── __ppc_eabi_init.h │ │ │ ├── pad │ │ │ └── Pad.h │ │ │ ├── sc │ │ │ ├── scapi.h │ │ │ ├── scapi_prdinfo.h │ │ │ └── scsystem.h │ │ │ ├── si │ │ │ ├── SIBios.h │ │ │ ├── SIHardware.h │ │ │ └── SISamplingRate.h │ │ │ ├── tpl │ │ │ └── TPL.h │ │ │ ├── usb │ │ │ └── usb.h │ │ │ ├── version.h │ │ │ ├── vi │ │ │ ├── vi.h │ │ │ ├── vi3in1.h │ │ │ ├── vihardware.h │ │ │ └── vitypes.h │ │ │ ├── wenc │ │ │ └── wenc.h │ │ │ ├── wpad │ │ │ ├── WPAD.h │ │ │ ├── WPADHIDParser.h │ │ │ ├── WPADInternal.h │ │ │ ├── WPADMem.h │ │ │ └── debug_msg.h │ │ │ └── wud │ │ │ ├── WUD.h │ │ │ ├── WUDHidHost.h │ │ │ ├── WUDInternal.h │ │ │ └── debug_msg.h │ └── src │ │ └── revolution │ │ ├── AX │ │ ├── AX.c │ │ ├── AXComp.c │ │ ├── AXProf.c │ │ └── DSPCode.c │ │ ├── ai │ │ └── ai.c │ │ ├── arc │ │ └── arc.c │ │ ├── ax │ │ ├── AX.c │ │ ├── AXComp.c │ │ ├── AXProf.c │ │ └── DSPCode.c │ │ ├── axfx │ │ ├── AXFXHooks.c │ │ ├── AXFXLfoTable.c │ │ └── AXFXSrcCoef.c │ │ ├── base │ │ └── PPCArch.c │ │ ├── cx │ │ ├── CXSecureUncompression.c │ │ ├── CXStreamingUncompression.c │ │ └── CXUncompression.c │ │ ├── db │ │ └── db.c │ │ ├── dsp │ │ ├── dsp.c │ │ ├── dsp_debug.c │ │ └── dsp_task.c │ │ ├── dvd │ │ ├── dvd.c │ │ ├── dvdDeviceError.c │ │ ├── dvdFatal.c │ │ ├── dvd_broadway.c │ │ ├── dvderror.c │ │ ├── dvdfs.c │ │ ├── dvdidutils.c │ │ └── dvdqueue.c │ │ ├── enc │ │ ├── encjapanese.c │ │ ├── encunicode.c │ │ └── encutility.c │ │ ├── esp │ │ └── esp.c │ │ ├── euart │ │ └── euart.c │ │ ├── exi │ │ ├── EXIBios.c │ │ ├── EXICommon.c │ │ └── EXIUart.c │ │ ├── fs │ │ └── fs.c │ │ ├── gx │ │ ├── GXBump.c │ │ ├── GXDisplayList.c │ │ ├── GXGeometry.c │ │ ├── GXLight.c │ │ └── GXTransform.c │ │ ├── hbm │ │ ├── include │ │ │ └── nw4hbm │ │ │ │ ├── lyt │ │ │ │ ├── lyt_animation.h │ │ │ │ ├── lyt_arcResourceAccessor.h │ │ │ │ ├── lyt_bounding.h │ │ │ │ ├── lyt_common.h │ │ │ │ ├── lyt_drawInfo.h │ │ │ │ ├── lyt_group.h │ │ │ │ ├── lyt_layout.h │ │ │ │ ├── lyt_material.h │ │ │ │ ├── lyt_pane.h │ │ │ │ ├── lyt_resourceAccessor.h │ │ │ │ └── lyt_types.h │ │ │ │ ├── math.h │ │ │ │ ├── math │ │ │ │ ├── math_arithmetic.h │ │ │ │ ├── math_geometry.h │ │ │ │ ├── math_triangular.h │ │ │ │ └── math_types.h │ │ │ │ ├── types_nw4hbm.h │ │ │ │ ├── ut.h │ │ │ │ └── ut │ │ │ │ ├── ut_CharStrmReader.h │ │ │ │ ├── ut_CharWriter.h │ │ │ │ ├── ut_Color.h │ │ │ │ ├── ut_Font.h │ │ │ │ ├── ut_LinkList.h │ │ │ │ ├── ut_NonCopyable.h │ │ │ │ ├── ut_Rect.h │ │ │ │ ├── ut_ResFont.h │ │ │ │ ├── ut_ResFontBase.h │ │ │ │ ├── ut_RuntimeTypeInfo.h │ │ │ │ ├── ut_TagProcessorBase.h │ │ │ │ ├── ut_TextWriterBase.h │ │ │ │ ├── ut_algorithm.h │ │ │ │ ├── ut_binaryFileFormat.h │ │ │ │ └── ut_list.h │ │ └── nw4hbm │ │ │ ├── lyt │ │ │ ├── lyt_arcResourceAccessor.cpp │ │ │ ├── lyt_bounding.cpp │ │ │ ├── lyt_common.cpp │ │ │ ├── lyt_drawInfo.cpp │ │ │ ├── lyt_group.cpp │ │ │ └── lyt_resourceAccessor.cpp │ │ │ ├── math │ │ │ └── math_triangular.cpp │ │ │ └── ut │ │ │ ├── ut_CharStrmReader.cpp │ │ │ ├── ut_CharWriter.cpp │ │ │ ├── ut_Font.cpp │ │ │ ├── ut_LinkList.cpp │ │ │ ├── ut_ResFont.cpp │ │ │ ├── ut_ResFontBase.cpp │ │ │ ├── ut_TagProcessorBase.cpp │ │ │ ├── ut_TextWriterBase.cpp │ │ │ ├── ut_binaryFileFormat.cpp │ │ │ └── ut_list.cpp │ │ ├── ipc │ │ ├── ipcMain.c │ │ ├── ipcProfile.c │ │ └── ipcclt.c │ │ ├── mem │ │ ├── mem_allocator.c │ │ ├── mem_expHeap.c │ │ ├── mem_frameHeap.c │ │ ├── mem_heapCommon.c │ │ └── mem_list.c │ │ ├── mtx │ │ ├── mtx.c │ │ ├── mtx44.c │ │ ├── mtxvec.c │ │ ├── quat.c │ │ └── vec.c │ │ ├── os │ │ ├── OS.c │ │ ├── OSAlarm.c │ │ ├── OSAlloc.c │ │ ├── OSArena.c │ │ ├── OSAudioSystem.c │ │ ├── OSCache.c │ │ ├── OSContext.c │ │ ├── OSCrc.c │ │ ├── OSError.c │ │ ├── OSExec.c │ │ ├── OSFatal.c │ │ ├── OSFont.c │ │ ├── OSInterrupt.c │ │ ├── OSIpc.c │ │ ├── OSLink.c │ │ ├── OSMemory.c │ │ ├── OSMessage.c │ │ ├── OSMutex.c │ │ ├── OSNandbootInfo.c │ │ ├── OSNet.c │ │ ├── OSPlayRecord.c │ │ ├── OSReboot.c │ │ ├── OSReset.c │ │ ├── OSRtc.c │ │ ├── OSStateFlags.c │ │ ├── OSStateTM.c │ │ ├── OSSync.c │ │ ├── OSThread.c │ │ ├── OSTime.c │ │ ├── OSUtf.c │ │ ├── __ppc_eabi_init.c │ │ └── __start.c │ │ ├── pad │ │ └── Pad.c │ │ ├── sc │ │ ├── scapi.c │ │ ├── scapi_prdinfo.c │ │ └── scsystem.c │ │ ├── si │ │ └── SISamplingRate.c │ │ ├── tpl │ │ └── TPL.c │ │ ├── usb │ │ └── usb.c │ │ ├── wpad │ │ └── debug_msg.c │ │ └── wud │ │ └── debug_msg.c ├── monolib │ ├── include │ │ └── monolib │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── CArcItem.hpp │ │ │ ├── CDesktop.hpp │ │ │ ├── CException.hpp │ │ │ ├── CPackItem.hpp │ │ │ ├── CTaskManager.hpp │ │ │ ├── CView.hpp │ │ │ └── Unknown1.hpp │ │ │ ├── device.hpp │ │ │ ├── device │ │ │ ├── CDevice.hpp │ │ │ ├── CDeviceBase.hpp │ │ │ ├── CDeviceClock.hpp │ │ │ ├── CDeviceFile.hpp │ │ │ ├── CDeviceFileCri.hpp │ │ │ ├── CDeviceFileDvd.hpp │ │ │ ├── CDeviceFileJob.hpp │ │ │ ├── CDeviceFileJobReadDvd.hpp │ │ │ ├── CDeviceFont.hpp │ │ │ ├── CDeviceGX.hpp │ │ │ ├── CDeviceRemotePad.hpp │ │ │ ├── CDeviceSC.hpp │ │ │ ├── CDeviceVI.hpp │ │ │ ├── CDeviceVICb.hpp │ │ │ ├── CFileHandle.hpp │ │ │ ├── CGXCache.hpp │ │ │ ├── UnkClass_80447FDC.hpp │ │ │ ├── UnkClass_804561AC.hpp │ │ │ └── code_80450B14.hpp │ │ │ ├── effect │ │ │ └── CERand.hpp │ │ │ ├── lib.hpp │ │ │ ├── lib │ │ │ ├── CLib.hpp │ │ │ ├── CLibCri.hpp │ │ │ ├── CLibHbm.hpp │ │ │ ├── CLibLayout.hpp │ │ │ ├── CLibStaticData.hpp │ │ │ ├── CLibVM.hpp │ │ │ └── UnkClass_8045F564.hpp │ │ │ ├── math.hpp │ │ │ ├── math │ │ │ ├── CAttrTransform.hpp │ │ │ ├── CCol3.hpp │ │ │ ├── CCol4.hpp │ │ │ ├── CMat34.hpp │ │ │ ├── CMat44.hpp │ │ │ ├── CPnt16.hpp │ │ │ ├── CQuat.hpp │ │ │ ├── CRect16.hpp │ │ │ ├── CVec3.hpp │ │ │ ├── CVec4.hpp │ │ │ ├── FastCast.hpp │ │ │ ├── FloatUtils.hpp │ │ │ ├── MTRand.hpp │ │ │ ├── MathConstants.hpp │ │ │ ├── Random.hpp │ │ │ └── Utility.hpp │ │ │ ├── monolib_types.hpp │ │ │ ├── nand │ │ │ ├── CNBanner.hpp │ │ │ └── CNand.hpp │ │ │ ├── scn │ │ │ └── CLight.hpp │ │ │ ├── util.hpp │ │ │ ├── util │ │ │ ├── CChildListNode.hpp │ │ │ ├── CDoubleListNode.hpp │ │ │ ├── CPathUtil.hpp │ │ │ ├── FixStr.hpp │ │ │ ├── MemManager.hpp │ │ │ ├── PtrSingleton.hpp │ │ │ └── reslist.hpp │ │ │ ├── vm │ │ │ └── yvm.h │ │ │ ├── work.hpp │ │ │ └── work │ │ │ ├── CEventFile.hpp │ │ │ ├── CMsgParam.hpp │ │ │ ├── CProc.hpp │ │ │ ├── CProcess.hpp │ │ │ ├── CTTask.hpp │ │ │ ├── CWorkControl.hpp │ │ │ ├── CWorkFlowSetup.hpp │ │ │ ├── CWorkFlowShutdownAll.hpp │ │ │ ├── CWorkFlowWiiMenu.hpp │ │ │ ├── CWorkFlowWiiPowerOff.hpp │ │ │ ├── CWorkFlowWiiReset.hpp │ │ │ ├── CWorkRoot.hpp │ │ │ ├── CWorkSystem.hpp │ │ │ ├── CWorkSystemPack.hpp │ │ │ ├── CWorkThread.hpp │ │ │ ├── CWorkThreadSystem.hpp │ │ │ ├── CWorkUtil.hpp │ │ │ ├── IWorkEvent.hpp │ │ │ └── UnkStruct_80438AF0.hpp │ └── src │ │ ├── core │ │ ├── CArcItem.cpp │ │ ├── CPackItem.cpp │ │ ├── CTaskManager.cpp │ │ └── Unknown1.cpp │ │ ├── device │ │ ├── CDevice.cpp │ │ ├── CDeviceClock.cpp │ │ ├── CDeviceFileJob.cpp │ │ ├── CDeviceFileJobReadDvd.cpp │ │ ├── CDeviceGX.cpp │ │ ├── CDeviceSC.cpp │ │ ├── CDeviceVI.cpp │ │ ├── CDeviceVICb.cpp │ │ └── code_80450B14.cpp │ │ ├── effect │ │ └── CERand.cpp │ │ ├── math │ │ ├── CAttrTransform.cpp │ │ ├── CCol3.cpp │ │ ├── CCol4.cpp │ │ ├── CMat34.cpp │ │ ├── CMat44.cpp │ │ ├── CQuat.cpp │ │ ├── CRect16.cpp │ │ ├── CVec3.cpp │ │ ├── CVec4.cpp │ │ ├── FastCast.cpp │ │ ├── FloatUtils.cpp │ │ ├── MTRand.cpp │ │ ├── MathConstants.cpp │ │ └── Random.cpp │ │ ├── scn │ │ └── CLight.cpp │ │ ├── util │ │ ├── CChildListNode.cpp │ │ ├── CDoubleListNode.cpp │ │ ├── CPathUtil.cpp │ │ └── MemManager.cpp │ │ ├── vm │ │ └── yvm.c │ │ └── work │ │ ├── CProcess.cpp │ │ ├── CWorkControl.cpp │ │ ├── CWorkFlowSetup.cpp │ │ ├── CWorkFlowShutdownAll.cpp │ │ ├── CWorkFlowWiiMenu.cpp │ │ ├── CWorkFlowWiiPowerOff.cpp │ │ ├── CWorkFlowWiiReset.cpp │ │ ├── CWorkThread.cpp │ │ ├── CWorkThreadSystem.cpp │ │ └── CWorkUtil.cpp └── nw4r │ ├── include │ └── nw4r │ │ ├── build_version.h │ │ ├── db │ │ ├── db_DbgPrintBase.h │ │ ├── db_assert.h │ │ └── db_console.h │ │ ├── g3d.h │ │ ├── g3d │ │ ├── dcc │ │ │ ├── g3d_3dsmax.h │ │ │ ├── g3d_basic.h │ │ │ ├── g3d_maya.h │ │ │ └── g3d_xsi.h │ │ ├── g3d_anmchr.h │ │ ├── g3d_anmclr.h │ │ ├── g3d_anmobj.h │ │ ├── g3d_anmscn.h │ │ ├── g3d_anmshp.h │ │ ├── g3d_anmtexpat.h │ │ ├── g3d_anmtexsrt.h │ │ ├── g3d_anmvis.h │ │ ├── g3d_calcmaterial.h │ │ ├── g3d_calcview.h │ │ ├── g3d_calcvtx.h │ │ ├── g3d_calcworld.h │ │ ├── g3d_camera.h │ │ ├── g3d_dcc.h │ │ ├── g3d_draw.h │ │ ├── g3d_draw1mat1shp.h │ │ ├── g3d_fog.h │ │ ├── g3d_init.h │ │ ├── g3d_light.h │ │ ├── g3d_obj.h │ │ ├── g3d_rtti.h │ │ ├── g3d_scnmdl.h │ │ ├── g3d_scnmdl1mat1shp.h │ │ ├── g3d_scnmdlsmpl.h │ │ ├── g3d_scnobj.h │ │ ├── g3d_scnproc.h │ │ ├── g3d_scnroot.h │ │ ├── g3d_state.h │ │ ├── g3d_workmem.h │ │ ├── platform │ │ │ ├── g3d_allocator.h │ │ │ ├── g3d_cpu.h │ │ │ ├── g3d_gpu.h │ │ │ └── g3d_tmem.h │ │ └── res │ │ │ ├── g3d_resanm.h │ │ │ ├── g3d_resanmamblight.h │ │ │ ├── g3d_resanmcamera.h │ │ │ ├── g3d_resanmchr.h │ │ │ ├── g3d_resanmclr.h │ │ │ ├── g3d_resanmfog.h │ │ │ ├── g3d_resanmlight.h │ │ │ ├── g3d_resanmscn.h │ │ │ ├── g3d_resanmshp.h │ │ │ ├── g3d_resanmtexpat.h │ │ │ ├── g3d_resanmtexsrt.h │ │ │ ├── g3d_resanmvis.h │ │ │ ├── g3d_rescommon.h │ │ │ ├── g3d_resdict.h │ │ │ ├── g3d_resfile.h │ │ │ ├── g3d_reslightset.h │ │ │ ├── g3d_resmat.h │ │ │ ├── g3d_resmdl.h │ │ │ ├── g3d_resnode.h │ │ │ ├── g3d_respltt.h │ │ │ ├── g3d_resshp.h │ │ │ ├── g3d_restev.h │ │ │ ├── g3d_restex.h │ │ │ └── g3d_resvtx.h │ │ ├── lyt.h │ │ ├── lyt │ │ ├── lyt_animation.h │ │ ├── lyt_arcResourceAccessor.h │ │ ├── lyt_bounding.h │ │ ├── lyt_common.h │ │ ├── lyt_drawInfo.h │ │ ├── lyt_group.h │ │ ├── lyt_init.h │ │ ├── lyt_layout.h │ │ ├── lyt_material.h │ │ ├── lyt_pane.h │ │ ├── lyt_picture.h │ │ ├── lyt_resourceAccessor.h │ │ ├── lyt_resources.h │ │ ├── lyt_texMap.h │ │ ├── lyt_textBox.h │ │ ├── lyt_types.h │ │ └── lyt_window.h │ │ ├── math.h │ │ ├── math │ │ ├── math_arithmetic.h │ │ ├── math_constant.h │ │ ├── math_geometry.h │ │ ├── math_triangular.h │ │ └── math_types.h │ │ ├── snd.h │ │ ├── snd │ │ ├── snd_AxManager.h │ │ ├── snd_AxVoice.h │ │ ├── snd_AxVoiceManager.h │ │ ├── snd_AxfxImpl.h │ │ ├── snd_Bank.h │ │ ├── snd_BankFile.h │ │ ├── snd_BasicPlayer.h │ │ ├── snd_BasicSound.h │ │ ├── snd_Channel.h │ │ ├── snd_ChannelManager.h │ │ ├── snd_DisposeCallback.h │ │ ├── snd_DisposeCallbackManager.h │ │ ├── snd_DvdSoundArchive.h │ │ ├── snd_EnvGenerator.h │ │ ├── snd_ExternalSoundPlayer.h │ │ ├── snd_FrameHeap.h │ │ ├── snd_FxBase.h │ │ ├── snd_FxChorus.h │ │ ├── snd_FxDelay.h │ │ ├── snd_FxReverbHi.h │ │ ├── snd_FxReverbHiDpl2.h │ │ ├── snd_InstancePool.h │ │ ├── snd_Lfo.h │ │ ├── snd_MemorySoundArchive.h │ │ ├── snd_MmlParser.h │ │ ├── snd_MmlSeqTrack.h │ │ ├── snd_MmlSeqTrackAllocator.h │ │ ├── snd_MoveValue.h │ │ ├── snd_NandSoundArchive.h │ │ ├── snd_NoteOnCallback.h │ │ ├── snd_PlayerHeap.h │ │ ├── snd_RemoteSpeaker.h │ │ ├── snd_RemoteSpeakerManager.h │ │ ├── snd_SeqFile.h │ │ ├── snd_SeqPlayer.h │ │ ├── snd_SeqSound.h │ │ ├── snd_SeqSoundHandle.h │ │ ├── snd_SeqTrack.h │ │ ├── snd_SeqTrackAllocator.h │ │ ├── snd_Sound3DActor.h │ │ ├── snd_Sound3DListener.h │ │ ├── snd_Sound3DManager.h │ │ ├── snd_SoundActor.h │ │ ├── snd_SoundArchive.h │ │ ├── snd_SoundArchiveFile.h │ │ ├── snd_SoundArchiveLoader.h │ │ ├── snd_SoundArchivePlayer.h │ │ ├── snd_SoundHandle.h │ │ ├── snd_SoundHeap.h │ │ ├── snd_SoundInstanceManager.h │ │ ├── snd_SoundMemoryAllocatable.h │ │ ├── snd_SoundPlayer.h │ │ ├── snd_SoundStartable.h │ │ ├── snd_SoundSystem.h │ │ ├── snd_SoundThread.h │ │ ├── snd_StrmChannel.h │ │ ├── snd_StrmFile.h │ │ ├── snd_StrmPlayer.h │ │ ├── snd_StrmSound.h │ │ ├── snd_StrmSoundHandle.h │ │ ├── snd_Task.h │ │ ├── snd_TaskManager.h │ │ ├── snd_TaskThread.h │ │ ├── snd_Types.h │ │ ├── snd_Util.h │ │ ├── snd_Voice.h │ │ ├── snd_VoiceManager.h │ │ ├── snd_WaveFile.h │ │ ├── snd_WaveSound.h │ │ ├── snd_WaveSoundHandle.h │ │ ├── snd_WsdFile.h │ │ ├── snd_WsdPlayer.h │ │ └── snd_adpcm.h │ │ ├── types_nw4r.h │ │ ├── ut.h │ │ └── ut │ │ ├── ut_CharStrmReader.h │ │ ├── ut_CharWriter.h │ │ ├── ut_Color.h │ │ ├── ut_DvdFileStream.h │ │ ├── ut_DvdLockedFileStream.h │ │ ├── ut_FileStream.h │ │ ├── ut_Font.h │ │ ├── ut_IOStream.h │ │ ├── ut_LinkList.h │ │ ├── ut_LockedCache.h │ │ ├── ut_NandFileStream.h │ │ ├── ut_NonCopyable.h │ │ ├── ut_Rect.h │ │ ├── ut_ResFont.h │ │ ├── ut_ResFontBase.h │ │ ├── ut_RomFont.h │ │ ├── ut_RuntimeTypeInfo.h │ │ ├── ut_TagProcessor.h │ │ ├── ut_TagProcessorBase.h │ │ ├── ut_TextWriter.h │ │ ├── ut_TextWriterBase.h │ │ ├── ut_WideTagProcessor.h │ │ ├── ut_WideTextWriter.h │ │ ├── ut_algorithm.h │ │ ├── ut_binaryFileFormat.h │ │ ├── ut_list.h │ │ └── ut_lock.h │ └── src │ ├── db │ ├── db_DbgPrintBase.cpp │ ├── db_assert.cpp │ └── db_console.cpp │ ├── dw │ └── dw_Window.cpp │ ├── g3d │ ├── dcc │ │ └── g3d_basic.cpp │ ├── g3d_anmobj.cpp │ ├── g3d_anmscn.cpp │ ├── g3d_anmvis.cpp │ ├── g3d_camera.cpp │ ├── g3d_dcc.cpp │ ├── g3d_fog.cpp │ ├── g3d_init.cpp │ ├── g3d_light.cpp │ ├── g3d_obj.cpp │ ├── g3d_scnmdl1mat1shp.cpp │ ├── g3d_scnobj.cpp │ ├── g3d_scnproc.cpp │ ├── g3d_workmem.cpp │ ├── platform │ │ └── g3d_cpu.cpp │ └── res │ │ ├── g3d_resanm.cpp │ │ ├── g3d_resanmamblight.cpp │ │ ├── g3d_resanmcamera.cpp │ │ ├── g3d_resanmchr.cpp │ │ ├── g3d_resanmclr.cpp │ │ ├── g3d_resanmfog.cpp │ │ ├── g3d_resanmlight.cpp │ │ ├── g3d_resanmscn.cpp │ │ ├── g3d_resanmshp.cpp │ │ ├── g3d_resanmtexpat.cpp │ │ ├── g3d_resanmtexsrt.cpp │ │ ├── g3d_resanmvis.cpp │ │ ├── g3d_rescommon.cpp │ │ ├── g3d_resdict.cpp │ │ ├── g3d_resfile.cpp │ │ ├── g3d_reslightset.cpp │ │ ├── g3d_resmat.cpp │ │ ├── g3d_resmdl.cpp │ │ ├── g3d_resnode.cpp │ │ ├── g3d_resshp.cpp │ │ ├── g3d_restev.cpp │ │ ├── g3d_restex.cpp │ │ └── g3d_resvtx.cpp │ ├── lyt │ ├── lyt_animation.cpp │ ├── lyt_arcResourceAccessor.cpp │ ├── lyt_bounding.cpp │ ├── lyt_common.cpp │ ├── lyt_drawInfo.cpp │ ├── lyt_group.cpp │ ├── lyt_init.cpp │ ├── lyt_layout.cpp │ ├── lyt_material.cpp │ ├── lyt_pane.cpp │ ├── lyt_picture.cpp │ ├── lyt_resourceAccessor.cpp │ ├── lyt_texMap.cpp │ ├── lyt_textBox.cpp │ └── lyt_window.cpp │ ├── math │ ├── math_arithmetic.cpp │ ├── math_geometry.cpp │ ├── math_triangular.cpp │ └── math_types.cpp │ ├── snd │ ├── snd_AnimSound.cpp │ ├── snd_AxManager.cpp │ ├── snd_AxVoice.cpp │ ├── snd_AxVoiceManager.cpp │ ├── snd_AxfxImpl.cpp │ ├── snd_Bank.cpp │ ├── snd_BankFile.cpp │ ├── snd_BasicPlayer.cpp │ ├── snd_BasicSound.cpp │ ├── snd_Channel.cpp │ ├── snd_DisposeCallbackManager.cpp │ ├── snd_DvdSoundArchive.cpp │ ├── snd_EnvGenerator.cpp │ ├── snd_ExternalSoundPlayer.cpp │ ├── snd_FrameHeap.cpp │ ├── snd_FxChorus.cpp │ ├── snd_FxDelay.cpp │ ├── snd_FxReverbHi.cpp │ ├── snd_FxReverbHiDpl2.cpp │ ├── snd_InstancePool.cpp │ ├── snd_Lfo.cpp │ ├── snd_MemorySoundArchive.cpp │ ├── snd_MidiSeqPlayer.cpp │ ├── snd_MmlParser.cpp │ ├── snd_MmlSeqTrack.cpp │ ├── snd_MmlSeqTrackAllocator.cpp │ ├── snd_NandSoundArchive.cpp │ ├── snd_RemoteSpeaker.cpp │ ├── snd_RemoteSpeakerManager.cpp │ ├── snd_SeqFile.cpp │ ├── snd_SeqPlayer.cpp │ ├── snd_SeqSound.cpp │ ├── snd_SeqSoundHandle.cpp │ ├── snd_SeqTrack.cpp │ ├── snd_Sound3DActor.cpp │ ├── snd_Sound3DListener.cpp │ ├── snd_Sound3DManager.cpp │ ├── snd_SoundActor.cpp │ ├── snd_SoundArchive.cpp │ ├── snd_SoundArchiveFile.cpp │ ├── snd_SoundArchiveLoader.cpp │ ├── snd_SoundArchivePlayer.cpp │ ├── snd_SoundHandle.cpp │ ├── snd_SoundHeap.cpp │ ├── snd_SoundPlayer.cpp │ ├── snd_SoundStartable.cpp │ ├── snd_SoundSystem.cpp │ ├── snd_SoundThread.cpp │ ├── snd_StrmChannel.cpp │ ├── snd_StrmFile.cpp │ ├── snd_StrmPlayer.cpp │ ├── snd_StrmSound.cpp │ ├── snd_StrmSoundHandle.cpp │ ├── snd_Task.cpp │ ├── snd_TaskManager.cpp │ ├── snd_TaskThread.cpp │ ├── snd_Util.cpp │ ├── snd_Voice.cpp │ ├── snd_VoiceManager.cpp │ ├── snd_WaveFile.cpp │ ├── snd_WaveSound.cpp │ ├── snd_WaveSoundHandle.cpp │ ├── snd_WsdFile.cpp │ ├── snd_WsdPlayer.cpp │ └── snd_adpcm.cpp │ └── ut │ ├── ut_CharStrmReader.cpp │ ├── ut_CharWriter.cpp │ ├── ut_DvdFileStream.cpp │ ├── ut_DvdLockedFileStream.cpp │ ├── ut_FileStream.cpp │ ├── ut_Font.cpp │ ├── ut_IOStream.cpp │ ├── ut_LinkList.cpp │ ├── ut_LockedCache.cpp │ ├── ut_NandFileStream.cpp │ ├── ut_ResFont.cpp │ ├── ut_ResFontBase.cpp │ ├── ut_RomFont.cpp │ ├── ut_TagProcessorBase.cpp │ ├── ut_TextWriterBase.cpp │ ├── ut_binaryFileFormat.cpp │ └── ut_list.cpp ├── orig ├── eu │ └── .gitkeep ├── jp │ └── .gitkeep └── us │ └── .gitkeep ├── src └── kyoshin │ ├── action │ └── CActParamData.hpp │ └── appgame │ ├── CBattery.cpp │ ├── CBattery.hpp │ ├── CGame.cpp │ ├── CGame.hpp │ ├── CNandData.cpp │ ├── CNandData.hpp │ ├── CTaskGame.hpp │ ├── ErrMesData.cpp │ ├── ErrMesData.hpp │ ├── IScnRender.hpp │ ├── IUICf.hpp │ ├── UnkClass_80574F50.hpp │ ├── UnkClass_805764CC.hpp │ ├── cf │ ├── CArtsParam.cpp │ ├── CArtsSet.cpp │ ├── CArtsSet.hpp │ ├── CBattleManager.cpp │ ├── CBattleManager.hpp │ ├── CSuddenCommu.hpp │ ├── CTaskREvent.hpp │ ├── CVision.hpp │ ├── CfPadTask.hpp │ ├── CfSoundMan.hpp │ ├── IBattleEvent.hpp │ ├── IFactoryEvent.hpp │ ├── camera │ │ ├── CfCamLookatIntf.cpp │ │ └── CfCamLookatIntf.hpp │ ├── chain │ │ ├── CChain.cpp │ │ ├── CChain.hpp │ │ ├── CChainActor.cpp │ │ ├── CChainActor.hpp │ │ ├── CChainActorEne.hpp │ │ ├── CChainActorFactory.cpp │ │ ├── CChainActorFactory.hpp │ │ ├── CChainActorList.cpp │ │ ├── CChainActorList.hpp │ │ ├── CChainActorPc.cpp │ │ ├── CChainActorPc.hpp │ │ ├── CChainChance.hpp │ │ ├── CChainCombo.cpp │ │ ├── CChainCombo.hpp │ │ ├── CChainEffect.hpp │ │ ├── CChainMember.cpp │ │ ├── CChainMember.hpp │ │ ├── CChainTemp.hpp │ │ ├── CChainTime.hpp │ │ ├── CChainTimer.hpp │ │ ├── UnkClass_800D8DBC.hpp │ │ └── UnkClass_8027AD70.hpp │ ├── object │ │ ├── CAIAction.hpp │ │ ├── CActorParam.cpp │ │ ├── CActorParam.hpp │ │ ├── CActorState.hpp │ │ ├── CBattleState.hpp │ │ ├── CDebugState.hpp │ │ ├── CObjectParam.hpp │ │ ├── CObjectState.hpp │ │ ├── CfObject.hpp │ │ ├── CfObjectActor.cpp │ │ ├── CfObjectActor.hpp │ │ ├── CfObjectEff.hpp │ │ ├── CfObjectEne.hpp │ │ ├── CfObjectMap.hpp │ │ ├── CfObjectModel.hpp │ │ ├── CfObjectMove.hpp │ │ ├── CfObjectNpc.hpp │ │ ├── CfObjectObj.hpp │ │ ├── CfObjectPc.hpp │ │ ├── CfObjectTbox.hpp │ │ ├── IObjectInfo.hpp │ │ └── TBoxInfo.hpp │ ├── util │ │ └── Flusher.hpp │ └── voice │ │ ├── CCharVoiceMan.cpp │ │ ├── CCharVoiceMan.hpp │ │ └── cvsys │ │ ├── CVS_THREAD.cpp │ │ └── CVS_THREAD.hpp │ ├── code_8007C0F8.hpp │ ├── code_80135FDC.hpp │ ├── code_80296898.cpp │ ├── code_80296898.hpp │ ├── help │ ├── CHelp.hpp │ ├── CHelp_Target.cpp │ └── CHelp_Target.hpp │ ├── main.cpp │ ├── menu │ ├── CMenuFade.cpp │ └── CMenuFade.hpp │ └── plugin │ ├── ocBdat.hpp │ ├── pluginDeb.cpp │ ├── pluginDeb.hpp │ ├── pluginGame.cpp │ ├── pluginGame.hpp │ ├── pluginMain.cpp │ ├── pluginMain.hpp │ ├── pluginMath.cpp │ ├── pluginMath.hpp │ ├── pluginPad.cpp │ ├── pluginPad.hpp │ ├── pluginUnit.cpp │ ├── pluginVoice.cpp │ ├── pluginVoice.hpp │ ├── pluginWait.cpp │ ├── pluginWait.hpp │ └── plugins.hpp └── tools ├── __init__.py ├── changes_fmt.py ├── decompctx.py ├── download_tool.py ├── ninja_syntax.py ├── project.py └── transform_dep.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.clang-format -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/.vscode/warnings.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/README.md -------------------------------------------------------------------------------- /config/eu/build.sha1: -------------------------------------------------------------------------------- 1 | 10d34dbf901e5d6547718176303a6073ee80dda2 build/eu/main.dol 2 | -------------------------------------------------------------------------------- /config/eu/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/eu/config.yml -------------------------------------------------------------------------------- /config/eu/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/eu/splits.txt -------------------------------------------------------------------------------- /config/eu/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/eu/symbols.txt -------------------------------------------------------------------------------- /config/jp/build.sha1: -------------------------------------------------------------------------------- 1 | a564033aee46988743d8f5e6fdc50a8c65791160 build/jp/main.dol 2 | -------------------------------------------------------------------------------- /config/jp/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/jp/config.yml -------------------------------------------------------------------------------- /config/jp/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/jp/splits.txt -------------------------------------------------------------------------------- /config/jp/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/jp/symbols.txt -------------------------------------------------------------------------------- /config/us/build.sha1: -------------------------------------------------------------------------------- 1 | 214b15173fa3bad23a067476d58d3933ad7037b7 build/us/main.dol 2 | -------------------------------------------------------------------------------- /config/us/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/us/config.yml -------------------------------------------------------------------------------- /config/us/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/us/splits.txt -------------------------------------------------------------------------------- /config/us/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/config/us/symbols.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/configure.py -------------------------------------------------------------------------------- /docs/coding_style_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/docs/coding_style_guidelines.md -------------------------------------------------------------------------------- /docs/decompiling_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/docs/decompiling_guide.md -------------------------------------------------------------------------------- /include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/compat.h -------------------------------------------------------------------------------- /include/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/decomp.h -------------------------------------------------------------------------------- /include/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/lang.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/include/types.h -------------------------------------------------------------------------------- /libs/CriWare/include/criware/cri_adxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/include/criware/cri_adxf.h -------------------------------------------------------------------------------- /libs/CriWare/src/adx/adxf/adx_fcch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/adxf/adx_fcch.c -------------------------------------------------------------------------------- /libs/CriWare/src/adx/adxf/adx_fcch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/adxf/adx_fcch.h -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_atbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_atbl.c -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_atbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_atbl.h -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_ftbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_ftbl.c -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_ftbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_ftbl.h -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_wtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_wtbl.c -------------------------------------------------------------------------------- /libs/CriWare/src/adx/ahx/ahx_wtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/ahx/ahx_wtbl.h -------------------------------------------------------------------------------- /libs/CriWare/src/adx/sj/sj_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/sj/sj_crs.c -------------------------------------------------------------------------------- /libs/CriWare/src/adx/sj/sj_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/CriWare/src/adx/sj/sj_crs.h -------------------------------------------------------------------------------- /libs/NdevExi2A/include/NdevExi2A/ODEMU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/NdevExi2A/include/NdevExi2A/ODEMU.h -------------------------------------------------------------------------------- /libs/NdevExi2A/include/NdevExi2A/exi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/NdevExi2A/include/NdevExi2A/exi2.h -------------------------------------------------------------------------------- /libs/NdevExi2A/src/DebuggerDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/NdevExi2A/src/DebuggerDriver.c -------------------------------------------------------------------------------- /libs/NdevExi2A/src/exi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/NdevExi2A/src/exi2.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/algorithm -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/assert.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cctype -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cerrno -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/climits -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/clocale -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cmath -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cstdarg -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cstddef -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cstdio -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cstdlib -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cstring -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/ctype.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/cwchar -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/errno.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/exception -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/float.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/iterator -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/limits.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/locale.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/math.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/new -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/signal.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/stdarg.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/stdbool.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/stddef.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/stdio.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/stdlib.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/string.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/typeinfo -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/wchar.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/include/stl/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/include/stl/wctype.h -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/mem_TRK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/mem_TRK.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/msg.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/msgbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/msgbuf.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/mslsupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/mslsupp.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/notify.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/nubinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/nubinit.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/serpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/serpoll.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/MetroTRK/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/MetroTRK/support.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/MWRTTI.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/MWRTTI.cp -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/New.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/New.cp -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/__mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/__mem.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/__va_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/__va_arg.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/ptmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/ptmf.c -------------------------------------------------------------------------------- /libs/PowerPC_EABI_Support/src/Runtime/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/PowerPC_EABI_Support/src/Runtime/runtime.c -------------------------------------------------------------------------------- /libs/RVL_SDK/include/private/iostypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/private/iostypes.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/AI.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ARC.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/AX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/AXFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/AXFX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/BASE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/BASE.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/BTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/BTE.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/CX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/CX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/DB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/DB.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/DSP.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/DVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/DVD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ENC.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ESP.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/EUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/EUART.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/EXI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/EXI.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/FS.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/GX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/IPC.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/KPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/KPAD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/MEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/MEM.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/MTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/MTX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/NAND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/NAND.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/NAND/NANDCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/NAND/NANDCheck.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/NAND/NANDCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/NAND/NANDCore.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/NAND/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/NAND/nand.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/NWC24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/NWC24.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/OS.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/PAD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/SC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/SC.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/SI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/SI.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/TPL.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/USB.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/VI.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/WENC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/WENC.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/WPAD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/WUD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ai/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ai/ai.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ai/ai_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ai/ai_hardware.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/arc/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/arc/arc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AX.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXAlloc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXAux.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXCL.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXComp.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXOut.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXPB.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXProf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXProf.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXSPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXSPB.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/AXVPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/AXVPB.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ax/DSPCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ax/DSPCode.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/axfx/AXFXDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/axfx/AXFXDelay.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/axfx/AXFXHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/axfx/AXFXHooks.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/base/PPCArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/base/PPCArch.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/bte/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/bte/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/bte/NOTICE -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/bte/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/bte/README -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/db/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/db/db.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dsp/dsp.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dsp/dsp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dsp/dsp_debug.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dsp/dsp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dsp/dsp_task.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvd.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvderror.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvdfatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvdfatal.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvdfs.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvdidutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvdidutils.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/dvd/dvdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/dvd/dvdqueue.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/enc/encunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/enc/encunicode.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/enc/encutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/enc/encutility.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/esp/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/esp/esp.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/euart/euart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/euart/euart.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/exi/EXIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/exi/EXIBios.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/exi/EXICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/exi/EXICommon.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/exi/EXIUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/exi/EXIUart.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/fs/fs.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXAttr.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXBump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXBump.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXDraw.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXFifo.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXFrameBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXFrameBuf.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXGeometry.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXHardware.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXInit.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXInternal.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXLight.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXMisc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXPixel.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXTev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXTev.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXTexture.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXTransform.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXTypes.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/gx/GXVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/gx/GXVert.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ipc/ipcMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ipc/ipcMain.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ipc/ipcProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ipc/ipcProfile.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ipc/ipcclt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ipc/ipcclt.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/ipc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/ipc/memory.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mem/mem_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mem/mem_list.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/mtx.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/mtx44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/mtx44.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/mtxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/mtxtypes.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/mtxvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/mtxvec.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/quat.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/mtx/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/mtx/vec.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/nand/NANDCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/nand/NANDCheck.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/nand/NANDCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/nand/NANDCore.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/nand/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/nand/nand.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OS.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSAddress.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSAlarm.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSAlloc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSArena.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSCache.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSContext.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSCrc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSError.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSExec.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSFastCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSFastCast.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSFatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSFatal.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSFont.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSHardware.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSInterrupt.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSIpc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSLink.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSMemory.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSMessage.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSMutex.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSNet.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSPlayTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSPlayTime.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSReset.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSRtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSRtc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSSerial.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSStateTM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSStateTM.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSSync.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSThread.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSTime.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/os/OSUtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/os/OSUtf.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/pad/Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/pad/Pad.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/sc/scapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/sc/scapi.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/sc/scsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/sc/scsystem.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/si/SIBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/si/SIBios.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/si/SIHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/si/SIHardware.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/tpl/TPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/tpl/TPL.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/usb/usb.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/version.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/vi/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/vi/vi.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/vi/vi3in1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/vi/vi3in1.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/vi/vihardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/vi/vihardware.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/vi/vitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/vi/vitypes.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wenc/wenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wenc/wenc.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wpad/WPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wpad/WPAD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wpad/WPADMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wpad/WPADMem.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wpad/debug_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wpad/debug_msg.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wud/WUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wud/WUD.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wud/WUDHidHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wud/WUDHidHost.h -------------------------------------------------------------------------------- /libs/RVL_SDK/include/revolution/wud/debug_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/include/revolution/wud/debug_msg.h -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/AX/AX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/AX/AX.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/AX/AXComp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/AX/AXComp.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/AX/AXProf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/AX/AXProf.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/AX/DSPCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/AX/DSPCode.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ai/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ai/ai.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/arc/arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/arc/arc.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ax/AX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ax/AX.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ax/AXComp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ax/AXComp.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ax/AXProf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ax/AXProf.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ax/DSPCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ax/DSPCode.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/axfx/AXFXHooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/axfx/AXFXHooks.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/axfx/AXFXLfoTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/axfx/AXFXLfoTable.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/axfx/AXFXSrcCoef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/axfx/AXFXSrcCoef.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/base/PPCArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/base/PPCArch.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/cx/CXUncompression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/cx/CXUncompression.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/db/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/db/db.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dsp/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dsp/dsp.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dsp/dsp_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dsp/dsp_debug.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dsp/dsp_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dsp/dsp_task.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvd.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvdDeviceError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvdDeviceError.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvdFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvdFatal.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvd_broadway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvd_broadway.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvderror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvderror.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvdfs.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvdidutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvdidutils.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/dvd/dvdqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/dvd/dvdqueue.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/enc/encjapanese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/enc/encjapanese.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/enc/encunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/enc/encunicode.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/enc/encutility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/enc/encutility.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/esp/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/esp/esp.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/euart/euart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/euart/euart.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/exi/EXIBios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/exi/EXIBios.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/exi/EXICommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/exi/EXICommon.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/exi/EXIUart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/exi/EXIUart.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/fs/fs.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/gx/GXBump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/gx/GXBump.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/gx/GXDisplayList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/gx/GXDisplayList.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/gx/GXGeometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/gx/GXGeometry.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/gx/GXLight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/gx/GXLight.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/gx/GXTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/gx/GXTransform.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ipc/ipcMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ipc/ipcMain.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ipc/ipcProfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ipc/ipcProfile.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/ipc/ipcclt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/ipc/ipcclt.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mem/mem_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mem/mem_allocator.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mem/mem_expHeap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mem/mem_expHeap.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mem/mem_frameHeap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mem/mem_frameHeap.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mem/mem_heapCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mem/mem_heapCommon.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mem/mem_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mem/mem_list.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mtx/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mtx/mtx.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mtx/mtx44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mtx/mtx44.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mtx/mtxvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mtx/mtxvec.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mtx/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mtx/quat.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/mtx/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/mtx/vec.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OS.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSAlarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSAlarm.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSAlloc.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSArena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSArena.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSAudioSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSAudioSystem.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSCache.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSContext.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSCrc.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSError.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSError.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSExec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSExec.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSFatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSFatal.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSFont.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSInterrupt.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSIpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSIpc.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSLink.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSMemory.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSMessage.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSMutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSMutex.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSNandbootInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSNandbootInfo.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSNet.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSPlayRecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSPlayRecord.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSReboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSReboot.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSReset.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSRtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSRtc.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSStateFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSStateFlags.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSStateTM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSStateTM.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSSync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSSync.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSThread.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSTime.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/OSUtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/OSUtf.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/__ppc_eabi_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/__ppc_eabi_init.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/os/__start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/os/__start.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/pad/Pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/pad/Pad.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/sc/scapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/sc/scapi.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/sc/scapi_prdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/sc/scapi_prdinfo.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/sc/scsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/sc/scsystem.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/si/SISamplingRate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/si/SISamplingRate.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/tpl/TPL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/tpl/TPL.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/usb/usb.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/wpad/debug_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/wpad/debug_msg.c -------------------------------------------------------------------------------- /libs/RVL_SDK/src/revolution/wud/debug_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/RVL_SDK/src/revolution/wud/debug_msg.c -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/CArcItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core/CArcItem.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/CDesktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core/CDesktop.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/CException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core/CException.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/CPackItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core/CPackItem.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/CView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/core/CView.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/core/Unknown1.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | extern s8 lbl_80666438; 6 | -------------------------------------------------------------------------------- /libs/monolib/include/monolib/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/device.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/device/CDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/device/CDevice.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/device/CDeviceFileDvd.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /libs/monolib/include/monolib/device/CGXCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/device/CGXCache.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/effect/CERand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/effect/CERand.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/lib.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/lib/CLib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/lib/CLib.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/lib/CLibCri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/lib/CLibCri.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/lib/CLibHbm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/lib/CLibHbm.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/lib/CLibVM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/lib/CLibVM.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CCol3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CCol3.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CCol4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CCol4.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CMat34.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CMat34.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CMat44.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CMat44.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CPnt16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CPnt16.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CQuat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CQuat.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CRect16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CRect16.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CVec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CVec3.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/CVec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/CVec4.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/FastCast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/FastCast.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/MTRand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/MTRand.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/Random.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/math/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/math/Utility.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/monolib_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/monolib_types.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/nand/CNBanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/nand/CNBanner.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/nand/CNand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/nand/CNand.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/scn/CLight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/scn/CLight.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/util.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/util/FixStr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/util/FixStr.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/util/reslist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/util/reslist.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/vm/yvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/vm/yvm.h -------------------------------------------------------------------------------- /libs/monolib/include/monolib/work.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/work.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/work/CProc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/work/CProc.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/work/CProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/work/CProcess.hpp -------------------------------------------------------------------------------- /libs/monolib/include/monolib/work/CTTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/include/monolib/work/CTTask.hpp -------------------------------------------------------------------------------- /libs/monolib/src/core/CArcItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/core/CArcItem.cpp -------------------------------------------------------------------------------- /libs/monolib/src/core/CPackItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/core/CPackItem.cpp -------------------------------------------------------------------------------- /libs/monolib/src/core/CTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/core/CTaskManager.cpp -------------------------------------------------------------------------------- /libs/monolib/src/core/Unknown1.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | s8 lbl_80666438 = 1; 4 | -------------------------------------------------------------------------------- /libs/monolib/src/device/CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDevice.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceClock.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceFileJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceFileJob.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceGX.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceSC.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceVI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceVI.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/CDeviceVICb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/CDeviceVICb.cpp -------------------------------------------------------------------------------- /libs/monolib/src/device/code_80450B14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/device/code_80450B14.cpp -------------------------------------------------------------------------------- /libs/monolib/src/effect/CERand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/effect/CERand.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CAttrTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CAttrTransform.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CCol3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CCol3.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CCol4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CCol4.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CMat34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CMat34.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CMat44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CMat44.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CQuat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CQuat.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CRect16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CRect16.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CVec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CVec3.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/CVec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/CVec4.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/FastCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/FastCast.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/FloatUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/FloatUtils.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/MTRand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/MTRand.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/MathConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/MathConstants.cpp -------------------------------------------------------------------------------- /libs/monolib/src/math/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/math/Random.cpp -------------------------------------------------------------------------------- /libs/monolib/src/scn/CLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/scn/CLight.cpp -------------------------------------------------------------------------------- /libs/monolib/src/util/CChildListNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/util/CChildListNode.cpp -------------------------------------------------------------------------------- /libs/monolib/src/util/CDoubleListNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/util/CDoubleListNode.cpp -------------------------------------------------------------------------------- /libs/monolib/src/util/CPathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/util/CPathUtil.cpp -------------------------------------------------------------------------------- /libs/monolib/src/util/MemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/util/MemManager.cpp -------------------------------------------------------------------------------- /libs/monolib/src/vm/yvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/vm/yvm.c -------------------------------------------------------------------------------- /libs/monolib/src/work/CProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CProcess.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkControl.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkFlowSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkFlowSetup.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkFlowShutdownAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkFlowShutdownAll.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkFlowWiiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkFlowWiiMenu.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkFlowWiiPowerOff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkFlowWiiPowerOff.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkFlowWiiReset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkFlowWiiReset.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkThread.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkThreadSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkThreadSystem.cpp -------------------------------------------------------------------------------- /libs/monolib/src/work/CWorkUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/monolib/src/work/CWorkUtil.cpp -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/build_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/build_version.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/db/db_DbgPrintBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/db/db_DbgPrintBase.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/db/db_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/db/db_assert.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/db/db_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/db/db_console.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/dcc/g3d_3dsmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/dcc/g3d_3dsmax.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/dcc/g3d_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/dcc/g3d_basic.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/dcc/g3d_maya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/dcc/g3d_maya.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/dcc/g3d_xsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/dcc/g3d_xsi.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmchr.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmclr.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmobj.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmscn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmscn.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmshp.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmtexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmtexpat.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmtexsrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmtexsrt.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_anmvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_anmvis.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_calcmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_calcmaterial.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_calcview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_calcview.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_calcvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_calcvtx.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_calcworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_calcworld.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_camera.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_dcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_dcc.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_draw.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_draw1mat1shp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_draw1mat1shp.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_fog.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_init.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_light.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_obj.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_rtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_rtti.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_scnmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_scnmdl.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_scnmdlsmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_scnmdlsmpl.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_scnobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_scnobj.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_scnproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_scnproc.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_scnroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_scnroot.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_state.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/g3d_workmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/g3d_workmem.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/platform/g3d_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/platform/g3d_cpu.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/platform/g3d_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/platform/g3d_gpu.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/platform/g3d_tmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/platform/g3d_tmem.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanm.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmchr.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmclr.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmfog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmfog.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmscn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmscn.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmshp.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resanmvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resanmvis.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_rescommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_rescommon.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resdict.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resfile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resmat.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resmdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resmdl.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resnode.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_respltt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_respltt.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resshp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resshp.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_restev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_restev.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_restex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_restex.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/g3d/res/g3d_resvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/g3d/res/g3d_resvtx.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_animation.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_bounding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_bounding.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_common.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_drawInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_drawInfo.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_group.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_init.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_layout.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_material.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_pane.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_picture.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_resources.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_texMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_texMap.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_textBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_textBox.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_types.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/lyt/lyt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/lyt/lyt_window.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math/math_arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math/math_arithmetic.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math/math_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math/math_constant.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math/math_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math/math_geometry.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math/math_triangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math/math_triangular.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/math/math_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/math/math_types.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_AxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_AxManager.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_AxVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_AxVoice.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_AxfxImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_AxfxImpl.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Bank.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_BankFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_BankFile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_BasicPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_BasicPlayer.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_BasicSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_BasicSound.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Channel.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_EnvGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_EnvGenerator.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_FrameHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_FrameHeap.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_FxBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_FxBase.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_FxChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_FxChorus.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_FxDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_FxDelay.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_FxReverbHi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_FxReverbHi.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_InstancePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_InstancePool.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Lfo.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_MmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_MmlParser.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_MmlSeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_MmlSeqTrack.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_MoveValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_MoveValue.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_PlayerHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_PlayerHeap.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_RemoteSpeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_RemoteSpeaker.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SeqFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SeqFile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SeqPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SeqPlayer.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SeqSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SeqSound.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SeqTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SeqTrack.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Sound3DActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Sound3DActor.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundActor.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundArchive.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundHandle.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundHeap.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundPlayer.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundSystem.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_SoundThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_SoundThread.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_StrmChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_StrmChannel.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_StrmFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_StrmFile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_StrmPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_StrmPlayer.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_StrmSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_StrmSound.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Task.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_TaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_TaskManager.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_TaskThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_TaskThread.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Types.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Util.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_Voice.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_VoiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_VoiceManager.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_WaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_WaveFile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_WaveSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_WaveSound.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_WsdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_WsdFile.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_WsdPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_WsdPlayer.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/snd/snd_adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/snd/snd_adpcm.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/types_nw4r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/types_nw4r.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_CharStrmReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_CharStrmReader.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_CharWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_CharWriter.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_Color.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_DvdFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_DvdFileStream.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_FileStream.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_Font.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_IOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_IOStream.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_LinkList.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_LockedCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_LockedCache.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_NandFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_NandFileStream.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_NonCopyable.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_Rect.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_ResFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_ResFont.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_ResFontBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_ResFontBase.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_RomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_RomFont.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_RuntimeTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_RuntimeTypeInfo.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_TagProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_TagProcessor.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_TextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_TextWriter.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_TextWriterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_TextWriterBase.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_WideTextWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_WideTextWriter.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_algorithm.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_list.h -------------------------------------------------------------------------------- /libs/nw4r/include/nw4r/ut/ut_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/include/nw4r/ut/ut_lock.h -------------------------------------------------------------------------------- /libs/nw4r/src/db/db_DbgPrintBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/db/db_DbgPrintBase.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/db/db_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/db/db_assert.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/db/db_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/db/db_console.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/dw/dw_Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/dw/dw_Window.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/dcc/g3d_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/dcc/g3d_basic.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_anmobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_anmobj.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_anmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_anmscn.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_anmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_anmvis.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_camera.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_dcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_dcc.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_fog.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_init.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_light.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_obj.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_scnmdl1mat1shp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_scnmdl1mat1shp.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_scnobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_scnobj.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_scnproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_scnproc.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/g3d_workmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/g3d_workmem.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/platform/g3d_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/platform/g3d_cpu.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanm.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmamblight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmamblight.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmcamera.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmchr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmchr.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmclr.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmfog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmfog.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmlight.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmscn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmscn.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmshp.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmtexpat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmtexpat.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmtexsrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmtexsrt.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resanmvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resanmvis.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_rescommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_rescommon.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resdict.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resfile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_reslightset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_reslightset.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resmat.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resmdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resmdl.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resnode.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resshp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resshp.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_restev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_restev.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_restex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_restex.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/g3d/res/g3d_resvtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/g3d/res/g3d_resvtx.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_animation.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_arcResourceAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_arcResourceAccessor.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_bounding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_bounding.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_common.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_drawInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_drawInfo.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_group.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_init.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_layout.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_material.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_pane.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_picture.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_resourceAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_resourceAccessor.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_texMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_texMap.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_textBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_textBox.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/lyt/lyt_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/lyt/lyt_window.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/math/math_arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/math/math_arithmetic.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/math/math_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/math/math_geometry.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/math/math_triangular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/math/math_triangular.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/math/math_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/math/math_types.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_AnimSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_AnimSound.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_AxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_AxManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_AxVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_AxVoice.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_AxVoiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_AxVoiceManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_AxfxImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_AxfxImpl.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Bank.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_BankFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_BankFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_BasicPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_BasicPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_BasicSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_BasicSound.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Channel.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_DvdSoundArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_DvdSoundArchive.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_EnvGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_EnvGenerator.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_ExternalSoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_ExternalSoundPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_FrameHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_FrameHeap.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_FxChorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_FxChorus.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_FxDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_FxDelay.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_FxReverbHi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_FxReverbHi.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_FxReverbHiDpl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_FxReverbHiDpl2.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_InstancePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_InstancePool.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Lfo.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_MemorySoundArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_MemorySoundArchive.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_MidiSeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_MidiSeqPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_MmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_MmlParser.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_MmlSeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_MmlSeqTrack.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_MmlSeqTrackAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_MmlSeqTrackAllocator.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_NandSoundArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_NandSoundArchive.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_RemoteSpeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_RemoteSpeaker.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_RemoteSpeakerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_RemoteSpeakerManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SeqFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SeqFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SeqPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SeqPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SeqSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SeqSound.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SeqSoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SeqSoundHandle.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SeqTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SeqTrack.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Sound3DActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Sound3DActor.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Sound3DListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Sound3DListener.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Sound3DManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Sound3DManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundActor.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundArchive.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundArchiveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundArchiveFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundArchiveLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundArchiveLoader.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundArchivePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundArchivePlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundHandle.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundHeap.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundStartable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundStartable.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundSystem.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_SoundThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_SoundThread.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_StrmChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_StrmChannel.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_StrmFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_StrmFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_StrmPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_StrmPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_StrmSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_StrmSound.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_StrmSoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_StrmSoundHandle.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Task.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_TaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_TaskManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_TaskThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_TaskThread.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Util.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_Voice.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_VoiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_VoiceManager.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_WaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_WaveFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_WaveSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_WaveSound.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_WaveSoundHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_WaveSoundHandle.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_WsdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_WsdFile.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_WsdPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_WsdPlayer.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/snd/snd_adpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/snd/snd_adpcm.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_CharStrmReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_CharStrmReader.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_CharWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_CharWriter.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_DvdFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_DvdFileStream.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_DvdLockedFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_DvdLockedFileStream.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_FileStream.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_Font.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_IOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_IOStream.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_LinkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_LinkList.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_LockedCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_LockedCache.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_NandFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_NandFileStream.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_ResFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_ResFont.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_ResFontBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_ResFontBase.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_RomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_RomFont.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_TagProcessorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_TagProcessorBase.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_TextWriterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_TextWriterBase.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_binaryFileFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_binaryFileFormat.cpp -------------------------------------------------------------------------------- /libs/nw4r/src/ut/ut_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/libs/nw4r/src/ut/ut_list.cpp -------------------------------------------------------------------------------- /orig/eu/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orig/jp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orig/us/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/action/CActParamData.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void func_80057CDC(); 4 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/CBattery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CBattery.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CBattery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CBattery.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CGame.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CGame.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CNandData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CNandData.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CNandData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CNandData.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/CTaskGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/CTaskGame.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/ErrMesData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/ErrMesData.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/ErrMesData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/ErrMesData.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/IScnRender.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class IScnRender { 4 | 5 | }; 6 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/IUICf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/IUICf.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/UnkClass_80574F50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/UnkClass_80574F50.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/UnkClass_805764CC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/UnkClass_805764CC.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CArtsParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CArtsParam.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CArtsSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CArtsSet.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CArtsSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CArtsSet.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CBattleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CBattleManager.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CBattleManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CBattleManager.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CSuddenCommu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CSuddenCommu.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CTaskREvent.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | u32 func_80164910(); 6 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CVision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CVision.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CfPadTask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CfPadTask.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/CfSoundMan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/CfSoundMan.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/IBattleEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/IBattleEvent.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/IFactoryEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/IFactoryEvent.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChain.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChain.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainActor.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActorFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActorFactory.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActorPc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainActorPc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainActorPc.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainChance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainChance.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainCombo.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainCombo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainCombo.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainEffect.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainMember.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainMember.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainMember.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainTemp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainTemp.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainTime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainTime.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/chain/CChainTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/chain/CChainTimer.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CAIAction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CAIAction.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CActorParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CActorParam.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CActorParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CActorParam.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CActorState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CActorState.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CBattleState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CBattleState.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CDebugState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CDebugState.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CObjectParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CObjectParam.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CObjectState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CObjectState.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObject.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectEff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectEff.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectEne.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectEne.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectMap.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectMove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectMove.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectNpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectNpc.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectObj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectObj.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectPc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectPc.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/CfObjectTbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/CfObjectTbox.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/IObjectInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/IObjectInfo.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/object/TBoxInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/object/TBoxInfo.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/util/Flusher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/util/Flusher.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/voice/CCharVoiceMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/voice/CCharVoiceMan.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/cf/voice/CCharVoiceMan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/cf/voice/CCharVoiceMan.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/code_8007C0F8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/code_8007C0F8.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/code_80135FDC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/code_80135FDC.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/code_80296898.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/code_80296898.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/code_80296898.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/code_80296898.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/help/CHelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/help/CHelp.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/help/CHelp_Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/help/CHelp_Target.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/help/CHelp_Target.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/help/CHelp_Target.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/main.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/menu/CMenuFade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/menu/CMenuFade.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/menu/CMenuFade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/menu/CMenuFade.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/ocBdat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/ocBdat.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginDeb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginDeb.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginDeb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginDeb.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginGame.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginGame.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginMain.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginMain.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void pluginRegist(); 4 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginMath.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginMath.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginPad.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginPad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginPad.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginUnit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginVoice.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginVoice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginVoice.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginWait.cpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/pluginWait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/pluginWait.hpp -------------------------------------------------------------------------------- /src/kyoshin/appgame/plugin/plugins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/src/kyoshin/appgame/plugin/plugins.hpp -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/changes_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/changes_fmt.py -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbret/xenoblade/HEAD/tools/transform_dep.py --------------------------------------------------------------------------------