├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── ci.yml │ └── format.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── config ├── cn │ ├── drmario64.cn.md5 │ ├── drmario64.cn.yaml │ ├── drmario64_uncompressed.cn.md5 │ ├── relocs │ │ └── reloc_addrs.cn.txt │ └── symbol_addrs │ │ ├── ignored_addresses.txt │ │ ├── symbol_addrs_boot.txt │ │ ├── symbol_addrs_buffers.txt │ │ ├── symbol_addrs_dma_table.txt │ │ └── symbol_addrs_main_segment.txt ├── gw │ ├── drmario64.gw.md5 │ ├── drmario64.gw.yaml │ ├── drmario64_uncompressed.gw.md5 │ ├── relocs │ │ └── reloc_addrs.gw.txt │ └── symbol_addrs │ │ ├── ignored_addresses.txt │ │ ├── symbol_addrs_boot.txt │ │ ├── symbol_addrs_buffers.txt │ │ ├── symbol_addrs_dma_table.txt │ │ ├── symbol_addrs_libultra.txt │ │ └── symbol_addrs_main_segment.txt ├── slinky.yaml └── us │ ├── drmario64.us.md5 │ ├── drmario64.us.yaml │ ├── drmario64_uncompressed.us.md5 │ ├── relocs │ └── reloc_addrs.us.txt │ └── symbol_addrs │ ├── ignored_addresses.txt │ ├── symbol_addrs_boot.txt │ ├── symbol_addrs_buffers.txt │ ├── symbol_addrs_dma_table.txt │ └── symbol_addrs_main_segment.txt ├── decomp.yaml ├── diff.py ├── diff_settings.py ├── docs ├── index.html └── lib │ └── uPlot │ ├── .editorconfig │ ├── .github │ └── FUNDING.yml │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── bench │ ├── ApexCharts.html │ ├── CanvasJS.html │ ├── Chart.js4-sine-stream.html │ ├── Chart.js4.html │ ├── ECharts5-sine-stream.html │ ├── ECharts5.html │ ├── Flot.html │ ├── Highcharts.html │ ├── LightningChart.html │ ├── Plotly.js.html │ ├── ZingChart.html │ ├── amCharts5.html │ ├── data.json │ ├── dvxCharts.html │ ├── dygraphs.html │ ├── fmtDate.js │ ├── lightweight-charts.html │ ├── results.json │ ├── table.js │ ├── table.md │ ├── uPlot-10M.html │ ├── uPlot-600-series.html │ └── uPlot.html │ ├── demos │ ├── add-del-series.html │ ├── align-data.html │ ├── annotations.html │ ├── arcsinh-scales.html │ ├── area-fill.html │ ├── axis-autosize.html │ ├── axis-control.html │ ├── bars-grouped-stacked.html │ ├── box-whisker.html │ ├── candlestick-ohlc.html │ ├── cursor-bind.html │ ├── cursor-snap.html │ ├── cursor-tooltip.html │ ├── data-smoothing.html │ ├── data │ │ ├── AAPL.csv │ │ ├── AMD.csv │ │ ├── AMZN.csv │ │ ├── CSCO.csv │ │ ├── FB.csv │ │ ├── MSFT.csv │ │ ├── QCOM.csv │ │ ├── SBUX.csv │ │ ├── TSLA.csv │ │ ├── ZNGA.csv │ │ ├── results.json │ │ ├── rustc-perf.json │ │ ├── sparse.json │ │ ├── taxi-trips.json │ │ └── traffic.json │ ├── dependent-scale.html │ ├── draw-hooks.html │ ├── focus-cursor.html │ ├── gradients.html │ ├── grid-over-series.html │ ├── grouped-bars.js │ ├── high-low-bands.html │ ├── index.html │ ├── latency-heatmap.html │ ├── lib │ │ ├── ASAP-optimized.js │ │ ├── ASAP-simple.js │ │ ├── distr.js │ │ ├── placement.min.js │ │ ├── quadtree.js │ │ ├── rand.js │ │ ├── randomWalk.js │ │ ├── sgg.js │ │ ├── stats.js │ │ └── uDSV.iife.min.js │ ├── line-paths.html │ ├── log-scales.html │ ├── log-scales2.html │ ├── measure-datums.html │ ├── missing-data.html │ ├── months-ru.html │ ├── months.html │ ├── multi-bars.html │ ├── nearest-non-null.html │ ├── nice-scale.html │ ├── no-data.html │ ├── path-gap-clip.html │ ├── pixel-align.html │ ├── points.html │ ├── resize.html │ ├── scale-padding.html │ ├── scales-dir-ori.html │ ├── scatter.html │ ├── scroll-sync.html │ ├── sine-stream.html │ ├── soft-minmax.html │ ├── sparklines-bars.html │ ├── sparklines.html │ ├── sparse.html │ ├── stack.js │ ├── stacked-series.html │ ├── stream-data.html │ ├── svg-image.html │ ├── sync-cursor.html │ ├── sync-y-zero.html │ ├── thin-bars-stroke-fill.html │ ├── time-periods.html │ ├── timeline-discrete.html │ ├── timezones-dst.html │ ├── tooltips-closest.html │ ├── tooltips.html │ ├── trendlines.html │ ├── update-cursor-select-resize.html │ ├── wind-direction.html │ ├── y-scale-drag.html │ ├── y-shifted-series.html │ ├── zoom-fetch.html │ ├── zoom-ranger-grips.html │ ├── zoom-ranger-xy.html │ ├── zoom-ranger.html │ ├── zoom-touch.html │ ├── zoom-variations.html │ └── zoom-wheel.html │ ├── dist │ ├── uPlot.cjs.js │ ├── uPlot.d.ts │ ├── uPlot.esm.js │ ├── uPlot.iife.js │ ├── uPlot.iife.min.js │ └── uPlot.min.css │ ├── docs │ └── README.md │ ├── img │ ├── chrome-flags.png │ ├── chrome-gpu.png │ └── chrome-perf-monitor.png │ ├── jsconfig.json │ ├── package.json │ ├── perf.png │ ├── rollup.config.js │ ├── src │ ├── dom.js │ ├── domClasses.js │ ├── feats.js │ ├── fmtDate.js │ ├── opts.js │ ├── paths │ │ ├── bars.js │ │ ├── catmullRomCentrip.js │ │ ├── linear.js │ │ ├── monotoneCubic.js │ │ ├── points.js │ │ ├── spline.js │ │ ├── stepped.js │ │ └── utils.js │ ├── strings.js │ ├── sync.js │ ├── uPlot.css │ ├── uPlot.js │ └── utils.js │ └── uPlot.png ├── include ├── 020D10.h ├── 055C40.h ├── 065080.h ├── 066080.h ├── 066580.h ├── ai.h ├── aiset.h ├── alignment.h ├── assets │ ├── coffee │ │ └── coffee01.h │ ├── game_etc │ │ └── etc.h │ ├── title │ │ ├── title_all.h │ │ └── title_bmp.h │ └── waku │ │ └── waku2.h ├── attributes.h ├── audio │ ├── music_driver.h │ ├── snd_seq.h │ └── sound.h ├── bg_tasks.h ├── boot_main.h ├── buffers.h ├── calc.h ├── calcsub.h ├── char_anime.h ├── color.h ├── debug_menu.h ├── defines.h ├── dm_game_main.h ├── dm_manual_main.h ├── dm_thread.h ├── dm_title_main.h ├── dm_virus_init.h ├── dma_table.h ├── dmadata.h ├── font.h ├── game_etc.h ├── gamemap.h ├── gateway.h ├── graphbin.h ├── graphic.h ├── gzip.h ├── hasm.h ├── include_asm.h ├── joy.h ├── labels.inc ├── libc │ ├── assert.h │ ├── ctype.h │ ├── math.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ └── stdint.h ├── libgcc │ ├── longlong.h │ └── mips.h ├── libkmc │ ├── explog.h │ └── kmclib.h ├── libultra.h ├── lws.h ├── macro.inc ├── macros_defines.h ├── main.h ├── main1x.h ├── main_menu.h ├── main_story.h ├── msgwnd.h ├── nnsched.h ├── other_types.h ├── record.h ├── recwritingmsg.h ├── replay.h ├── rom_offsets.h ├── screen_print │ ├── debug_print.h │ ├── printer.h │ └── printf_impl.h ├── segment_symbols.h ├── stack.h ├── static.h ├── tex_func.h ├── unk.h ├── util.h ├── version.h └── vr_init.h ├── lib ├── Makefile ├── libmus │ ├── .gitignore │ ├── include │ │ └── PR │ │ │ ├── libmus.h │ │ │ ├── libmus_data.h │ │ │ ├── n_libaudio_sc.h │ │ │ └── n_libaudio_sn_sc.h │ └── src │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── Makefile.dos │ │ ├── aud_dma.c │ │ ├── aud_dma.h │ │ ├── aud_samples.c │ │ ├── aud_samples.h │ │ ├── aud_sched.c │ │ ├── aud_sched.h │ │ ├── aud_thread.c │ │ ├── aud_thread.h │ │ ├── lib_memory.c │ │ ├── lib_memory.h │ │ ├── libmus.h │ │ ├── libmus_config.h │ │ ├── libmus_data.h │ │ ├── n_abi.h │ │ ├── n_libaudio_sc.h │ │ ├── n_libaudio_sn_sc.h │ │ ├── n_synthInternals.h │ │ ├── player.c │ │ ├── player.h │ │ ├── player_api.c │ │ ├── player_commands.c │ │ ├── player_fifo.c │ │ ├── player_fifo.h │ │ ├── player_fx.c │ │ ├── player_fx.h │ │ └── synthInternals.h └── ultralib │ ├── .github │ └── workflows │ │ ├── ci_egcs.txt │ │ ├── ci_gcc.yml │ │ └── ci_ido.yml │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.md │ ├── base │ ├── I │ │ ├── libgultra.txt │ │ ├── libgultra_d.txt │ │ ├── libgultra_rom.txt │ │ ├── libultra.txt │ │ ├── libultra_d.txt │ │ └── libultra_rom.txt │ ├── J │ │ ├── libgultra.txt │ │ ├── libgultra_d.txt │ │ ├── libgultra_rom.txt │ │ ├── libultra.txt │ │ ├── libultra_d.txt │ │ └── libultra_rom.txt │ ├── K │ │ ├── libgultra.txt │ │ ├── libgultra_d.txt │ │ ├── libgultra_rom.txt │ │ ├── libultra.txt │ │ ├── libultra_d.txt │ │ └── libultra_rom.txt │ └── L │ │ ├── libgultra.txt │ │ ├── libgultra_d.txt │ │ ├── libgultra_rom.txt │ │ ├── libultra.txt │ │ ├── libultra_d.txt │ │ └── libultra_rom.txt │ ├── include │ ├── PR │ │ ├── R4300.h │ │ ├── abi.h │ │ ├── gbi.h │ │ ├── gs2dex.h │ │ ├── gt.h │ │ ├── gu.h │ │ ├── libaudio.h │ │ ├── mbi.h │ │ ├── os.h │ │ ├── os_ai.h │ │ ├── os_cache.h │ │ ├── os_cont.h │ │ ├── os_convert.h │ │ ├── os_debug.h │ │ ├── os_eeprom.h │ │ ├── os_error.h │ │ ├── os_exception.h │ │ ├── os_flash.h │ │ ├── os_gbpak.h │ │ ├── os_gio.h │ │ ├── os_host.h │ │ ├── os_internal.h │ │ ├── os_internal_debug.h │ │ ├── os_internal_error.h │ │ ├── os_internal_exception.h │ │ ├── os_internal_flash.h │ │ ├── os_internal_gio.h │ │ ├── os_internal_host.h │ │ ├── os_internal_reg.h │ │ ├── os_internal_rsp.h │ │ ├── os_internal_si.h │ │ ├── os_internal_thread.h │ │ ├── os_internal_tlb.h │ │ ├── os_libc.h │ │ ├── os_message.h │ │ ├── os_motor.h │ │ ├── os_pfs.h │ │ ├── os_pi.h │ │ ├── os_rdp.h │ │ ├── os_reg.h │ │ ├── os_rsp.h │ │ ├── os_si.h │ │ ├── os_system.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ ├── os_tlb.h │ │ ├── os_version.h │ │ ├── os_vi.h │ │ ├── os_voice.h │ │ ├── ramrom.h │ │ ├── rcp.h │ │ ├── rdb.h │ │ ├── region.h │ │ ├── rmon.h │ │ ├── sched.h │ │ ├── sp.h │ │ ├── sptask.h │ │ ├── ucode.h │ │ ├── ultraerror.h │ │ ├── ultralog.h │ │ └── ultratypes.h │ ├── PRinternal │ │ ├── controller.h │ │ ├── controller_gbpak.h │ │ ├── controller_voice.h │ │ ├── dbgdefs.h │ │ ├── dbgproto.h │ │ ├── macros.h │ │ ├── osint.h │ │ ├── piint.h │ │ ├── rmonint.h │ │ ├── siint.h │ │ └── viint.h │ ├── asm.h │ ├── assert.h │ ├── fpregdef.h │ ├── gcc │ │ ├── math.h │ │ ├── memory.h │ │ ├── sgidefs.h │ │ ├── stdarg.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ └── string.h │ ├── ido │ │ ├── math.h │ │ ├── memory.h │ │ ├── stdarg.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ └── string.h │ ├── modern_gcc │ │ ├── math.h │ │ ├── memory.h │ │ ├── sgidefs.h │ │ ├── stdarg.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ └── string.h │ ├── regdef.h │ ├── sgidefs.h │ ├── sys │ │ ├── asm.h │ │ ├── fpregdef.h │ │ └── regdef.h │ ├── ultra64.h │ └── ultrahost.h │ ├── makefiles │ ├── gcc.mk │ ├── ido.mk │ └── modern_gcc.mk │ ├── src │ ├── audio │ │ ├── Makefile │ │ ├── auxbus.c │ │ ├── bnkf.c │ │ ├── cents2ratio.c │ │ ├── copy.c │ │ ├── cseq.c │ │ ├── cseq.h │ │ ├── cseqp.h │ │ ├── cspdelete.c │ │ ├── cspgetchlvol.c │ │ ├── cspgetfxmix.c │ │ ├── cspgetpan.c │ │ ├── cspgetpriority.c │ │ ├── cspgetprogram.c │ │ ├── cspgetseq.c │ │ ├── cspgetstate.c │ │ ├── cspgettempo.c │ │ ├── cspgetvol.c │ │ ├── csplayer.c │ │ ├── cspplay.c │ │ ├── cspsendmidi.c │ │ ├── cspsetbank.c │ │ ├── cspsetchlvol.c │ │ ├── cspsetfxmix.c │ │ ├── cspsetpan.c │ │ ├── cspsetpriority.c │ │ ├── cspsetprogram.c │ │ ├── cspsetseq.c │ │ ├── cspsettempo.c │ │ ├── cspsetvol.c │ │ ├── cspstop.c │ │ ├── drvrnew.c │ │ ├── env.c │ │ ├── event.c │ │ ├── filter.c │ │ ├── heapalloc.c │ │ ├── heapcheck.c │ │ ├── heapinit.c │ │ ├── initfx.h │ │ ├── load.c │ │ ├── mainbus.c │ │ ├── parse_abi.c │ │ ├── resample.c │ │ ├── reverb.c │ │ ├── save.c │ │ ├── seq.c │ │ ├── seq.h │ │ ├── seqp.h │ │ ├── seqpdelete.c │ │ ├── seqpgetchlvol.c │ │ ├── seqpgetfxmix.c │ │ ├── seqpgetpan.c │ │ ├── seqpgetpriority.c │ │ ├── seqpgetprogram.c │ │ ├── seqpgetseq.c │ │ ├── seqpgetstate.c │ │ ├── seqpgettempo.c │ │ ├── seqpgetvol.c │ │ ├── seqplayer.c │ │ ├── seqploop.c │ │ ├── seqpplay.c │ │ ├── seqpsendmidi.c │ │ ├── seqpsetbank.c │ │ ├── seqpsetchlvol.c │ │ ├── seqpsetfxmix.c │ │ ├── seqpsetpan.c │ │ ├── seqpsetpriority.c │ │ ├── seqpsetprogram.c │ │ ├── seqpsetseq.c │ │ ├── seqpsettempo.c │ │ ├── seqpsetvol.c │ │ ├── seqpstop.c │ │ ├── sl.c │ │ ├── sndp.h │ │ ├── sndpallocate.c │ │ ├── sndpdeallocate.c │ │ ├── sndpdelete.c │ │ ├── sndpgetsound.c │ │ ├── sndpgetstate.c │ │ ├── sndplayer.c │ │ ├── sndpplay.c │ │ ├── sndpplayat.c │ │ ├── sndpsetfxmix.c │ │ ├── sndpsetpan.c │ │ ├── sndpsetpitch.c │ │ ├── sndpsetpriority.c │ │ ├── sndpsetsound.c │ │ ├── sndpsetvol.c │ │ ├── sndpstop.c │ │ ├── synaddplayer.c │ │ ├── synallocfx.c │ │ ├── synallocvoice.c │ │ ├── syndelete.c │ │ ├── synfreefx.c │ │ ├── synfreevoice.c │ │ ├── syngetfxref.c │ │ ├── syngetpriority.c │ │ ├── synremoveplayer.c │ │ ├── synsetfxmix.c │ │ ├── synsetfxparam.c │ │ ├── synsetpan.c │ │ ├── synsetpitch.c │ │ ├── synsetpriority.c │ │ ├── synsetvol.c │ │ ├── synstartvoice.c │ │ ├── synstartvoiceparam.c │ │ ├── synstopvoice.c │ │ ├── synthInternals.h │ │ └── synthesizer.c │ ├── debug │ │ ├── assert.c │ │ ├── assertbreak.s │ │ ├── atomic.c │ │ ├── kdebugserver.c │ │ ├── osint_debug.h │ │ ├── profile.c │ │ ├── threadprofile.c │ │ ├── threadprofileclear.c │ │ ├── threadprofileinit.c │ │ ├── threadprofilereadcount.c │ │ ├── threadprofilereadtime.c │ │ ├── threadprofilestart.c │ │ └── threadprofilestop.c │ ├── error │ │ ├── commonerror.c │ │ ├── error.c │ │ ├── errorasm.s │ │ └── kmcprintf.c │ ├── flash │ │ ├── flashallerase.c │ │ ├── flashallerasethrough.c │ │ ├── flashchange.c │ │ ├── flashcheckeraseend.c │ │ ├── flashclearstatus.c │ │ ├── flashgetaddr.c │ │ ├── flashinit.c │ │ ├── flashreadarray.c │ │ ├── flashreadid.c │ │ ├── flashreadstatus.c │ │ ├── flashreinit.c │ │ ├── flashsectorerase.c │ │ ├── flashsectorerasethrough.c │ │ ├── flashwritearray.c │ │ └── flashwritebuffer.c │ ├── gio │ │ ├── giointerrupt.c │ │ └── giorawinterrupt.c │ ├── gt │ │ ├── Makefile │ │ ├── dumpturbo.c │ │ ├── gt.c │ │ └── gtint.h │ ├── gu │ │ ├── Makefile │ │ ├── align.c │ │ ├── cosf.c │ │ ├── coss.c │ │ ├── dump_gbi.c │ │ ├── frustum.c │ │ ├── guint.h │ │ ├── guloadtile_bug.c │ │ ├── libm_vals.s │ │ ├── loadtextureblockmipmap.c │ │ ├── lookat.c │ │ ├── lookathil.c │ │ ├── lookatref.c │ │ ├── lookatstereo.c │ │ ├── mtxcatf.c │ │ ├── mtxcatl.c │ │ ├── mtxutil.c │ │ ├── normalize.c │ │ ├── ortho.c │ │ ├── parse_gbi.c │ │ ├── parse_rdp.c │ │ ├── parse_string.c │ │ ├── perspective.c │ │ ├── position.c │ │ ├── poslight.c │ │ ├── poslighthil.c │ │ ├── random.c │ │ ├── readme.txt │ │ ├── rotate.c │ │ ├── rotaterpy.c │ │ ├── scale.c │ │ ├── sinf.c │ │ ├── sins.c │ │ ├── sintable.h │ │ ├── sqrtf.s │ │ ├── translate.c │ │ ├── us2dex.c │ │ ├── us2dex2_emu.c │ │ ├── us2dex_emu.c │ │ └── usprite.c │ ├── host │ │ ├── host_ptn64.c │ │ ├── readhost.c │ │ └── writehost.c │ ├── io │ │ ├── ai.c │ │ ├── aigetlen.c │ │ ├── aigetstat.c │ │ ├── aisetfreq.c │ │ ├── aisetnextbuf.c │ │ ├── cartrominit.c │ │ ├── contchannelreset.c │ │ ├── conteeplongread.c │ │ ├── conteeplongwrite.c │ │ ├── conteepprobe.c │ │ ├── conteepread.c │ │ ├── conteepwrite.c │ │ ├── contpfs.c │ │ ├── contquery.c │ │ ├── contramread.c │ │ ├── contramwrite.c │ │ ├── contreaddata.c │ │ ├── contreset.c │ │ ├── controller.c │ │ ├── contsetch.c │ │ ├── crc.c │ │ ├── devmgr.c │ │ ├── dp.c │ │ ├── dpctr.c │ │ ├── dpgetstat.c │ │ ├── dpsetnextbuf.c │ │ ├── dpsetstat.c │ │ ├── driverominit.c │ │ ├── epidma.c │ │ ├── epigettype.c │ │ ├── epilinkhandle.c │ │ ├── epirawdma.c │ │ ├── epirawread.c │ │ ├── epirawwrite.c │ │ ├── epiread.c │ │ ├── epiwrite.c │ │ ├── gbpakcheckconnector.c │ │ ├── gbpakgetbank.c │ │ ├── gbpakgetstatus.c │ │ ├── gbpakinit.c │ │ ├── gbpakpower.c │ │ ├── gbpakreadid.c │ │ ├── gbpakreadwrite.c │ │ ├── gbpaksetbank.c │ │ ├── leodiskinit.c │ │ ├── leointerrupt.c │ │ ├── motor.c │ │ ├── pfsallocatefile.c │ │ ├── pfschecker.c │ │ ├── pfsdeletefile.c │ │ ├── pfsfilestate.c │ │ ├── pfsfreeblocks.c │ │ ├── pfsgetlabel.c │ │ ├── pfsgetstatus.c │ │ ├── pfsinit.c │ │ ├── pfsinitpak.c │ │ ├── pfsisplug.c │ │ ├── pfsnumfiles.c │ │ ├── pfsreadwritefile.c │ │ ├── pfsreformat.c │ │ ├── pfsrepairid.c │ │ ├── pfssearchfile.c │ │ ├── pfsselectbank.c │ │ ├── pfssetlabel.c │ │ ├── pi.c │ │ ├── piacs.c │ │ ├── pidma.c │ │ ├── pigetcmdq.c │ │ ├── pigetstat.c │ │ ├── pigettype.c │ │ ├── pimgr.c │ │ ├── pirawdma.c │ │ ├── pirawread.c │ │ ├── pirawwrite.c │ │ ├── piread.c │ │ ├── piwrite.c │ │ ├── si.c │ │ ├── siacs.c │ │ ├── sigetstat.c │ │ ├── sirawdma.c │ │ ├── sirawread.c │ │ ├── sirawwrite.c │ │ ├── sp.c │ │ ├── spgetstat.c │ │ ├── sprawdma.c │ │ ├── sprawread.c │ │ ├── sprawwrite.c │ │ ├── spsetpc.c │ │ ├── spsetstat.c │ │ ├── sptask.c │ │ ├── sptaskyield.c │ │ ├── sptaskyielded.c │ │ ├── vi.c │ │ ├── viblack.c │ │ ├── viextendvstart.c │ │ ├── vifade.c │ │ ├── vigetcurrcontext.c │ │ ├── vigetcurrframebuf.c │ │ ├── vigetfield.c │ │ ├── vigetline.c │ │ ├── vigetmode.c │ │ ├── vigetnextcontext.c │ │ ├── vigetnextframebuf.c │ │ ├── vigetstat.c │ │ ├── vimgr.c │ │ ├── virepeatline.c │ │ ├── visetevent.c │ │ ├── visetmode.c │ │ ├── visetspecial.c │ │ ├── visetxscale.c │ │ ├── visetyscale.c │ │ ├── viswapbuf.c │ │ ├── viswapcontext.c │ │ └── vitbl.c │ ├── libc │ │ ├── bcmp.s │ │ ├── bcopy.s │ │ ├── bzero.s │ │ ├── ldiv.c │ │ ├── ll.c │ │ ├── llbit.c │ │ ├── llcvt.c │ │ ├── sprintf.c │ │ ├── string.c │ │ ├── syncprintf.c │ │ ├── xldtob.c │ │ ├── xlitob.c │ │ ├── xprintf.c │ │ └── xstdio.h │ ├── log │ │ ├── delay.s │ │ ├── log.c │ │ └── logfloat.c │ ├── mgu │ │ ├── Makefile │ │ ├── asm.h │ │ ├── mtxcatf.s │ │ ├── mtxcatl.c │ │ ├── mtxf2l.s │ │ ├── mtxident.s │ │ ├── mtxidentf.s │ │ ├── mtxl2f.s │ │ ├── mtxxfmf.c │ │ ├── mtxxfml.c │ │ ├── normalize.s │ │ ├── regdef.h │ │ ├── rotate.c │ │ ├── scale.s │ │ ├── scalef.s │ │ ├── translate.s │ │ └── translatef.s │ ├── monutil.s │ ├── os │ │ ├── ackramromread.c │ │ ├── ackramromwrite.c │ │ ├── afterprenmi.c │ │ ├── atomic.c │ │ ├── createmesgqueue.c │ │ ├── createthread.c │ │ ├── destroythread.c │ │ ├── exceptasm.h │ │ ├── exceptasm.s │ │ ├── exit.c │ │ ├── getactivequeue.c │ │ ├── getcause.s │ │ ├── getcompare.s │ │ ├── getconfig.s │ │ ├── getcount.s │ │ ├── getcurrfaultthread.c │ │ ├── getfpccsr.s │ │ ├── gethwinterrupt.c │ │ ├── getintmask.s │ │ ├── getmemsize.c │ │ ├── getnextfaultthread.c │ │ ├── getsr.s │ │ ├── getthreadid.c │ │ ├── getthreadpri.c │ │ ├── gettime.c │ │ ├── gettlbasid.s │ │ ├── gettlbhi.s │ │ ├── gettlblo0.s │ │ ├── gettlblo1.s │ │ ├── gettlbpagemask.s │ │ ├── getwatchlo.s │ │ ├── initialize.c │ │ ├── initialize_emu.c │ │ ├── initialize_isv.c │ │ ├── initialize_kmc.c │ │ ├── initialize_msp.c │ │ ├── initrdb.c │ │ ├── interrupt.s │ │ ├── invaldcache.s │ │ ├── invalicache.s │ │ ├── jammesg.c │ │ ├── maptlb.s │ │ ├── maptlbrdb.s │ │ ├── parameters.s │ │ ├── physicaltovirtual.c │ │ ├── probetlb.s │ │ ├── rdbsend.c │ │ ├── recvmesg.c │ │ ├── resetglobalintmask.c │ │ ├── sendmesg.c │ │ ├── setcause.s │ │ ├── setcompare.s │ │ ├── setconfig.s │ │ ├── setcount.s │ │ ├── seterrorhandler.c │ │ ├── seteventmesg.c │ │ ├── setfpccsr.s │ │ ├── setglobalintmask.c │ │ ├── sethwinterrupt.c │ │ ├── setintmask.s │ │ ├── setpiinterrupt.c │ │ ├── setsr.s │ │ ├── setthreadpri.c │ │ ├── settime.c │ │ ├── settimer.c │ │ ├── settlbasid.s │ │ ├── setwatchlo.s │ │ ├── startthread.c │ │ ├── stopthread.c │ │ ├── stoptimer.c │ │ ├── syncputchars.c │ │ ├── testhost.c │ │ ├── thread.c │ │ ├── threadasm.h │ │ ├── timerintr.c │ │ ├── unmaptlb.s │ │ ├── unmaptlball.s │ │ ├── virtualtophysical.c │ │ ├── writebackdcache.s │ │ ├── writebackdcacheall.s │ │ └── yieldthread.c │ ├── rg │ │ ├── free.c │ │ ├── getbufcount.c │ │ ├── getsize.c │ │ ├── malloc.c │ │ ├── printregion.c │ │ └── region.c │ ├── rmon │ │ ├── rmonbrk.c │ │ ├── rmoncmds.c │ │ ├── rmonmain.c │ │ ├── rmonmem.c │ │ ├── rmonmisc.c │ │ ├── rmonprint.c │ │ ├── rmonrcp.s │ │ ├── rmonregs.c │ │ ├── rmonsio.c │ │ └── rmontask.c │ ├── sched │ │ ├── Makefile │ │ ├── sched.c │ │ └── sched_log.fmt │ ├── sp │ │ ├── Makefile │ │ ├── clearattribute.c │ │ ├── color.c │ │ ├── hide.c │ │ ├── setattribute.c │ │ ├── show.c │ │ ├── sprite.c │ │ ├── spriteex.c │ │ ├── spriteex2.c │ │ └── spscale.c │ ├── vimodes │ │ ├── vimodefpalhaf1.c │ │ ├── vimodefpalhan1.c │ │ ├── vimodefpalhpf1.c │ │ ├── vimodefpalhpf2.c │ │ ├── vimodefpalhpn1.c │ │ ├── vimodefpalhpn2.c │ │ ├── vimodefpallaf1.c │ │ ├── vimodefpallaf2.c │ │ ├── vimodefpallan1.c │ │ ├── vimodefpallan2.c │ │ ├── vimodefpallpf1.c │ │ ├── vimodefpallpf2.c │ │ ├── vimodefpallpn1.c │ │ ├── vimodefpallpn2.c │ │ ├── vimodempalhaf1.c │ │ ├── vimodempalhan1.c │ │ ├── vimodempalhpf1.c │ │ ├── vimodempalhpf2.c │ │ ├── vimodempalhpn1.c │ │ ├── vimodempalhpn2.c │ │ ├── vimodempallaf1.c │ │ ├── vimodempallaf2.c │ │ ├── vimodempallan1.c │ │ ├── vimodempallan2.c │ │ ├── vimodempallpf1.c │ │ ├── vimodempallpf2.c │ │ ├── vimodempallpn1.c │ │ ├── vimodempallpn2.c │ │ ├── vimodentschaf1.c │ │ ├── vimodentschan1.c │ │ ├── vimodentschpf1.c │ │ ├── vimodentschpf2.c │ │ ├── vimodentschpn1.c │ │ ├── vimodentschpn2.c │ │ ├── vimodentsclaf1.c │ │ ├── vimodentsclaf2.c │ │ ├── vimodentsclan1.c │ │ ├── vimodentsclan2.c │ │ ├── vimodentsclpf1.c │ │ ├── vimodentsclpf2.c │ │ ├── vimodentsclpn1.c │ │ ├── vimodentsclpn2.c │ │ ├── vimodepalhaf1.c │ │ ├── vimodepalhan1.c │ │ ├── vimodepalhpf1.c │ │ ├── vimodepalhpf2.c │ │ ├── vimodepalhpn1.c │ │ ├── vimodepalhpn2.c │ │ ├── vimodepallaf1.c │ │ ├── vimodepallaf2.c │ │ ├── vimodepallan1.c │ │ ├── vimodepallan2.c │ │ ├── vimodepallpf1.c │ │ ├── vimodepallpf2.c │ │ ├── vimodepallpn1.c │ │ └── vimodepallpn2.c │ └── voice │ │ ├── voicecheckresult.c │ │ ├── voicecheckword.c │ │ ├── voicecleardictionary.c │ │ ├── voicecontread2.c │ │ ├── voicecontread36.c │ │ ├── voicecontrolgain.c │ │ ├── voicecontwrite20.c │ │ ├── voicecontwrite4.c │ │ ├── voicecountsyllables.c │ │ ├── voicecrc.c │ │ ├── voicegetreaddata.c │ │ ├── voicegetstatus.c │ │ ├── voiceinit.c │ │ ├── voiceinternal.h │ │ ├── voicemaskdictionary.c │ │ ├── voicesetadconverter.c │ │ ├── voicesetword.c │ │ ├── voicestartreaddata.c │ │ └── voicestopreaddata.c │ └── tools │ ├── Makefile │ ├── ar.py │ ├── asm_differ │ ├── .gitignore │ ├── .gitrepo │ ├── .pre-commit-config.yaml │ ├── LICENSE │ ├── README.md │ ├── diff-stylesheet.css │ ├── diff.py │ ├── diff_settings.py │ ├── mypy.ini │ └── screenshot.png │ ├── compile_sjis.py │ ├── disassemble_elf.py │ ├── fix_objfile.py │ ├── libdiff.py │ ├── libelf.py │ ├── m2ctx.py │ ├── mdebug.py │ ├── mips_isa.py │ ├── patch_ar_meta.py │ ├── print_mdebug.py │ ├── set_o32abi_bit.py │ ├── shiftjis_conv.py │ ├── strip_debug.sh │ └── util.py ├── linker_scripts └── subseg_05.ld ├── requirements.txt ├── src ├── LICENSE ├── assets │ ├── anime │ │ ├── anime_a.c │ │ ├── anime_b.c │ │ ├── anime_c.c │ │ ├── anime_d.c │ │ ├── anime_e.c │ │ ├── anime_f.c │ │ ├── anime_g.c │ │ ├── anime_h.c │ │ ├── anime_i.c │ │ ├── anime_j.c │ │ ├── anime_k.c │ │ ├── anime_l.c │ │ ├── anime_m.c │ │ ├── anime_mario.c │ │ ├── anime_n.c │ │ ├── anime_o.c │ │ ├── anime_smog.c │ │ ├── anime_virus_b.c │ │ ├── anime_virus_r.c │ │ └── anime_virus_y.c │ ├── coffee │ │ └── coffee01.c │ ├── game │ │ ├── game_al.c │ │ ├── game_item.c │ │ ├── game_ls.c │ │ ├── game_p1.c │ │ ├── game_p2.c │ │ └── game_p4.c │ ├── game_etc │ │ ├── etc.c │ │ └── etc_lws.c │ ├── menu │ │ ├── menu_char.c │ │ ├── menu_common.c │ │ ├── menu_cont.c │ │ ├── menu_kasa.c │ │ ├── menu_level.c │ │ ├── menu_main.c │ │ ├── menu_name.c │ │ ├── menu_p2.c │ │ ├── menu_p4.c │ │ ├── menu_rank.c │ │ ├── menu_setup.c │ │ └── menu_story.c │ ├── menu_bg │ │ ├── menu_bg.c │ │ └── menu_bg2.c │ ├── story │ │ ├── bg01.c │ │ ├── bg02.c │ │ ├── bg03.c │ │ ├── bg04.c │ │ ├── bg05.c │ │ ├── bg07.c │ │ ├── bg08.c │ │ ├── bg09.c │ │ ├── bg10.c │ │ └── bg11.c │ ├── title │ │ ├── title_all.c │ │ └── title_bmp.c │ ├── tutorial │ │ └── tutorial_kasa.c │ └── waku │ │ ├── waku.c │ │ └── waku2.c ├── boot │ ├── COMMON.c │ ├── boot_main.c │ ├── dmadata.c │ ├── rom_offsets.c │ ├── scommon.c │ └── util.c ├── buffers │ ├── buffer1.c │ ├── buffer2.c │ └── framebuffer.c ├── dma_table │ └── dma_table.c ├── entry │ └── entry.s ├── gateway │ └── 003630.c ├── gzip │ ├── gzip.c │ ├── inflate.c │ └── unzip.c ├── libegcs │ └── libgcc2.c ├── libkmc │ ├── ctype.c │ ├── fmod.c │ ├── memmove.c │ ├── memset.c │ ├── mmuldi3.s │ ├── modf.c │ ├── rand.c │ └── strcpy.c ├── libnustd │ ├── ctype.c │ ├── fmod.c │ ├── memmove.c │ ├── modf.c │ ├── srand.c │ └── strcpy.c ├── main_segment │ ├── 066580.c │ ├── COMMON.c │ ├── aiset.c │ ├── audio │ │ ├── music_driver.c │ │ └── sound.c │ ├── bg_tasks.c │ ├── calc.c │ ├── calcsub.s │ ├── char_anime.c │ ├── debug_menu.c │ ├── dm_game_main.c │ ├── dm_game_main.msg │ ├── dm_manual_main.c │ ├── dm_manual_main.msg │ ├── dm_title_main.c │ ├── dm_title_main.msg │ ├── dm_virus_init.c │ ├── font.c │ ├── game_etc.c │ ├── graphic.c │ ├── graphics │ │ └── static.c │ ├── joy.c │ ├── lws.c │ ├── main.c │ ├── main1x.c │ ├── main_menu.c │ ├── main_menu.msg │ ├── main_menu_yn.msg │ ├── main_story.c │ ├── main_story.msg │ ├── msgwnd.c │ ├── nnsched.c │ ├── record.c │ ├── replay.c │ ├── scommon.c │ ├── screen_print │ │ ├── debug_print.c │ │ ├── printer.c │ │ └── printf_impl.c │ ├── tex_func.c │ ├── unused │ │ ├── 020D10.c │ │ ├── 055C40.c │ │ ├── 065080.c │ │ └── 066080.c │ └── vr_init.c ├── rom_header │ └── rom_header.c └── rsp │ ├── aspMain.s │ ├── f3dex2.s │ ├── rspboot.s │ └── s2dex.s └── tools ├── .gitignore ├── Makefile ├── asm-differ ├── .github │ └── workflows │ │ ├── black.yml │ │ ├── check-poetry-lock.yml │ │ └── unit-tests.yml ├── .gitignore ├── .gitrepo ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── diff-stylesheet.css ├── diff.py ├── diff_settings.py ├── mypy.ini ├── poetry.lock ├── pyproject.toml ├── screenshot.png └── test.py ├── assets_bootstraps ├── bootstrap_anime.py ├── bootstrap_tex_data.py └── ti_tex_data.py ├── buildtools ├── inc_from_bin.py └── msg_reencoder.py ├── check_format.sh ├── check_reordering.py ├── checksummer.py ├── compressor ├── compress_segments.cn.csv ├── compress_segments.gw.csv ├── compress_segments.us.csv ├── compression_common.py ├── decompressor.py ├── extract_compressed_segments.py ├── rom_compressor.py └── rom_decompressor.py ├── first_diff.py ├── lws_extract.py ├── m2ctx.py ├── msg_joiner.py ├── permuter_settings.toml ├── pj64_syms.py ├── progress.py ├── read_plf_disasm.py ├── splat_ext └── __init__.py ├── split_plf_objdump.py └── sym_info.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/README.md -------------------------------------------------------------------------------- /config/cn/drmario64.cn.md5: -------------------------------------------------------------------------------- 1 | dd291b9c65420fd892107f6c665b7a45 build/cn/drmario64.cn.z64 2 | -------------------------------------------------------------------------------- /config/cn/drmario64.cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/cn/drmario64.cn.yaml -------------------------------------------------------------------------------- /config/cn/drmario64_uncompressed.cn.md5: -------------------------------------------------------------------------------- 1 | ba12517b70fe262a50b7491e26f3144b build/cn/drmario64_uncompressed.cn.z64 2 | -------------------------------------------------------------------------------- /config/cn/relocs/reloc_addrs.cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/cn/relocs/reloc_addrs.cn.txt -------------------------------------------------------------------------------- /config/cn/symbol_addrs/symbol_addrs_dma_table.txt: -------------------------------------------------------------------------------- 1 | gMainSegmentDmaInfo = 0x8002A7B0; // defined:true size:0x10 2 | -------------------------------------------------------------------------------- /config/gw/drmario64.gw.md5: -------------------------------------------------------------------------------- 1 | 697db27690b4f031cf91f28bc445a29f build/gw/drmario64.gw.z64 2 | -------------------------------------------------------------------------------- /config/gw/drmario64.gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/gw/drmario64.gw.yaml -------------------------------------------------------------------------------- /config/gw/drmario64_uncompressed.gw.md5: -------------------------------------------------------------------------------- 1 | 28e91d332d2e67bf4db761fa91af664a build/gw/drmario64_uncompressed.gw.z64 2 | -------------------------------------------------------------------------------- /config/gw/relocs/reloc_addrs.gw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/gw/relocs/reloc_addrs.gw.txt -------------------------------------------------------------------------------- /config/gw/symbol_addrs/symbol_addrs_dma_table.txt: -------------------------------------------------------------------------------- 1 | gMainSegmentDmaInfo = 0x80029E10; // defined:true size:0x10 2 | -------------------------------------------------------------------------------- /config/slinky.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/slinky.yaml -------------------------------------------------------------------------------- /config/us/drmario64.us.md5: -------------------------------------------------------------------------------- 1 | 1a7936367413e5d6874abda6d623ad32 build/us/drmario64.us.z64 2 | -------------------------------------------------------------------------------- /config/us/drmario64.us.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/us/drmario64.us.yaml -------------------------------------------------------------------------------- /config/us/drmario64_uncompressed.us.md5: -------------------------------------------------------------------------------- 1 | acd9547e4f219cb16e6500f8a46bc120 build/us/drmario64_uncompressed.us.z64 2 | -------------------------------------------------------------------------------- /config/us/relocs/reloc_addrs.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/config/us/relocs/reloc_addrs.us.txt -------------------------------------------------------------------------------- /config/us/symbol_addrs/symbol_addrs_dma_table.txt: -------------------------------------------------------------------------------- 1 | gMainSegmentDmaInfo = 0x80029C40; // defined:true size:0x10 2 | -------------------------------------------------------------------------------- /decomp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/decomp.yaml -------------------------------------------------------------------------------- /diff.py: -------------------------------------------------------------------------------- 1 | tools/asm-differ/diff.py -------------------------------------------------------------------------------- /diff_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/diff_settings.py -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lib/uPlot/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/.editorconfig -------------------------------------------------------------------------------- /docs/lib/uPlot/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: leeoniya 2 | -------------------------------------------------------------------------------- /docs/lib/uPlot/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /docs/lib/uPlot/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/.gitrepo -------------------------------------------------------------------------------- /docs/lib/uPlot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/LICENSE -------------------------------------------------------------------------------- /docs/lib/uPlot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/README.md -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/ApexCharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/ApexCharts.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/CanvasJS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/CanvasJS.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/Chart.js4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/Chart.js4.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/ECharts5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/ECharts5.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/Flot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/Flot.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/Highcharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/Highcharts.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/Plotly.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/Plotly.js.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/ZingChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/ZingChart.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/amCharts5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/amCharts5.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/data.json -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/dvxCharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/dvxCharts.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/dygraphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/dygraphs.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/fmtDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/fmtDate.js -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/results.json -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/table.js -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/table.md -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/uPlot-10M.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/uPlot-10M.html -------------------------------------------------------------------------------- /docs/lib/uPlot/bench/uPlot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/bench/uPlot.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/align-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/align-data.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/area-fill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/area-fill.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/AAPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/AAPL.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/AMD.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/AMD.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/AMZN.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/AMZN.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/CSCO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/CSCO.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/FB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/FB.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/MSFT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/MSFT.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/QCOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/QCOM.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/SBUX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/SBUX.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/TSLA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/TSLA.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/data/ZNGA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/data/ZNGA.csv -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/draw-hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/draw-hooks.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/gradients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/gradients.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/grouped-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/grouped-bars.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/index.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/lib/distr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/lib/distr.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/lib/quadtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/lib/quadtree.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/lib/rand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/lib/rand.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/lib/sgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/lib/sgg.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/lib/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/lib/stats.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/line-paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/line-paths.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/log-scales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/log-scales.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/months-ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/months-ru.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/months.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/months.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/multi-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/multi-bars.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/nice-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/nice-scale.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/no-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/no-data.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/points.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/resize.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/scatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/scatter.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/sparklines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/sparklines.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/sparse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/sparse.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/stack.js -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/svg-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/svg-image.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/tooltips.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/trendlines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/trendlines.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/zoom-fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/zoom-fetch.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/zoom-touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/zoom-touch.html -------------------------------------------------------------------------------- /docs/lib/uPlot/demos/zoom-wheel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/demos/zoom-wheel.html -------------------------------------------------------------------------------- /docs/lib/uPlot/dist/uPlot.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/dist/uPlot.cjs.js -------------------------------------------------------------------------------- /docs/lib/uPlot/dist/uPlot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/dist/uPlot.d.ts -------------------------------------------------------------------------------- /docs/lib/uPlot/dist/uPlot.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/dist/uPlot.esm.js -------------------------------------------------------------------------------- /docs/lib/uPlot/dist/uPlot.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/dist/uPlot.iife.js -------------------------------------------------------------------------------- /docs/lib/uPlot/dist/uPlot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/dist/uPlot.min.css -------------------------------------------------------------------------------- /docs/lib/uPlot/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/docs/README.md -------------------------------------------------------------------------------- /docs/lib/uPlot/img/chrome-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/img/chrome-flags.png -------------------------------------------------------------------------------- /docs/lib/uPlot/img/chrome-gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/img/chrome-gpu.png -------------------------------------------------------------------------------- /docs/lib/uPlot/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/jsconfig.json -------------------------------------------------------------------------------- /docs/lib/uPlot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/package.json -------------------------------------------------------------------------------- /docs/lib/uPlot/perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/perf.png -------------------------------------------------------------------------------- /docs/lib/uPlot/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/rollup.config.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/dom.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/domClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/domClasses.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/feats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/feats.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/fmtDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/fmtDate.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/opts.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/bars.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/linear.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/points.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/spline.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/stepped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/stepped.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/paths/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/paths/utils.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/strings.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/sync.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/uPlot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/uPlot.css -------------------------------------------------------------------------------- /docs/lib/uPlot/src/uPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/uPlot.js -------------------------------------------------------------------------------- /docs/lib/uPlot/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/src/utils.js -------------------------------------------------------------------------------- /docs/lib/uPlot/uPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/docs/lib/uPlot/uPlot.png -------------------------------------------------------------------------------- /include/020D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/020D10.h -------------------------------------------------------------------------------- /include/055C40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/055C40.h -------------------------------------------------------------------------------- /include/065080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/065080.h -------------------------------------------------------------------------------- /include/066080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/066080.h -------------------------------------------------------------------------------- /include/066580.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/066580.h -------------------------------------------------------------------------------- /include/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/ai.h -------------------------------------------------------------------------------- /include/aiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/aiset.h -------------------------------------------------------------------------------- /include/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/alignment.h -------------------------------------------------------------------------------- /include/assets/coffee/coffee01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/assets/coffee/coffee01.h -------------------------------------------------------------------------------- /include/assets/game_etc/etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/assets/game_etc/etc.h -------------------------------------------------------------------------------- /include/assets/title/title_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/assets/title/title_all.h -------------------------------------------------------------------------------- /include/assets/title/title_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/assets/title/title_bmp.h -------------------------------------------------------------------------------- /include/assets/waku/waku2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/assets/waku/waku2.h -------------------------------------------------------------------------------- /include/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/attributes.h -------------------------------------------------------------------------------- /include/audio/music_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/audio/music_driver.h -------------------------------------------------------------------------------- /include/audio/snd_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/audio/snd_seq.h -------------------------------------------------------------------------------- /include/audio/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/audio/sound.h -------------------------------------------------------------------------------- /include/bg_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/bg_tasks.h -------------------------------------------------------------------------------- /include/boot_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/boot_main.h -------------------------------------------------------------------------------- /include/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/buffers.h -------------------------------------------------------------------------------- /include/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/calc.h -------------------------------------------------------------------------------- /include/calcsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/calcsub.h -------------------------------------------------------------------------------- /include/char_anime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/char_anime.h -------------------------------------------------------------------------------- /include/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/color.h -------------------------------------------------------------------------------- /include/debug_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/debug_menu.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/dm_game_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dm_game_main.h -------------------------------------------------------------------------------- /include/dm_manual_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dm_manual_main.h -------------------------------------------------------------------------------- /include/dm_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dm_thread.h -------------------------------------------------------------------------------- /include/dm_title_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dm_title_main.h -------------------------------------------------------------------------------- /include/dm_virus_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dm_virus_init.h -------------------------------------------------------------------------------- /include/dma_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dma_table.h -------------------------------------------------------------------------------- /include/dmadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/dmadata.h -------------------------------------------------------------------------------- /include/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/font.h -------------------------------------------------------------------------------- /include/game_etc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/game_etc.h -------------------------------------------------------------------------------- /include/gamemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/gamemap.h -------------------------------------------------------------------------------- /include/gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/gateway.h -------------------------------------------------------------------------------- /include/graphbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/graphbin.h -------------------------------------------------------------------------------- /include/graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/graphic.h -------------------------------------------------------------------------------- /include/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/gzip.h -------------------------------------------------------------------------------- /include/hasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/hasm.h -------------------------------------------------------------------------------- /include/include_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/include_asm.h -------------------------------------------------------------------------------- /include/joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/joy.h -------------------------------------------------------------------------------- /include/labels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/labels.inc -------------------------------------------------------------------------------- /include/libc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/assert.h -------------------------------------------------------------------------------- /include/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/ctype.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/stdbool.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libc/stdint.h -------------------------------------------------------------------------------- /include/libgcc/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libgcc/longlong.h -------------------------------------------------------------------------------- /include/libgcc/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libgcc/mips.h -------------------------------------------------------------------------------- /include/libkmc/explog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libkmc/explog.h -------------------------------------------------------------------------------- /include/libkmc/kmclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libkmc/kmclib.h -------------------------------------------------------------------------------- /include/libultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/libultra.h -------------------------------------------------------------------------------- /include/lws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/lws.h -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/macro.inc -------------------------------------------------------------------------------- /include/macros_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/macros_defines.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/main.h -------------------------------------------------------------------------------- /include/main1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/main1x.h -------------------------------------------------------------------------------- /include/main_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/main_menu.h -------------------------------------------------------------------------------- /include/main_story.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/main_story.h -------------------------------------------------------------------------------- /include/msgwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/msgwnd.h -------------------------------------------------------------------------------- /include/nnsched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/nnsched.h -------------------------------------------------------------------------------- /include/other_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/other_types.h -------------------------------------------------------------------------------- /include/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/record.h -------------------------------------------------------------------------------- /include/recwritingmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/recwritingmsg.h -------------------------------------------------------------------------------- /include/replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/replay.h -------------------------------------------------------------------------------- /include/rom_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/rom_offsets.h -------------------------------------------------------------------------------- /include/screen_print/debug_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/screen_print/debug_print.h -------------------------------------------------------------------------------- /include/screen_print/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/screen_print/printer.h -------------------------------------------------------------------------------- /include/screen_print/printf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/screen_print/printf_impl.h -------------------------------------------------------------------------------- /include/segment_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/segment_symbols.h -------------------------------------------------------------------------------- /include/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/stack.h -------------------------------------------------------------------------------- /include/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/static.h -------------------------------------------------------------------------------- /include/tex_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/tex_func.h -------------------------------------------------------------------------------- /include/unk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/unk.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/util.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/version.h -------------------------------------------------------------------------------- /include/vr_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/include/vr_init.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libmus/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | -------------------------------------------------------------------------------- /lib/libmus/include/PR/libmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/include/PR/libmus.h -------------------------------------------------------------------------------- /lib/libmus/include/PR/libmus_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/include/PR/libmus_data.h -------------------------------------------------------------------------------- /lib/libmus/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/Makefile -------------------------------------------------------------------------------- /lib/libmus/src/Makefile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/Makefile.depend -------------------------------------------------------------------------------- /lib/libmus/src/Makefile.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/Makefile.dos -------------------------------------------------------------------------------- /lib/libmus/src/aud_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_dma.c -------------------------------------------------------------------------------- /lib/libmus/src/aud_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_dma.h -------------------------------------------------------------------------------- /lib/libmus/src/aud_samples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_samples.c -------------------------------------------------------------------------------- /lib/libmus/src/aud_samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_samples.h -------------------------------------------------------------------------------- /lib/libmus/src/aud_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_sched.c -------------------------------------------------------------------------------- /lib/libmus/src/aud_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_sched.h -------------------------------------------------------------------------------- /lib/libmus/src/aud_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_thread.c -------------------------------------------------------------------------------- /lib/libmus/src/aud_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/aud_thread.h -------------------------------------------------------------------------------- /lib/libmus/src/lib_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/lib_memory.c -------------------------------------------------------------------------------- /lib/libmus/src/lib_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/lib_memory.h -------------------------------------------------------------------------------- /lib/libmus/src/libmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/libmus.h -------------------------------------------------------------------------------- /lib/libmus/src/libmus_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/libmus_config.h -------------------------------------------------------------------------------- /lib/libmus/src/libmus_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/libmus_data.h -------------------------------------------------------------------------------- /lib/libmus/src/n_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/n_abi.h -------------------------------------------------------------------------------- /lib/libmus/src/n_libaudio_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/n_libaudio_sc.h -------------------------------------------------------------------------------- /lib/libmus/src/n_libaudio_sn_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/n_libaudio_sn_sc.h -------------------------------------------------------------------------------- /lib/libmus/src/n_synthInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/n_synthInternals.h -------------------------------------------------------------------------------- /lib/libmus/src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player.c -------------------------------------------------------------------------------- /lib/libmus/src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player.h -------------------------------------------------------------------------------- /lib/libmus/src/player_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_api.c -------------------------------------------------------------------------------- /lib/libmus/src/player_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_commands.c -------------------------------------------------------------------------------- /lib/libmus/src/player_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_fifo.c -------------------------------------------------------------------------------- /lib/libmus/src/player_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_fifo.h -------------------------------------------------------------------------------- /lib/libmus/src/player_fx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_fx.c -------------------------------------------------------------------------------- /lib/libmus/src/player_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/player_fx.h -------------------------------------------------------------------------------- /lib/libmus/src/synthInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/libmus/src/synthInternals.h -------------------------------------------------------------------------------- /lib/ultralib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/.gitignore -------------------------------------------------------------------------------- /lib/ultralib/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/.gitrepo -------------------------------------------------------------------------------- /lib/ultralib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/Makefile -------------------------------------------------------------------------------- /lib/ultralib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/README.md -------------------------------------------------------------------------------- /lib/ultralib/base/I/libgultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/I/libgultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/I/libgultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/I/libgultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/I/libultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/I/libultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/I/libultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/I/libultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/I/libultra_rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/I/libultra_rom.txt -------------------------------------------------------------------------------- /lib/ultralib/base/J/libgultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/J/libgultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/J/libgultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/J/libgultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/J/libultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/J/libultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/J/libultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/J/libultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/J/libultra_rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/J/libultra_rom.txt -------------------------------------------------------------------------------- /lib/ultralib/base/K/libgultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/K/libgultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/K/libgultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/K/libgultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/K/libultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/K/libultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/K/libultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/K/libultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/K/libultra_rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/K/libultra_rom.txt -------------------------------------------------------------------------------- /lib/ultralib/base/L/libgultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/L/libgultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/L/libgultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/L/libgultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/L/libultra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/L/libultra.txt -------------------------------------------------------------------------------- /lib/ultralib/base/L/libultra_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/L/libultra_d.txt -------------------------------------------------------------------------------- /lib/ultralib/base/L/libultra_rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/base/L/libultra_rom.txt -------------------------------------------------------------------------------- /lib/ultralib/include/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/R4300.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/abi.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/gbi.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/gs2dex.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/gt.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/gu.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/libaudio.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/mbi.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_ai.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_cache.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_cont.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_convert.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_debug.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_eeprom.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_error.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_flash.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_gbpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_gbpak.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_gio.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_host.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_libc.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_message.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_motor.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_pfs.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_pi.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_rdp.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_reg.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_rsp.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_si.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_system.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_thread.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_time.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_tlb.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_version.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_vi.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/os_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/os_voice.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/ramrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/ramrom.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/rcp.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/rdb.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/region.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/rmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/rmon.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/sched.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/sp.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/sptask.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/ucode.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/ultraerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/ultraerror.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/ultralog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/ultralog.h -------------------------------------------------------------------------------- /lib/ultralib/include/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/PR/ultratypes.h -------------------------------------------------------------------------------- /lib/ultralib/include/asm.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/assert.h -------------------------------------------------------------------------------- /lib/ultralib/include/fpregdef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/math.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/gcc/memory.h -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/gcc/sgidefs.h -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/gcc/stdarg.h -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/stdio.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/gcc/stdlib.h -------------------------------------------------------------------------------- /lib/ultralib/include/gcc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/gcc/string.h -------------------------------------------------------------------------------- /lib/ultralib/include/ido/math.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/ido/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ido/memory.h -------------------------------------------------------------------------------- /lib/ultralib/include/ido/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ido/stdarg.h -------------------------------------------------------------------------------- /lib/ultralib/include/ido/stdio.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/ido/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ido/stdlib.h -------------------------------------------------------------------------------- /lib/ultralib/include/ido/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ido/string.h -------------------------------------------------------------------------------- /lib/ultralib/include/modern_gcc/math.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/modern_gcc/stdio.h: -------------------------------------------------------------------------------- 1 | // Nothing needed here 2 | -------------------------------------------------------------------------------- /lib/ultralib/include/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/regdef.h -------------------------------------------------------------------------------- /lib/ultralib/include/sgidefs.h: -------------------------------------------------------------------------------- 1 | #ifdef __GNUC__ 2 | #include "gcc/sgidefs.h" 3 | #endif 4 | -------------------------------------------------------------------------------- /lib/ultralib/include/sys/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/sys/asm.h -------------------------------------------------------------------------------- /lib/ultralib/include/sys/fpregdef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ultralib/include/sys/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/sys/regdef.h -------------------------------------------------------------------------------- /lib/ultralib/include/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ultra64.h -------------------------------------------------------------------------------- /lib/ultralib/include/ultrahost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/include/ultrahost.h -------------------------------------------------------------------------------- /lib/ultralib/makefiles/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/makefiles/gcc.mk -------------------------------------------------------------------------------- /lib/ultralib/makefiles/ido.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/makefiles/ido.mk -------------------------------------------------------------------------------- /lib/ultralib/makefiles/modern_gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/makefiles/modern_gcc.mk -------------------------------------------------------------------------------- /lib/ultralib/src/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/audio/auxbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/auxbus.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/bnkf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/bnkf.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cents2ratio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cents2ratio.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/copy.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cseq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cseq.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cseqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cseqp.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspdelete.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgetfxmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgetfxmix.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgetseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgetseq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgetstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgetstate.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgettempo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgettempo.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspgetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspgetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/csplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/csplayer.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspplay.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsendmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsendmidi.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsetbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsetbank.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsetfxmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsetfxmix.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsetseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsetseq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsettempo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsettempo.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspsetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspsetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/cspstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/cspstop.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/drvrnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/drvrnew.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/env.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/event.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/filter.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/heapalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/heapalloc.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/heapcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/heapcheck.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/heapinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/heapinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/initfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/initfx.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/load.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/mainbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/mainbus.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/parse_abi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/parse_abi.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/resample.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/reverb.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/save.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seq.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqp.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpdelete.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpgetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpgetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpgetseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpgetseq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpgetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpgetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqplayer.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqploop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqploop.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpplay.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpsetbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpsetbank.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpsetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpsetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpsetseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpsetseq.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpsetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpsetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/seqpstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/seqpstop.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sl.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndp.h -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpdelete.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndplayer.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpplay.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpplayat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpplayat.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpsetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpsetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpsetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpsetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/sndpstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/sndpstop.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synallocfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synallocfx.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/syndelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/syndelete.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synfreefx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synfreefx.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/syngetfxref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/syngetfxref.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synsetfxmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synsetfxmix.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synsetpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synsetpan.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synsetpitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synsetpitch.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synsetvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synsetvol.c -------------------------------------------------------------------------------- /lib/ultralib/src/audio/synthesizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/audio/synthesizer.c -------------------------------------------------------------------------------- /lib/ultralib/src/debug/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/debug/assert.c -------------------------------------------------------------------------------- /lib/ultralib/src/debug/assertbreak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/debug/assertbreak.s -------------------------------------------------------------------------------- /lib/ultralib/src/debug/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/debug/atomic.c -------------------------------------------------------------------------------- /lib/ultralib/src/debug/osint_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/debug/osint_debug.h -------------------------------------------------------------------------------- /lib/ultralib/src/debug/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/debug/profile.c -------------------------------------------------------------------------------- /lib/ultralib/src/error/commonerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/error/commonerror.c -------------------------------------------------------------------------------- /lib/ultralib/src/error/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/error/error.c -------------------------------------------------------------------------------- /lib/ultralib/src/error/errorasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/error/errorasm.s -------------------------------------------------------------------------------- /lib/ultralib/src/error/kmcprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/error/kmcprintf.c -------------------------------------------------------------------------------- /lib/ultralib/src/flash/flashchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/flash/flashchange.c -------------------------------------------------------------------------------- /lib/ultralib/src/flash/flashinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/flash/flashinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/flash/flashreadid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/flash/flashreadid.c -------------------------------------------------------------------------------- /lib/ultralib/src/flash/flashreinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/flash/flashreinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/gio/giointerrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gio/giointerrupt.c -------------------------------------------------------------------------------- /lib/ultralib/src/gt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gt/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/gt/dumpturbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gt/dumpturbo.c -------------------------------------------------------------------------------- /lib/ultralib/src/gt/gt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gt/gt.c -------------------------------------------------------------------------------- /lib/ultralib/src/gt/gtint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gt/gtint.h -------------------------------------------------------------------------------- /lib/ultralib/src/gu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/gu/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/align.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/cosf.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/coss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/coss.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/dump_gbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/dump_gbi.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/frustum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/frustum.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/guint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/guint.h -------------------------------------------------------------------------------- /lib/ultralib/src/gu/guloadtile_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/guloadtile_bug.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/libm_vals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/libm_vals.s -------------------------------------------------------------------------------- /lib/ultralib/src/gu/lookat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/lookat.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/lookathil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/lookathil.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/lookatref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/lookatref.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/lookatstereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/lookatstereo.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/mtxcatf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/mtxcatf.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/mtxcatl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/mtxcatl.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/mtxutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/mtxutil.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/normalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/normalize.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/ortho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/ortho.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/parse_gbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/parse_gbi.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/parse_rdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/parse_rdp.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/parse_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/parse_string.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/perspective.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/perspective.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/position.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/poslight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/poslight.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/poslighthil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/poslighthil.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/random.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/readme.txt -------------------------------------------------------------------------------- /lib/ultralib/src/gu/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/rotate.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/rotaterpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/rotaterpy.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/scale.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/sinf.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/sins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/sins.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/sintable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/sintable.h -------------------------------------------------------------------------------- /lib/ultralib/src/gu/sqrtf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/sqrtf.s -------------------------------------------------------------------------------- /lib/ultralib/src/gu/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/translate.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/us2dex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/us2dex.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/us2dex2_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/us2dex2_emu.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/us2dex_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/us2dex_emu.c -------------------------------------------------------------------------------- /lib/ultralib/src/gu/usprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/gu/usprite.c -------------------------------------------------------------------------------- /lib/ultralib/src/host/host_ptn64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/host/host_ptn64.c -------------------------------------------------------------------------------- /lib/ultralib/src/host/readhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/host/readhost.c -------------------------------------------------------------------------------- /lib/ultralib/src/host/writehost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/host/writehost.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/ai.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/aigetlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/aigetlen.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/aigetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/aigetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/aisetfreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/aisetfreq.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/aisetnextbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/aisetnextbuf.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/cartrominit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/cartrominit.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/conteepprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/conteepprobe.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/conteepread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/conteepread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/conteepwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/conteepwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contpfs.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contquery.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contramread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contramread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contramwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contreaddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contreaddata.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contreset.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/controller.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/contsetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/contsetch.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/crc.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/devmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/devmgr.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/dp.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/dpctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/dpctr.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/dpgetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/dpgetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/dpsetnextbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/dpsetnextbuf.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/dpsetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/dpsetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/driverominit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/driverominit.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epidma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epigettype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epigettype.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epilinkhandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epilinkhandle.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epirawdma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epirawread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epirawwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epiread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epiread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/epiwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/epiwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakgetbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakgetbank.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakgetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakgetstatus.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakpower.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakreadid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakreadid.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpakreadwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpakreadwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/gbpaksetbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/gbpaksetbank.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/leodiskinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/leodiskinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/leointerrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/leointerrupt.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/motor.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfschecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfschecker.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsdeletefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsdeletefile.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsfilestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsfilestate.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsfreeblocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsfreeblocks.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsgetlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsgetlabel.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsgetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsgetstatus.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsinit.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsinitpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsinitpak.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsisplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsisplug.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsnumfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsnumfiles.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsreformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsreformat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsrepairid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsrepairid.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfssearchfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfssearchfile.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfsselectbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfsselectbank.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pfssetlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pfssetlabel.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pi.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/piacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/piacs.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pidma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pigetcmdq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pigetcmdq.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pigetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pigetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pigettype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pigettype.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pimgr.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pirawdma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pirawread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/pirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/pirawwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/piread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/piread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/piwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/piwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/si.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/siacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/siacs.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sigetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sigetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sirawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sirawdma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sirawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sirawread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sirawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sirawwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sp.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/spgetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/spgetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sprawdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sprawdma.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sprawread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sprawread.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sprawwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sprawwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/spsetpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/spsetpc.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/spsetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/spsetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sptask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sptask.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sptaskyield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sptaskyield.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/sptaskyielded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/sptaskyielded.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vi.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/viblack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/viblack.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/viextendvstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/viextendvstart.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vifade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vifade.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vigetfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vigetfield.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vigetline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vigetline.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vigetmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vigetmode.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vigetstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vigetstat.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vimgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vimgr.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/virepeatline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/virepeatline.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/visetevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/visetevent.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/visetmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/visetmode.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/visetspecial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/visetspecial.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/visetxscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/visetxscale.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/visetyscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/visetyscale.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/viswapbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/viswapbuf.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/viswapcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/viswapcontext.c -------------------------------------------------------------------------------- /lib/ultralib/src/io/vitbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/io/vitbl.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/bcmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/bcmp.s -------------------------------------------------------------------------------- /lib/ultralib/src/libc/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/bcopy.s -------------------------------------------------------------------------------- /lib/ultralib/src/libc/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/bzero.s -------------------------------------------------------------------------------- /lib/ultralib/src/libc/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/ldiv.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/ll.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/llbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/llbit.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/llcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/llcvt.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/sprintf.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/string.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/syncprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/syncprintf.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/xldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/xldtob.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/xlitob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/xlitob.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/xprintf.c -------------------------------------------------------------------------------- /lib/ultralib/src/libc/xstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/libc/xstdio.h -------------------------------------------------------------------------------- /lib/ultralib/src/log/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/log/delay.s -------------------------------------------------------------------------------- /lib/ultralib/src/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/log/log.c -------------------------------------------------------------------------------- /lib/ultralib/src/log/logfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/log/logfloat.c -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/asm.h -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxcatf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxcatf.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxcatl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxcatl.c -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxf2l.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxf2l.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxident.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxident.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxidentf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxidentf.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxl2f.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxl2f.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxxfmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxxfmf.c -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/mtxxfml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/mtxxfml.c -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/normalize.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/normalize.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/regdef.h -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/rotate.c -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/scale.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/scale.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/scalef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/scalef.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/translate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/translate.s -------------------------------------------------------------------------------- /lib/ultralib/src/mgu/translatef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/mgu/translatef.s -------------------------------------------------------------------------------- /lib/ultralib/src/monutil.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/monutil.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/ackramromread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/ackramromread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/ackramromwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/ackramromwrite.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/afterprenmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/afterprenmi.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/atomic.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/createthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/createthread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/destroythread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/destroythread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/exceptasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/exceptasm.h -------------------------------------------------------------------------------- /lib/ultralib/src/os/exceptasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/exceptasm.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/exit.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/getactivequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getactivequeue.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/getcause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getcause.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getcompare.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getcompare.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getconfig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getconfig.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getcount.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getcount.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getfpccsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getfpccsr.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/gethwinterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gethwinterrupt.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/getintmask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getintmask.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getmemsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getmemsize.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/getsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getsr.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getthreadid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getthreadid.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/getthreadpri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getthreadpri.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettime.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettlbasid.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettlbasid.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettlbhi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettlbhi.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettlblo0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettlblo0.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettlblo1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettlblo1.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/gettlbpagemask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/gettlbpagemask.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/getwatchlo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/getwatchlo.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initialize.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/initialize_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initialize_emu.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/initialize_isv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initialize_isv.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/initialize_kmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initialize_kmc.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/initialize_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initialize_msp.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/initrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/initrdb.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/interrupt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/interrupt.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/invaldcache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/invaldcache.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/invalicache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/invalicache.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/jammesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/jammesg.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/maptlb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/maptlb.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/maptlbrdb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/maptlbrdb.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/parameters.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/parameters.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/probetlb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/probetlb.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/rdbsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/rdbsend.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/recvmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/recvmesg.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/sendmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/sendmesg.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/setcause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setcause.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setcompare.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setcompare.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setconfig.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setconfig.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setcount.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setcount.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/seteventmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/seteventmesg.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/setfpccsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setfpccsr.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setintmask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setintmask.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setsr.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/settime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/settime.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/settimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/settimer.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/settlbasid.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/settlbasid.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/setwatchlo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/setwatchlo.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/startthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/startthread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/stopthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/stopthread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/stoptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/stoptimer.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/testhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/testhost.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/thread.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/threadasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/threadasm.h -------------------------------------------------------------------------------- /lib/ultralib/src/os/timerintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/timerintr.c -------------------------------------------------------------------------------- /lib/ultralib/src/os/unmaptlb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/unmaptlb.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/unmaptlball.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/unmaptlball.s -------------------------------------------------------------------------------- /lib/ultralib/src/os/yieldthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/os/yieldthread.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/free.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/getbufcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/getbufcount.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/getsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/getsize.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/malloc.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/printregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/printregion.c -------------------------------------------------------------------------------- /lib/ultralib/src/rg/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rg/region.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonbrk.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmoncmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmoncmds.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonmain.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonmem.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonmisc.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonprint.c: -------------------------------------------------------------------------------- 1 | /* Empty file */ 2 | -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonrcp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonrcp.s -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonregs.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmonsio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmonsio.c -------------------------------------------------------------------------------- /lib/ultralib/src/rmon/rmontask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/rmon/rmontask.c -------------------------------------------------------------------------------- /lib/ultralib/src/sched/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sched/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/sched/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sched/sched.c -------------------------------------------------------------------------------- /lib/ultralib/src/sp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/Makefile -------------------------------------------------------------------------------- /lib/ultralib/src/sp/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/color.c -------------------------------------------------------------------------------- /lib/ultralib/src/sp/hide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/hide.c -------------------------------------------------------------------------------- /lib/ultralib/src/sp/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/show.c -------------------------------------------------------------------------------- /lib/ultralib/src/sp/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/sprite.c -------------------------------------------------------------------------------- /lib/ultralib/src/sp/spriteex.c: -------------------------------------------------------------------------------- 1 | #define F3DEX_GBI 2 | #include "sprite.c" 3 | -------------------------------------------------------------------------------- /lib/ultralib/src/sp/spriteex2.c: -------------------------------------------------------------------------------- 1 | #define F3DEX_GBI_2 2 | #include "sprite.c" 3 | -------------------------------------------------------------------------------- /lib/ultralib/src/sp/spscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/sp/spscale.c -------------------------------------------------------------------------------- /lib/ultralib/src/voice/voicecrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/src/voice/voicecrc.c -------------------------------------------------------------------------------- /lib/ultralib/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/Makefile -------------------------------------------------------------------------------- /lib/ultralib/tools/ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/ar.py -------------------------------------------------------------------------------- /lib/ultralib/tools/fix_objfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/fix_objfile.py -------------------------------------------------------------------------------- /lib/ultralib/tools/libdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/libdiff.py -------------------------------------------------------------------------------- /lib/ultralib/tools/libelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/libelf.py -------------------------------------------------------------------------------- /lib/ultralib/tools/m2ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/m2ctx.py -------------------------------------------------------------------------------- /lib/ultralib/tools/mdebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/mdebug.py -------------------------------------------------------------------------------- /lib/ultralib/tools/mips_isa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/mips_isa.py -------------------------------------------------------------------------------- /lib/ultralib/tools/strip_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/strip_debug.sh -------------------------------------------------------------------------------- /lib/ultralib/tools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/lib/ultralib/tools/util.py -------------------------------------------------------------------------------- /linker_scripts/subseg_05.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/linker_scripts/subseg_05.ld -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/assets/anime/anime_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_a.c -------------------------------------------------------------------------------- /src/assets/anime/anime_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_b.c -------------------------------------------------------------------------------- /src/assets/anime/anime_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_c.c -------------------------------------------------------------------------------- /src/assets/anime/anime_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_d.c -------------------------------------------------------------------------------- /src/assets/anime/anime_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_e.c -------------------------------------------------------------------------------- /src/assets/anime/anime_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_f.c -------------------------------------------------------------------------------- /src/assets/anime/anime_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_g.c -------------------------------------------------------------------------------- /src/assets/anime/anime_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_h.c -------------------------------------------------------------------------------- /src/assets/anime/anime_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_i.c -------------------------------------------------------------------------------- /src/assets/anime/anime_j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_j.c -------------------------------------------------------------------------------- /src/assets/anime/anime_k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_k.c -------------------------------------------------------------------------------- /src/assets/anime/anime_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_l.c -------------------------------------------------------------------------------- /src/assets/anime/anime_m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_m.c -------------------------------------------------------------------------------- /src/assets/anime/anime_mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_mario.c -------------------------------------------------------------------------------- /src/assets/anime/anime_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_n.c -------------------------------------------------------------------------------- /src/assets/anime/anime_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_o.c -------------------------------------------------------------------------------- /src/assets/anime/anime_smog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_smog.c -------------------------------------------------------------------------------- /src/assets/anime/anime_virus_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_virus_b.c -------------------------------------------------------------------------------- /src/assets/anime/anime_virus_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_virus_r.c -------------------------------------------------------------------------------- /src/assets/anime/anime_virus_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/anime/anime_virus_y.c -------------------------------------------------------------------------------- /src/assets/coffee/coffee01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/coffee/coffee01.c -------------------------------------------------------------------------------- /src/assets/game/game_al.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_al.c -------------------------------------------------------------------------------- /src/assets/game/game_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_item.c -------------------------------------------------------------------------------- /src/assets/game/game_ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_ls.c -------------------------------------------------------------------------------- /src/assets/game/game_p1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_p1.c -------------------------------------------------------------------------------- /src/assets/game/game_p2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_p2.c -------------------------------------------------------------------------------- /src/assets/game/game_p4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game/game_p4.c -------------------------------------------------------------------------------- /src/assets/game_etc/etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game_etc/etc.c -------------------------------------------------------------------------------- /src/assets/game_etc/etc_lws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/game_etc/etc_lws.c -------------------------------------------------------------------------------- /src/assets/menu/menu_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_char.c -------------------------------------------------------------------------------- /src/assets/menu/menu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_common.c -------------------------------------------------------------------------------- /src/assets/menu/menu_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_cont.c -------------------------------------------------------------------------------- /src/assets/menu/menu_kasa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_kasa.c -------------------------------------------------------------------------------- /src/assets/menu/menu_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_level.c -------------------------------------------------------------------------------- /src/assets/menu/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_main.c -------------------------------------------------------------------------------- /src/assets/menu/menu_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_name.c -------------------------------------------------------------------------------- /src/assets/menu/menu_p2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_p2.c -------------------------------------------------------------------------------- /src/assets/menu/menu_p4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_p4.c -------------------------------------------------------------------------------- /src/assets/menu/menu_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_rank.c -------------------------------------------------------------------------------- /src/assets/menu/menu_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_setup.c -------------------------------------------------------------------------------- /src/assets/menu/menu_story.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu/menu_story.c -------------------------------------------------------------------------------- /src/assets/menu_bg/menu_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu_bg/menu_bg.c -------------------------------------------------------------------------------- /src/assets/menu_bg/menu_bg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/menu_bg/menu_bg2.c -------------------------------------------------------------------------------- /src/assets/story/bg01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg01.c -------------------------------------------------------------------------------- /src/assets/story/bg02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg02.c -------------------------------------------------------------------------------- /src/assets/story/bg03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg03.c -------------------------------------------------------------------------------- /src/assets/story/bg04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg04.c -------------------------------------------------------------------------------- /src/assets/story/bg05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg05.c -------------------------------------------------------------------------------- /src/assets/story/bg07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg07.c -------------------------------------------------------------------------------- /src/assets/story/bg08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg08.c -------------------------------------------------------------------------------- /src/assets/story/bg09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg09.c -------------------------------------------------------------------------------- /src/assets/story/bg10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg10.c -------------------------------------------------------------------------------- /src/assets/story/bg11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/story/bg11.c -------------------------------------------------------------------------------- /src/assets/title/title_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/title/title_all.c -------------------------------------------------------------------------------- /src/assets/title/title_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/title/title_bmp.c -------------------------------------------------------------------------------- /src/assets/waku/waku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/waku/waku.c -------------------------------------------------------------------------------- /src/assets/waku/waku2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/assets/waku/waku2.c -------------------------------------------------------------------------------- /src/boot/COMMON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/COMMON.c -------------------------------------------------------------------------------- /src/boot/boot_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/boot_main.c -------------------------------------------------------------------------------- /src/boot/dmadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/dmadata.c -------------------------------------------------------------------------------- /src/boot/rom_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/rom_offsets.c -------------------------------------------------------------------------------- /src/boot/scommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/scommon.c -------------------------------------------------------------------------------- /src/boot/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/boot/util.c -------------------------------------------------------------------------------- /src/buffers/buffer1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/buffers/buffer1.c -------------------------------------------------------------------------------- /src/buffers/buffer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/buffers/buffer2.c -------------------------------------------------------------------------------- /src/buffers/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/buffers/framebuffer.c -------------------------------------------------------------------------------- /src/dma_table/dma_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/dma_table/dma_table.c -------------------------------------------------------------------------------- /src/entry/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/entry/entry.s -------------------------------------------------------------------------------- /src/gateway/003630.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/gateway/003630.c -------------------------------------------------------------------------------- /src/gzip/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/gzip/gzip.c -------------------------------------------------------------------------------- /src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/gzip/inflate.c -------------------------------------------------------------------------------- /src/gzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/gzip/unzip.c -------------------------------------------------------------------------------- /src/libegcs/libgcc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libegcs/libgcc2.c -------------------------------------------------------------------------------- /src/libkmc/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/ctype.c -------------------------------------------------------------------------------- /src/libkmc/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/fmod.c -------------------------------------------------------------------------------- /src/libkmc/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/memmove.c -------------------------------------------------------------------------------- /src/libkmc/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/memset.c -------------------------------------------------------------------------------- /src/libkmc/mmuldi3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/mmuldi3.s -------------------------------------------------------------------------------- /src/libkmc/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/modf.c -------------------------------------------------------------------------------- /src/libkmc/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/rand.c -------------------------------------------------------------------------------- /src/libkmc/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libkmc/strcpy.c -------------------------------------------------------------------------------- /src/libnustd/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/ctype.c -------------------------------------------------------------------------------- /src/libnustd/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/fmod.c -------------------------------------------------------------------------------- /src/libnustd/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/memmove.c -------------------------------------------------------------------------------- /src/libnustd/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/modf.c -------------------------------------------------------------------------------- /src/libnustd/srand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/srand.c -------------------------------------------------------------------------------- /src/libnustd/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/libnustd/strcpy.c -------------------------------------------------------------------------------- /src/main_segment/066580.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/066580.c -------------------------------------------------------------------------------- /src/main_segment/COMMON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/COMMON.c -------------------------------------------------------------------------------- /src/main_segment/aiset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/aiset.c -------------------------------------------------------------------------------- /src/main_segment/audio/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/audio/sound.c -------------------------------------------------------------------------------- /src/main_segment/bg_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/bg_tasks.c -------------------------------------------------------------------------------- /src/main_segment/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/calc.c -------------------------------------------------------------------------------- /src/main_segment/calcsub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/calcsub.s -------------------------------------------------------------------------------- /src/main_segment/char_anime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/char_anime.c -------------------------------------------------------------------------------- /src/main_segment/debug_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/debug_menu.c -------------------------------------------------------------------------------- /src/main_segment/dm_game_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/dm_game_main.c -------------------------------------------------------------------------------- /src/main_segment/dm_game_main.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/dm_game_main.msg -------------------------------------------------------------------------------- /src/main_segment/dm_manual_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/dm_manual_main.c -------------------------------------------------------------------------------- /src/main_segment/dm_title_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/dm_title_main.c -------------------------------------------------------------------------------- /src/main_segment/dm_virus_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/dm_virus_init.c -------------------------------------------------------------------------------- /src/main_segment/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/font.c -------------------------------------------------------------------------------- /src/main_segment/game_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/game_etc.c -------------------------------------------------------------------------------- /src/main_segment/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/graphic.c -------------------------------------------------------------------------------- /src/main_segment/joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/joy.c -------------------------------------------------------------------------------- /src/main_segment/lws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/lws.c -------------------------------------------------------------------------------- /src/main_segment/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main.c -------------------------------------------------------------------------------- /src/main_segment/main1x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main1x.c -------------------------------------------------------------------------------- /src/main_segment/main_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main_menu.c -------------------------------------------------------------------------------- /src/main_segment/main_menu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main_menu.msg -------------------------------------------------------------------------------- /src/main_segment/main_menu_yn.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main_menu_yn.msg -------------------------------------------------------------------------------- /src/main_segment/main_story.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main_story.c -------------------------------------------------------------------------------- /src/main_segment/main_story.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/main_story.msg -------------------------------------------------------------------------------- /src/main_segment/msgwnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/msgwnd.c -------------------------------------------------------------------------------- /src/main_segment/nnsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/nnsched.c -------------------------------------------------------------------------------- /src/main_segment/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/record.c -------------------------------------------------------------------------------- /src/main_segment/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/replay.c -------------------------------------------------------------------------------- /src/main_segment/scommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/scommon.c -------------------------------------------------------------------------------- /src/main_segment/tex_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/tex_func.c -------------------------------------------------------------------------------- /src/main_segment/unused/020D10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/unused/020D10.c -------------------------------------------------------------------------------- /src/main_segment/unused/055C40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/unused/055C40.c -------------------------------------------------------------------------------- /src/main_segment/unused/065080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/unused/065080.c -------------------------------------------------------------------------------- /src/main_segment/unused/066080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/unused/066080.c -------------------------------------------------------------------------------- /src/main_segment/vr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/main_segment/vr_init.c -------------------------------------------------------------------------------- /src/rom_header/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/rom_header/rom_header.c -------------------------------------------------------------------------------- /src/rsp/aspMain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/rsp/aspMain.s -------------------------------------------------------------------------------- /src/rsp/f3dex2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/rsp/f3dex2.s -------------------------------------------------------------------------------- /src/rsp/rspboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/rsp/rspboot.s -------------------------------------------------------------------------------- /src/rsp/s2dex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/src/rsp/s2dex.s -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/asm-differ/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/.gitignore -------------------------------------------------------------------------------- /tools/asm-differ/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/.gitrepo -------------------------------------------------------------------------------- /tools/asm-differ/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/LICENSE -------------------------------------------------------------------------------- /tools/asm-differ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/README.md -------------------------------------------------------------------------------- /tools/asm-differ/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/diff.py -------------------------------------------------------------------------------- /tools/asm-differ/diff_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/diff_settings.py -------------------------------------------------------------------------------- /tools/asm-differ/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/mypy.ini -------------------------------------------------------------------------------- /tools/asm-differ/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/poetry.lock -------------------------------------------------------------------------------- /tools/asm-differ/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/pyproject.toml -------------------------------------------------------------------------------- /tools/asm-differ/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/screenshot.png -------------------------------------------------------------------------------- /tools/asm-differ/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/asm-differ/test.py -------------------------------------------------------------------------------- /tools/buildtools/inc_from_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/buildtools/inc_from_bin.py -------------------------------------------------------------------------------- /tools/buildtools/msg_reencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/buildtools/msg_reencoder.py -------------------------------------------------------------------------------- /tools/check_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/check_format.sh -------------------------------------------------------------------------------- /tools/check_reordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/check_reordering.py -------------------------------------------------------------------------------- /tools/checksummer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/checksummer.py -------------------------------------------------------------------------------- /tools/compressor/decompressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/compressor/decompressor.py -------------------------------------------------------------------------------- /tools/first_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/first_diff.py -------------------------------------------------------------------------------- /tools/lws_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/lws_extract.py -------------------------------------------------------------------------------- /tools/m2ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/m2ctx.py -------------------------------------------------------------------------------- /tools/msg_joiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/msg_joiner.py -------------------------------------------------------------------------------- /tools/permuter_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/permuter_settings.toml -------------------------------------------------------------------------------- /tools/pj64_syms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/pj64_syms.py -------------------------------------------------------------------------------- /tools/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/progress.py -------------------------------------------------------------------------------- /tools/read_plf_disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/read_plf_disasm.py -------------------------------------------------------------------------------- /tools/splat_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/split_plf_objdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/split_plf_objdump.py -------------------------------------------------------------------------------- /tools/sym_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngheloAlf/drmario64/HEAD/tools/sym_info.py --------------------------------------------------------------------------------