├── README.md └── ws_root ├── Makefile ├── hostbin └── SunOS │ ├── CountryDatabase │ ├── adx │ ├── allnotinsccs │ ├── buildtree │ ├── comp3do │ ├── cook │ ├── ddf2c │ ├── ddfc │ ├── ddfc1 │ ├── decomp3do │ ├── discdata.h │ ├── dmnum │ ├── dumpelf │ ├── elfsize │ ├── filemap.out │ ├── filesystem.h │ ├── fix_copyright │ ├── fix_eol_mac │ ├── fix_eol_pc │ ├── fix_eol_unix │ ├── fix_includes_mac │ ├── fix_includes_pc │ ├── fix_includes_unix │ ├── fsbuild │ ├── getromelfinfo │ ├── jas │ ├── jas.debug │ ├── layout │ ├── layout.tcl │ ├── makeboot │ ├── makeimage │ ├── notinsccs │ ├── overwrite │ ├── pforth │ ├── pforth.dic │ ├── r64dec │ ├── r64enc │ ├── rsasign │ └── treesize ├── hostlib └── SunOS │ └── libtcl.a ├── libs └── default │ ├── libaudiodemo.a │ ├── libaudioprivate.a │ ├── libblitter_utils.a │ ├── libc.a │ ├── libclt.a │ ├── libds.a │ ├── libdspptouch.a │ ├── libdsutils.a │ ├── libeventbroker.a │ ├── libezflixdecoder.a │ ├── libloader.a │ ├── libmusic.a │ ├── libpforthmon.a │ ├── libromapp.a │ ├── libspmath.a │ ├── libsubscriber.a │ ├── libvcdds.a │ ├── libvcddsutils.a │ ├── libvcdsubscriber.a │ └── libvcdsubutils.a ├── release └── 3do_os │ └── default │ ├── ROM.m2.16.debug │ ├── ROM.m2.debug │ ├── ROM.m2.flash.debug │ ├── dbinfo.16M │ ├── dbinfo.8M │ ├── dbinfo.flash │ ├── debugger.16M.scr │ ├── debugger.flash.scr │ ├── debugger.scr │ ├── flash.scr │ ├── remote │ ├── Examples │ │ ├── Audio │ │ │ ├── Beep │ │ │ │ ├── tb_envelope │ │ │ │ ├── tb_playsamp │ │ │ │ └── tb_spool │ │ │ ├── EZ3DSound │ │ │ │ ├── BeeLoop.aiff │ │ │ │ ├── EZ3DSound │ │ │ │ ├── bee.mp │ │ │ │ ├── makepatch.script │ │ │ │ ├── reverb.mp │ │ │ │ └── yoohoo.aiff │ │ │ ├── EZSound │ │ │ │ ├── EZSound │ │ │ │ ├── ez_squiggle.mp │ │ │ │ ├── idling_engine.mp │ │ │ │ ├── makepatch.script │ │ │ │ └── reverb.mp │ │ │ ├── Juggler │ │ │ │ ├── canon.pimap │ │ │ │ ├── tj_canon │ │ │ │ ├── tj_multi │ │ │ │ └── tj_simple │ │ │ ├── MarkovMusic │ │ │ │ └── MarkovMusic │ │ │ ├── Misc │ │ │ │ ├── capture_audio │ │ │ │ ├── minmax_audio │ │ │ │ ├── playsample │ │ │ │ ├── simple_envelope │ │ │ │ ├── ta_attach │ │ │ │ ├── ta_customdelay │ │ │ │ ├── ta_envelope │ │ │ │ ├── ta_pitchnotes │ │ │ │ ├── ta_sweeps │ │ │ │ ├── ta_timer │ │ │ │ ├── ta_tuning │ │ │ │ └── tone │ │ │ ├── Patches │ │ │ │ ├── Reverbs │ │ │ │ │ ├── 1tap.mp │ │ │ │ │ ├── allpass_filter.mp │ │ │ │ │ ├── lowpass_comb.mp │ │ │ │ │ ├── makepatch.script │ │ │ │ │ ├── multi_lowpass.mp │ │ │ │ │ ├── multi_lowpass_1O1Z.mp │ │ │ │ │ ├── multi_lowpass_allpass.mp │ │ │ │ │ ├── multi_lp_allp_1O1Z.mp │ │ │ │ │ └── multitap.mp │ │ │ │ ├── filtered_sample.mp │ │ │ │ ├── flange.mp │ │ │ │ ├── helicopter.mp │ │ │ │ ├── lfo_amp_pulse.mp │ │ │ │ ├── lfo_freq_tri.mp │ │ │ │ ├── makepatch.script │ │ │ │ ├── ramp_frequency.mp │ │ │ │ ├── rhold_freq.mp │ │ │ │ ├── rocket.mp │ │ │ │ ├── sample.mp │ │ │ │ ├── saw_pulse_svf.mp │ │ │ │ ├── snare_delay.mp │ │ │ │ ├── tri_amp_samp.mp │ │ │ │ ├── ufo.mp │ │ │ │ └── wind.mp │ │ │ ├── Score │ │ │ │ ├── auto_beat │ │ │ │ ├── auto_beat.pimap │ │ │ │ ├── playmf │ │ │ │ └── playpimap │ │ │ ├── Songs │ │ │ │ ├── BobsFugue │ │ │ │ │ ├── FugueMono.mf │ │ │ │ │ └── fuguemono.pimap │ │ │ │ ├── CoalRiver │ │ │ │ │ ├── CoalRiver.mf │ │ │ │ │ └── CoalRiver.pimap │ │ │ │ └── Zap │ │ │ │ │ ├── zap.mf │ │ │ │ │ └── zap.pimap │ │ │ ├── Sound3D │ │ │ │ ├── BeeLoop.aiff │ │ │ │ ├── Clonk.aiff │ │ │ │ ├── FootStepLoop.44m.aiff │ │ │ │ ├── GarbleTalk2Short.44m.aiff │ │ │ │ ├── Scream.44m.aiff │ │ │ │ ├── Whispering.aiff │ │ │ │ ├── bee3d.mp │ │ │ │ ├── bee3dspace.mp │ │ │ │ ├── clonk.mp │ │ │ │ ├── makepatch.script │ │ │ │ ├── phone.mp │ │ │ │ ├── sound3dspace1tap.mp │ │ │ │ ├── sound3dspace_nice.mp │ │ │ │ ├── sound3dspace_nice_stereo.mp │ │ │ │ ├── ta_bee3d │ │ │ │ ├── ta_leslie │ │ │ │ ├── ta_leslie.mp │ │ │ │ ├── ta_sound3d │ │ │ │ ├── ta_steer3d │ │ │ │ ├── test3dsound.mp │ │ │ │ └── walking.mp │ │ │ ├── SoundEffects │ │ │ │ ├── sfx_score │ │ │ │ └── windpatch │ │ │ └── Spooling │ │ │ │ ├── playsf │ │ │ │ ├── ta_spool │ │ │ │ ├── tsp_algorithmic │ │ │ │ ├── tsp_rooms │ │ │ │ ├── tsp_spoolsoundfile │ │ │ │ ├── tsp_switcher │ │ │ │ └── words.aiff │ │ ├── Driver │ │ │ └── proxyfile │ │ ├── EventBroker │ │ │ ├── cpdump │ │ │ ├── focus │ │ │ ├── lookie │ │ │ ├── luckie │ │ │ └── maus │ │ ├── FileSystem │ │ │ ├── ls │ │ │ ├── type │ │ │ └── walker │ │ ├── Graphics │ │ │ ├── Blitter │ │ │ │ ├── Blur │ │ │ │ │ └── blur │ │ │ │ ├── Pan │ │ │ │ │ └── pan │ │ │ │ ├── Scroll │ │ │ │ │ └── scroll │ │ │ │ ├── TestBlit │ │ │ │ │ └── testblit │ │ │ │ ├── oxford-big.utf │ │ │ │ └── oxford.utf │ │ │ ├── CLT │ │ │ │ ├── CLTSurface │ │ │ │ │ ├── cltsurface │ │ │ │ │ └── tom.raw │ │ │ │ ├── CLTspinclip │ │ │ │ │ ├── alexface.utf │ │ │ │ │ ├── background.raw │ │ │ │ │ ├── cltspinclip │ │ │ │ │ ├── daveface.utf │ │ │ │ │ ├── garyface.utf │ │ │ │ │ ├── paulface.utf │ │ │ │ │ └── randyface.utf │ │ │ │ ├── GSquare │ │ │ │ │ ├── cow.utf │ │ │ │ │ └── gsquare │ │ │ │ └── Scrolling │ │ │ │ │ ├── scrolling │ │ │ │ │ └── scrolling.rgb │ │ │ ├── Fonts │ │ │ │ ├── Bounce │ │ │ │ │ └── bounce │ │ │ │ ├── Colors │ │ │ │ │ └── colors │ │ │ │ ├── NewFont │ │ │ │ │ └── newfont │ │ │ │ ├── Rotate │ │ │ │ │ └── rotate │ │ │ │ ├── Showfont │ │ │ │ │ └── showfont │ │ │ │ ├── Showmessage │ │ │ │ │ └── showmessage │ │ │ │ └── Transform │ │ │ │ │ └── transform │ │ │ ├── Frame2d │ │ │ │ ├── Automapper │ │ │ │ │ └── automapper │ │ │ │ ├── DrawLines │ │ │ │ │ └── drawlines │ │ │ │ ├── Movesprite │ │ │ │ │ └── movesprite │ │ │ │ ├── Points │ │ │ │ │ └── points │ │ │ │ ├── Rectangles │ │ │ │ │ └── rectangles │ │ │ │ ├── RenderOrder │ │ │ │ │ └── renderorder │ │ │ │ └── SimpleSprite │ │ │ │ │ └── simplesprite │ │ │ ├── GraphicsFolio │ │ │ │ ├── autosizeview │ │ │ │ ├── basicview │ │ │ │ ├── dbuf │ │ │ │ ├── listprojectors │ │ │ │ ├── listviewtypes │ │ │ │ └── manyview │ │ │ └── Models │ │ │ │ ├── Lifting_Body.ssp │ │ │ │ ├── leaf.utf │ │ │ │ ├── mipcube.csf │ │ │ │ ├── models.make │ │ │ │ ├── rgbcube.csf │ │ │ │ ├── stp.3ds │ │ │ │ └── texcow.csf │ │ ├── Kernel │ │ │ ├── UserExceptions │ │ │ ├── argpassing │ │ │ ├── defaultport │ │ │ ├── fasttiming │ │ │ ├── memdebug │ │ │ ├── metronome │ │ │ ├── msgpassing │ │ │ ├── signals │ │ │ ├── timerread │ │ │ └── timersleep │ │ ├── MPEG │ │ │ ├── Photo │ │ │ │ ├── photo │ │ │ │ └── still.mpg │ │ │ └── PlayFast │ │ │ │ ├── m2car.mpv │ │ │ │ └── playfast │ │ ├── Mercury │ │ │ └── Examples │ │ │ │ ├── anim │ │ │ │ └── anim │ │ │ │ ├── bigcircle │ │ │ │ ├── bigcircle │ │ │ │ ├── regress │ │ │ │ ├── regress.cube │ │ │ │ ├── regress.hires32 │ │ │ │ ├── regress.mp │ │ │ │ ├── sky.utf │ │ │ │ ├── three.utf │ │ │ │ └── twelve.utf │ │ │ │ ├── bigcirclempm │ │ │ │ └── bigcirclempm │ │ │ │ ├── data │ │ │ │ ├── AnimationEngine.w │ │ │ │ ├── MercuryEngine.w │ │ │ │ ├── rush_page.utf │ │ │ │ ├── rushskt.csf │ │ │ │ ├── sky.utf │ │ │ │ ├── spacefig.bsf │ │ │ │ ├── spacefig.utf │ │ │ │ ├── three.utf │ │ │ │ └── twelve.utf │ │ │ │ ├── helloworld │ │ │ │ └── helloworld │ │ │ │ ├── testbboard │ │ │ │ └── testbboard │ │ │ │ ├── viewer │ │ │ │ └── viewer │ │ │ │ └── viewer_mp │ │ │ │ └── viewer_mp │ │ ├── Misc │ │ │ ├── IB │ │ │ ├── IB_JOHN │ │ │ ├── MPEG │ │ │ ├── libmercury1.a │ │ │ ├── libmercury2.a │ │ │ ├── libmercury3.a │ │ │ ├── libmercury4.a │ │ │ ├── libmercury_mpm.a │ │ │ └── libmercury_utils.a │ │ ├── Miscellaneous │ │ │ ├── Compression │ │ │ │ └── compression │ │ │ └── DbgConsole │ │ │ │ └── dbgconsole │ │ └── Streaming │ │ │ ├── DataPlayer │ │ │ ├── DataPlayer │ │ │ └── data.stream │ │ │ ├── EZFlixPlayer │ │ │ ├── EZFlixPlayer │ │ │ └── mad.stream │ │ │ ├── PlaySA │ │ │ ├── PlaySA │ │ │ ├── bob.stream │ │ │ └── mono_sqs2.stream │ │ │ └── VideoPlayer │ │ │ ├── VideoPlayer │ │ │ └── video1.stream │ ├── QuickLook │ │ ├── longlook │ │ ├── perf2d │ │ ├── quicklook │ │ ├── sprite1 │ │ ├── sprite3 │ │ ├── sprite4 │ │ └── xfade │ ├── RomApps │ │ ├── EjectDisk │ │ ├── StorMgr-Title.utf │ │ ├── StorageManager │ │ ├── audio.romapp │ │ ├── discjuggler │ │ ├── discjugglerEDD │ │ ├── discjugglerNR │ │ ├── nodisc.romapp │ │ ├── opera.romapp │ │ ├── photo.romapp │ │ ├── unknown.romapp │ │ └── video.romapp │ ├── System.m2 │ │ ├── Audio │ │ │ ├── aiff │ │ │ │ └── sinewave.aiff │ │ │ └── dsp │ │ │ │ ├── add.dsp │ │ │ │ ├── add_accum.dsp │ │ │ │ ├── basic.bm │ │ │ │ ├── benchmark.dsp │ │ │ │ ├── chaos_1d.dsp │ │ │ │ ├── cubic_amplifier.dsp │ │ │ │ ├── deemphcd.dsp │ │ │ │ ├── delay4.dsp │ │ │ │ ├── delay_f1.dsp │ │ │ │ ├── delay_f2.dsp │ │ │ │ ├── depopper.dsp │ │ │ │ ├── envelope.dsp │ │ │ │ ├── envfollower.dsp │ │ │ │ ├── expmod_unsigned.dsp │ │ │ │ ├── filter_1o1z.dsp │ │ │ │ ├── filter_3d.dsp │ │ │ │ ├── impulse.dsp │ │ │ │ ├── input_accum.dsp │ │ │ │ ├── integrator.dsp │ │ │ │ ├── latch.dsp │ │ │ │ ├── line_in.dsp │ │ │ │ ├── line_out.dsp │ │ │ │ ├── maximum.dsp │ │ │ │ ├── minimum.dsp │ │ │ │ ├── multiply.dsp │ │ │ │ ├── multiply_accum.dsp │ │ │ │ ├── multiply_unsigned.dsp │ │ │ │ ├── nanokernel.dsp │ │ │ │ ├── noise.dsp │ │ │ │ ├── output_accum.dsp │ │ │ │ ├── pulse.dsp │ │ │ │ ├── pulse_lfo.dsp │ │ │ │ ├── randomhold.dsp │ │ │ │ ├── rednoise.dsp │ │ │ │ ├── rednoise_lfo.dsp │ │ │ │ ├── sampler_16_f1.dsp │ │ │ │ ├── sampler_16_f2.dsp │ │ │ │ ├── sampler_16_v1.dsp │ │ │ │ ├── sampler_16_v2.dsp │ │ │ │ ├── sampler_8_f1.dsp │ │ │ │ ├── sampler_8_f2.dsp │ │ │ │ ├── sampler_8_v1.dsp │ │ │ │ ├── sampler_8_v2.dsp │ │ │ │ ├── sampler_adp4_v1.dsp │ │ │ │ ├── sampler_adp4_v2.dsp │ │ │ │ ├── sampler_cbd2_f1.dsp │ │ │ │ ├── sampler_cbd2_f2.dsp │ │ │ │ ├── sampler_cbd2_v1.dsp │ │ │ │ ├── sampler_cbd2_v2.dsp │ │ │ │ ├── sampler_cbd2_v4.dsp │ │ │ │ ├── sampler_drift_v1.dsp │ │ │ │ ├── sampler_raw_f1.dsp │ │ │ │ ├── sampler_sqs2_f1.dsp │ │ │ │ ├── sampler_sqs2_v1.dsp │ │ │ │ ├── sawtooth.dsp │ │ │ │ ├── sawtooth_lfo.dsp │ │ │ │ ├── schmidt_trigger.dsp │ │ │ │ ├── slew_rate_limiter.dsp │ │ │ │ ├── square.dsp │ │ │ │ ├── square_lfo.dsp │ │ │ │ ├── sub_decode_adp4.dsp │ │ │ │ ├── sub_envelope.dsp │ │ │ │ ├── sub_sampler_16_v1.dsp │ │ │ │ ├── sub_sampler_adp4_v1.dsp │ │ │ │ ├── subtract.dsp │ │ │ │ ├── subtract_accum.dsp │ │ │ │ ├── subtract_from_accum.dsp │ │ │ │ ├── svfilter.dsp │ │ │ │ ├── tapoutput.dsp │ │ │ │ ├── times_256.dsp │ │ │ │ ├── timesplus.dsp │ │ │ │ ├── timesplus_noclip.dsp │ │ │ │ ├── triangle.dsp │ │ │ │ └── triangle_lfo.dsp │ │ ├── Boot │ │ │ ├── filesystem │ │ │ ├── filesystem.init │ │ │ ├── kernel │ │ │ ├── kernel.init │ │ │ ├── operator │ │ │ ├── operator.init │ │ │ └── remotevol │ │ ├── Drivers │ │ │ ├── Descriptions │ │ │ │ ├── bdavideo.ddf │ │ │ │ ├── cdrom.ddf │ │ │ │ ├── controlport.ddf │ │ │ │ ├── eventport.ddf │ │ │ │ ├── host.ddf │ │ │ │ ├── mp.ddf │ │ │ │ ├── mpegvideo.ddf │ │ │ │ ├── mpsim.ddf │ │ │ │ ├── ns16550.ddf │ │ │ │ ├── null.ddf │ │ │ │ ├── proxy.ddf │ │ │ │ ├── proxyfile.ddf │ │ │ │ ├── ram.ddf │ │ │ │ ├── ramdisk.ddf │ │ │ │ ├── stackedhost.ddf │ │ │ │ ├── storagecard.ddf │ │ │ │ └── triangleengine.ddf │ │ │ ├── bdavideo.driver │ │ │ ├── cdrom.driver │ │ │ ├── controlport.driver │ │ │ ├── eventport.driver │ │ │ ├── host.driver │ │ │ ├── mp.driver │ │ │ ├── mpegvideo.driver │ │ │ ├── mpsim.driver │ │ │ ├── ns16550.driver │ │ │ ├── null.driver │ │ │ ├── pchost.driver │ │ │ ├── proxy.driver │ │ │ ├── ram.driver │ │ │ ├── ramdisk.driver │ │ │ ├── stackedhost.driver │ │ │ ├── storagecard.driver │ │ │ └── triangleengine.driver │ │ ├── Errors │ │ │ ├── DSe.errs │ │ │ ├── FAP.errs │ │ │ ├── FAu.errs │ │ │ ├── FBl.errs │ │ │ ├── FBp.errs │ │ │ ├── FCo.errs │ │ │ ├── FF2.errs │ │ │ ├── FFo.errs │ │ │ ├── FGr.errs │ │ │ ├── FIF.errs │ │ │ ├── FIc.errs │ │ │ ├── FIn.errs │ │ │ ├── FJS.errs │ │ │ ├── FMa.errs │ │ │ ├── FPF.errs │ │ │ ├── FRQ.errs │ │ │ ├── FSG.errs │ │ │ ├── LCL.errs │ │ │ ├── LDS.errs │ │ │ ├── LEB.errs │ │ │ ├── LLd.errs │ │ │ ├── LMu.errs │ │ │ └── TEB.errs │ │ ├── EventBroker │ │ │ ├── driverlet_1.eb │ │ │ ├── driverlet_41.eb │ │ │ ├── driverlet_49.eb │ │ │ ├── driverlet_4d.eb │ │ │ └── driverlet_6.eb │ │ ├── FileSystems │ │ │ ├── acrobat.fs │ │ │ └── host.fs │ │ ├── Fonts │ │ │ ├── default_14.font │ │ │ └── saltpile_12.font │ │ ├── International │ │ │ ├── CountryDatabase │ │ │ ├── da.language │ │ │ ├── de.language │ │ │ ├── es.language │ │ │ ├── fr.language │ │ │ ├── it.language │ │ │ ├── ja.language │ │ │ ├── nl.language │ │ │ └── pt.language │ │ ├── Modules │ │ │ ├── audio │ │ │ ├── audiopatch │ │ │ ├── audiopatchfile │ │ │ ├── batt │ │ │ ├── beep │ │ │ ├── blitter │ │ │ ├── compression │ │ │ ├── date │ │ │ ├── font │ │ │ ├── frame2d │ │ │ ├── fsutils │ │ │ ├── graphics │ │ │ ├── gstate │ │ │ ├── icon │ │ │ ├── iff │ │ │ ├── international │ │ │ ├── jstring │ │ │ ├── mpegaudiodecoder │ │ │ ├── requester │ │ │ ├── savegame │ │ │ └── script │ │ ├── Programs │ │ │ ├── audioavail │ │ │ ├── audiomon │ │ │ ├── bootallocs │ │ │ ├── clock │ │ │ ├── compare │ │ │ ├── copy │ │ │ ├── delete │ │ │ ├── dismount │ │ │ ├── dspfaders │ │ │ ├── fileattrs │ │ │ ├── findfile │ │ │ ├── format │ │ │ ├── fsinfo │ │ │ ├── hw │ │ │ ├── insinfo │ │ │ ├── intl │ │ │ ├── items │ │ │ ├── ls │ │ │ ├── makepatch │ │ │ ├── minimizefs │ │ │ ├── mkdir │ │ │ ├── mkfile │ │ │ ├── mount │ │ │ ├── mountlevel │ │ │ ├── options │ │ │ ├── pforth │ │ │ ├── playmf │ │ │ ├── recheckfs │ │ │ ├── rename │ │ │ ├── syncstress │ │ │ ├── type │ │ │ ├── typeiff │ │ │ ├── walker │ │ │ └── writemedia │ │ ├── Requester │ │ │ ├── StorMgr.utf │ │ │ ├── StorMgr_9.font │ │ │ └── TextEntry.utf │ │ └── Tasks │ │ │ ├── eventbroker │ │ │ ├── romapplauncher │ │ │ └── shell │ ├── Tests │ │ ├── Audio │ │ │ ├── DelayDemo │ │ │ │ ├── DelayDemo.mf │ │ │ │ ├── DelayDemo.pimap │ │ │ │ ├── DelayDemo.script │ │ │ │ ├── DelayLine.mp │ │ │ │ ├── DelayLineTemplate.mp │ │ │ │ └── DelayLineTemplateClear.mp │ │ │ ├── Patches │ │ │ │ ├── 3osc.mp │ │ │ │ ├── multitrig.mp │ │ │ │ ├── onetrig.mp │ │ │ │ ├── sawenv.mp │ │ │ │ ├── snaredelay.mp │ │ │ │ ├── tac_gain.mp │ │ │ │ ├── tac_simple.mp │ │ │ │ └── test3dsound.mp │ │ │ ├── capture_ins │ │ │ ├── check_dma │ │ │ ├── check_time │ │ │ ├── dumpdspstats │ │ │ ├── dumpsiginfo │ │ │ ├── gestures │ │ │ ├── gestures.mp │ │ │ ├── idle_audio │ │ │ ├── leftright │ │ │ ├── levels │ │ │ ├── loadatag │ │ │ ├── loadins │ │ │ ├── long_time │ │ │ ├── loopbench │ │ │ ├── setsamplerate │ │ │ ├── sniff_mem │ │ │ ├── ta_api │ │ │ ├── ta_attach_mem │ │ │ ├── ta_auto │ │ │ ├── ta_auto_att │ │ │ ├── ta_bugs │ │ │ ├── ta_cvttogeneric │ │ │ ├── ta_cvttosignal │ │ │ ├── ta_envelope_mem │ │ │ ├── ta_fastenv │ │ │ ├── ta_framecount │ │ │ ├── ta_immed │ │ │ ├── ta_input │ │ │ ├── ta_ins_mem │ │ │ ├── ta_mixer │ │ │ ├── ta_patchcmd │ │ │ ├── ta_reg_connect │ │ │ ├── ta_sample_mem │ │ │ ├── ta_sharing │ │ │ ├── ta_trigger │ │ │ ├── ta_trigger_args │ │ │ ├── ta_trigger_recv │ │ │ ├── ta_tuning_mem │ │ │ ├── test_pgr │ │ │ ├── test_sample │ │ │ ├── testaudio │ │ │ ├── ts3d_bugs │ │ │ ├── tsc_bend │ │ │ └── tsc_pan │ │ ├── Batt │ │ │ └── testBatt │ │ ├── Bench │ │ │ ├── MemBench │ │ │ ├── cache │ │ │ └── m2bench │ │ ├── CD-ROM │ │ │ ├── certify │ │ │ ├── ecc │ │ │ ├── m2cd │ │ │ ├── monitor │ │ │ └── seek │ │ ├── EventBroker │ │ │ ├── cpdump │ │ │ ├── focus │ │ │ ├── generic │ │ │ ├── lookie │ │ │ ├── luckie │ │ │ └── maus │ │ ├── File │ │ │ ├── diskspeed │ │ │ ├── microlook │ │ │ └── printspeed │ │ ├── International │ │ │ └── intltest │ │ ├── Kernel │ │ │ ├── fptest │ │ │ ├── getrand │ │ │ ├── lumberjack │ │ │ ├── restable │ │ │ ├── savelumber │ │ │ ├── setjmp │ │ │ ├── sfptest │ │ │ └── watchdie │ │ ├── MP │ │ │ └── testMP │ │ ├── MPEG │ │ │ ├── TestMPEGAudio │ │ │ │ ├── envogue.mpa │ │ │ │ └── testmpegaudio │ │ │ └── usefmvvideo │ │ ├── Math │ │ │ ├── f16_cvtfloat │ │ │ ├── f16_muldiv │ │ │ └── floatspeed │ │ ├── Script │ │ │ └── script │ │ ├── Serial │ │ │ └── serial │ │ └── proxyfile │ └── timings │ └── test.cdrom.image ├── rules ├── Makefile ├── datafiles ├── depend ├── exampledata ├── extrasrc ├── generic ├── hostexec ├── hostexecs ├── hostlib ├── linkexec ├── linklib ├── linkvector ├── makeexamples ├── multilink ├── shortcut └── subtree ├── src ├── Makefile ├── devices │ ├── Makefile │ ├── bdavideo │ │ ├── Makefile │ │ ├── bdavdl.c │ │ ├── bdavideo.D │ │ ├── bdavideo.c │ │ ├── bdavideo.h │ │ ├── db_ntsc.c │ │ ├── db_ntsc_nl.c │ │ ├── db_pal.c │ │ ├── db_pal_nl.c │ │ ├── firq.c │ │ ├── protos.h │ │ └── stompomatic.c │ ├── cdrom │ │ ├── Makefile │ │ ├── cdrom.D │ │ └── m2cd.c │ ├── controlport │ │ ├── ControlPort.c │ │ ├── Makefile │ │ └── controlport.D │ ├── eventport │ │ ├── EventPort.c │ │ ├── Makefile │ │ └── eventport.D │ ├── host │ │ ├── Makefile │ │ ├── host.D │ │ ├── host.c │ │ └── host.spec │ ├── mp │ │ ├── Makefile │ │ ├── mp.D │ │ └── mp.c │ ├── mpegvideo │ │ ├── .del-MPEGVideo.h-Dec-06-96 │ │ ├── M2MPEGUnit.c │ │ ├── M2MPEGUnit.h │ │ ├── MPEGQuantizerTables.c │ │ ├── MPEGQuantizerTables.h │ │ ├── MPEGStream.c │ │ ├── MPEGStream.h │ │ ├── MPEGVideoActions.c │ │ ├── MPEGVideoActions.h │ │ ├── MPEGVideoBuffers.c │ │ ├── MPEGVideoBuffers.h │ │ ├── MPEGVideoParse.c │ │ ├── MPEGVideoParse.h │ │ ├── Makefile │ │ ├── mpQuantOpt.c │ │ ├── mpVideoDecode.c │ │ ├── mpVideoDecode.h │ │ ├── mpVideoDriver.c │ │ ├── mpVideoDriver.h │ │ ├── mpVideoMain.c │ │ ├── mpegvideo.D │ │ └── videoDeviceContext.h │ ├── mpsim │ │ ├── Makefile │ │ ├── mpsim.D │ │ └── mpsim.c │ ├── ns16550 │ │ ├── Makefile │ │ ├── ns16550.D │ │ └── ns16550.c │ ├── null │ │ ├── Makefile │ │ ├── null.D │ │ └── nulldrvr.c │ ├── operator.init │ │ ├── Makefile │ │ ├── linkexec.x │ │ └── opinit.c │ ├── operator │ │ ├── Makefile │ │ ├── chan.c │ │ ├── itemserver.c │ │ ├── linkexec.x │ │ ├── mchan.c │ │ ├── microslot.c │ │ ├── operator.D │ │ ├── operator.c │ │ ├── operator.ddf.c │ │ ├── pchan.c │ │ ├── pcmciaslot.c │ │ ├── plugnplay.c │ │ └── timer.c │ ├── pchost │ │ ├── Makefile │ │ ├── pchost.D │ │ └── pchost.c │ ├── proxy │ │ ├── Makefile │ │ ├── proxy.D │ │ └── proxy.c │ ├── ram │ │ ├── Makefile │ │ ├── ram.D │ │ └── ramdevice.c │ ├── ramdisk │ │ ├── Makefile │ │ ├── ramdisk.D │ │ └── ramdisk.c │ ├── stackedhost │ │ ├── Makefile │ │ ├── stackedhost.D │ │ └── stackedhost.c │ ├── storagecard │ │ ├── Makefile │ │ ├── storagecard.D │ │ └── storagecard.c │ └── triangleengine │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── context.c │ │ ├── context.h │ │ ├── driver.c │ │ ├── driver.h │ │ ├── hw.c │ │ ├── hw.h │ │ └── triangleengine.D ├── docs │ ├── 3DOLogo.gif.R64 │ ├── Makefile │ ├── Next.gif.R64 │ ├── Previous.gif.R64 │ ├── chapters.c │ ├── copyright.txt │ ├── manuals.c │ └── module_registry ├── drivers │ ├── Makefile │ ├── eventbroker │ │ ├── GlassesDriver.c │ │ ├── LightGunDriver.c │ │ ├── Makefile │ │ ├── MouseDriver.c │ │ ├── SteeringWheelDriver.c │ │ └── StickDriver.c │ ├── file │ │ ├── .del-linkedmem-Sep-09-96 │ │ │ ├── LinkedMemFileDriver.c │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── acrobat │ │ │ ├── Makefile │ │ │ ├── acrofuncs.h │ │ │ ├── acroutil.c │ │ │ ├── buf.c │ │ │ ├── dir.c │ │ │ ├── fileblk.c │ │ │ ├── freelist.c │ │ │ ├── init.c │ │ │ ├── log.c │ │ │ ├── mapper.c │ │ │ ├── meta.c │ │ │ ├── mirror.c │ │ │ ├── ops.c │ │ │ ├── super.c │ │ │ └── trans.c │ │ └── host │ │ │ ├── HostFileDriver.c │ │ │ └── Makefile │ └── languages │ │ ├── Makefile │ │ ├── da │ │ ├── Makefile │ │ └── da.c │ │ ├── de │ │ ├── Makefile │ │ └── de.c │ │ ├── es │ │ ├── Makefile │ │ └── es.c │ │ ├── fr │ │ ├── Makefile │ │ └── fr.c │ │ ├── it │ │ ├── Makefile │ │ └── it.c │ │ ├── ja │ │ ├── Makefile │ │ ├── ja.c │ │ └── ja.h │ │ ├── nl │ │ ├── Makefile │ │ └── nl.c │ │ └── pt │ │ ├── Makefile │ │ └── pt.c ├── errors │ ├── DSe.errs.c │ ├── FAP.errs.c │ ├── FAu.errs.c │ ├── FBl.errs.c │ ├── FBp.errs.c │ ├── FCo.errs.c │ ├── FF2.errs.c │ ├── FFo.errs.c │ ├── FGr.errs.c │ ├── FIF.errs.c │ ├── FIc.errs.c │ ├── FIn.errs.c │ ├── FJS.errs.c │ ├── FMa.errs.c │ ├── FPF.errs.c │ ├── FRQ.errs.c │ ├── FSG.errs.c │ ├── LCL.errs.c │ ├── LDS.errs.c │ ├── LEB.errs.c │ ├── LLd.errs.c │ ├── LMu.errs.c │ ├── Makefile │ └── TEB.errs.c ├── examples │ ├── BuildExamples │ ├── Makefile │ ├── assembly │ │ ├── Makefile │ │ ├── hello │ │ │ ├── Makefile │ │ │ └── hello.S │ │ └── numbers │ │ │ ├── Makefile │ │ │ ├── macros.i │ │ │ └── numbers.S │ ├── audio │ │ ├── Beep │ │ │ ├── Beep.make │ │ │ ├── Makefile │ │ │ ├── tb_envelope.c │ │ │ ├── tb_playsamp.c │ │ │ └── tb_spool.c │ │ ├── CoalRiver │ │ │ ├── CoalRiver.c │ │ │ ├── Makefile.disabled │ │ │ └── data │ │ │ │ ├── CoalRiver.imag.r64 │ │ │ │ ├── CoalRiver.mf.r64 │ │ │ │ └── Makefile.disabled │ │ ├── DrumBox │ │ │ ├── Makefile.disabled │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── drumbox.pimap │ │ │ └── drumbox.c │ │ ├── EZ3DSound │ │ │ ├── Makefile │ │ │ ├── ez3dsound.c │ │ │ ├── ez3dsound.h │ │ │ ├── ez3dsound.make │ │ │ ├── ez3dsound_app.c │ │ │ ├── patches │ │ │ │ ├── Makefile │ │ │ │ ├── bee.mp │ │ │ │ ├── makepatch.script │ │ │ │ └── reverb.mp │ │ │ └── samples │ │ │ │ └── Makefile │ │ ├── EZSound │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ ├── ez_squiggle.mp │ │ │ │ ├── idling_engine.mp │ │ │ │ ├── makepatch.script │ │ │ │ └── reverb.mp │ │ │ ├── ezsound.c │ │ │ ├── ezsound.h │ │ │ ├── ezsound.make │ │ │ └── ezsound_app.c │ │ ├── Juggler │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── canon.pimap │ │ │ ├── juggler.make │ │ │ ├── tj_canon.c │ │ │ ├── tj_multi.c │ │ │ └── tj_simple.c │ │ ├── Makefile │ │ ├── MarkovMusic │ │ │ ├── Makefile │ │ │ ├── MarkovMusic.make │ │ │ ├── data │ │ │ │ └── Makefile.disabled │ │ │ ├── markov_music.c │ │ │ ├── markov_music.h │ │ │ ├── markov_tables.c │ │ │ └── markov_tables.h │ │ ├── Misc │ │ │ ├── Makefile │ │ │ ├── Misc.make │ │ │ ├── capture_audio.c │ │ │ ├── minmax_audio.c │ │ │ ├── playsample.c │ │ │ ├── simple_envelope.c │ │ │ ├── ta_attach.c │ │ │ ├── ta_customdelay.c │ │ │ ├── ta_envelope.c │ │ │ ├── ta_pitchnotes.c │ │ │ ├── ta_sweeps.c │ │ │ ├── ta_timer.c │ │ │ ├── ta_tuning.c │ │ │ └── tone.c │ │ ├── Patches │ │ │ ├── Makefile │ │ │ ├── Reverbs │ │ │ │ ├── 1tap.mp │ │ │ │ ├── Makefile │ │ │ │ ├── allpass_filter.mp │ │ │ │ ├── lowpass_comb.mp │ │ │ │ ├── makepatch.script │ │ │ │ ├── multi_lowpass.mp │ │ │ │ ├── multi_lowpass_1O1Z.mp │ │ │ │ ├── multi_lowpass_allpass.mp │ │ │ │ ├── multi_lp_allp_1O1Z.mp │ │ │ │ └── multitap.mp │ │ │ ├── filtered_sample.mp │ │ │ ├── flange.mp │ │ │ ├── helicopter.mp │ │ │ ├── lfo_amp_pulse.mp │ │ │ ├── lfo_freq_tri.mp │ │ │ ├── makepatch.script │ │ │ ├── ramp_frequency.mp │ │ │ ├── rhold_freq.mp │ │ │ ├── rocket.mp │ │ │ ├── sample.mp │ │ │ ├── saw_pulse_svf.mp │ │ │ ├── snare_delay.mp │ │ │ ├── tri_amp_samp.mp │ │ │ ├── ufo.mp │ │ │ └── wind.mp │ │ ├── Score │ │ │ ├── Makefile │ │ │ ├── Score.make │ │ │ ├── auto_beat.c │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── auto_beat.pimap │ │ │ ├── playmf.c │ │ │ └── playpimap.c │ │ ├── Songs │ │ │ ├── BobsFugue │ │ │ │ ├── FugueMono.mf.r64 │ │ │ │ ├── Makefile │ │ │ │ └── fuguemono.pimap │ │ │ ├── CoalRiver │ │ │ │ ├── CoalRiver.mf.r64 │ │ │ │ ├── CoalRiver.pimap │ │ │ │ └── Makefile │ │ │ ├── Makefile │ │ │ ├── MyGroove │ │ │ │ ├── AGroove.pimap │ │ │ │ ├── AGroove1.mf.R64 │ │ │ │ ├── AGroove2.mf.R64 │ │ │ │ ├── AGroove3.mf.R64 │ │ │ │ └── Makefile.disabled │ │ │ └── Zap │ │ │ │ ├── Makefile │ │ │ │ ├── zap.mf.r64 │ │ │ │ └── zap.pimap │ │ ├── Sound3D │ │ │ ├── Makefile │ │ │ ├── SeeSound │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── SeeSound.make │ │ │ │ ├── data │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── matarrays.sdf │ │ │ │ │ ├── see_sound.bdf.R64 │ │ │ │ │ └── see_sound.sdf │ │ │ │ └── see_sound.c │ │ │ ├── Sound3D.make │ │ │ ├── patches │ │ │ │ ├── Makefile │ │ │ │ ├── bee3d.mp │ │ │ │ ├── bee3dspace.mp │ │ │ │ ├── clonk.mp │ │ │ │ ├── makepatch.script │ │ │ │ ├── phone.mp │ │ │ │ ├── sound3dspace1tap.mp │ │ │ │ ├── sound3dspace_nice.mp │ │ │ │ ├── sound3dspace_nice_stereo.mp │ │ │ │ ├── ta_leslie.mp │ │ │ │ ├── test3dsound.mp │ │ │ │ └── walking.mp │ │ │ ├── samples │ │ │ │ ├── BeeLoop.aiff.r64 │ │ │ │ ├── Clonk.aiff.r64 │ │ │ │ ├── FootStepLoop.44m.aiff.r64 │ │ │ │ ├── GarbleTalk2Short.44m.aiff.r64 │ │ │ │ ├── Makefile │ │ │ │ ├── Scream.44m.aiff.r64 │ │ │ │ └── Whispering.aiff.r64 │ │ │ ├── ta_bee3d.c │ │ │ ├── ta_flyby.c.disabled │ │ │ ├── ta_leslie.c │ │ │ ├── ta_sound3d.c │ │ │ └── ta_steer3d.c │ │ ├── SoundEffects │ │ │ ├── Makefile │ │ │ ├── SoundEffects.make │ │ │ ├── sfx_score.c │ │ │ └── windpatch.c │ │ ├── Spooling │ │ │ ├── Makefile │ │ │ ├── Spooling.make │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── words.aiff │ │ │ ├── playsf.c │ │ │ ├── ta_spool.c │ │ │ ├── tsp_algorithmic.c │ │ │ ├── tsp_rooms.c │ │ │ ├── tsp_spoolsoundfile.c │ │ │ └── tsp_switcher.c │ │ ├── archive │ │ │ ├── PatchDemo │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── tut02_lfo_freq_pulse.patch │ │ │ │ ├── tut03_lfo_amp_tri.patch │ │ │ │ ├── tut04_tri_amp_samp.patch │ │ │ │ ├── tut05_lfo_pitch_sample.patch │ │ │ │ ├── tut06_helicopter.patch │ │ │ │ ├── tut07_wind.patch │ │ │ │ ├── tut08_saw_pulse_svf.patch │ │ │ │ ├── tut09_rhold_freq.patch │ │ │ │ ├── tut10_ramp_volume.patch │ │ │ │ ├── tut11_rocket.patch │ │ │ │ ├── tut12_ufo.patch │ │ │ │ ├── tut13_delay_drum.patch │ │ │ │ ├── tut14_delay_whale.patch │ │ │ │ └── tut15_multitap_delay.patch │ │ │ ├── archive.txt │ │ │ ├── loopstereosoundfile.c │ │ │ └── loopstereosoundfile.h │ │ ├── audio.make │ │ └── jail │ │ │ ├── 1ReadMe.rtf.r64 │ │ │ ├── 1ReadMe.txt │ │ │ ├── sfx_simple.c │ │ │ ├── ta_crsamp.c │ │ │ └── ta_tweakknobs.c │ ├── driver │ │ ├── Makefile │ │ └── proxyfile │ │ │ ├── Makefile │ │ │ ├── proxyfile.D │ │ │ └── proxyfile.c │ ├── eventbroker │ │ ├── EventBrokerTests │ │ │ └── AppsData │ │ │ │ └── junk │ │ ├── Makefile │ │ ├── cpdump.c │ │ ├── eventbroker.make │ │ ├── focus.c │ │ ├── lookie.c │ │ ├── luckie.c │ │ └── maus.c │ ├── filesystem │ │ ├── Makefile │ │ ├── filesystem.make │ │ ├── ls.c │ │ ├── type.c │ │ └── walker.c │ ├── graphics │ │ ├── Makefile │ │ ├── blitter │ │ │ ├── Makefile │ │ │ ├── autodocs.c │ │ │ ├── blur │ │ │ │ ├── Makefile │ │ │ │ ├── blur.c │ │ │ │ └── blur.make │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ ├── oxford-big.utf │ │ │ │ └── oxford.utf │ │ │ ├── pan │ │ │ │ ├── Makefile │ │ │ │ ├── pan.c │ │ │ │ └── pan.make │ │ │ ├── scroll │ │ │ │ ├── Makefile │ │ │ │ ├── scroll.c │ │ │ │ └── scroll.make │ │ │ └── testblit │ │ │ │ ├── Makefile │ │ │ │ ├── circle.c │ │ │ │ ├── mask.c │ │ │ │ ├── matrix.c │ │ │ │ ├── simple.c │ │ │ │ ├── snippets.c │ │ │ │ ├── testblit.c │ │ │ │ ├── testblit.h │ │ │ │ └── testblit.make │ │ ├── clt │ │ │ ├── Makefile │ │ │ ├── cltspinclip │ │ │ │ ├── Makefile │ │ │ │ ├── clip.c │ │ │ │ ├── clip.h │ │ │ │ ├── cltspinclip.c │ │ │ │ ├── cltspinclip.make │ │ │ │ ├── data │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── alexface.utf │ │ │ │ │ ├── background.raw │ │ │ │ │ ├── daveface.utf │ │ │ │ │ ├── garyface.utf │ │ │ │ │ ├── paulface.utf │ │ │ │ │ └── randyface.utf │ │ │ │ ├── texload.c │ │ │ │ └── texload.h │ │ │ ├── cltsurface │ │ │ │ ├── Makefile │ │ │ │ ├── clip3.c │ │ │ │ ├── clip3.h │ │ │ │ ├── cltsurface.c │ │ │ │ ├── cltsurface.make │ │ │ │ └── data │ │ │ │ │ ├── Makefile │ │ │ │ │ └── tom.raw │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── cow.utf.r64 │ │ │ ├── gsquare │ │ │ │ ├── Makefile │ │ │ │ ├── gsquare.c │ │ │ │ ├── gsquare.make │ │ │ │ ├── texload.c │ │ │ │ └── texload.h │ │ │ ├── height_field │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── datafile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── hfdata │ │ │ │ ├── height_field.make │ │ │ │ ├── hf.c │ │ │ │ ├── hf.h │ │ │ │ ├── opthf.c │ │ │ │ ├── sample.h │ │ │ │ ├── testhf.c │ │ │ │ └── utf │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── rock6bit.utf.r64 │ │ │ │ │ ├── shrubbery6bit.utf.r64 │ │ │ │ │ ├── snow4bit.utf.r64 │ │ │ │ │ └── water4bit.utf.r64 │ │ │ └── scrolling │ │ │ │ ├── AsyncReadFile.c │ │ │ │ ├── AsyncReadFile.h │ │ │ │ ├── Makefile │ │ │ │ ├── clip3.c │ │ │ │ ├── clip3.h │ │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── scrolling.rgb │ │ │ │ ├── scrolling.c │ │ │ │ └── scrolling.make │ │ ├── csf │ │ │ ├── Makefile │ │ │ ├── leaf.utf.r64 │ │ │ ├── mipcube.csf.r64 │ │ │ ├── rgbcube.csf.r64 │ │ │ └── texcow.csf.r64 │ │ ├── fonts │ │ │ ├── Makefile │ │ │ ├── autodocs.c │ │ │ ├── bounce │ │ │ │ ├── Makefile │ │ │ │ ├── bounce.c │ │ │ │ └── bounce.make │ │ │ ├── colors │ │ │ │ ├── Makefile │ │ │ │ ├── colors.c │ │ │ │ └── colors.make │ │ │ ├── newfont │ │ │ │ ├── Makefile │ │ │ │ ├── newfont.c │ │ │ │ └── newfont.make │ │ │ ├── rotate │ │ │ │ ├── Makefile │ │ │ │ ├── rotate.c │ │ │ │ └── rotate.make │ │ │ ├── showfont │ │ │ │ ├── Makefile │ │ │ │ ├── showfont.c │ │ │ │ └── showfont.make │ │ │ ├── showmessage │ │ │ │ ├── Makefile │ │ │ │ ├── showmessage.c │ │ │ │ └── showmessage.make │ │ │ └── transform │ │ │ │ ├── Makefile │ │ │ │ ├── matrix.c │ │ │ │ ├── transform.c │ │ │ │ └── transform.make │ │ ├── frame2d │ │ │ ├── Makefile │ │ │ ├── automapper │ │ │ │ ├── AutoMapper.c │ │ │ │ ├── AutoMapper.make │ │ │ │ └── Makefile │ │ │ ├── drawlines │ │ │ │ ├── DrawLines.c │ │ │ │ ├── DrawLines.make │ │ │ │ └── Makefile │ │ │ ├── movesprite │ │ │ │ ├── Makefile │ │ │ │ ├── MoveSprite.c │ │ │ │ └── MoveSprite.make │ │ │ ├── points │ │ │ │ ├── Makefile │ │ │ │ ├── Points.c │ │ │ │ └── points.make │ │ │ ├── rectangles │ │ │ │ ├── Makefile │ │ │ │ ├── Rectangles.c │ │ │ │ └── Rectangles.make │ │ │ ├── renderorder │ │ │ │ ├── Makefile │ │ │ │ ├── RenderOrder.c │ │ │ │ └── RenderOrder.make │ │ │ ├── simplesprite │ │ │ │ ├── Makefile │ │ │ │ ├── SimpleSprite.c │ │ │ │ └── SimpleSprite.make │ │ │ └── spin3d2d │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── Spin3d2d.c │ │ │ │ └── Spin3d2d.make │ │ ├── graphicsfolio │ │ │ ├── Makefile │ │ │ ├── autosizeview.c │ │ │ ├── basicview.c │ │ │ ├── dbuf.c │ │ │ ├── folioexamples.make │ │ │ ├── listprojectors.c │ │ │ ├── listviewtypes.c │ │ │ └── manyview.c │ │ └── models │ │ │ ├── Lifting_Body.ssp │ │ │ ├── Makefile │ │ │ ├── models.make │ │ │ └── stp.3ds │ ├── kernel │ │ ├── Makefile │ │ ├── UserExceptions.c │ │ ├── argpassing.c │ │ ├── defaultport.c │ │ ├── fasttiming.c │ │ ├── kernel.make │ │ ├── memdebug.c │ │ ├── metronome.c │ │ ├── msgpassing.c │ │ ├── signals.c │ │ ├── timerread.c │ │ └── timersleep.c │ ├── mercury │ │ ├── .MPEG.summary │ │ ├── IB │ │ │ ├── #graphicsenv.c# │ │ │ ├── AM_Anim.c │ │ │ ├── AM_Anim.h │ │ │ ├── AM_Model.c │ │ │ ├── AM_Model.h │ │ │ ├── Makefile │ │ │ ├── bsdf_read.c │ │ │ ├── bsdf_read.h │ │ │ ├── core │ │ │ ├── fight.c │ │ │ ├── fight.h │ │ │ ├── fight.make │ │ │ ├── filepod.c │ │ │ ├── filepod.h │ │ │ ├── graphicsenv.c │ │ │ ├── graphicsenv.h │ │ │ ├── mainloop.c │ │ │ └── tex_read.c │ │ ├── IB_JOHN │ │ │ ├── #filepod.c# │ │ │ ├── #graphicsenv.c# │ │ │ ├── AM_Anim.c │ │ │ ├── AM_Anim.h │ │ │ ├── AM_Model.c │ │ │ ├── AM_Model.h │ │ │ ├── Makefile │ │ │ ├── bsdf_read.c │ │ │ ├── bsdf_read.h │ │ │ ├── controller.c │ │ │ ├── controller.h │ │ │ ├── extras │ │ │ │ ├── am_anim.c │ │ │ │ ├── am_anim.h │ │ │ │ ├── am_anim.o │ │ │ │ ├── am_model.c │ │ │ │ ├── am_model.h │ │ │ │ ├── am_model.o │ │ │ │ ├── bsdf_read.c │ │ │ │ ├── bsdf_read.c.old │ │ │ │ ├── bsdf_read.h │ │ │ │ ├── bsdf_read.h.old │ │ │ │ ├── bsdf_read.o │ │ │ │ ├── lights.c │ │ │ │ ├── lights.o │ │ │ │ ├── material.c │ │ │ │ ├── material.o │ │ │ │ ├── misc.c │ │ │ │ ├── misc.o │ │ │ │ ├── pod.c │ │ │ │ ├── pod.o │ │ │ │ ├── stopwatch.c │ │ │ │ ├── stopwatch.h │ │ │ │ ├── tex_read.c │ │ │ │ ├── tex_read.c.old │ │ │ │ └── tex_read.o │ │ │ ├── fight.c │ │ │ ├── fight.h │ │ │ ├── fight.make │ │ │ ├── filepod.c │ │ │ ├── filepod.h │ │ │ ├── graphicsenv.c │ │ │ ├── graphicsenv.h │ │ │ ├── ib │ │ │ ├── lights.h │ │ │ ├── mainloop.c │ │ │ ├── makefile.bav │ │ │ ├── makefile.msn │ │ │ ├── material.h │ │ │ ├── menu.c │ │ │ ├── misc.h │ │ │ ├── mpeg.h │ │ │ ├── particles.c │ │ │ ├── particles.h │ │ │ ├── play-s3m.c │ │ │ ├── play-s3m.h │ │ │ ├── pod.h │ │ │ ├── run.bat │ │ │ ├── s3m-info.h │ │ │ ├── setproject.bat │ │ │ ├── shadows.h │ │ │ ├── sound-m2.c │ │ │ ├── sound-m2.h │ │ │ ├── sounds.c │ │ │ ├── sounds.h │ │ │ ├── srcfiles.make │ │ │ ├── tex_read.c │ │ │ └── unused │ │ │ │ └── shadows.c │ │ ├── IB_JOHN_RUNTIME │ │ │ ├── FlameL.utf │ │ │ ├── FlameR.utf │ │ │ ├── IB_0p │ │ │ ├── IB_1p │ │ │ ├── IronBlood │ │ │ │ ├── base.bsf │ │ │ │ ├── base.utf │ │ │ │ ├── ring.bsf │ │ │ │ └── ring.utf │ │ │ ├── Restore.aif │ │ │ ├── block.aif │ │ │ ├── block.aif.old │ │ │ ├── force.aif │ │ │ ├── force.aif.old │ │ │ ├── hit.aif │ │ │ ├── ib │ │ │ ├── ib_good │ │ │ ├── island.bsf │ │ │ ├── island.utf │ │ │ ├── music.s3m │ │ │ ├── particle.utf │ │ │ ├── pot0.utf │ │ │ ├── pot1.utf │ │ │ ├── sampler_16_f1.dsp │ │ │ └── weapon.aif │ │ ├── MPEG │ │ │ ├── #mac.make# │ │ │ ├── #mpeg.c# │ │ │ ├── .mail.summary │ │ │ ├── Makefile │ │ │ ├── POedSales │ │ │ ├── mac.make │ │ │ ├── mpeg.c │ │ │ └── mpeg.h │ │ ├── Makefile │ │ ├── anim │ │ │ ├── AM_Anim.c │ │ │ ├── AM_Anim.c.new │ │ │ ├── AM_Anim.h │ │ │ ├── AM_Model.c │ │ │ ├── AM_Model.h │ │ │ ├── Makefile │ │ │ ├── Makefile.old │ │ │ ├── anim.make │ │ │ ├── bsdf_read.c │ │ │ ├── bsdf_read.c.new │ │ │ ├── bsdf_read.h │ │ │ ├── mainloop.c │ │ │ ├── mainloop.c.new │ │ │ ├── tex_read.c │ │ │ ├── view.c │ │ │ └── view.h │ │ ├── bigcircle │ │ │ ├── Makefile │ │ │ ├── bigcircle.make │ │ │ ├── data │ │ │ │ └── Makefile │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── gamedata.c │ │ │ ├── gamedata2.c │ │ │ ├── icacheflush.s │ │ │ ├── mainloop.c │ │ │ ├── regress │ │ │ ├── regress.cube │ │ │ ├── regress.hires32 │ │ │ ├── regress.mp │ │ │ ├── rendermodes.h │ │ │ ├── scripts │ │ │ │ ├── Makefile │ │ │ │ ├── regress │ │ │ │ ├── regress.cube │ │ │ │ ├── regress.hires32 │ │ │ │ └── regress.mp │ │ │ ├── scripts1 │ │ │ │ ├── Makefile │ │ │ │ ├── regress │ │ │ │ ├── regress.cube │ │ │ │ ├── regress.hires32 │ │ │ │ └── regress.mp │ │ │ └── tex_read.c │ │ ├── bigcirclempm │ │ │ ├── Makefile │ │ │ ├── bigcirclempm.make │ │ │ ├── game.c │ │ │ ├── game.h │ │ │ ├── mainloop.c │ │ │ └── regressmp │ │ ├── data │ │ │ └── Makefile │ │ ├── data_and_docs │ │ │ └── Makefile │ │ ├── helloworld │ │ │ ├── Makefile │ │ │ ├── bsdf_read.c │ │ │ ├── bsdf_read.h │ │ │ ├── data.c │ │ │ ├── data.h │ │ │ ├── filepod.c │ │ │ ├── filepod.h │ │ │ ├── graphicsenv.c │ │ │ ├── graphicsenv.h │ │ │ ├── helloworld.c │ │ │ ├── helloworld.make │ │ │ ├── scalemodel.c │ │ │ ├── scalemodel.h │ │ │ └── tex_read.c │ │ ├── testbboard │ │ │ ├── Makefile │ │ │ ├── billboard.c │ │ │ ├── billboard.make │ │ │ ├── controller.c │ │ │ ├── controller.h │ │ │ ├── data.c │ │ │ └── data.h │ │ ├── viewer │ │ │ ├── Makefile │ │ │ ├── controller.c │ │ │ ├── controller.h │ │ │ ├── viewer.c │ │ │ └── viewer.make │ │ └── viewer_mp │ │ │ ├── Makefile │ │ │ ├── data_mp.c │ │ │ ├── data_mp.h │ │ │ ├── viewer_mp.c │ │ │ └── viewer_mp.make │ ├── misc │ │ ├── Makefile │ │ ├── compression │ │ │ ├── Makefile │ │ │ ├── compression.c │ │ │ └── compression.make │ │ └── dbgconsole │ │ │ ├── Makefile │ │ │ ├── dbgconsole.c │ │ │ └── dbgconsole.make │ ├── mpeg │ │ ├── Makefile │ │ ├── photo │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ └── still.mpg │ │ │ ├── photo-util.c │ │ │ ├── photo-util.h │ │ │ ├── photo.c │ │ │ └── photo.make │ │ └── playfast │ │ │ ├── Makefile │ │ │ ├── data │ │ │ ├── Makefile │ │ │ └── m2car.mpv │ │ │ ├── playfast.c │ │ │ └── playfast.make │ └── streaming │ │ ├── DataPlayer │ │ ├── Makefile │ │ ├── data │ │ │ └── Makefile │ │ ├── dataplayer.c │ │ ├── dataplayer.make │ │ ├── initstream.c │ │ ├── initstream.h │ │ ├── joypad.c │ │ └── joypad.h │ │ ├── EZFlixPlayer │ │ ├── EZFlixPlayer.c │ │ ├── EZFlixPlayer.make │ │ ├── JoyPad.c │ │ ├── JoyPad.h │ │ ├── Makefile │ │ ├── PlayEZFlixStream.c │ │ ├── PlayEZFlixStream.h │ │ └── data │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── PlaySA │ │ ├── Makefile │ │ ├── PlaySA.make │ │ ├── data │ │ │ └── Makefile │ │ ├── playsa.c │ │ ├── playssndstream.c │ │ └── playssndstream.h │ │ ├── Tools_And_Data │ │ ├── Makefile │ │ ├── binary │ │ │ └── Makefile │ │ └── text │ │ │ ├── DATA.worksheet │ │ │ ├── Makefile │ │ │ ├── Quotes │ │ │ ├── Video.worksheet │ │ │ ├── bach_44K_16B_M.script │ │ │ ├── bob.script │ │ │ └── mono_sqs2.script │ │ ├── VideoPlayer │ │ ├── Makefile │ │ ├── VideoPlayer.make │ │ ├── data │ │ │ └── Makefile │ │ ├── joypad.c │ │ ├── joypad.h │ │ ├── playvideostream.c │ │ ├── playvideostream.h │ │ └── videoplayer.c │ │ ├── builddsexamples │ │ └── ds_examples_readme ├── folios │ ├── Makefile │ ├── audio │ │ ├── AudioNotes.txt │ │ ├── Makefile │ │ ├── aiff │ │ │ ├── Makefile │ │ │ └── sinewave.aiff.R64 │ │ ├── archive │ │ │ ├── AudioRelease.txt │ │ │ ├── dspp_imem.h │ │ │ ├── dspp_map.h │ │ │ ├── dspp_remap.c │ │ │ ├── dspp_remap.h │ │ │ ├── dspp_remap_bulldog.c │ │ │ └── dspp_remap_internal.h │ │ ├── audio_attachments.c │ │ ├── audio_debug.h │ │ ├── audio_envelopes.c │ │ ├── audio_folio.c │ │ ├── audio_folio_modes.h │ │ ├── audio_instr.c │ │ ├── audio_internal.h │ │ ├── audio_items.c │ │ ├── audio_knob.c │ │ ├── audio_misc.c │ │ ├── audio_probe.c │ │ ├── audio_samples.c │ │ ├── audio_structs.h │ │ ├── audio_template.c │ │ ├── audio_timer.c │ │ ├── audio_trigger.c │ │ ├── audio_tuning.c │ │ ├── autodocs.c │ │ ├── dir.flp │ │ ├── dsp │ │ │ ├── Makefile │ │ │ ├── add.ins │ │ │ ├── add_accum.ins │ │ │ ├── approx.fth │ │ │ ├── autodocs.txt │ │ │ ├── basic.bms │ │ │ ├── basic_machine.h │ │ │ ├── beep_maker.fth │ │ │ ├── benchmark.ins │ │ │ ├── chaos_1d.ins │ │ │ ├── compare_phase.ins.disabled │ │ │ ├── cubic_amplifier.ins │ │ │ ├── deemphcd.ins │ │ │ ├── delay4.ins │ │ │ ├── delay_f1.ins │ │ │ ├── delay_f2.ins │ │ │ ├── depopper.ins │ │ │ ├── dspp_addresses.j │ │ │ ├── dspp_asm.doc │ │ │ ├── dspp_asm.fth │ │ │ ├── dspp_ins.fth │ │ │ ├── envelope.ins │ │ │ ├── envelope_regs.j │ │ │ ├── envfollower.ins │ │ │ ├── expmod_unsigned.ins │ │ │ ├── expt │ │ │ │ ├── adpcmduck.j │ │ │ │ ├── aduckhalfstereo.ins │ │ │ │ ├── aduckstereo.ins │ │ │ │ ├── filter1pole.ins │ │ │ │ ├── flanger.ins │ │ │ │ ├── interp_table17.ins │ │ │ │ ├── sine_svf.ins │ │ │ │ ├── soft_limit.ins │ │ │ │ ├── test_eat_ticks.ins │ │ │ │ ├── timesplusunsigned.ins │ │ │ │ ├── trackingdelay.ins │ │ │ │ └── varquad8.ins │ │ │ ├── filter_1o1z.ins │ │ │ ├── filter_2o2p.ins.disabled │ │ │ ├── filter_3d.ins │ │ │ ├── function_ids.j │ │ │ ├── impulse.ins │ │ │ ├── input_accum.ins │ │ │ ├── integrator.ins │ │ │ ├── latch.ins │ │ │ ├── line_in.ins │ │ │ ├── line_out.ins │ │ │ ├── load_asm.fth │ │ │ ├── log_to_file.fth │ │ │ ├── machine_preamble.h │ │ │ ├── maximum.ins │ │ │ ├── minimum.ins │ │ │ ├── multiply.ins │ │ │ ├── multiply_accum.ins │ │ │ ├── multiply_unsigned.ins │ │ │ ├── nanokernel.ins │ │ │ ├── noise.ins │ │ │ ├── obsolete │ │ │ │ ├── OscUpDownFP.j │ │ │ │ ├── adpcmduck22s.ins │ │ │ │ ├── adpcmhalfmono.ins │ │ │ │ ├── adpcmmono.ins │ │ │ │ ├── adpcmvarmono.ins │ │ │ │ ├── adpcmvarmono_block.ins │ │ │ │ ├── adpcmvarstereo.ins.disabled │ │ │ │ ├── dcsqxdhalfmono.ins │ │ │ │ ├── dcsqxdhalfstereo.ins │ │ │ │ ├── dcsqxdmono.ins │ │ │ │ ├── dcsqxdstereo.ins │ │ │ │ ├── dcsqxdvarmono.ins │ │ │ │ ├── decodeadpcm.ins │ │ │ │ ├── delay1tap.ins │ │ │ │ ├── delaymono.ins │ │ │ │ ├── directout.ins │ │ │ │ ├── dsp_stats.txt │ │ │ │ ├── dspp_map.j │ │ │ │ ├── fixedmono8.ins │ │ │ │ ├── fixedmonosample.ins │ │ │ │ ├── fixedstereo16swap.ins │ │ │ │ ├── fixedstereo8.ins │ │ │ │ ├── fixedstereosample.ins │ │ │ │ ├── halfmono8.ins │ │ │ │ ├── halfmonosample.ins │ │ │ │ ├── halfstereo8.ins │ │ │ │ ├── halfstereosample.ins │ │ │ │ ├── head.ins │ │ │ │ ├── helicopter.psrc │ │ │ │ ├── mixer12x2.ins │ │ │ │ ├── mixer2x2.ins │ │ │ │ ├── mixer4x2.ins │ │ │ │ ├── mixer8x2.ins │ │ │ │ ├── mixer8x2amp.ins │ │ │ │ ├── monitor.ins │ │ │ │ ├── oldsampler.ins │ │ │ │ ├── oscupdownfp.ins │ │ │ │ ├── probe.ins │ │ │ │ ├── pulser.ins │ │ │ │ ├── romhead.ins │ │ │ │ ├── romtail.ins │ │ │ │ ├── sampler.ins │ │ │ │ ├── sampler3d.ins │ │ │ │ ├── samplerenv.ins │ │ │ │ ├── samplermod.ins.disabled │ │ │ │ ├── sawenv.ins │ │ │ │ ├── sawenvsvfenv.ins │ │ │ │ ├── sawfilterednoise.ins │ │ │ │ ├── sawfilteredsaw.ins │ │ │ │ ├── sh_ping.psrc │ │ │ │ ├── siren.psrc │ │ │ │ ├── splitexec.ins │ │ │ │ ├── submixer2x2.ins │ │ │ │ ├── submixer4x2.ins │ │ │ │ ├── submixer8x2.ins │ │ │ │ ├── tail.ins │ │ │ │ ├── varmono16.ins │ │ │ │ ├── varmono8.ins │ │ │ │ ├── varmono8_s.ins │ │ │ │ └── wind.psrc │ │ │ ├── output_accum.ins │ │ │ ├── patch_maker.fth │ │ │ ├── pulse.ins │ │ │ ├── pulse_lfo.ins │ │ │ ├── randomhold.ins │ │ │ ├── rednoise.ins │ │ │ ├── rednoise_lfo.ins │ │ │ ├── sampler_16_f1.ins │ │ │ ├── sampler_16_f1.j │ │ │ ├── sampler_16_f2.ins │ │ │ ├── sampler_16_v1.ins │ │ │ ├── sampler_16_v1.j │ │ │ ├── sampler_16_v1_regs.j │ │ │ ├── sampler_16_v2.ins │ │ │ ├── sampler_16_v2.j │ │ │ ├── sampler_8_f1.ins │ │ │ ├── sampler_8_f2.ins │ │ │ ├── sampler_8_v1.ins │ │ │ ├── sampler_8_v2.ins │ │ │ ├── sampler_adp4_v1.ins │ │ │ ├── sampler_adp4_v2.ins │ │ │ ├── sampler_cbd2_f1.ins │ │ │ ├── sampler_cbd2_f2.ins │ │ │ ├── sampler_cbd2_v1.ins │ │ │ ├── sampler_cbd2_v2.ins │ │ │ ├── sampler_cbd2_v4.ins │ │ │ ├── sampler_drift_v1.ins │ │ │ ├── sampler_raw_f1.ins │ │ │ ├── sampler_sqs2_f1.ins │ │ │ ├── sampler_sqs2_v1.ins │ │ │ ├── sawtooth.ins │ │ │ ├── sawtooth_lfo.ins │ │ │ ├── schmidt_trigger.ins │ │ │ ├── slew_rate_limiter.ins │ │ │ ├── square.ins │ │ │ ├── square_lfo.ins │ │ │ ├── sub_decode_adp4.ins │ │ │ ├── sub_decode_adp4.j │ │ │ ├── sub_envelope.ins │ │ │ ├── sub_sampler_16_v1.ins │ │ │ ├── sub_sampler_adp4_v1.ins │ │ │ ├── sub_sampler_adp4_v1.j │ │ │ ├── subtract.ins │ │ │ ├── subtract_accum.ins │ │ │ ├── subtract_from_accum.ins │ │ │ ├── svfilter.ins │ │ │ ├── tapoutput.ins │ │ │ ├── test_branches.ins.disabled │ │ │ ├── test_mixer.ins.disabled │ │ │ ├── times_256.ins │ │ │ ├── timesplus.ins │ │ │ ├── timesplus_noclip.ins │ │ │ ├── triangle.ins │ │ │ └── triangle_lfo.ins │ │ ├── dsp_chart.txt │ │ ├── dspp.h │ │ ├── dspp_duck.c │ │ ├── dspp_instr.c │ │ ├── dspp_irq_bulldog.c │ │ ├── dspp_knobs.c │ │ ├── dspp_mixer.c │ │ ├── dspp_newloader.c │ │ ├── dspp_relocator.c │ │ ├── dspp_resources.c │ │ ├── dspp_resources.h │ │ ├── dspp_resources_bulldog.c │ │ ├── dspp_resources_internal.h │ │ ├── dspp_signals.c │ │ ├── dspp_template.c │ │ ├── dspp_timer.c │ │ ├── ezmem_tools.c │ │ ├── ezmem_tools.h │ │ ├── linkexec.x │ │ ├── syscall_glue.s │ │ ├── table_alloc.c │ │ ├── table_alloc.h │ │ └── table_alloc_debug.h │ ├── audiopatch │ │ ├── Makefile │ │ ├── audiopatch_folio.c │ │ ├── autodocs.c │ │ ├── createpatch.c │ │ ├── createpatch_internal.h │ │ ├── createpatch_linker.c │ │ ├── createpatch_parser.c │ │ ├── linkexec.x │ │ ├── patchcmd.c │ │ └── vararg_glue.s │ ├── audiopatchfile │ │ ├── Makefile │ │ ├── audiopatchfile_folio.c │ │ ├── linkexec.x │ │ └── loadpatch.c │ ├── batt │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── batt_folio.c │ │ ├── clock.c │ │ ├── hw.c │ │ ├── hw.h │ │ ├── linkexec.x │ │ ├── memory.c │ │ └── syscall_glue.s │ ├── beep │ │ ├── Makefile │ │ ├── beep_folio.c │ │ ├── beep_funcs.c │ │ ├── beep_init.c │ │ ├── beep_internal.h │ │ ├── beep_interrupts.c │ │ ├── beep_loader.c │ │ ├── linkexec.x │ │ └── syscall_glue.s │ ├── blitter │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── blit.c │ │ ├── blitobject.c │ │ ├── blitter_folio.c │ │ ├── blitter_internal.h │ │ ├── clip.c │ │ ├── defaults.c │ │ ├── linkexec.x │ │ ├── mask.c │ │ ├── slice.c │ │ ├── snippet.c │ │ ├── texturesrc.c │ │ ├── vastubs.s │ │ └── vertices.c │ ├── compression │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── compress.c │ │ ├── compress_noportfolio.h │ │ ├── compression_folio.c │ │ ├── createcompressorva.s │ │ ├── createdecompressorva.s │ │ ├── decompress.c │ │ ├── getcompressorworkbuffersizeva.s │ │ ├── getdecompressorworkbuffersizeva.s │ │ ├── linkexec.x │ │ ├── lzss.h │ │ ├── simplecompress.c │ │ └── simpledecompress.c │ ├── date │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── conversions.c │ │ ├── date_folio.c │ │ └── linkexec.x │ ├── file.init │ │ ├── FileDriverInit.c │ │ ├── Makefile │ │ ├── linkexec.x │ │ └── main.c │ ├── file │ │ ├── Makefile │ │ ├── acroformat.c │ │ ├── acroutil.c │ │ ├── autodocs.c │ │ ├── automount.c │ │ ├── cache.c │ │ ├── daemon.c │ │ ├── directory.c │ │ ├── driver.c │ │ ├── folio.c │ │ ├── format.c │ │ ├── fs_acrobat.c │ │ ├── fs_host.c │ │ ├── fs_opera.c │ │ ├── linkexec.x │ │ ├── main.c │ │ ├── mount.c │ │ ├── open.c │ │ ├── rawfile.c │ │ ├── syscall_glue.s │ │ ├── utils.c │ │ └── varargs_glue.s │ ├── font │ │ ├── Makefile │ │ ├── clip.c │ │ ├── colortext.c │ │ ├── extent.c │ │ ├── font_folio.c │ │ ├── font_folio.h │ │ ├── fontfile.h │ │ ├── fontitem.c │ │ ├── fontitem.h │ │ ├── fonttable.h │ │ ├── linkexec.x │ │ ├── movetext.c │ │ ├── parsevertices.c │ │ ├── rotatetext.c │ │ ├── scaletext.c │ │ ├── stencil.c │ │ ├── telists.c │ │ ├── textstate.c │ │ └── transformtext.c │ ├── frame2d │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── clipdraw.c │ │ ├── copyrect.c │ │ ├── draw.c │ │ ├── f2clt.c │ │ ├── f2d.c │ │ ├── frame2.i │ │ ├── gridobj.c │ │ ├── line2d.c │ │ ├── linkexec.x │ │ ├── loadtexture.c │ │ ├── loadtextureva.s │ │ ├── main.c │ │ ├── point2d.c │ │ ├── rect2d.c │ │ ├── sprcache.h │ │ ├── spriteobj.c │ │ ├── texture2d.c │ │ └── triangle2d.c │ ├── fsutils │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── copy.c │ │ ├── delete.c │ │ ├── fsutils_folio.c │ │ ├── linkexec.x │ │ └── path.c │ ├── graphics │ │ ├── Makefile │ │ ├── bitmap.c │ │ ├── compiler.c │ │ ├── context.c │ │ ├── database.c │ │ ├── dbase.bm.c │ │ ├── firq.c.disabled │ │ ├── gfx_debug.h │ │ ├── gfxfolio.c │ │ ├── init.c │ │ ├── linkexec.x │ │ ├── projector.c │ │ ├── protos.h │ │ ├── query.c │ │ ├── syscall_glue.s │ │ ├── util.c │ │ ├── view.c │ │ └── viewlist.c │ ├── gstate │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── gstate.c │ │ ├── linkexec.x │ │ └── main.c │ ├── icon │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── icon_folio.c │ │ ├── icon_protos.h │ │ ├── iconcode.c │ │ ├── iconddf.c │ │ ├── iconfiles.c │ │ ├── iconfs.c │ │ ├── iconhw.c │ │ ├── iconshared.c │ │ ├── linkexec.x │ │ ├── syscall_glue.s │ │ └── varargs.s │ ├── iff │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── createiffparserva.s │ │ ├── iff.c │ │ ├── iff_folio.c │ │ ├── io.c │ │ ├── io.h │ │ └── linkexec.x │ ├── international │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── englishdriver.c │ │ ├── englishdriver.h │ │ ├── externalcode.c │ │ ├── externalcode.h │ │ ├── formatdate.c │ │ ├── formatnumber.c │ │ ├── international_folio.c │ │ ├── international_folio.h │ │ ├── linkexec.x │ │ ├── locales.c │ │ ├── locales.h │ │ ├── transliterate.c │ │ ├── utils.c │ │ └── utils.h │ ├── jstring │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── jconversions.c │ │ ├── jstring_folio.c │ │ ├── linkexec.x │ │ ├── tables.c │ │ └── tables.h │ ├── kernel.init │ │ ├── Makefile │ │ ├── ddfinit.c │ │ ├── devicesinit.c │ │ ├── dipirinit.c │ │ ├── errors.c │ │ ├── esa.c │ │ ├── exceptions.c │ │ ├── firq.c │ │ ├── linkexec.x │ │ ├── main.c │ │ ├── memlockinit.c │ │ ├── mmu.c │ │ ├── mmuexceptions.s │ │ ├── mmuinit.s │ │ ├── monitor_mac.c │ │ ├── monitor_pc.c │ │ ├── mp.c │ │ ├── printconfig.c │ │ ├── timer.c │ │ └── uniqueid.c │ ├── kernel │ │ ├── Makefile │ │ ├── ansi_ctype.c │ │ ├── ansi_misc.s │ │ ├── ansi_stdio.c │ │ ├── ansi_string.c │ │ ├── autodocs.c │ │ ├── autodocs_cache.c │ │ ├── autodocs_cmds.c │ │ ├── bitarray.c │ │ ├── cache.c │ │ ├── cache.s │ │ ├── const.c │ │ ├── convenience_stubs.c │ │ ├── cpu.s │ │ ├── ddf.c │ │ ├── ddfinternal.c │ │ ├── debug.c │ │ ├── devices.c │ │ ├── diab_glue.S │ │ ├── dipir.c │ │ ├── dma.c │ │ ├── drivers.c │ │ ├── errors.c │ │ ├── exceptions.c │ │ ├── exceptions.s │ │ ├── fence.c │ │ ├── findCurrentModule.s │ │ ├── firq.c │ │ ├── folio.c │ │ ├── io.c │ │ ├── iodebug.c │ │ ├── item.c │ │ ├── linkexec.x │ │ ├── list.c │ │ ├── lumberjack.c │ │ ├── main.c │ │ ├── mem.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── memlock.c │ │ ├── memmaprec.c │ │ ├── memstubs.c │ │ ├── memutils.c │ │ ├── mmu.s │ │ ├── monitor.c │ │ ├── monitor_mac.c │ │ ├── monitor_pc.c │ │ ├── monitor_pc.spec │ │ ├── mp_master.c │ │ ├── mp_slave.c │ │ ├── mp_slave.s │ │ ├── ports.c │ │ ├── random.c │ │ ├── rsa.c │ │ ├── semaphore.c │ │ ├── signal.c │ │ ├── softreset.c │ │ ├── spinlock.c │ │ ├── spinlock.s │ │ ├── super_glue.s │ │ ├── syscall_glue.s │ │ ├── sysinfo.c │ │ ├── tags.c │ │ ├── task.c │ │ ├── task.s │ │ ├── taskdump.c │ │ ├── taskexit.c │ │ ├── taskswap.c │ │ ├── te.s │ │ ├── timer.c │ │ ├── timer.s │ │ ├── timezone.c │ │ ├── uniqueid.c │ │ ├── usermodeservices.c │ │ ├── va_arg.c │ │ ├── varargs_glue.s │ │ ├── vcprintf.c │ │ └── version.c │ ├── mpegaudio │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── cosTable.c │ │ ├── cosTable.h │ │ ├── decode.c │ │ ├── decode.h │ │ ├── decodeTables.c │ │ ├── decodeTables.h │ │ ├── linkexec.x │ │ ├── mpaMatrix.i │ │ ├── mpaMatrix.s │ │ ├── mpaWindow.i │ │ ├── mpaWindow.s │ │ ├── mpaudiodecode.c │ │ ├── mpaudiodecode_dll.c │ │ ├── mpegaudiotypes.h │ │ ├── mpegdebug.c │ │ ├── mpegdebug.h │ │ ├── windowCoeffs.c │ │ └── windowCoeffs.h │ ├── requester │ │ ├── Makefile │ │ ├── animlists.c │ │ ├── animlists.h │ │ ├── animnodes.c │ │ ├── animnodes.h │ │ ├── art.c │ │ ├── art.h │ │ ├── art │ │ │ └── Makefile │ │ ├── autodocs.c │ │ ├── bg.c │ │ ├── bg.h │ │ ├── boxes.c │ │ ├── boxes.h │ │ ├── controls.c │ │ ├── controls.h │ │ ├── copy_loop.c │ │ ├── delete_loop.c │ │ ├── dirscan.c │ │ ├── dirscan.h │ │ ├── eventloops.h │ │ ├── eventmgr.c │ │ ├── eventmgr.h │ │ ├── framebuf.c │ │ ├── framebuf.h │ │ ├── hierarchy.c │ │ ├── hierarchy.h │ │ ├── highlight.c │ │ ├── highlight.h │ │ ├── info_loop.c │ │ ├── io_loop.c │ │ ├── ioserver.c │ │ ├── ioserver.h │ │ ├── linkexec.x │ │ ├── listviews.c │ │ ├── listviews.h │ │ ├── main_loop.c │ │ ├── movingtext.c │ │ ├── movingtext.h │ │ ├── msgstrings.c │ │ ├── msgstrings.h │ │ ├── overlays.c │ │ ├── overlays.h │ │ ├── req.c │ │ ├── req.h │ │ ├── requester_folio.c │ │ ├── sound.c │ │ ├── sound.h │ │ ├── text_loop.c │ │ ├── transitions.c │ │ ├── transitions.h │ │ ├── utils.c │ │ └── utils.h │ ├── savegame │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── linkexec.x │ │ ├── savegame.c │ │ ├── savegame_folio.c │ │ └── varargs.s │ └── script │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── commands.c │ │ ├── commands.h │ │ ├── createscriptcontextva.s │ │ ├── executecmdlineva.s │ │ ├── linkexec.x │ │ ├── script.c │ │ └── script_folio.c ├── fonts │ ├── Makefile │ ├── default_14.font.r64 │ └── saltpile_12.font.r64 ├── includes │ ├── Makefile │ ├── assert.h │ ├── audio │ │ ├── Makefile │ │ ├── aiff_format.h │ │ ├── atag.h │ │ ├── audio.h │ │ ├── audio_obsolete.h │ │ ├── audio_signals.h │ │ ├── cobj.h │ │ ├── dspp_template.h │ │ ├── flex_stream.h │ │ ├── handy_macros.h │ │ ├── juggler.h │ │ ├── midifile.h │ │ ├── music.h │ │ ├── music_iff.h │ │ ├── musicerror.h │ │ ├── musicscript.h │ │ ├── parse_aiff.h │ │ ├── patch.h │ │ ├── patchfile.h │ │ ├── score.h │ │ ├── sound3d.h │ │ ├── soundplayer.h │ │ └── soundspooler.h │ ├── audiodemo │ │ ├── faders.h │ │ ├── portable_graphics.h │ │ └── scope.h │ ├── beep │ │ ├── Makefile │ │ ├── basic_machine.h │ │ └── beep.h │ ├── bootcode │ │ ├── bootglobals.h │ │ ├── boothw.h │ │ └── boothw.i │ ├── ctype.h │ ├── device │ │ ├── Makefile │ │ ├── cdrom.h │ │ ├── dma.h │ │ ├── m2cd.h │ │ ├── microslot.h │ │ ├── mp.h │ │ ├── mpegvideo.h │ │ ├── proxy.h │ │ ├── serial.h │ │ ├── slot.h │ │ ├── storagecard.h │ │ └── te.h │ ├── dipir │ │ ├── dipirpub.h │ │ ├── hw.audio.h │ │ ├── hw.cport.h │ │ ├── hw.graphics.h │ │ ├── hw.host.h │ │ ├── hw.microcard.h │ │ ├── hw.pc16550.h │ │ ├── hw.pcmcia.h │ │ ├── hw.ram.h │ │ ├── hw.storagecard.h │ │ ├── hwresource.h │ │ ├── manuids.h │ │ ├── rom.h │ │ └── rsa.h │ ├── dspptouch │ │ ├── dspp_addresses.h │ │ ├── dspp_instructions.h │ │ ├── dspp_simulator.h │ │ ├── dspp_touch.h │ │ ├── dspp_touch_bulldog.h │ │ └── touch_hardware.h │ ├── errno.h │ ├── file │ │ ├── Makefile │ │ ├── acro.h │ │ ├── acrofs.h │ │ ├── acromedia.h │ │ ├── directory.h │ │ ├── directoryfunctions.h │ │ ├── discdata.h │ │ ├── filefunctions.h │ │ ├── fileio.h │ │ ├── filesystem.h │ │ ├── filesystemdefs.h │ │ ├── fsutils.h │ │ └── tcl.h │ ├── float.h │ ├── graphics │ │ ├── Makefile │ │ ├── bitmap.h │ │ ├── blitter.h │ │ ├── clt │ │ │ ├── Makefile │ │ │ ├── clt.h │ │ │ ├── cltmacros.h │ │ │ ├── clttxdblend.h │ │ │ └── gstate.h │ │ ├── font.h │ │ ├── frame2d │ │ │ ├── Makefile │ │ │ ├── f2d.h │ │ │ ├── frame2d.h │ │ │ ├── gridobj.h │ │ │ ├── loadtxtr.h │ │ │ └── spriteobj.h │ │ ├── gfx_pvt.h │ │ ├── graphics.h │ │ ├── pipe │ │ │ ├── Makefile │ │ │ ├── box.h │ │ │ ├── box.inl │ │ │ ├── col.h │ │ │ ├── col.inl │ │ │ ├── geo.h │ │ │ ├── geo.inl │ │ │ ├── gfx.h │ │ │ ├── gfxtypes.h │ │ │ ├── gp.inl │ │ │ ├── gpclass.h │ │ │ ├── gpdata.h │ │ │ ├── mtx.h │ │ │ ├── mtx.inl │ │ │ ├── obj.h │ │ │ ├── obj.inl │ │ │ ├── pip.h │ │ │ ├── pip.inl │ │ │ ├── print.h │ │ │ ├── stack.h │ │ │ ├── stack.inl │ │ │ ├── surf.h │ │ │ ├── surf.inl │ │ │ ├── tex.h │ │ │ ├── tex.inl │ │ │ ├── texblend.h │ │ │ ├── vec.h │ │ │ ├── vec.inl │ │ │ └── vmtx.h │ │ ├── projector.h │ │ └── view.h │ ├── hardware │ │ ├── PPC.h │ │ ├── PPCMacroequ.i │ │ ├── PPCasm.h │ │ ├── PPCequ.i │ │ ├── bda.h │ │ ├── bda.i │ │ ├── bridgit.h │ │ ├── cde.h │ │ ├── cde.i │ │ ├── debugger.h │ │ ├── m2vdl.h │ │ ├── microcard.h │ │ ├── ns16550.h │ │ ├── pcdebugger.h │ │ ├── splitterjr.h │ │ ├── te.h │ │ └── visa.h │ ├── international │ │ ├── Makefile │ │ ├── countrydb.h │ │ ├── intl.h │ │ ├── jstring.h │ │ └── langdrivers.h │ ├── kernel │ │ ├── Makefile │ │ ├── PPCList.i │ │ ├── PPCfolio.i │ │ ├── PPCitem.i │ │ ├── PPCkernel.i │ │ ├── PPCmonitor.i │ │ ├── PPCmsgport.i │ │ ├── PPCnodes.i │ │ ├── PPCprotlist.i │ │ ├── PPCsemaphore.i │ │ ├── PPCsetjmp.i │ │ ├── PPCtask.i │ │ ├── PPCtime.i │ │ ├── PPCtypes.i │ │ ├── bitarray.h │ │ ├── cache.h │ │ ├── ddf.h │ │ ├── ddffile.h │ │ ├── ddfflags.h │ │ ├── ddfnode.h │ │ ├── ddftoken.h │ │ ├── ddfuncs.h │ │ ├── debug.h │ │ ├── device.h │ │ ├── devicecmd.h │ │ ├── dipir.h │ │ ├── driver.h │ │ ├── folio.h │ │ ├── internalf.h │ │ ├── interrupts.h │ │ ├── io.h │ │ ├── item.h │ │ ├── kernel.h │ │ ├── kernelnodes.h │ │ ├── list.h │ │ ├── listmacros.h │ │ ├── lumberjack.h │ │ ├── mem.h │ │ ├── memlock.h │ │ ├── memmaprec.h │ │ ├── monitor.h │ │ ├── msgport.h │ │ ├── nodes.h │ │ ├── operror.h │ │ ├── panic.h │ │ ├── protlist.h │ │ ├── random.h │ │ ├── semaphore.h │ │ ├── spinlock.h │ │ ├── super.h │ │ ├── sysinfo.h │ │ ├── tags.h │ │ ├── task.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── types.h │ │ ├── uniqueid.h │ │ └── usermodeservices.h │ ├── limits.h │ ├── loader │ │ ├── Makefile │ │ ├── elf.h │ │ ├── elf_3do.h │ │ ├── elf_ppc.h │ │ ├── elftypes.h │ │ ├── header3do.h │ │ ├── loader3do.h │ │ ├── loadererr.h │ │ └── loadertypes.h │ ├── math.h │ ├── mercury │ │ ├── Makefile │ │ ├── PPCMacroequ.i │ │ ├── cltmacromacros.h │ │ ├── conditionmacros.i │ │ ├── lighting.h │ │ ├── matrix.h │ │ ├── mercury.h │ │ ├── mercury.i │ │ ├── mpm.h │ │ ├── renderthread.h │ │ └── structmacros.i │ ├── misc │ │ ├── Makefile │ │ ├── batt.h │ │ ├── compression.h │ │ ├── date.h │ │ ├── debugconsole.h │ │ ├── event.h │ │ ├── frac16.h │ │ ├── iff.h │ │ ├── mpaudiodecode.h │ │ ├── mpeg.h │ │ ├── poddriver.h │ │ ├── savegame.h │ │ └── script.h │ ├── setjmp.h │ ├── sgi │ │ └── Makefile │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── streaming │ │ ├── Makefile │ │ ├── datastream.h │ │ ├── datastreamlib.h │ │ ├── datasubscriber.h │ │ ├── dsblockfile.h │ │ ├── dserror.h │ │ ├── dsstreamdefs.h │ │ ├── ezflixsubscriber.h │ │ ├── mempool.h │ │ ├── mpegaudiosubscriber.h │ │ ├── mpegbufferqueues.h │ │ ├── mpegvideosubscriber.h │ │ ├── msgutils.h │ │ ├── preparestream.h │ │ ├── sacontrolmsgs.h │ │ ├── satemplatedefs.h │ │ ├── saudiosubscriber.h │ │ ├── subscribertraceutils.h │ │ ├── subscriberutils.h │ │ └── threadhelper.h │ ├── string.h │ ├── strings.h │ ├── tests │ │ ├── 3do_scaf.h │ │ └── Makefile │ ├── ui │ │ ├── Makefile │ │ ├── icon.h │ │ └── requester.h │ ├── varargs.h │ ├── video_cd_streaming │ │ ├── Makefile │ │ ├── datastream.h │ │ ├── datastreamlib.h │ │ ├── datasubscriber.h │ │ ├── dserror.h │ │ ├── dsstreamdefs.h │ │ ├── ezflixsubscriber.h │ │ ├── mempool.h │ │ ├── mpaudiodecode.h │ │ ├── mpeg.h │ │ ├── mpegaudiosubscriber.h │ │ ├── mpegbufferqueues.h │ │ ├── mpegutils.h │ │ ├── mpegvideosubscriber.h │ │ ├── msgutils.h │ │ ├── preparestream.h │ │ ├── sacontrolmsgs.h │ │ ├── satemplatedefs.h │ │ ├── saudiosubscriber.h │ │ ├── subscribertraceutils.h │ │ ├── subscriberutils.h │ │ └── threadhelper.h │ └── whatstring.c ├── libs │ ├── Makefile │ ├── audiodemo │ │ ├── Makefile │ │ ├── audiodemo.h.obsolete │ │ ├── faders.c │ │ ├── graphic_tools.c.obsolete │ │ ├── graphic_tools.h.obsolete │ │ ├── joytools.c.obsolete │ │ ├── joytools.h.obsolete │ │ ├── portable_graphics.c │ │ └── scope.c │ ├── audioprivate │ │ ├── Makefile │ │ ├── dsppdumpdatainitializer.c │ │ ├── dsppdumprelocation.c │ │ ├── dsppdumpresource.c │ │ └── dsppdumptemplate.c │ ├── blitter_utils │ │ ├── Blitter_Utils.make │ │ ├── Makefile │ │ ├── blend.c │ │ ├── dimensions.c │ │ ├── loadtextureva.s │ │ ├── mask.c │ │ ├── rectangle.c │ │ ├── scroll.c │ │ ├── utf.c │ │ └── utfattr.c │ ├── c │ │ ├── Makefile │ │ ├── audio │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ ├── createattachment.c │ │ │ ├── createattachmentva.s │ │ │ ├── createdelayline.c │ │ │ ├── createdelaylinetemplate.c │ │ │ ├── createenvelope.c │ │ │ ├── createenvelopeva.s │ │ │ ├── createinstrument.c │ │ │ ├── createinstrumentva.s │ │ │ ├── createknob.c │ │ │ ├── createknobva.s │ │ │ ├── createmixertemplateva.s │ │ │ ├── createprobe.c │ │ │ ├── createprobeva.s │ │ │ ├── createsample.c │ │ │ ├── createsampleva.s │ │ │ ├── createtuning.c │ │ │ ├── dumpinsresourceinfo.c │ │ │ ├── loadinstemplateva.s │ │ │ ├── openfolio.c │ │ │ ├── releaseattachementva.s │ │ │ ├── releaseinstrumentva.s │ │ │ ├── setaudiofolioinfova.s │ │ │ ├── setaudioiteminfova.s │ │ │ ├── startattachementva.s │ │ │ ├── startinstrumentva.s │ │ │ ├── stopattachementva.s │ │ │ └── stopinstrumentva.s │ │ ├── audiopatch │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ ├── dumppatchcmd.c │ │ │ ├── dumppatchcmdlist.c │ │ │ └── openfolio.c │ │ ├── audiopatchfile │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── batt │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── beep │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── bitarray │ │ │ ├── Makefile │ │ │ ├── atomicbits.s │ │ │ ├── countbits.c │ │ │ ├── dumpbitrange.c │ │ │ ├── findlsb.s │ │ │ └── findmsb.s │ │ ├── blitter │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── compression │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── date │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── debugconsole │ │ │ ├── Makefile │ │ │ ├── autodocs.c │ │ │ ├── console.c │ │ │ └── createdebugconsoleva.s │ │ ├── font │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── fsutils │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ ├── createcopyobjva.s │ │ │ ├── deletetreeva.s │ │ │ ├── openfolio.c │ │ │ └── querycopyobjva.s │ │ ├── graphics │ │ │ ├── Makefile │ │ │ ├── closegraphicsfolio.c │ │ │ ├── modifygraphicsitemva.s │ │ │ ├── opengraphicsfolio.c │ │ │ └── querygraphicsva.s │ │ ├── icon │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── iff │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── int64 │ │ │ ├── Makefile │ │ │ ├── div64.S │ │ │ ├── mul64.c │ │ │ └── rem64.c │ │ ├── international │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── jstring │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── kernel │ │ │ ├── Makefile │ │ │ ├── convertfp_tagdata.c │ │ │ ├── converttagdata_fp.c │ │ │ ├── copyright.c │ │ │ ├── createDeviceStackListVA.c │ │ │ ├── createUniqueMsgPort.c │ │ │ ├── createUniqueSema4.c │ │ │ ├── dumplumberjackbuffer.c │ │ │ ├── dumptaglist.c │ │ │ ├── findAndOpenNamedItem.c │ │ │ ├── gettagarg.c │ │ │ ├── openNamedDeviceStack.c │ │ │ └── startup.s │ │ ├── lists │ │ │ ├── Makefile │ │ │ ├── dumpnode.c │ │ │ ├── findnodefromhead.c │ │ │ ├── findnodefromtail.c │ │ │ ├── getnodecount.c │ │ │ ├── getnodeposfromhead.c │ │ │ ├── getnodeposfromtail.c │ │ │ ├── insertnodeafter.c │ │ │ ├── insertnodealpha.c │ │ │ └── insertnodebefore.c │ │ ├── memdebug │ │ │ ├── Makefile │ │ │ ├── calloc.c │ │ │ ├── free.c │ │ │ ├── malloc.c │ │ │ └── realloc.c │ │ ├── mp │ │ │ ├── Makefile │ │ │ ├── creatempio.c │ │ │ ├── deletempio.c │ │ │ └── dispatchmpfunc.c │ │ ├── patchcmdbuilder │ │ │ ├── Makefile │ │ │ ├── addtemplatetopatch.c │ │ │ ├── connectpatchports.c │ │ │ ├── definepatchknob.c │ │ │ ├── definepatchport.c │ │ │ ├── exposepatchport.c │ │ │ ├── patchcmdbuilder.c │ │ │ ├── patchcmdbuilder_internal.h │ │ │ ├── setpatchcoherence.c │ │ │ └── setpatchconstant.c │ │ ├── requester │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ ├── createstoragereqva.s │ │ │ ├── modifystoragereqva.s │ │ │ ├── openfolio.c │ │ │ └── querystoragereqva.s │ │ ├── savegame │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── script │ │ │ ├── Makefile │ │ │ ├── closefolio.c │ │ │ └── openfolio.c │ │ ├── stdio │ │ │ ├── Makefile │ │ │ ├── assert.c │ │ │ ├── clearerr.c │ │ │ ├── cprintf.c │ │ │ ├── descript.c │ │ │ ├── errno.c │ │ │ ├── fclose.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fopen.c │ │ │ ├── fprintf.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── fwrite.c │ │ │ ├── getc.c │ │ │ ├── getchar.c │ │ │ ├── iohandle.c │ │ │ ├── perror.c │ │ │ ├── placeholder.c │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setvbuf.c │ │ │ ├── sscanf.c │ │ │ ├── stdioerrs.h │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vprintf.c │ │ │ └── vsprintf.c │ │ ├── stdlib │ │ │ ├── Makefile │ │ │ ├── abs.S │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── bsearch.c │ │ │ ├── calloc.c │ │ │ ├── cfree.c │ │ │ ├── free.c │ │ │ ├── malloc.c │ │ │ ├── qsort.c │ │ │ ├── rand.c │ │ │ ├── realloc.c │ │ │ ├── strtof.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ └── system.c │ │ ├── string │ │ │ ├── Makefile │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── strchr.c │ │ │ ├── strcspn.c │ │ │ ├── strerror.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ └── strtok.c │ │ ├── te │ │ │ ├── Makefile │ │ │ ├── opentedevice.c │ │ │ └── teioreq.c │ │ └── timer │ │ │ ├── Makefile │ │ │ ├── addtimes.c │ │ │ ├── comparetimes.c │ │ │ ├── createtimerio.c │ │ │ ├── deletetimerio.c │ │ │ ├── samplesystemtimetv.c │ │ │ ├── startmetronome.c │ │ │ ├── startmetronomevbl.c │ │ │ ├── stopmetronome.c │ │ │ ├── stopmetronomevbl.c │ │ │ ├── subtimes.c │ │ │ ├── waittime.c │ │ │ ├── waittimevbl.c │ │ │ ├── waituntil.c │ │ │ └── waituntilvbl.c │ ├── clt │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── cltclear.c │ │ ├── cltcopy.c │ │ ├── cltdblndattr.c │ │ ├── cltglobals.c │ │ ├── clttxattr.c │ │ ├── clttxload.c │ │ └── cltutils.c │ ├── dir.flp │ ├── dspptouch │ │ ├── Makefile │ │ ├── archive │ │ │ ├── dspp_addresses_anvil.h │ │ │ └── dspp_touch_anvil.h │ │ ├── dir.flp │ │ ├── dspn_canvaluebeimmed.c │ │ ├── dspn_info.c │ │ ├── dspn_packimmed.c │ │ ├── dspn_unpackimmed.c │ │ ├── dspp_disasm.c │ │ ├── dspp_disasmcodemem.c │ │ ├── dspp_simulator.c │ │ ├── dspp_touch.c │ │ ├── dspp_touch_bulldog.c │ │ ├── dspp_touch_dma.c │ │ ├── dspptouch_internal.h │ │ └── owndspp.c │ ├── eventbroker │ │ ├── EventUtility.c │ │ ├── Makefile │ │ └── autodocs.c │ ├── loader │ │ ├── Makefile │ │ ├── api.c │ │ ├── autodocs.c │ │ ├── daemon.c │ │ ├── daemon.h │ │ ├── decompress.c │ │ ├── fileio.c │ │ ├── fileio.h │ │ ├── load.c │ │ ├── load.h │ │ ├── modules.c │ │ ├── modules.h │ │ ├── reloc.c │ │ ├── reloc.h │ │ ├── simpledecompress.c │ │ └── startup.c │ ├── mercury │ │ ├── Makefile │ │ ├── autodocs.c │ │ ├── include │ │ │ ├── M_BoundsTest.i │ │ │ ├── M_Draw.i │ │ │ ├── M_DrawCommon.i │ │ │ ├── M_LightCommon.i │ │ │ ├── M_LightSpec.i │ │ │ ├── M_PreLight.i │ │ │ ├── M_Sort.i │ │ │ └── Makefile │ │ ├── libmercury1 │ │ │ ├── M_Draw.c │ │ │ ├── M_Draw.s │ │ │ ├── M_DrawEnd.c │ │ │ ├── Makefile │ │ │ └── libmercury1.make │ │ ├── libmercury2 │ │ │ ├── M_ComputeSpecData.c │ │ │ ├── M_LightCommon.s │ │ │ ├── M_LightDir.s │ │ │ ├── M_LightDirSpec.s │ │ │ ├── M_LightDirSpecTex.s │ │ │ ├── M_LightEnv.s │ │ │ ├── M_LightFog.s │ │ │ ├── M_LightFogTrans.s │ │ │ ├── M_LightPoint.s │ │ │ ├── M_LightSoftSpot.s │ │ │ ├── M_LightSpec.s │ │ │ ├── M_LightSpecCommon.s │ │ │ ├── Makefile │ │ │ └── libmercury2.make │ │ ├── libmercury3 │ │ │ ├── M_BoundsTest.s │ │ │ ├── M_BuildAAEdgeTable.c │ │ │ ├── M_DrawDynLit.s │ │ │ ├── M_DrawDynLitAA.s │ │ │ ├── M_DrawDynLitEnv.s │ │ │ ├── M_DrawDynLitTex.s │ │ │ ├── M_DrawDynLitTexAA.s │ │ │ ├── M_DrawDynLitTrans.s │ │ │ ├── M_DrawLineAA.s │ │ │ ├── M_DrawLineTexAA.s │ │ │ ├── M_DrawPreLit.s │ │ │ ├── M_DrawPreLitAA.s │ │ │ ├── M_DrawPreLitTex.s │ │ │ ├── M_DrawPreLitTexAA.s │ │ │ ├── M_DrawPreLitTrans.s │ │ │ ├── M_PreLight.s │ │ │ ├── Makefile │ │ │ └── libmercury3.make │ │ ├── libmercury4 │ │ │ ├── M_EndAsmCode.s │ │ │ ├── M_Init.c │ │ │ ├── M_InitMP.c │ │ │ ├── M_LoadPodTexture.s │ │ │ ├── M_SaveAndCallC.s │ │ │ ├── M_SetCamera.c │ │ │ ├── M_Sort.s │ │ │ ├── M_StartAsmCode.s │ │ │ ├── Makefile │ │ │ ├── circularbuf.c │ │ │ ├── libmercury4.make │ │ │ └── snippets.c │ │ ├── libmercury_mpm │ │ │ ├── MPM_DrawSendSwap.c │ │ │ ├── MPM_DrawSendSwapLL.c │ │ │ ├── MPM_DuplicatePods.c │ │ │ ├── MPM_Init.c │ │ │ ├── MPM_LastFrame.c │ │ │ ├── MPM_LinkSortSplit.c │ │ │ ├── MPM_NewFrame.c │ │ │ ├── MPM_Split.c │ │ │ ├── MPM_SyncCloseData.c │ │ │ ├── Makefile │ │ │ └── libmercury_mpm.make │ │ ├── libmercury_setup │ │ │ ├── M_SetupDynLit.c │ │ │ ├── M_SetupDynLitAA.c │ │ │ ├── M_SetupDynLitEnv.c │ │ │ ├── M_SetupDynLitFog.c │ │ │ ├── M_SetupDynLitFogEnv.c │ │ │ ├── M_SetupDynLitFogTex.c │ │ │ ├── M_SetupDynLitFogTrans.c │ │ │ ├── M_SetupDynLitSpecEnv.c │ │ │ ├── M_SetupDynLitSpecTex.c │ │ │ ├── M_SetupDynLitTex.c │ │ │ ├── M_SetupDynLitTexAA.c │ │ │ ├── M_SetupDynLitTrans.c │ │ │ ├── M_SetupDynLitTransEnv.c │ │ │ ├── M_SetupDynLitTransTex.c │ │ │ ├── M_SetupPreLit.c │ │ │ ├── M_SetupPreLitAA.c │ │ │ ├── M_SetupPreLitFog.c │ │ │ ├── M_SetupPreLitFogTex.c │ │ │ ├── M_SetupPreLitFogTrans.c │ │ │ ├── M_SetupPreLitTex.c │ │ │ ├── M_SetupPreLitTexAA.c │ │ │ ├── M_SetupPreLitTrans.c │ │ │ ├── M_SetupPreLitTransTex.c │ │ │ ├── Makefile │ │ │ └── libmercury_setup.make │ │ ├── libmercury_utils │ │ │ ├── Makefile │ │ │ ├── Makefile.DOS │ │ │ ├── MatrixData.c │ │ │ ├── Matrix_BillboardX.c │ │ │ ├── Matrix_BillboardY.c │ │ │ ├── Matrix_BillboardZ.c │ │ │ ├── Matrix_Construct.c │ │ │ ├── Matrix_Copy.c │ │ │ ├── Matrix_CopyOrientation.c │ │ │ ├── Matrix_CopyTranslation.c │ │ │ ├── Matrix_Destruct.c │ │ │ ├── Matrix_FullInvert.c │ │ │ ├── Matrix_GetBank.c │ │ │ ├── Matrix_GetElevation.c │ │ │ ├── Matrix_GetHeading.c │ │ │ ├── Matrix_GetTranslation.c │ │ │ ├── Matrix_GetpTranslation.c │ │ │ ├── Matrix_Identity.c │ │ │ ├── Matrix_Invert.c │ │ │ ├── Matrix_LookAt.c │ │ │ ├── Matrix_Move.c │ │ │ ├── Matrix_MoveByVector.c │ │ │ ├── Matrix_Mult.c │ │ │ ├── Matrix_MultOrientation.c │ │ │ ├── Matrix_Multiply.c │ │ │ ├── Matrix_MultiplyOrientation.c │ │ │ ├── Matrix_Normalize.c │ │ │ ├── Matrix_Perspective.c │ │ │ ├── Matrix_Print.c │ │ │ ├── Matrix_Rotate.c │ │ │ ├── Matrix_RotateLocal.c │ │ │ ├── Matrix_RotateX.c │ │ │ ├── Matrix_RotateXLocal.c │ │ │ ├── Matrix_RotateY.c │ │ │ ├── Matrix_RotateYLocal.c │ │ │ ├── Matrix_RotateZ.c │ │ │ ├── Matrix_RotateZLocal.c │ │ │ ├── Matrix_Scale.c │ │ │ ├── Matrix_ScaleByVector.c │ │ │ ├── Matrix_ScaleLocal.c │ │ │ ├── Matrix_ScaleLocalByVector.c │ │ │ ├── Matrix_SetTranslation.c │ │ │ ├── Matrix_SetTranslationByVec.c │ │ │ ├── Matrix_Translate.c │ │ │ ├── Matrix_TranslateByVector.c │ │ │ ├── Matrix_Turn.c │ │ │ ├── Matrix_TurnLocal.c │ │ │ ├── Matrix_TurnX.c │ │ │ ├── Matrix_TurnXLocal.c │ │ │ ├── Matrix_TurnY.c │ │ │ ├── Matrix_TurnYLocal.c │ │ │ ├── Matrix_TurnZ.c │ │ │ ├── Matrix_TurnZLocal.c │ │ │ ├── Matrix_Zero.c │ │ │ ├── Vector2D_Set.c │ │ │ ├── Vector3D_Add.c │ │ │ ├── Vector3D_Average.c │ │ │ ├── Vector3D_Compare.c │ │ │ ├── Vector3D_CompareFuzzy.c │ │ │ ├── Vector3D_Construct.c │ │ │ ├── Vector3D_Copy.c │ │ │ ├── Vector3D_Cross.c │ │ │ ├── Vector3D_Destruct.c │ │ │ ├── Vector3D_Dot.c │ │ │ ├── Vector3D_Length.c │ │ │ ├── Vector3D_Maximum.c │ │ │ ├── Vector3D_Minimum.c │ │ │ ├── Vector3D_Multiply.c │ │ │ ├── Vector3D_MultiplyByMatrix.c │ │ │ ├── Vector3D_Negate.c │ │ │ ├── Vector3D_Normalize.c │ │ │ ├── Vector3D_OrientateByMatrix.c │ │ │ ├── Vector3D_Print.c │ │ │ ├── Vector3D_Scale.c │ │ │ ├── Vector3D_Set.c │ │ │ ├── Vector3D_Subtract.c │ │ │ ├── Vector3D_Zero.c │ │ │ └── libmercury_utils.make │ │ └── scripts │ │ │ ├── BuildMercury │ │ │ └── Makefile │ ├── music │ │ ├── Makefile │ │ ├── aiff │ │ │ ├── Makefile │ │ │ ├── autodocs.c │ │ │ ├── decodeaifffloat80.c │ │ │ ├── decodeaiffpstring.c │ │ │ ├── findssndinfo.c │ │ │ ├── getaiffcompressionratio.c │ │ │ ├── handlessnd.c │ │ │ ├── scanaiff.c │ │ │ └── validateaiffmarkerchunk.c │ │ ├── archive │ │ │ ├── archive.txt │ │ │ ├── dir.flp.disabled │ │ │ ├── iff_fs_tools.c │ │ │ ├── iff_fs_tools.h │ │ │ ├── parse_aria.c.disabled │ │ │ └── sound3d.c │ │ ├── atag │ │ │ ├── Makefile │ │ │ ├── autodocs.c │ │ │ ├── loadatag.c │ │ │ └── validateatag.c │ │ ├── flex_stream │ │ │ ├── Makefile │ │ │ └── flex_stream.c │ │ ├── iff │ │ │ ├── Makefile │ │ │ ├── datachunk_internal.h │ │ │ ├── extractdatachunk.c │ │ │ ├── extractstoreditem.c │ │ │ ├── finddatachunk.c │ │ │ ├── findstoreditem.c │ │ │ ├── getpropchunk.c │ │ │ ├── iffprintf.c │ │ │ ├── registerdatachunks.c │ │ │ ├── storedatachunk.c │ │ │ ├── storeitemincontext.c │ │ │ ├── validatetags.c │ │ │ └── writeleafchunk.c │ │ ├── includes │ │ │ └── music_internal.h │ │ ├── juggler │ │ │ ├── Makefile │ │ │ └── juggler.c │ │ ├── midifile │ │ │ ├── Makefile │ │ │ └── midifile.c │ │ ├── musicscript │ │ │ ├── Makefile │ │ │ ├── diagnostics.c │ │ │ ├── musicscript.c │ │ │ ├── musicscript_internal.h │ │ │ ├── parsemusicscript.c │ │ │ └── processmusicscriptcmd.c │ │ ├── sample │ │ │ ├── Makefile │ │ │ ├── deletesampleinfo.c │ │ │ ├── dumpsampleinfo.c │ │ │ ├── getaiffsampleinfo.c │ │ │ ├── loadsample.c │ │ │ ├── loadsystemsample.c │ │ │ ├── sampleformattoinsname.c │ │ │ ├── sampleinfototags.c │ │ │ └── sampleitemtoinsname.c │ │ ├── score │ │ │ ├── Makefile │ │ │ ├── score.c │ │ │ ├── score_internal.h │ │ │ ├── score_loadtemplate.c │ │ │ ├── score_mfloader.c │ │ │ └── score_pimaploader.c │ │ ├── sound3d │ │ │ ├── Makefile │ │ │ ├── create3dsoundva.s │ │ │ ├── sound3d.c │ │ │ ├── sound3d_patch.c │ │ │ └── sound3d_patch.h │ │ ├── soundplayer │ │ │ ├── Makefile │ │ │ ├── soundplayer.c │ │ │ ├── soundplayer_file.c │ │ │ ├── soundplayer_internal.h │ │ │ ├── soundplayer_sample.c │ │ │ ├── spdumpplayer.c │ │ │ └── spstartplayingva.s │ │ └── soundspooler │ │ │ ├── Makefile │ │ │ ├── soundspooler.c │ │ │ ├── sspldumpsoundbuffernode.c │ │ │ ├── sspldumpsoundspooler.c │ │ │ ├── ssplplaydata.c │ │ │ ├── ssplspooldata.c │ │ │ └── ssplstartspoolertagsva.s │ ├── pforthmon │ │ ├── Makefile │ │ ├── cde_serial.c │ │ ├── cde_serial.h │ │ ├── pf_all.h │ │ ├── pf_cglue.c │ │ ├── pf_cglue.h │ │ ├── pf_core.c │ │ ├── pf_core.h │ │ ├── pf_entry.c │ │ ├── pf_guts.h │ │ ├── pf_host.h │ │ ├── pf_host_m2.c │ │ ├── pf_inner.c │ │ ├── pf_io.c │ │ ├── pf_io.h │ │ ├── pf_mem.c │ │ ├── pf_mem.h │ │ ├── pf_save.c │ │ ├── pf_save.h │ │ ├── pf_text.c │ │ ├── pf_text.h │ │ ├── pf_tools.c │ │ ├── pf_tools.h │ │ ├── pf_words.c │ │ ├── pf_words.h │ │ ├── pfcompfp.h │ │ ├── pfcompil.c │ │ ├── pfcompil.h │ │ ├── pfcustom.c │ │ ├── pfdicdat.h │ │ ├── pfinnrfp.h │ │ ├── pforth.h │ │ └── test_cde_serial.c.x │ ├── romapp │ │ ├── Makefile │ │ ├── cdtype.c │ │ └── getcomponentlist.c │ ├── spmath │ │ ├── Makefile │ │ ├── acosf.c │ │ ├── asinf.c │ │ ├── atan2f.c │ │ ├── atanf.c │ │ ├── ceilf.S │ │ ├── coshf.c │ │ ├── expf.c │ │ ├── fabsf.S │ │ ├── floor.S │ │ ├── fmodf.c │ │ ├── frexpf.S │ │ ├── ldexpf.S │ │ ├── log10f.c │ │ ├── logf.c │ │ ├── math1f.h │ │ ├── mathf.h │ │ ├── modff.S │ │ ├── powf.c │ │ ├── rsqrtf.S │ │ ├── rsqrtff.S │ │ ├── rsqrtfff.S │ │ ├── sincos.S │ │ ├── sinhf.c │ │ ├── sqrtf.S │ │ ├── sqrtff.S │ │ ├── sqrtfff.S │ │ ├── tanf.c │ │ ├── tanhf.c │ │ ├── values.S │ │ └── values.h │ ├── streaming │ │ ├── BuildAllM2DS │ │ ├── BuildM2DS │ │ ├── BuildM2DSShuttle │ │ ├── CompareDSVersions │ │ ├── DSUtils │ │ │ ├── Makefile │ │ │ ├── dsblockfile.c │ │ │ ├── libDSUtils.a.make │ │ │ ├── mempool.c │ │ │ ├── msgutils.c │ │ │ └── threadhelper.c │ │ ├── DataStream │ │ │ ├── Makefile │ │ │ ├── dataacq.c │ │ │ ├── datastream.c │ │ │ ├── datastreamlib.c │ │ │ ├── libDS.a.make │ │ │ └── preparestream.c │ │ ├── Makefile │ │ ├── Subscribers │ │ │ ├── BuildSubscriberLib │ │ │ ├── BuildSubscriberSLib │ │ │ ├── ControlSubscriber │ │ │ │ ├── ControlSubscriber.make │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── controlsubscriber.c │ │ │ │ └── controlsubscriber.h │ │ │ ├── DataSubscriber │ │ │ │ ├── Makefile │ │ │ │ ├── datachannels.c │ │ │ │ ├── datachannels.h │ │ │ │ ├── datasubscriber.c │ │ │ │ └── datasubscriber.make │ │ │ ├── EZFlixSubscriber │ │ │ │ ├── EZFlixDecoder.h │ │ │ │ ├── EZFlixDecoder │ │ │ │ │ ├── EZFlixCodec.h │ │ │ │ │ ├── EZFlixDecodeFrame.c │ │ │ │ │ ├── EZFlixDecodeFrame.h │ │ │ │ │ ├── EZFlixDecodeSymbols.c │ │ │ │ │ ├── EZFlixDecodeSymbols.h │ │ │ │ │ ├── EZFlixDecoder.c │ │ │ │ │ ├── EZFlixDecoder.h │ │ │ │ │ ├── EZFlixXPlat.c │ │ │ │ │ ├── EZFlixXPlat.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── PostProcArray.h │ │ │ │ │ └── libEZFlixDecoder.a.make │ │ │ │ ├── EZFlixSubscriber.c │ │ │ │ ├── EZFlixSubscriber.make │ │ │ │ └── Makefile │ │ │ ├── JoinSubscriber │ │ │ │ ├── JoinSubscriber.make │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── joinstreamdefs.h │ │ │ │ ├── joinsubscriber.c │ │ │ │ └── joinsubscriber.h │ │ │ ├── MPEGVideoSubscriber │ │ │ │ ├── MPEGVideoSubscriber.make │ │ │ │ ├── Makefile │ │ │ │ ├── fmvdriverinterface.c │ │ │ │ ├── fmvdriverinterface.h │ │ │ │ ├── mpegbufferqueues.c │ │ │ │ ├── mpegvideochannels.c │ │ │ │ ├── mpegvideochannels.h │ │ │ │ ├── mpegvideosubscriber.c │ │ │ │ ├── mpegvideosupport.c │ │ │ │ └── mpegvideosupport.h │ │ │ ├── Makefile │ │ │ ├── ProtoSubscriber │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── ProtoSubscriber.make │ │ │ │ ├── protochannels.c │ │ │ │ ├── protochannels.h │ │ │ │ ├── protostreamdefs.h │ │ │ │ ├── protosubscriber.c │ │ │ │ └── protosubscriber.h │ │ │ ├── SAudioSubscriber │ │ │ │ ├── Makefile │ │ │ │ ├── SAudioSubscriber.make │ │ │ │ ├── mpabufferqueue.c │ │ │ │ ├── mpabufferqueue.h │ │ │ │ ├── mpadecoderinterface.c │ │ │ │ ├── mpadecoderinterface.h │ │ │ │ ├── mpegaudiosubscriber.c │ │ │ │ ├── sachannel.c │ │ │ │ ├── sachannel.h │ │ │ │ ├── samain.c │ │ │ │ ├── sasoundspoolerinterface.c │ │ │ │ ├── sasoundspoolerinterface.h │ │ │ │ ├── sasupport.c │ │ │ │ ├── sasupport.h │ │ │ │ └── satemplates.c │ │ │ └── SubscriberUtilities │ │ │ │ ├── Makefile │ │ │ │ ├── SubscriberUtilities.make │ │ │ │ ├── subscribertrace.dict │ │ │ │ ├── subscribertraceutils.c │ │ │ │ └── subscriberutils.c │ │ └── dir.flp │ └── vcd_streaming │ │ ├── CompareDSVersions │ │ ├── DSUtils │ │ ├── Makefile │ │ ├── libDSUtils.a.make │ │ ├── mempool.c │ │ ├── msgutils.c │ │ └── threadhelper.c │ │ ├── DataStream │ │ ├── Makefile │ │ ├── dataacq.c │ │ ├── datastream.c │ │ ├── datastreamlib.c │ │ ├── libDS.a.make │ │ ├── preparestream.c │ │ ├── wbparse.c │ │ └── wbparse.h │ │ ├── Makefile │ │ ├── SubUtils │ │ ├── Makefile │ │ └── mpegutils.c │ │ ├── Subscribers │ │ ├── BuildSubscriberLib │ │ ├── BuildSubscriberSLib │ │ ├── MPEGVideoSubscriber │ │ │ ├── MPEGVideoSubscriber.make │ │ │ ├── Makefile │ │ │ ├── actionqueues.c │ │ │ ├── fmvdriverinterface.c │ │ │ ├── fmvdriverinterface.h │ │ │ ├── mpegbufferqueues.c │ │ │ ├── mpegvideochannels.c │ │ │ ├── mpegvideochannels.h │ │ │ ├── mpegvideosubscriber.c │ │ │ ├── mpegvideosupport.c │ │ │ └── mpegvideosupport.h │ │ ├── Makefile │ │ ├── SAudioSubscriber │ │ │ ├── Makefile │ │ │ ├── SAudioSubscriber.make │ │ │ ├── TAGS │ │ │ ├── mpadecoderinterface.c │ │ │ ├── mpadecoderinterface.h │ │ │ ├── mpegaudiosubscriber.c │ │ │ ├── sachannel.c │ │ │ ├── sachannel.h │ │ │ ├── sasoundspoolerinterface.c │ │ │ ├── sasoundspoolerinterface.h │ │ │ ├── sasupport.c │ │ │ ├── sasupport.h │ │ │ └── satemplates.c │ │ └── SubscriberUtilities │ │ │ ├── Makefile │ │ │ ├── SubscriberUtilities.make │ │ │ ├── subscribertrace.dict │ │ │ ├── subscribertraceutils.c │ │ │ └── subscriberutils.c │ │ └── dir.flp ├── mac │ ├── Makefile │ ├── libs │ │ ├── Makefile │ │ ├── compression │ │ │ ├── Makefile │ │ │ ├── compress.c │ │ │ ├── decompress.c │ │ │ ├── lzss.h │ │ │ ├── simplecompress.c │ │ │ └── simpledecompress.c │ │ └── iff │ │ │ ├── Makefile │ │ │ ├── iff.c │ │ │ ├── iff.h │ │ │ └── io.c │ └── tools │ │ ├── Makefile │ │ ├── streaming │ │ ├── AudioChunkifier │ │ │ ├── Makefile │ │ │ ├── audiochunkifier.c │ │ │ ├── audiochunkifier.make │ │ │ └── audiochunkifier.r │ │ ├── BuildStreamTools │ │ ├── CtlMaker │ │ │ ├── CtlMaker.c │ │ │ ├── CtlMaker.make │ │ │ ├── CtlMaker.r │ │ │ ├── CtlMaker_Man_Page │ │ │ └── Makefile.disabled │ │ ├── DATAChunkify │ │ │ ├── DATAChunkify.c │ │ │ ├── DATAChunkify.h │ │ │ ├── DATAChunkify.make │ │ │ ├── DATAChunkify.r │ │ │ ├── Makefile │ │ │ ├── getconfig.c │ │ │ └── getconfig.h │ │ ├── DumpAIFF │ │ │ ├── DumpAIFF.c │ │ │ ├── DumpAIFF.make │ │ │ ├── DumpAIFF.r │ │ │ └── Makefile.disabled │ │ ├── DumpStream │ │ │ ├── DumpStream.c │ │ │ ├── DumpStream.make │ │ │ ├── DumpStream.r │ │ │ └── Makefile │ │ ├── DumpStreamCCBs │ │ │ ├── DumpStreamCCBs.c │ │ │ ├── DumpStreamCCBs.make │ │ │ ├── DumpStreamCCBs.r │ │ │ ├── Makefile.disabled │ │ │ └── PortableSANMDefs.h │ │ ├── EZFlixChunkifier │ │ │ ├── BuildEZFlixChunkifier │ │ │ ├── EZFlixChunkifier.68K.make │ │ │ ├── EZFlixChunkifier.c │ │ │ ├── EZFlixChunkifier.make │ │ │ ├── EZFlixChunkifier.r │ │ │ ├── EZFlixChunkifier.xcoff.make │ │ │ ├── EZFlixEncoder │ │ │ │ ├── EZFlixCodec.h │ │ │ │ ├── EZFlixCompress.cp │ │ │ │ ├── EZFlixCompress.h │ │ │ │ ├── EZFlixEncoder.c │ │ │ │ ├── EZFlixEncoder.lib.make │ │ │ │ ├── EZFlixEncoderLib.xcoff.make │ │ │ │ ├── EZFlixStream.h │ │ │ │ ├── Makefile │ │ │ │ ├── PreprocArray.c │ │ │ │ ├── Quantizers.cp │ │ │ │ └── Quantizers.h │ │ │ ├── Includes │ │ │ │ ├── EZFlixDefines.h │ │ │ │ ├── EZFlixEncoder.h │ │ │ │ ├── EZFlixStream.h │ │ │ │ ├── EZFlixXPlat.h │ │ │ │ └── Makefile │ │ │ ├── Makefile │ │ │ └── Version.h │ │ ├── MPEGAudioChunkifier │ │ │ ├── MPEGAudioChunkifier.c │ │ │ ├── MPEGAudioChunkifier.make │ │ │ ├── MPEGAudioChunkifier.r │ │ │ └── Makefile │ │ ├── MPEGVideoChunkifier │ │ │ ├── MPEGStreamInfo.c │ │ │ ├── MPEGStreamInfo.h │ │ │ ├── MPEGUtils.c │ │ │ ├── MPEGUtils.h │ │ │ ├── MPEGVideoChunkifier.c │ │ │ ├── MPEGVideoChunkifier.make │ │ │ ├── MPEGVideoChunkifier.r │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── MovieToStream_Shuttle │ │ │ ├── Makefile.disabled │ │ │ ├── MovieToStream_Shuttle.c │ │ │ ├── MovieToStream_Shuttle.make │ │ │ └── MovieToStream_Shuttle.r │ │ ├── QTVideoChunkifier │ │ │ ├── Films.h │ │ │ ├── Makefile │ │ │ ├── QTVideoChunkifier.c │ │ │ ├── QTVideoChunkifier.make │ │ │ ├── QTVideoChunkifier.r │ │ │ ├── VQDecoder.h │ │ │ └── Worksheet.stream │ │ ├── SANMMaker │ │ │ ├── ImageFile.h │ │ │ ├── Makefile.disabled │ │ │ ├── OperaHW.h │ │ │ ├── SANMMaker.Make │ │ │ ├── SANMSubscriber.h │ │ │ ├── StandardGetFolder.c │ │ │ ├── StandardGetFolder.h │ │ │ ├── rsmsg.c │ │ │ └── rsmsg.h │ │ ├── SAudioTool │ │ │ ├── Makefile │ │ │ ├── SAudioTool.c │ │ │ ├── SAudioTool.make │ │ │ └── SAudioTool.r │ │ └── Weaver │ │ │ ├── Makefile │ │ │ ├── ParseScriptFile.c │ │ │ ├── ParseScriptFile.h │ │ │ ├── autodocs.c │ │ │ ├── weaver.c │ │ │ ├── weaver.h │ │ │ ├── weaver.make │ │ │ ├── weaver.r │ │ │ ├── weavestream.c │ │ │ └── weavestream.h │ │ └── tcl │ │ ├── MPW.README │ │ ├── Makefile │ │ ├── Xfmath.c │ │ ├── Xmath.c │ │ ├── Xstring.c │ │ ├── errMac.h │ │ ├── macPanic.c │ │ ├── panic.c │ │ ├── regexp.c │ │ ├── regexp.h │ │ ├── stat.c │ │ ├── stat.h │ │ ├── tcl.h │ │ ├── tclAssem.c │ │ ├── tclBasic.c │ │ ├── tclCkalloc.c │ │ ├── tclCmdAH.c │ │ ├── tclCmdIL.c │ │ ├── tclCmdMZ.c │ │ ├── tclEnv.c │ │ ├── tclExpr.c │ │ ├── tclGet.c │ │ ├── tclGlob.c │ │ ├── tclHash.c │ │ ├── tclHash.h │ │ ├── tclHistory.c │ │ ├── tclInt.h │ │ ├── tclMacUtil.c │ │ ├── tclParse.c │ │ ├── tclProc.c │ │ ├── tclTest.c │ │ ├── tclUnix.h │ │ ├── tclUnixAZ.c │ │ ├── tclUnixStr.c │ │ ├── tclUnixUtil.c │ │ ├── tclUtil.c │ │ ├── tclVar.c │ │ └── test.c ├── others │ ├── Makefile │ ├── bootcode │ │ ├── Makefile │ │ ├── bootalloc.c │ │ ├── bootcode.h │ │ ├── bootmacros.i │ │ ├── bootstrap.c │ │ ├── bootvectors.s │ │ ├── bootvideo.c │ │ ├── launchdipir.c │ │ ├── lowlevelio.c │ │ ├── romsysinfo.c │ │ └── testdcache.c │ ├── dbinfo │ │ └── Makefile │ ├── dipir │ │ ├── Makefile │ │ ├── alloc.c │ │ ├── atypes.h │ │ ├── boot.c │ │ ├── bsafe2.h │ │ ├── chan.bridgit.c │ │ ├── chan.host.c │ │ ├── chan.hostcd.c │ │ ├── chan.lccd.c │ │ ├── chan.microcard.c │ │ ├── chan.misc.c │ │ ├── chan.pcmcia.c │ │ ├── chan.powerbus.c │ │ ├── chan.sysmem.c │ │ ├── channel.h │ │ ├── dbuffer.c │ │ ├── ddd.c │ │ ├── ddd.cd.c │ │ ├── ddd.cd.h │ │ ├── ddd.h │ │ ├── ddd.host.c │ │ ├── ddd.host.h │ │ ├── decompress.c │ │ ├── dev.chan.c │ │ ├── dev.hostcd.c │ │ ├── dev.hostfs.c │ │ ├── dev.lccd.c │ │ ├── dipir.bootromapp.c │ │ ├── dipir.cart.c │ │ ├── dipir.cd.c │ │ ├── dipir.cd.enc.c │ │ ├── dipir.cd.unenc.c │ │ ├── dipir.h │ │ ├── dipir.host.c │ │ ├── dipir.i │ │ ├── dipir.k.c │ │ ├── dipir.mediadbg.c │ │ ├── dipir.microcard.c │ │ ├── dipir.pc16550.c │ │ ├── dipir.pcdevcard.c │ │ ├── dipir.romapp.c │ │ ├── dipir.sysromapp.c │ │ ├── dipir.tstation.c │ │ ├── dipir.visa.c │ │ ├── diplib.banner.c │ │ ├── diplib.boot.c │ │ ├── diplib.cdmode.c │ │ ├── diplib.comp.c │ │ ├── diplib.devperm.c │ │ ├── diplib.h │ │ ├── diplib.icon.c │ │ ├── diplib.list.c │ │ ├── diplib.loados.c │ │ ├── diplib.reloc.c │ │ ├── diplib.replace.c │ │ ├── diplib.scratch.c │ │ ├── diplib.verify.c │ │ ├── diplib.wdata.c │ │ ├── display.c │ │ ├── global.h │ │ ├── host.h │ │ ├── hostcd.h │ │ ├── hostcdcmd.c │ │ ├── hostfs.h │ │ ├── hostfscmd.c │ │ ├── hosticon.h │ │ ├── hostutil.c │ │ ├── hwdev.c │ │ ├── icons.c │ │ ├── insysrom.h │ │ ├── lccd_cde.c │ │ ├── lccddev.h │ │ ├── loader.c │ │ ├── m2dipir.c │ │ ├── m2dipir.s │ │ ├── m2ecc32.i │ │ ├── m2ecc32.s │ │ ├── m2sysdep.c │ │ ├── m2sysdep.h │ │ ├── md5.h │ │ ├── md5c.c │ │ ├── memcpy.s │ │ ├── memset.s │ │ ├── notsysrom.h │ │ ├── ntgdigest.c │ │ ├── ppc_clib.lib │ │ ├── ppc_clib.s │ │ ├── print.c │ │ ├── rand.c │ │ ├── rommisc.c │ │ ├── romtag.c │ │ ├── rsa.c │ │ ├── rsa_subs.s │ │ ├── rsadipir.c │ │ ├── tiny.c │ │ ├── tiny.h │ │ ├── tuples.h │ │ └── va_arg.c │ ├── romapplauncher │ │ ├── Makefile │ │ └── launcher.c │ ├── roms │ │ ├── Makefile │ │ ├── bootromapp.blueprint │ │ ├── bootromapp.rat │ │ ├── bootromapp.recipe │ │ ├── cart.blueprint │ │ ├── cart.recipe │ │ ├── cdrom.blueprint │ │ ├── cdrom.recipe │ │ ├── generic.defines │ │ ├── generic.recipe │ │ ├── pc16550.blueprint │ │ ├── pc16550.recipe │ │ ├── pcdevcard.blueprint │ │ ├── pcdevcard.recipe │ │ ├── remote.blueprint │ │ ├── remote.recipe │ │ ├── romapp.blueprint │ │ ├── romapp.rat │ │ ├── romapp.recipe │ │ ├── test.cdrom.blueprint │ │ ├── test.cdrom.recipe │ │ ├── tstation.blueprint │ │ └── tstation.recipe │ └── systemrom │ │ ├── Makefile │ │ ├── characterdata.r64 │ │ ├── staticscreen.r64 │ │ ├── system.blueprint │ │ ├── system.defines │ │ └── system.recipe ├── programs │ ├── Makefile │ ├── audio │ │ ├── Makefile │ │ ├── archive │ │ │ ├── archive.txt │ │ │ └── patchdemo │ │ │ │ ├── Makefile.disabled │ │ │ │ ├── patchdemo.c │ │ │ │ ├── patchdemo.h │ │ │ │ ├── pd_faders.c │ │ │ │ ├── pd_patch.c │ │ │ │ └── pd_scope.c │ │ ├── audiomon │ │ │ ├── Makefile │ │ │ └── audiomon.c │ │ ├── graphic │ │ │ ├── Makefile │ │ │ └── dspfaders.c │ │ ├── makepatch │ │ │ ├── Makefile │ │ │ ├── makepatch.c │ │ │ └── vaglue.s │ │ ├── playmf │ │ │ ├── Makefile │ │ │ └── playmf.c │ │ └── shell │ │ │ ├── Makefile │ │ │ ├── audioavail.c │ │ │ └── insinfo.c │ ├── batt │ │ ├── Makefile │ │ └── clock.c │ ├── dipir │ │ ├── Makefile │ │ ├── bootallocs.c │ │ └── hw.c │ ├── file │ │ ├── Makefile │ │ ├── compare.c │ │ ├── copy.c │ │ ├── delete.c │ │ ├── fileattrs.c │ │ ├── findfile.c │ │ ├── format.c │ │ ├── fsinfo.c │ │ ├── ls.c │ │ ├── minimizefs.c │ │ ├── mkdir.c │ │ ├── mkfile.c │ │ ├── mountlevel.c │ │ ├── priv │ │ │ ├── Makefile │ │ │ ├── dismount.c │ │ │ └── mount.c │ │ ├── recheckfs.c │ │ ├── rename.c │ │ ├── type.c │ │ └── walker.c │ ├── intl │ │ ├── Makefile │ │ └── intl.c │ ├── items │ │ ├── Makefile │ │ └── items.c │ ├── media │ │ ├── Makefile │ │ └── writemedia.c │ ├── options │ │ ├── Makefile │ │ └── options.c │ ├── pforth │ │ ├── Makefile │ │ ├── pf_all.h │ │ ├── pf_cglue.c │ │ ├── pf_cglue.h │ │ ├── pf_core.c │ │ ├── pf_core.h │ │ ├── pf_custom_m2.c │ │ ├── pf_guts.h │ │ ├── pf_host.h │ │ ├── pf_host_m2.c │ │ ├── pf_inner.c │ │ ├── pf_io.c │ │ ├── pf_io.h │ │ ├── pf_main.c │ │ ├── pf_mem.c │ │ ├── pf_mem.h │ │ ├── pf_save.c │ │ ├── pf_save.h │ │ ├── pf_text.c │ │ ├── pf_text.h │ │ ├── pf_tools.c │ │ ├── pf_tools.h │ │ ├── pf_words.c │ │ ├── pf_words.h │ │ ├── pfcompfp.h │ │ ├── pfcompil.c │ │ ├── pfcompil.h │ │ ├── pfinnrfp.h │ │ ├── pforth.h │ │ └── stdio_m2.c │ ├── syncstress │ │ ├── Makefile │ │ └── syncstress.c │ └── typeiff │ │ ├── Makefile │ │ └── typeiff.c ├── romapps │ ├── EjectDisk │ │ ├── EjectDisk.c │ │ └── Makefile │ ├── Makefile │ ├── examples │ │ ├── Makefile │ │ ├── audio.romapp │ │ │ ├── Makefile │ │ │ ├── audio.romapp.c │ │ │ └── event.c │ │ ├── discjuggler │ │ │ ├── Makefile │ │ │ ├── discjuggler.c │ │ │ └── event.c │ │ ├── discjugglerEDD │ │ │ ├── Makefile │ │ │ ├── discjuggler.c │ │ │ └── event.c │ │ ├── discjugglerNR │ │ │ ├── Makefile │ │ │ ├── discjuggler.c │ │ │ └── event.c │ │ ├── nodisc.romapp │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ └── nodisc.romapp.c │ │ ├── opera.romapp │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ └── opera.romapp.c │ │ ├── photo.romapp │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ └── photo.romapp.c │ │ ├── unknown.romapp │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ └── unknown.romapp.c │ │ └── video.romapp │ │ │ ├── Makefile │ │ │ ├── event.c │ │ │ └── video.romapp.c │ └── storagemgr │ │ ├── Makefile │ │ ├── art │ │ ├── Makefile │ │ ├── StorMgr-Title.utf.r64 │ │ └── tiff │ │ │ └── stormgr-title.tiff.r64 │ │ └── storagemgr.c ├── scripts │ ├── Makefile │ ├── RomApps.txt │ ├── RomAppsFlow.txt │ ├── SystemStartup │ ├── longlook │ ├── quicklook │ └── tcl │ │ ├── alertbox.tcl │ │ ├── color.tcl │ │ ├── fb.tcl │ │ ├── fsbox.tcl │ │ ├── general2.tcl │ │ ├── glwin.tcl │ │ ├── materials.tcl │ │ ├── quad.tcl │ │ ├── tclIndex │ │ ├── tcolor.tcl │ │ ├── tritest.tcl │ │ ├── vdr-v1000.tcl │ │ └── view.tcl ├── tasks │ ├── Makefile │ ├── eventbroker │ │ ├── ControlPadDriver.c │ │ ├── DefaultDriver.c │ │ ├── EventBroker.c │ │ ├── Makefile │ │ └── SplitterDriver.c │ └── shell │ │ ├── Makefile │ │ ├── errors.c │ │ ├── errors.h │ │ ├── linkexec.x │ │ └── shell.c ├── tests │ ├── Makefile │ ├── audio │ │ ├── Makefile │ │ ├── archive │ │ │ └── dump_ins.c.disabled │ │ ├── capture_ins.c │ │ ├── capture_tool.h │ │ ├── channel_tester.h │ │ ├── check_dma.c │ │ ├── check_time.c │ │ ├── chip │ │ │ ├── Makefile.disabled │ │ │ ├── tbda_synth1.c │ │ │ ├── tbda_synth2.c │ │ │ └── tbda_wave.c │ │ ├── delaydemo │ │ │ ├── DelayDemo.mf.R64 │ │ │ ├── DelayDemo.pimap │ │ │ ├── DelayDemo.script │ │ │ ├── DelayLine.mp │ │ │ ├── DelayLineTemplate.mp │ │ │ ├── DelayLineTemplateClear.mp │ │ │ └── Makefile │ │ ├── dumpdspstats.c │ │ ├── dumpsiginfo.c │ │ ├── e3music │ │ │ ├── Makefile.disabled │ │ │ ├── e3music.c │ │ │ ├── e3music.h │ │ │ ├── e3music_recv.c │ │ │ ├── e3music_recv.h │ │ │ ├── sfx_tools.c │ │ │ └── sfx_tools.h │ │ ├── gestures │ │ │ ├── Makefile │ │ │ ├── gestures.c │ │ │ └── gestures.mp │ │ ├── graphic │ │ │ ├── Makefile │ │ │ └── test_pgr.c │ │ ├── idle_audio.c │ │ ├── jail │ │ │ ├── audio_diagnostic.c │ │ │ ├── plane.c │ │ │ └── ta_halfrate.c │ │ ├── leftright.c │ │ ├── levels.c │ │ ├── loadatag.c │ │ ├── loadins.c │ │ ├── long_time.c │ │ ├── loopbench.c │ │ ├── patches │ │ │ ├── 3osc.mp │ │ │ ├── Makefile │ │ │ ├── multitrig.mp │ │ │ ├── onetrig.mp │ │ │ ├── sawenv.mp │ │ │ ├── snaredelay.mp │ │ │ ├── tac_gain.mp │ │ │ ├── tac_simple.mp │ │ │ └── test3dsound.mp │ │ ├── score │ │ │ ├── Makefile │ │ │ ├── tsc_bend.c │ │ │ └── tsc_pan.c │ │ ├── setsamplerate │ │ │ ├── Makefile │ │ │ └── setsamplerate.c │ │ ├── sniff_mem.c │ │ ├── ta_api.c │ │ ├── ta_attach_mem.c │ │ ├── ta_auto.c │ │ ├── ta_auto_att.c │ │ ├── ta_bugs.c │ │ ├── ta_cvttogeneric.c │ │ ├── ta_cvttosignal.c │ │ ├── ta_envelope_mem.c │ │ ├── ta_fastenv.c │ │ ├── ta_framecount.c │ │ ├── ta_immed.c │ │ ├── ta_input.c │ │ ├── ta_ins_mem.c │ │ ├── ta_mixer.c │ │ ├── ta_patchcmd.c │ │ ├── ta_reg_connect.c │ │ ├── ta_sample_mem.c │ │ ├── ta_sharing.c │ │ ├── ta_trigger.c │ │ ├── ta_trigger_args.c │ │ ├── ta_trigger_recv.c │ │ ├── ta_tuning_mem.c │ │ ├── test_sample.c │ │ ├── testaudio.c │ │ └── ts3d_bugs.c │ ├── batt │ │ ├── Makefile │ │ └── batt.c │ ├── bench │ │ ├── Makefile │ │ ├── MemBench │ │ │ ├── Makefile │ │ │ ├── bench.h │ │ │ ├── main.c │ │ │ └── time.c │ │ ├── cache │ │ │ ├── Makefile │ │ │ ├── cache.c │ │ │ └── cache.s │ │ └── m2bench │ │ │ ├── Makefile │ │ │ ├── bubble.c │ │ │ ├── fft.c │ │ │ ├── intmm.c │ │ │ ├── main.c │ │ │ ├── mm.c │ │ │ ├── perm.c │ │ │ ├── puzzle.c │ │ │ ├── queens.c │ │ │ ├── quick.c │ │ │ ├── taskswitch.c │ │ │ ├── towers.c │ │ │ └── trees.c │ ├── cdrom │ │ ├── Makefile │ │ ├── certify.c │ │ ├── ecc │ │ │ ├── Makefile │ │ │ ├── ecc.c │ │ │ ├── eccdata.h │ │ │ ├── eccdata2.h │ │ │ ├── eccdata3.h │ │ │ ├── m2ecc32.i │ │ │ └── m2ecc32.s │ │ ├── m2cd │ │ │ ├── Makefile │ │ │ └── m2cd.c │ │ ├── monitor │ │ │ ├── Makefile │ │ │ └── monitor.c │ │ └── seek │ │ │ ├── Makefile │ │ │ ├── drive.c │ │ │ ├── drive.h │ │ │ ├── mytime.c │ │ │ ├── mytime.h │ │ │ ├── seek.c │ │ │ ├── su.c │ │ │ └── su.h │ ├── compile │ │ ├── body │ │ └── header │ ├── eventbroker │ │ ├── Makefile │ │ ├── cpdump.c │ │ ├── focus.c │ │ ├── generic.c │ │ ├── lookie.c │ │ ├── luckie.c │ │ └── maus.c │ ├── file │ │ ├── .del-lmfs-Aug-30-96 │ │ │ ├── Makefile │ │ │ └── lmfs.c │ │ ├── Makefile │ │ ├── diskspeed │ │ │ ├── Makefile │ │ │ ├── diskspeed.c │ │ │ └── time.c │ │ ├── microlook │ │ │ ├── Makefile │ │ │ └── microlook.c │ │ └── printspeed │ │ │ ├── Makefile │ │ │ ├── printspeed.c │ │ │ └── time.c │ ├── graphics │ │ ├── Makefile │ │ ├── airplane │ │ │ ├── Makefile.disabled │ │ │ ├── main.c │ │ │ ├── plane.h │ │ │ ├── plane_graphics.c │ │ │ ├── plane_graphics.h │ │ │ ├── plane_physics.c │ │ │ ├── plane_physics.h │ │ │ ├── sound_wind.c │ │ │ ├── sound_wind.h │ │ │ ├── terrain.c │ │ │ └── terrain.h │ │ ├── blitter │ │ │ ├── Makefile │ │ │ └── timings │ │ │ │ ├── Makefile │ │ │ │ └── timings.c │ │ ├── clt │ │ │ ├── Makefile │ │ │ └── testmacros │ │ │ │ ├── Makefile │ │ │ │ └── testmacros.c │ │ ├── font │ │ │ ├── Makefile │ │ │ └── testnl │ │ │ │ ├── Makefile │ │ │ │ └── testnl.c │ │ └── frame2d │ │ │ ├── Makefile │ │ │ ├── createsprite │ │ │ ├── Makefile │ │ │ └── createsprite.c │ │ │ ├── perf2d │ │ │ ├── Makefile │ │ │ └── perf2d.c │ │ │ ├── sprite1 │ │ │ ├── Makefile │ │ │ └── sprite1.c │ │ │ ├── sprite3 │ │ │ ├── Makefile │ │ │ └── sprite3.c │ │ │ ├── sprite4 │ │ │ ├── Makefile │ │ │ └── sprite4.c │ │ │ └── xfade │ │ │ ├── Makefile │ │ │ └── xfade.c │ ├── international │ │ ├── Makefile │ │ ├── comparestrings.c │ │ ├── comparestrings.h │ │ ├── convertstring.c │ │ ├── convertstring.h │ │ ├── formatdate.c │ │ ├── formatdate.h │ │ ├── formatnumber.c │ │ ├── formatnumber.h │ │ ├── intltest.c │ │ ├── intltest.h │ │ ├── transliteratestring.c │ │ └── transliteratestring.h │ ├── kernel │ │ ├── Makefile │ │ ├── fptest.c │ │ ├── getrand.c │ │ ├── lumberjack.c │ │ ├── restable.c │ │ ├── savelumber.c │ │ ├── setjmp.c │ │ ├── sfptest.c │ │ └── watchdie.c │ ├── math │ │ ├── Makefile │ │ ├── floatspeed │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ └── Makefile │ │ │ ├── floatspeed.c │ │ │ └── time.c │ │ ├── frac16 │ │ │ ├── Makefile │ │ │ ├── f16_cvtfloat.c │ │ │ └── f16_muldiv.c │ │ └── paranoia │ │ │ ├── Makefile.disabled │ │ │ ├── msgs.c │ │ │ ├── paranoia.h │ │ │ ├── part1.c │ │ │ ├── part2.c │ │ │ ├── part3.c │ │ │ ├── part4.c │ │ │ ├── part5.c │ │ │ ├── part6.c │ │ │ ├── part7.c │ │ │ ├── part8.c │ │ │ └── subs.c │ ├── mp │ │ ├── Makefile │ │ └── mp.c │ ├── mpeg │ │ ├── Makefile │ │ ├── frobmpeg │ │ │ ├── Makefile │ │ │ ├── frobmpeg │ │ │ └── frobmpeg.c │ │ ├── testmpegaudio │ │ │ ├── Makefile │ │ │ ├── data │ │ │ │ └── Makefile │ │ │ ├── testmpegaudio.c │ │ │ └── testmpegaudio.h │ │ ├── usefmvvideo │ │ │ ├── Makefile │ │ │ └── usefmvvideo.c │ │ └── waycool │ │ │ ├── Makefile.disabled │ │ │ ├── MyPortInit.c │ │ │ ├── data │ │ │ └── Makefile │ │ │ ├── mm.c │ │ │ ├── mm.h │ │ │ ├── morph.c │ │ │ ├── myputils.h │ │ │ ├── plane.c │ │ │ ├── plaympeg.h │ │ │ ├── plaympegstream.c │ │ │ ├── sphere.c │ │ │ ├── torus.c │ │ │ └── tube.c │ ├── proxyfile │ │ ├── Makefile │ │ ├── proxyfile.D │ │ └── proxyfile.c │ ├── script │ │ ├── Makefile │ │ └── script.c │ └── serial │ │ ├── Makefile │ │ └── serial.c ├── tools │ ├── Makefile │ ├── adx │ │ ├── 411.c │ │ ├── Makefile │ │ ├── adx.c │ │ ├── adx.h │ │ ├── adx.make │ │ ├── ascii.c │ │ ├── html.c │ │ ├── list.c │ │ ├── options.h │ │ ├── troff.c │ │ ├── utils.c │ │ └── utils.h │ ├── comp3do │ │ ├── Makefile │ │ ├── comp3do.c │ │ └── compress.c │ ├── ddfc │ │ ├── Makefile │ │ ├── ddf2c.sh │ │ ├── ddfc.h │ │ ├── ddfc.sh │ │ └── ddfc.y │ ├── decomp3do │ │ ├── Makefile │ │ ├── decomp3do.c │ │ └── decompress.c │ ├── dmnum │ │ ├── Makefile │ │ └── dmnum.c │ ├── elfsize │ │ ├── Makefile │ │ └── elfsize.sh │ ├── filters │ │ ├── Makefile │ │ ├── dumpelf.c │ │ ├── fix_copyright.c │ │ ├── fix_eol_mac.c │ │ ├── fix_eol_pc.c │ │ ├── fix_eol_unix.c │ │ ├── fix_includes_mac.c │ │ ├── fix_includes_pc.c │ │ ├── fix_includes_unix.c │ │ ├── r64dec.c │ │ └── r64enc.c │ ├── gencountrydb │ │ ├── Makefile │ │ └── gencountrydb.c │ ├── jas │ │ ├── Makefile │ │ ├── asp1.l │ │ ├── asp2.l │ │ ├── asp2.y │ │ ├── jas │ │ └── jas.debug │ ├── layout │ │ ├── Makefile │ │ ├── cart.tcl │ │ ├── cdrom.tcl │ │ ├── layout.c │ │ ├── layout.tcl │ │ ├── ramdisk.tcl │ │ ├── romdisk.tcl │ │ └── sysdisk.tcl │ ├── link │ │ ├── Makefile │ │ ├── dump3do │ │ ├── link3do │ │ ├── misc │ │ │ ├── debug.h │ │ │ └── predefines.h │ │ ├── sun4 │ │ │ ├── ar_d.o │ │ │ ├── compress.o │ │ │ ├── dump.o │ │ │ ├── dump_utils.o │ │ │ ├── elf_3do.o │ │ │ ├── elf_ar.o │ │ │ ├── elf_attrs.o │ │ │ ├── elf_d.o │ │ │ ├── elf_l.o │ │ │ ├── elf_libs.o │ │ │ ├── elf_objs.o │ │ │ ├── elf_r.o │ │ │ ├── elf_tags.o │ │ │ ├── elf_utils.o │ │ │ ├── link.o │ │ │ ├── misc.o │ │ │ ├── option.o │ │ │ ├── parse.o │ │ │ ├── ppc_disasm.o │ │ │ ├── sym_api.o │ │ │ ├── sym_dump.o │ │ │ ├── sym_net.o │ │ │ ├── sym_nodes.o │ │ │ ├── sym_utils.o │ │ │ └── utils.o │ │ └── symbolics │ │ │ ├── Symbolics.h │ │ │ ├── XSYM │ │ │ ├── DebugDataTypes.h │ │ │ ├── xsym.h │ │ │ ├── xsym_d_v3r3.cpp │ │ │ ├── xsym_d_v3r3.h │ │ │ ├── xsym_defs_v32.h │ │ │ ├── xsym_defs_v33.h │ │ │ ├── xsym_defs_v34.h │ │ │ ├── xsym_r_v3r2.cp │ │ │ ├── xsym_r_v3r2.h │ │ │ ├── xsym_r_v3r3.cp │ │ │ ├── xsym_r_v3r3.h │ │ │ ├── xsym_r_v3r4.cp │ │ │ ├── xsym_r_v3r4.h │ │ │ ├── xsym_ver.cpp │ │ │ ├── xsym_ver.h │ │ │ └── xsym_verdefs.h │ │ │ ├── ar │ │ │ ├── ar_d.cpp │ │ │ └── ar_d.h │ │ │ ├── elf │ │ │ ├── ar.h │ │ │ ├── dwarf.h │ │ │ ├── elf.h │ │ │ ├── elf_3do.cpp │ │ │ ├── elf_3do.h │ │ │ ├── elf_ar.cpp │ │ │ ├── elf_ar.h │ │ │ ├── elf_attrs.cpp │ │ │ ├── elf_d.cpp │ │ │ ├── elf_d.h │ │ │ ├── elf_l.cpp │ │ │ ├── elf_l.h │ │ │ ├── elf_libs.cpp │ │ │ ├── elf_objs.cpp │ │ │ ├── elf_r.cpp │ │ │ ├── elf_r.h │ │ │ ├── elf_tags.cpp │ │ │ ├── elf_utils.cpp │ │ │ └── elf_utils.h │ │ │ ├── from_the_kernel │ │ │ ├── header3do.h │ │ │ ├── loaderty.h │ │ │ └── nodes.h │ │ │ ├── in_the_dumps │ │ │ ├── dump.cpp │ │ │ ├── dumpopts.h │ │ │ ├── dumpver.h │ │ │ ├── ppc_disasm.cpp │ │ │ ├── ppc_disasm.h │ │ │ ├── sym_dump.cpp │ │ │ └── symdump.h │ │ │ ├── linker │ │ │ ├── link.cpp │ │ │ ├── linkopts.h │ │ │ └── linkver.h │ │ │ ├── sym_api.cpp │ │ │ ├── sym_net.cpp │ │ │ ├── sym_nodes.cpp │ │ │ ├── sym_utils.cpp │ │ │ ├── symapi.h │ │ │ ├── symnet.h │ │ │ ├── symnet_inlines.h │ │ │ ├── symnodes.h │ │ │ ├── symutils.h │ │ │ └── utils │ │ │ ├── dump_utils.cpp │ │ │ ├── dumputils.h │ │ │ ├── misc.cpp │ │ │ ├── option.cpp │ │ │ ├── option.h │ │ │ ├── parse.cpp │ │ │ ├── parse.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ ├── makebannerscreen │ │ ├── Makefile │ │ └── makebannerscreen │ ├── makeboot │ │ ├── Makefile │ │ └── makeboot.c │ ├── makeimage │ │ ├── Makefile │ │ ├── Makefile.mac │ │ └── makeimage.c │ ├── mercury │ │ ├── 3dstosdf │ │ │ ├── 3dstosdf.r │ │ │ ├── Makefile.Mac │ │ │ ├── Makefile.SGI │ │ │ ├── Makefile.Sun │ │ │ ├── TlA3dsfile.cc │ │ │ ├── TlA3dsfile.h │ │ │ ├── TlBasicTypes.cc │ │ │ ├── TlBasicTypes.h │ │ │ ├── TlCharacter.cc │ │ │ ├── TlCharacter.h │ │ │ ├── TlFacetList.cc │ │ │ ├── TlFacetList.h │ │ │ ├── TlGroup.cc │ │ │ ├── TlGroup.h │ │ │ ├── TlLight.cc │ │ │ ├── TlLight.h │ │ │ ├── TlMaterial.cc │ │ │ ├── TlMaterial.h │ │ │ ├── TlModel.cc │ │ │ ├── TlModel.h │ │ │ ├── TlPrimitives.cc │ │ │ ├── TlPrimitives.h │ │ │ ├── TlSurface.cc │ │ │ ├── TlSurface.h │ │ │ ├── TlTexture.cc │ │ │ ├── TlTexture.h │ │ │ ├── TlTransform.cc │ │ │ ├── TlTransform.h │ │ │ ├── TlVtxList.cc │ │ │ ├── TlVtxList.h │ │ │ ├── cwmain3ds.cc │ │ │ ├── docs │ │ │ │ ├── DOCUMENTATION │ │ │ │ └── RELEASE_NOTES │ │ │ ├── makefile.dos │ │ │ ├── makeit.Mac │ │ │ └── mpwmain3ds.cc │ │ ├── Makefile │ │ ├── Makefile.NoWS │ │ ├── alias │ │ │ ├── OpenModel │ │ │ │ └── include │ │ │ │ │ ├── AlAccessTypes.h │ │ │ │ │ ├── AlAction.h │ │ │ │ │ ├── AlAmbientLight.h │ │ │ │ │ ├── AlAnim.h │ │ │ │ │ ├── AlAnimatable.h │ │ │ │ │ ├── AlArcAttributes.h │ │ │ │ │ ├── AlAreaLight.h │ │ │ │ │ ├── AlAttributes.h │ │ │ │ │ ├── AlBoxLight.h │ │ │ │ │ ├── AlCamera.h │ │ │ │ │ ├── AlCameraNode.h │ │ │ │ │ ├── AlChanData.h │ │ │ │ │ ├── AlChannel.h │ │ │ │ │ ├── AlCluster.h │ │ │ │ │ ├── AlClusterMember.h │ │ │ │ │ ├── AlClusterNode.h │ │ │ │ │ ├── AlClusterable.h │ │ │ │ │ ├── AlCommand.h │ │ │ │ │ ├── AlConeLight.h │ │ │ │ │ ├── AlConicAttributes.h │ │ │ │ │ ├── AlContact.h │ │ │ │ │ ├── AlCoordinateSystem.h │ │ │ │ │ ├── AlCurve.h │ │ │ │ │ ├── AlCurveAttributes.h │ │ │ │ │ ├── AlCurveCV.h │ │ │ │ │ ├── AlCurveNode.h │ │ │ │ │ ├── AlCurveOnSurface.h │ │ │ │ │ ├── AlCylinderLight.h │ │ │ │ │ ├── AlDagNode.h │ │ │ │ │ ├── AlDebug.h │ │ │ │ │ ├── AlDictionary.h │ │ │ │ │ ├── AlDirectionLight.h │ │ │ │ │ ├── AlEnvironment.h │ │ │ │ │ ├── AlFace.h │ │ │ │ │ ├── AlFaceNode.h │ │ │ │ │ ├── AlFunction.h │ │ │ │ │ ├── AlFunctionHandle.h │ │ │ │ │ ├── AlGroupNode.h │ │ │ │ │ ├── AlHashable.h │ │ │ │ │ ├── AlIKAimConstraint.h │ │ │ │ │ ├── AlIKConstraint.h │ │ │ │ │ ├── AlIKOrientationConstraint.h │ │ │ │ │ ├── AlIKPointConstraint.h │ │ │ │ │ ├── AlImagePlane.h │ │ │ │ │ ├── AlIntersect.h │ │ │ │ │ ├── AlIterator.h │ │ │ │ │ ├── AlJointNode.h │ │ │ │ │ ├── AlKeyframe.h │ │ │ │ │ ├── AlLight.h │ │ │ │ │ ├── AlLightNode.h │ │ │ │ │ ├── AlLineAttributes.h │ │ │ │ │ ├── AlLinearLight.h │ │ │ │ │ ├── AlLinkItem.h │ │ │ │ │ ├── AlList.h │ │ │ │ │ ├── AlLiveData.h │ │ │ │ │ ├── AlMappedFieldItem.h │ │ │ │ │ ├── AlMeasure.h │ │ │ │ │ ├── AlMessage.h │ │ │ │ │ ├── AlModel.h │ │ │ │ │ ├── AlMotionAction.h │ │ │ │ │ ├── AlNameItem.h │ │ │ │ │ ├── AlNonAmbientLight.h │ │ │ │ │ ├── AlNotifyDagNode.h │ │ │ │ │ ├── AlObject.h │ │ │ │ │ ├── AlOrthographicCamera.h │ │ │ │ │ ├── AlParamAction.h │ │ │ │ │ ├── AlPerformance.h │ │ │ │ │ ├── AlPerspectiveCamera.h │ │ │ │ │ ├── AlPickList.h │ │ │ │ │ ├── AlPickable.h │ │ │ │ │ ├── AlPlaneAttributes.h │ │ │ │ │ ├── AlPlayBack.h │ │ │ │ │ ├── AlPlayFrame.h │ │ │ │ │ ├── AlPointLight.h │ │ │ │ │ ├── AlPolygon.h │ │ │ │ │ ├── AlPolyset.h │ │ │ │ │ ├── AlPolysetNode.h │ │ │ │ │ ├── AlPolysetVertex.h │ │ │ │ │ ├── AlRenderInfo.h │ │ │ │ │ ├── AlRetrieveOptions.h │ │ │ │ │ ├── AlRevSurfAttributes.h │ │ │ │ │ ├── AlSet.h │ │ │ │ │ ├── AlSetMember.h │ │ │ │ │ ├── AlSettable.h │ │ │ │ │ ├── AlShader.h │ │ │ │ │ ├── AlShadingFieldItem.h │ │ │ │ │ ├── AlShadingFields.h │ │ │ │ │ ├── AlShell.h │ │ │ │ │ ├── AlShellNode.h │ │ │ │ │ ├── AlSnap.h │ │ │ │ │ ├── AlSphereLight.h │ │ │ │ │ ├── AlSpotLight.h │ │ │ │ │ ├── AlStyle.h │ │ │ │ │ ├── AlSurface.h │ │ │ │ │ ├── AlSurfaceCV.h │ │ │ │ │ ├── AlSurfaceNode.h │ │ │ │ │ ├── AlTM.h │ │ │ │ │ ├── AlTesselate.h │ │ │ │ │ ├── AlTexture.h │ │ │ │ │ ├── AlTextureNode.h │ │ │ │ │ ├── AlTorusLight.h │ │ │ │ │ ├── AlTrimBoundary.h │ │ │ │ │ ├── AlTrimCurve.h │ │ │ │ │ ├── AlTrimRegion.h │ │ │ │ │ ├── AlUnits.h │ │ │ │ │ ├── AlUniverse.h │ │ │ │ │ ├── AlUserCommand.h │ │ │ │ │ ├── AlVertexDataList.h │ │ │ │ │ ├── AlViewFrame.h │ │ │ │ │ ├── AlVolumeLight.h │ │ │ │ │ ├── AlWindow.h │ │ │ │ │ ├── AlXevents.h │ │ │ │ │ └── statusCodes.h │ │ │ └── altosdf │ │ │ │ ├── Docs │ │ │ │ ├── DOCUMENTATION │ │ │ │ └── RELEASE_NOTES │ │ │ │ ├── Main.c++ │ │ │ │ ├── Makefile │ │ │ │ ├── PrintSDF.c++ │ │ │ │ └── PrintSDF.h │ │ ├── gmerc │ │ │ ├── Makefile.Dos │ │ │ ├── Makefile.LinuxIntel │ │ │ ├── Makefile.SGI │ │ │ ├── alloc │ │ │ │ ├── allocator.c │ │ │ │ └── allocator.h │ │ │ ├── anim │ │ │ │ ├── kf_path.c │ │ │ │ ├── kf_path.c.new │ │ │ │ ├── kf_quat.c │ │ │ │ ├── kf_quat.c.new │ │ │ │ ├── kf_spline.c │ │ │ │ └── kf_spline.c.new │ │ │ ├── bsdf │ │ │ │ ├── bsdf_anim.c │ │ │ │ ├── bsdf_anim.c.new │ │ │ │ ├── bsdf_main.c │ │ │ │ └── bsdf_write.c │ │ │ ├── docs │ │ │ │ ├── BUILD_PROCESS │ │ │ │ ├── DOCUMENTATION │ │ │ │ └── RELEASE_NOTES │ │ │ ├── geo │ │ │ │ ├── box.c │ │ │ │ ├── compsurf.c │ │ │ │ ├── geo.c │ │ │ │ ├── tmsnake.c │ │ │ │ ├── tmutils.c │ │ │ │ └── vec.c │ │ │ ├── geo_int │ │ │ │ ├── geointerface.c │ │ │ │ ├── geointerface.h │ │ │ │ ├── geoitpr.c │ │ │ │ ├── geoitpr.h │ │ │ │ └── texpage.c │ │ │ ├── gmerc.make │ │ │ ├── includes │ │ │ │ ├── box.h │ │ │ │ ├── bsdf_anim.h │ │ │ │ ├── bsdf_iff.h │ │ │ │ ├── bsdf_proto.h │ │ │ │ ├── bsdf_write.h │ │ │ │ ├── error.h │ │ │ │ ├── fw.h │ │ │ │ ├── geo.h │ │ │ │ ├── gfxtypes.h │ │ │ │ ├── gp.h │ │ │ │ ├── gp.i │ │ │ │ ├── gpMac.h │ │ │ │ ├── gpPort.i │ │ │ │ ├── gpUnix.h │ │ │ │ ├── kf_eng.h │ │ │ │ ├── kf_path.h │ │ │ │ ├── kf_quat.h │ │ │ │ ├── kf_spline.h │ │ │ │ ├── kf_types.h │ │ │ │ ├── mtx.h │ │ │ │ ├── obj.h │ │ │ │ ├── surf.h │ │ │ │ ├── texpage.h │ │ │ │ ├── tmutils.h │ │ │ │ └── vec.h │ │ │ ├── mac │ │ │ │ └── unixglue.c │ │ │ ├── makeit │ │ │ ├── parser │ │ │ │ ├── array.c │ │ │ │ ├── builtinclasses.c │ │ │ │ ├── class.c │ │ │ │ ├── enum.c │ │ │ │ ├── errors.c │ │ │ │ ├── file.c │ │ │ │ ├── memory.c │ │ │ │ ├── mkheader │ │ │ │ │ ├── makefile.dos │ │ │ │ │ ├── mhsyntax.c │ │ │ │ │ ├── mkheader.c │ │ │ │ │ ├── write.c │ │ │ │ │ └── write.h │ │ │ │ ├── parse.c │ │ │ │ ├── parser.h │ │ │ │ ├── parsererrors.h │ │ │ │ ├── parserfunctions.c │ │ │ │ ├── parserfunctions.h │ │ │ │ ├── parsertypes.h │ │ │ │ ├── sdfclasses.c │ │ │ │ ├── sdfsyntax.c │ │ │ │ ├── sdftokens.h │ │ │ │ ├── sdfvalue.c │ │ │ │ ├── syntax.h │ │ │ │ └── tokens.c │ │ │ ├── port │ │ │ │ ├── endian.h │ │ │ │ ├── writeiff.c │ │ │ │ └── writeiff.h │ │ │ └── unix │ │ │ │ └── futil.c │ │ ├── ifflib │ │ │ ├── Makefile.Dos │ │ │ ├── Makefile.LinuxIntel │ │ │ ├── Makefile.Mac │ │ │ ├── Makefile.SGI │ │ │ ├── Makefile.Sun │ │ │ ├── Makefile.bak │ │ │ ├── iff.c │ │ │ ├── iff.h │ │ │ ├── ifflib.h │ │ │ ├── io.h │ │ │ ├── item.h │ │ │ ├── kernelnodes.h │ │ │ ├── kerneltypes.h │ │ │ ├── list.h │ │ │ ├── listmacros.h │ │ │ ├── makeit.Mac │ │ │ ├── nodes.h │ │ │ ├── operror.h │ │ │ ├── tags.h │ │ │ └── unix.c │ │ ├── libs │ │ │ ├── Dos │ │ │ │ ├── ifflib.a │ │ │ │ ├── libpbm.a.r64 │ │ │ │ ├── libpgm.a.r64 │ │ │ │ ├── libppm.a.r64 │ │ │ │ ├── libtiff.a.r64 │ │ │ │ └── m2txlib.a │ │ │ ├── LinuxIntel │ │ │ │ ├── IFFlib.a │ │ │ │ ├── M2TXlib.a │ │ │ │ ├── libpbm.a.r64 │ │ │ │ ├── libpgm.a.r64 │ │ │ │ ├── libppm.a.r64 │ │ │ │ └── libtiff.a.r64 │ │ │ ├── Mac │ │ │ │ ├── libpbm.a.r64 │ │ │ │ ├── libpgm.a.r64 │ │ │ │ ├── libppm.a.r64 │ │ │ │ └── libtiff.a.r64 │ │ │ ├── SGI │ │ │ │ ├── IFFlib.a │ │ │ │ ├── M2TXlib.a │ │ │ │ ├── libpbm.a.r64 │ │ │ │ ├── libpgm.a.r64 │ │ │ │ ├── libppm.a.r64 │ │ │ │ └── libtiff.a.r64 │ │ │ └── Sun │ │ │ │ ├── IFFlib.a │ │ │ │ ├── M2TXlib.a │ │ │ │ ├── libpbm.a.r64 │ │ │ │ ├── libpgm.a.r64 │ │ │ │ ├── libppm.a.r64 │ │ │ │ └── libtiff.a.r64 │ │ ├── lightwave │ │ │ ├── LWMath.h │ │ │ ├── LWParse.c │ │ │ ├── LWParseMath.c │ │ │ ├── LWSURF.c │ │ │ ├── LWSceneParse.c │ │ │ ├── Makefile.Dos │ │ │ ├── Makefile.LinuxIntel │ │ │ ├── Makefile.Mac │ │ │ ├── Makefile.SGI │ │ │ ├── Makefile.Sun │ │ │ ├── SDFMat.c │ │ │ ├── SDFMat.h │ │ │ ├── basic.h │ │ │ ├── construct.c │ │ │ ├── convex.c │ │ │ ├── docs │ │ │ │ └── Release_Notes │ │ │ ├── makeit.Mac │ │ │ ├── misc.c │ │ │ ├── monotone.c │ │ │ ├── texmap.c │ │ │ ├── texmap.h │ │ │ ├── tools.r │ │ │ ├── tri.c │ │ │ ├── vec.h │ │ │ └── xlines.c │ │ ├── makeit.Mac │ │ ├── out.utf │ │ ├── sky.page.tex │ │ ├── txtlib │ │ │ ├── docs │ │ │ │ └── Release_Notes │ │ │ ├── include │ │ │ │ ├── ,utfpage.h │ │ │ │ ├── GraphicsGems.h │ │ │ │ ├── LWSURF.h │ │ │ │ ├── LWToken.h │ │ │ │ ├── M2Err.h │ │ │ │ ├── M2TXDCI.h │ │ │ │ ├── M2TXDither.h │ │ │ │ ├── M2TXEncode.h │ │ │ │ ├── M2TXFormat.h │ │ │ │ ├── M2TXHeader.h │ │ │ │ ├── M2TXLibrary.h │ │ │ │ ├── M2TXQuant.h │ │ │ │ ├── M2TXTypes.h │ │ │ │ ├── M2TXattr.h │ │ │ │ ├── M2TXbestcompress.h │ │ │ │ ├── M2TXcompress.h │ │ │ │ ├── M2TXiff.h │ │ │ │ ├── M2TXiffMac.h │ │ │ │ ├── M2TXinternal.h │ │ │ │ ├── M2TXio.h │ │ │ │ ├── M2TXlib.h │ │ │ │ ├── ReSample.h │ │ │ │ ├── SDFTexBlend.h │ │ │ │ ├── clt.h │ │ │ │ ├── cltmacros.h │ │ │ │ ├── clttxdblend.h │ │ │ │ ├── filter.h │ │ │ │ ├── lws.h │ │ │ │ ├── lws.i │ │ │ │ ├── os.h │ │ │ │ ├── page.h │ │ │ │ ├── qGlobal.h │ │ │ │ ├── qmem.h │ │ │ │ ├── qmem.h.recent │ │ │ │ ├── qstream.h │ │ │ │ └── utfpage.h │ │ │ └── src │ │ │ │ ├── LWToken.c │ │ │ │ ├── M2TXDCI.c │ │ │ │ ├── M2TXDither.c │ │ │ │ ├── M2TXEncode.c │ │ │ │ ├── M2TXFormat.c │ │ │ │ ├── M2TXHeader.c │ │ │ │ ├── M2TXLibrary.c │ │ │ │ ├── M2TXQuant.c │ │ │ │ ├── M2TXattr.c │ │ │ │ ├── M2TXbestcompress.c │ │ │ │ ├── M2TXcompress.c │ │ │ │ ├── M2TXiff.c │ │ │ │ ├── M2TXio.c │ │ │ │ ├── Makefile.Dos │ │ │ │ ├── Makefile.LinuxIntel │ │ │ │ ├── Makefile.Mac │ │ │ │ ├── Makefile.SGI │ │ │ │ ├── Makefile.Sun │ │ │ │ ├── ReSample.c │ │ │ │ ├── SDFTexBlend.c │ │ │ │ ├── cltcopy.c │ │ │ │ ├── cltdblndattr.c │ │ │ │ ├── clttxattr.c │ │ │ │ ├── filter.c │ │ │ │ ├── futil.c │ │ │ │ ├── makeit.Mac │ │ │ │ ├── page.c │ │ │ │ ├── qmem.c │ │ │ │ └── qstream.c │ │ └── txttools │ │ │ ├── Makefile.Dos │ │ │ ├── Makefile.LinuxIntel │ │ │ ├── Makefile.Mac │ │ │ ├── Makefile.SGI │ │ │ ├── Makefile.Sun │ │ │ ├── READMEFIRST │ │ │ ├── docs │ │ │ └── Release_Notes │ │ │ ├── iffutf.c │ │ │ ├── makeit.Mac │ │ │ ├── merc_specific │ │ │ ├── Makefile │ │ │ ├── Makefile.Dos │ │ │ ├── Makefile.LinuxIntel │ │ │ ├── Makefile.Mac │ │ │ ├── Makefile.SGI │ │ │ ├── Makefile.Sun │ │ │ ├── docs │ │ │ │ └── Release_Notes │ │ │ ├── makeit.Mac │ │ │ ├── tools.r │ │ │ ├── utfcat.c │ │ │ ├── utfpage.c │ │ │ ├── utfpage.c.works │ │ │ ├── utfpipcat.c │ │ │ ├── utfpipsub.c │ │ │ ├── utfquantmany.c │ │ │ ├── utfsdfpage.c │ │ │ ├── utfsplit.c │ │ │ └── utfunpage.c │ │ │ ├── pbm.h │ │ │ ├── pbmplus.h │ │ │ ├── pgm.h │ │ │ ├── ppm.h │ │ │ ├── ppmcmap.h │ │ │ ├── ppmtoutf.c │ │ │ ├── psdtoutf.c │ │ │ ├── quantizer.c │ │ │ ├── quanttopip.c │ │ │ ├── sgitoutf.c │ │ │ ├── tiff.h │ │ │ ├── tiffio.h │ │ │ ├── tifftoutf.c │ │ │ ├── tools.r │ │ │ ├── utfaclean.c │ │ │ ├── utfacompress.c │ │ │ ├── utfaddlod.c │ │ │ ├── utfanim.c │ │ │ ├── utfapip.c │ │ │ ├── utfatmod.c │ │ │ ├── utfcompress.c │ │ │ ├── utffit.c │ │ │ ├── utfflip.c │ │ │ ├── utfiff.c │ │ │ ├── utfinfo.c │ │ │ ├── utflitdown.c │ │ │ ├── utfmakeheader.c │ │ │ ├── utfmakelod.c │ │ │ ├── utfmakepip.c │ │ │ ├── utfmakesame.c │ │ │ ├── utfmerge.c │ │ │ ├── utfmipcat.c │ │ │ ├── utfmodpip.c │ │ │ ├── utfoptpip.c │ │ │ ├── utfpipaccum.c │ │ │ ├── utfpipall.c │ │ │ ├── utfpopfine.c │ │ │ ├── utfprintpip.c │ │ │ ├── utframpalpha.c │ │ │ ├── utfreplace.c │ │ │ ├── utfresize.c │ │ │ ├── utfshare.c │ │ │ ├── utfstats.c │ │ │ ├── utfstrip.c │ │ │ ├── utftoppm.c │ │ │ ├── utfuncompress.c │ │ │ ├── utfunmip.c │ │ │ ├── utfunpip.c │ │ │ └── utfwrap.c │ ├── overwrite │ │ ├── Makefile │ │ └── overwrite.c │ ├── pforth_all │ │ ├── Makefile │ │ ├── ansilocs.fth │ │ ├── c_struct.fth │ │ ├── case.fth │ │ ├── catch.fth │ │ ├── condcomp.fth │ │ ├── floats.fth │ │ ├── forget.fth │ │ ├── loadp4th.fth │ │ ├── locals.fth │ │ ├── make.macrls │ │ ├── math.fth │ │ ├── member.fth │ │ ├── misc1.fth │ │ ├── misc2.fth │ │ ├── numberio.fth │ │ ├── pforth │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ │ ├── README.txt │ │ │ │ ├── pf_todo.txt │ │ │ │ └── pfmanual.txt │ │ │ ├── other │ │ │ │ ├── pf_custom_arm.c │ │ │ │ ├── pforth.make.uu │ │ │ │ └── rlsMakefile │ │ │ ├── pf_all.h │ │ │ ├── pf_cglue.c │ │ │ ├── pf_cglue.h │ │ │ ├── pf_core.c │ │ │ ├── pf_core.h │ │ │ ├── pf_guts.h │ │ │ ├── pf_host.c │ │ │ ├── pf_host.h │ │ │ ├── pf_inner.c │ │ │ ├── pf_io.c │ │ │ ├── pf_io.h │ │ │ ├── pf_main.c │ │ │ ├── pf_mem.c │ │ │ ├── pf_mem.h │ │ │ ├── pf_save.c │ │ │ ├── pf_save.h │ │ │ ├── pf_text.c │ │ │ ├── pf_text.h │ │ │ ├── pf_tools.c │ │ │ ├── pf_tools.h │ │ │ ├── pf_words.c │ │ │ ├── pf_words.h │ │ │ ├── pfcompfp.h │ │ │ ├── pfcompil.c │ │ │ ├── pfcompil.h │ │ │ ├── pfcustom.c │ │ │ ├── pfinnrfp.h │ │ │ ├── pforth.h │ │ │ ├── tests │ │ │ │ ├── bench.fth │ │ │ │ ├── coretest.fth │ │ │ │ ├── t_alloc.fth │ │ │ │ ├── t_pforth.fth │ │ │ │ └── tester.fth │ │ │ └── utils │ │ │ │ ├── clone.fth │ │ │ │ ├── dump_struct.fth │ │ │ │ ├── make_all256.fth │ │ │ │ └── savedicd.fth │ │ ├── quit.fth │ │ ├── smart_if.fth │ │ ├── strings.fth │ │ └── system.fth │ ├── ppcas │ │ ├── COPYING │ │ ├── COPYING.LIB │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── bfd │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.1 │ │ │ ├── ChangeLog.2 │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PORTING │ │ │ ├── TODO │ │ │ ├── VERSION │ │ │ ├── acconfig.h │ │ │ ├── aclocal.m4 │ │ │ ├── aix386-core.c │ │ │ ├── aout-adobe.c │ │ │ ├── aout-arm.c │ │ │ ├── aout-encap.c │ │ │ ├── aout-ns32k.c │ │ │ ├── aout-target.h │ │ │ ├── aout0.c │ │ │ ├── aout32.c │ │ │ ├── aout64.c │ │ │ ├── aoutf1.h │ │ │ ├── aoutx.h │ │ │ ├── archive.c │ │ │ ├── archures.c │ │ │ ├── bfd-in.h │ │ │ ├── bfd-in2.h │ │ │ ├── bfd.c │ │ │ ├── binary.c │ │ │ ├── bout.c │ │ │ ├── cache.c │ │ │ ├── cf-i386lynx.c │ │ │ ├── cf-m68klynx.c │ │ │ ├── cf-sparclynx.c │ │ │ ├── cisco-core.c │ │ │ ├── coff-a29k.c │ │ │ ├── coff-alpha.c │ │ │ ├── coff-apollo.c │ │ │ ├── coff-arm.c │ │ │ ├── coff-go32.c │ │ │ ├── coff-h8300.c │ │ │ ├── coff-h8500.c │ │ │ ├── coff-i386.c │ │ │ ├── coff-i860.c │ │ │ ├── coff-i960.c │ │ │ ├── coff-m68k.c │ │ │ ├── coff-m88k.c │ │ │ ├── coff-mips.c │ │ │ ├── coff-pmac.c │ │ │ ├── coff-ppc.c │ │ │ ├── coff-rs6000.c │ │ │ ├── coff-sh.c │ │ │ ├── coff-sparc.c │ │ │ ├── coff-u68k.c │ │ │ ├── coff-w65.c │ │ │ ├── coff-we32k.c │ │ │ ├── coff-z8k.c │ │ │ ├── coffcode.h │ │ │ ├── coffgen.c │ │ │ ├── cofflink.c │ │ │ ├── coffswap.h │ │ │ ├── config.bfd │ │ │ ├── config.cache │ │ │ ├── config.in │ │ │ ├── config.status │ │ │ ├── configure │ │ │ ├── configure.bat │ │ │ ├── configure.host │ │ │ ├── configure.in │ │ │ ├── corefile.c │ │ │ ├── cpu-a29k.c │ │ │ ├── cpu-alpha.c │ │ │ ├── cpu-arm.c │ │ │ ├── cpu-h8300.c │ │ │ ├── cpu-h8500.c │ │ │ ├── cpu-hppa.c │ │ │ ├── cpu-i386.c │ │ │ ├── cpu-i860.c │ │ │ ├── cpu-i960.c │ │ │ ├── cpu-m68k.c │ │ │ ├── cpu-m88k.c │ │ │ ├── cpu-mips.c │ │ │ ├── cpu-ns32k.c │ │ │ ├── cpu-powerpc.c │ │ │ ├── cpu-rs6000.c │ │ │ ├── cpu-sh.c │ │ │ ├── cpu-sparc.c │ │ │ ├── cpu-vax.c │ │ │ ├── cpu-w65.c │ │ │ ├── cpu-we32k.c │ │ │ ├── cpu-z8k.c │ │ │ ├── demo64.c │ │ │ ├── dep-in.sed │ │ │ ├── doc │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── bfd.texinfo │ │ │ │ ├── bfdsumm.texi │ │ │ │ ├── chew.c │ │ │ │ ├── doc.str │ │ │ │ └── proto.str │ │ │ ├── ecoff.c │ │ │ ├── ecofflink.c │ │ │ ├── ecoffswap.h │ │ │ ├── elf-bfd.h │ │ │ ├── elf.c │ │ │ ├── elf32-gen.c │ │ │ ├── elf32-hppa.c │ │ │ ├── elf32-hppa.h │ │ │ ├── elf32-i386.c │ │ │ ├── elf32-i860.c │ │ │ ├── elf32-m68k.c │ │ │ ├── elf32-m88k.c │ │ │ ├── elf32-mips.c │ │ │ ├── elf32-ppc.c │ │ │ ├── elf32-sparc.c │ │ │ ├── elf32.c │ │ │ ├── elf64-gen.c │ │ │ ├── elf64-sparc.c │ │ │ ├── elf64.c │ │ │ ├── elfcode.h │ │ │ ├── elfcore.h │ │ │ ├── elflink.c │ │ │ ├── elflink.h │ │ │ ├── elfxx-target.h │ │ │ ├── filemode.c │ │ │ ├── format.c │ │ │ ├── gen-aout.c │ │ │ ├── genlink.h │ │ │ ├── hash.c │ │ │ ├── host-aout.c │ │ │ ├── hosts │ │ │ │ ├── alphalinux.h │ │ │ │ ├── decstation.h │ │ │ │ ├── delta68.h │ │ │ │ ├── dpx2.h │ │ │ │ ├── hp300bsd.h │ │ │ │ ├── i386bsd.h │ │ │ │ ├── i386linux.h │ │ │ │ ├── i386mach3.h │ │ │ │ ├── i386nbsd.h │ │ │ │ ├── i386sco.h │ │ │ │ ├── i860mach3.h │ │ │ │ ├── m68knbsd.h │ │ │ │ ├── m88kmach3.h │ │ │ │ ├── mipsbsd.h │ │ │ │ ├── mipsmach3.h │ │ │ │ ├── mipsnbsd.h │ │ │ │ ├── nbsd.h │ │ │ │ ├── news-mips.h │ │ │ │ ├── news.h │ │ │ │ ├── ns32knbsd.h │ │ │ │ ├── pc532mach.h │ │ │ │ ├── riscos.h │ │ │ │ ├── sparcnbsd.h │ │ │ │ ├── symmetry.h │ │ │ │ ├── tahoe.h │ │ │ │ ├── vaxbsd.h │ │ │ │ ├── vaxult.h │ │ │ │ └── vaxult2.h │ │ │ ├── hp300bsd.c │ │ │ ├── hp300hpux.c │ │ │ ├── hppa_stubs.h │ │ │ ├── hppabsd-core.c │ │ │ ├── hpux-core.c │ │ │ ├── i386aout.c │ │ │ ├── i386bsd.c │ │ │ ├── i386dynix.c │ │ │ ├── i386linux.c │ │ │ ├── i386lynx.c │ │ │ ├── i386mach3.c │ │ │ ├── i386msdos.c │ │ │ ├── i386netbsd.c │ │ │ ├── i386os9k.c │ │ │ ├── ieee.c │ │ │ ├── init.c │ │ │ ├── irix-core.c │ │ │ ├── libaout.h │ │ │ ├── libbfd-in.h │ │ │ ├── libbfd.c │ │ │ ├── libbfd.h │ │ │ ├── libcoff-in.h │ │ │ ├── libcoff.h │ │ │ ├── libecoff.h │ │ │ ├── libhppa.h │ │ │ ├── libieee.h │ │ │ ├── libnlm.h │ │ │ ├── liboasys.h │ │ │ ├── linker.c │ │ │ ├── lynx-core.c │ │ │ ├── m68k4knetbsd.c │ │ │ ├── m68klynx.c │ │ │ ├── m68knetbsd.c │ │ │ ├── m88kmach3.c │ │ │ ├── makefile.dos │ │ │ ├── mipsbsd.c │ │ │ ├── mpw-config.in │ │ │ ├── mpw-make.sed │ │ │ ├── netbsd.h │ │ │ ├── newsos3.c │ │ │ ├── nlm-target.h │ │ │ ├── nlm.c │ │ │ ├── nlm32-alpha.c │ │ │ ├── nlm32-i386.c │ │ │ ├── nlm32-ppc.c │ │ │ ├── nlm32-sparc.c │ │ │ ├── nlm32.c │ │ │ ├── nlm64.c │ │ │ ├── nlmcode.h │ │ │ ├── nlmswap.h │ │ │ ├── ns32knetbsd.c │ │ │ ├── oasys.c │ │ │ ├── opncls.c │ │ │ ├── osf-core.c │ │ │ ├── pc532-mach.c │ │ │ ├── pe-arm.c │ │ │ ├── pe-i386.c │ │ │ ├── pe-ppc.c │ │ │ ├── pei-arm.c │ │ │ ├── pei-i386.c │ │ │ ├── pei-ppc.c │ │ │ ├── peicode.h │ │ │ ├── ptrace-core.c │ │ │ ├── reloc.c │ │ │ ├── reloc16.c │ │ │ ├── riscix.c │ │ │ ├── rs6000-core.c │ │ │ ├── section.c │ │ │ ├── som.c │ │ │ ├── som.h │ │ │ ├── sparclynx.c │ │ │ ├── sparcnetbsd.c │ │ │ ├── srec.c │ │ │ ├── stab-syms.c │ │ │ ├── sunos.c │ │ │ ├── syms.c │ │ │ ├── sysdep.h │ │ │ ├── targets.c │ │ │ ├── tekhex.c │ │ │ ├── trad-core.c │ │ │ ├── versados.c │ │ │ └── xcofflink.c │ │ ├── config-ml.in │ │ ├── config.guess │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.bat │ │ ├── configure.in │ │ ├── gas │ │ │ ├── .del-config.log-Dec-10-96 │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog.1 │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── NOTES │ │ │ ├── NOTES.config │ │ │ ├── README │ │ │ ├── README-quirks │ │ │ ├── README-vms │ │ │ ├── README.coff │ │ │ ├── README.rich │ │ │ ├── acconfig.h │ │ │ ├── aclocal.m4 │ │ │ ├── app.c │ │ │ ├── as.c │ │ │ ├── as.h │ │ │ ├── atof-generic.c │ │ │ ├── atof-targ.c │ │ │ ├── bignum-copy.c │ │ │ ├── bignum.h │ │ │ ├── bit_fix.h │ │ │ ├── cond.c │ │ │ ├── conf │ │ │ ├── conf.in │ │ │ ├── config-gas.com │ │ │ ├── config-stamp │ │ │ ├── config.cache │ │ │ ├── config.h │ │ │ ├── config.status │ │ │ ├── config │ │ │ │ ├── alpha-opcode.h │ │ │ │ ├── aout_gnu.h │ │ │ │ ├── arm-big.mt │ │ │ │ ├── arm-lit.mt │ │ │ │ ├── atof-ieee.c │ │ │ │ ├── atof-tahoe.c │ │ │ │ ├── atof-vax.c │ │ │ │ ├── e-mipsecoff.c │ │ │ │ ├── e-mipself.c │ │ │ │ ├── go32.cfg │ │ │ │ ├── i386coff.mt │ │ │ │ ├── m68k-parse.h │ │ │ │ ├── m68k-parse.y │ │ │ │ ├── m68kcoff.mt │ │ │ │ ├── m88k-opcode.h │ │ │ │ ├── m88kcoff.mt │ │ │ │ ├── mips-big.mt │ │ │ │ ├── mips-lit.mt │ │ │ │ ├── obj-aout.c │ │ │ │ ├── obj-aout.h │ │ │ │ ├── obj-bout.c │ │ │ │ ├── obj-bout.h │ │ │ │ ├── obj-coff.c │ │ │ │ ├── obj-coff.h │ │ │ │ ├── obj-ecoff.c │ │ │ │ ├── obj-ecoff.h │ │ │ │ ├── obj-elf.c │ │ │ │ ├── obj-elf.h │ │ │ │ ├── obj-generic.c │ │ │ │ ├── obj-generic.h │ │ │ │ ├── obj-hp300.c │ │ │ │ ├── obj-hp300.h │ │ │ │ ├── obj-ieee.c │ │ │ │ ├── obj-ieee.h │ │ │ │ ├── obj-multi.c │ │ │ │ ├── obj-multi.h │ │ │ │ ├── obj-som.c │ │ │ │ ├── obj-som.h │ │ │ │ ├── obj-vms.c │ │ │ │ ├── obj-vms.h │ │ │ │ ├── ppc-big.mt │ │ │ │ ├── ppc-lit.mt │ │ │ │ ├── tc-a29k.c │ │ │ │ ├── tc-a29k.h │ │ │ │ ├── tc-alpha.c │ │ │ │ ├── tc-alpha.h │ │ │ │ ├── tc-arm.c │ │ │ │ ├── tc-arm.h │ │ │ │ ├── tc-generic.c │ │ │ │ ├── tc-generic.h │ │ │ │ ├── tc-h8300.c │ │ │ │ ├── tc-h8300.h │ │ │ │ ├── tc-h8500.c │ │ │ │ ├── tc-h8500.h │ │ │ │ ├── tc-hppa.c │ │ │ │ ├── tc-hppa.h │ │ │ │ ├── tc-i386.c │ │ │ │ ├── tc-i386.h │ │ │ │ ├── tc-i860.c │ │ │ │ ├── tc-i860.h │ │ │ │ ├── tc-i960.c │ │ │ │ ├── tc-i960.h │ │ │ │ ├── tc-m68851.h │ │ │ │ ├── tc-m68k.c │ │ │ │ ├── tc-m68k.h │ │ │ │ ├── tc-m88k.c │ │ │ │ ├── tc-m88k.h │ │ │ │ ├── tc-mips.c │ │ │ │ ├── tc-mips.h │ │ │ │ ├── tc-ns32k.c │ │ │ │ ├── tc-ns32k.h │ │ │ │ ├── tc-ppc.c │ │ │ │ ├── tc-ppc.h │ │ │ │ ├── tc-sh.c │ │ │ │ ├── tc-sh.h │ │ │ │ ├── tc-sparc.c │ │ │ │ ├── tc-sparc.h │ │ │ │ ├── tc-tahoe.c │ │ │ │ ├── tc-tahoe.h │ │ │ │ ├── tc-vax.c │ │ │ │ ├── tc-vax.h │ │ │ │ ├── tc-w65.c │ │ │ │ ├── tc-w65.h │ │ │ │ ├── tc-z8k.c │ │ │ │ ├── tc-z8k.h │ │ │ │ ├── te-386bsd.h │ │ │ │ ├── te-delta.h │ │ │ │ ├── te-delta88.h │ │ │ │ ├── te-dpx2.h │ │ │ │ ├── te-generic.h │ │ │ │ ├── te-go32.h │ │ │ │ ├── te-hp300.h │ │ │ │ ├── te-hppa.h │ │ │ │ ├── te-i386aix.h │ │ │ │ ├── te-ic960.h │ │ │ │ ├── te-linux.h │ │ │ │ ├── te-lynx.h │ │ │ │ ├── te-mach.h │ │ │ │ ├── te-macos.h │ │ │ │ ├── te-multi.h │ │ │ │ ├── te-nbsd.h │ │ │ │ ├── te-nbsd532.h │ │ │ │ ├── te-pc532mach.h │ │ │ │ ├── te-pe.h │ │ │ │ ├── te-ppcnw.h │ │ │ │ ├── te-sco386.h │ │ │ │ ├── te-sun3.h │ │ │ │ ├── te-sysv32.h │ │ │ │ ├── vax-inst.h │ │ │ │ └── vms-conf.h │ │ │ ├── configure │ │ │ ├── configure.bat │ │ │ ├── configure.in │ │ │ ├── debug.c │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── all.texi │ │ │ │ ├── as.1 │ │ │ │ ├── as.html │ │ │ │ ├── as.texinfo │ │ │ │ ├── as_foot.html │ │ │ │ ├── as_toc.html │ │ │ │ ├── c-a29k.texi │ │ │ │ ├── c-h8300.texi │ │ │ │ ├── c-h8500.texi │ │ │ │ ├── c-hppa.texi │ │ │ │ ├── c-i386.texi │ │ │ │ ├── c-i960.texi │ │ │ │ ├── c-m68k.texi │ │ │ │ ├── c-mips.texi │ │ │ │ ├── c-ns32k.texi │ │ │ │ ├── c-ppc.texi │ │ │ │ ├── c-sh.texi │ │ │ │ ├── c-sparc.texi │ │ │ │ ├── c-vax.texi │ │ │ │ ├── c-z8k.texi │ │ │ │ ├── gasp.texi │ │ │ │ ├── h8.texi │ │ │ │ └── internals.texi │ │ │ ├── dump.das │ │ │ ├── dump.ppcas │ │ │ ├── ecoff.c │ │ │ ├── ecoff.h │ │ │ ├── emul-target.h │ │ │ ├── emul.h │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── flonum-copy.c │ │ │ ├── flonum-konst.c │ │ │ ├── flonum-mult.c │ │ │ ├── flonum.h │ │ │ ├── frags.c │ │ │ ├── frags.h │ │ │ ├── gasp.c │ │ │ ├── gdbinit.in │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── input-file.c │ │ │ ├── input-file.h │ │ │ ├── input-scrub.c │ │ │ ├── link.cmd │ │ │ ├── listing.c │ │ │ ├── listing.h │ │ │ ├── literal.c │ │ │ ├── m68k-parse.c │ │ │ ├── mac-as.r │ │ │ ├── macro.c │ │ │ ├── macro.h │ │ │ ├── main.s │ │ │ ├── make-gas.com │ │ │ ├── messages.c │ │ │ ├── mpw-config.in │ │ │ ├── mpw-make.sed │ │ │ ├── obj-format.c │ │ │ ├── obj-format.h │ │ │ ├── obj.h │ │ │ ├── output-file.c │ │ │ ├── output-file.h │ │ │ ├── problem.dump │ │ │ ├── problem.s │ │ │ ├── read.c │ │ │ ├── read.h │ │ │ ├── sb.c │ │ │ ├── sb.h │ │ │ ├── stabs.c │ │ │ ├── struc-symbol.h │ │ │ ├── subsegs.c │ │ │ ├── subsegs.h │ │ │ ├── symbols.c │ │ │ ├── symbols.h │ │ │ ├── targ-cpu.c │ │ │ ├── targ-cpu.h │ │ │ ├── targ-env.h │ │ │ ├── tc.h │ │ │ ├── testsuite │ │ │ │ ├── ChangeLog │ │ │ │ ├── config │ │ │ │ │ └── default.exp │ │ │ │ ├── gas │ │ │ │ │ ├── all │ │ │ │ │ │ ├── comment.s │ │ │ │ │ │ ├── diff1.s │ │ │ │ │ │ ├── float.s │ │ │ │ │ │ ├── gas.exp │ │ │ │ │ │ ├── p1480.s │ │ │ │ │ │ ├── p2425.s │ │ │ │ │ │ ├── struct.d │ │ │ │ │ │ ├── struct.s │ │ │ │ │ │ └── x930509.s │ │ │ │ │ ├── alpha │ │ │ │ │ │ ├── fp.d │ │ │ │ │ │ ├── fp.exp │ │ │ │ │ │ └── fp.s │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── arm.exp │ │ │ │ │ │ ├── arm3.s │ │ │ │ │ │ ├── arm6.s │ │ │ │ │ │ ├── arm7dm.s │ │ │ │ │ │ ├── copro.s │ │ │ │ │ │ ├── float.s │ │ │ │ │ │ ├── inst.s │ │ │ │ │ │ ├── le-fpconst.d │ │ │ │ │ │ └── le-fpconst.s │ │ │ │ │ ├── h8300 │ │ │ │ │ │ ├── cmpsi2.s │ │ │ │ │ │ ├── ffxx1.d │ │ │ │ │ │ ├── ffxx1.s │ │ │ │ │ │ └── h8300.exp │ │ │ │ │ ├── hppa │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── add.s │ │ │ │ │ │ │ ├── addi.s │ │ │ │ │ │ │ ├── basic.exp │ │ │ │ │ │ │ ├── branch.s │ │ │ │ │ │ │ ├── comclr.s │ │ │ │ │ │ │ ├── copr.s │ │ │ │ │ │ │ ├── coprmem.s │ │ │ │ │ │ │ ├── dcor.s │ │ │ │ │ │ │ ├── deposit.s │ │ │ │ │ │ │ ├── ds.s │ │ │ │ │ │ │ ├── extract.s │ │ │ │ │ │ │ ├── fmem.s │ │ │ │ │ │ │ ├── fmemLRbug.s │ │ │ │ │ │ │ ├── fp_comp.s │ │ │ │ │ │ │ ├── fp_conv.s │ │ │ │ │ │ │ ├── fp_fcmp.s │ │ │ │ │ │ │ ├── fp_misc.s │ │ │ │ │ │ │ ├── imem.s │ │ │ │ │ │ │ ├── immed.s │ │ │ │ │ │ │ ├── logical.s │ │ │ │ │ │ │ ├── purge.s │ │ │ │ │ │ │ ├── sh1add.s │ │ │ │ │ │ │ ├── sh2add.s │ │ │ │ │ │ │ ├── sh3add.s │ │ │ │ │ │ │ ├── shift.s │ │ │ │ │ │ │ ├── special.s │ │ │ │ │ │ │ ├── spop.s │ │ │ │ │ │ │ ├── sub.s │ │ │ │ │ │ │ ├── subi.s │ │ │ │ │ │ │ ├── system.s │ │ │ │ │ │ │ ├── unit.s │ │ │ │ │ │ │ └── weird.s │ │ │ │ │ │ ├── parse │ │ │ │ │ │ │ ├── align1.s │ │ │ │ │ │ │ ├── align2.s │ │ │ │ │ │ │ ├── appbug.s │ │ │ │ │ │ │ ├── badfmpyadd.s │ │ │ │ │ │ │ ├── block1.s │ │ │ │ │ │ │ ├── block2.s │ │ │ │ │ │ │ ├── calldatabug.s │ │ │ │ │ │ │ ├── callinfobug.s │ │ │ │ │ │ │ ├── defbug.s │ │ │ │ │ │ │ ├── entrybug.s │ │ │ │ │ │ │ ├── exportbug.s │ │ │ │ │ │ │ ├── exprbug.s │ │ │ │ │ │ │ ├── fixup7bug.s │ │ │ │ │ │ │ ├── global.s │ │ │ │ │ │ │ ├── labelbug.s │ │ │ │ │ │ │ ├── linesepbug.s │ │ │ │ │ │ │ ├── lselbug.s │ │ │ │ │ │ │ ├── nosubspace.s │ │ │ │ │ │ │ ├── parse.exp │ │ │ │ │ │ │ ├── procbug.s │ │ │ │ │ │ │ ├── regpopbug.s │ │ │ │ │ │ │ ├── spacebug.s │ │ │ │ │ │ │ ├── ssbug.s │ │ │ │ │ │ │ ├── stdreg.s │ │ │ │ │ │ │ ├── stringer.s │ │ │ │ │ │ │ ├── undefbug.s │ │ │ │ │ │ │ ├── versionbug.s │ │ │ │ │ │ │ └── xmpyubug.s │ │ │ │ │ │ ├── reloc │ │ │ │ │ │ │ ├── applybug.s │ │ │ │ │ │ │ ├── blebug.s │ │ │ │ │ │ │ ├── blebug2.s │ │ │ │ │ │ │ ├── blebug3.s │ │ │ │ │ │ │ ├── exitbug.s │ │ │ │ │ │ │ ├── fixupbug.s │ │ │ │ │ │ │ ├── funcrelocbug.s │ │ │ │ │ │ │ ├── labelopbug.s │ │ │ │ │ │ │ ├── longcall.s │ │ │ │ │ │ │ ├── picreloc.s │ │ │ │ │ │ │ ├── plabelbug.s │ │ │ │ │ │ │ ├── r_no_reloc.s │ │ │ │ │ │ │ ├── reduce.s │ │ │ │ │ │ │ ├── reduce2.s │ │ │ │ │ │ │ ├── reduce3.s │ │ │ │ │ │ │ ├── reloc.exp │ │ │ │ │ │ │ ├── roundmode.s │ │ │ │ │ │ │ └── selectorbug.s │ │ │ │ │ │ └── unsorted │ │ │ │ │ │ │ ├── align3.s │ │ │ │ │ │ │ ├── align4.s │ │ │ │ │ │ │ ├── brlenbug.s │ │ │ │ │ │ │ ├── common.s │ │ │ │ │ │ │ ├── fragbug.s │ │ │ │ │ │ │ ├── globalbug.s │ │ │ │ │ │ │ ├── importbug.s │ │ │ │ │ │ │ ├── labeldiffs.s │ │ │ │ │ │ │ ├── locallabel.s │ │ │ │ │ │ │ ├── ss_align.s │ │ │ │ │ │ │ └── unsorted.exp │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── all.exp │ │ │ │ │ │ ├── inout.s │ │ │ │ │ │ ├── pushw.l │ │ │ │ │ │ └── pushw.s │ │ │ │ │ ├── ieee-fp │ │ │ │ │ │ ├── x930509a.exp │ │ │ │ │ │ └── x930509a.s │ │ │ │ │ ├── m68k-coff │ │ │ │ │ │ ├── gas.exp │ │ │ │ │ │ ├── p2389.s │ │ │ │ │ │ ├── p2389a.s │ │ │ │ │ │ ├── p2430.s │ │ │ │ │ │ ├── p2430a.s │ │ │ │ │ │ └── t1.s │ │ │ │ │ ├── m68k │ │ │ │ │ │ ├── all.exp │ │ │ │ │ │ ├── bitfield.d │ │ │ │ │ │ ├── bitfield.s │ │ │ │ │ │ ├── cas.d │ │ │ │ │ │ ├── cas.s │ │ │ │ │ │ ├── disperr.s │ │ │ │ │ │ ├── fmoveml.d │ │ │ │ │ │ ├── fmoveml.s │ │ │ │ │ │ ├── link.d │ │ │ │ │ │ ├── link.s │ │ │ │ │ │ ├── op68000.d │ │ │ │ │ │ ├── operands.d │ │ │ │ │ │ ├── operands.s │ │ │ │ │ │ ├── p2410.s │ │ │ │ │ │ ├── p2663.s │ │ │ │ │ │ ├── pic1.s │ │ │ │ │ │ ├── schwab.d │ │ │ │ │ │ ├── schwab.s │ │ │ │ │ │ └── t2.s │ │ │ │ │ ├── macros │ │ │ │ │ │ ├── err.s │ │ │ │ │ │ ├── irp.d │ │ │ │ │ │ ├── irp.s │ │ │ │ │ │ ├── macros.exp │ │ │ │ │ │ ├── rept.d │ │ │ │ │ │ ├── rept.s │ │ │ │ │ │ ├── test1.d │ │ │ │ │ │ ├── test1.s │ │ │ │ │ │ ├── test2.d │ │ │ │ │ │ ├── test2.s │ │ │ │ │ │ ├── test3.d │ │ │ │ │ │ └── test3.s │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── abs.d │ │ │ │ │ │ ├── abs.s │ │ │ │ │ │ ├── add.d │ │ │ │ │ │ ├── add.s │ │ │ │ │ │ ├── and.d │ │ │ │ │ │ ├── and.s │ │ │ │ │ │ ├── beq.d │ │ │ │ │ │ ├── beq.s │ │ │ │ │ │ ├── bge.d │ │ │ │ │ │ ├── bge.s │ │ │ │ │ │ ├── bgeu.d │ │ │ │ │ │ ├── bgeu.s │ │ │ │ │ │ ├── blt.d │ │ │ │ │ │ ├── blt.s │ │ │ │ │ │ ├── bltu.d │ │ │ │ │ │ ├── bltu.s │ │ │ │ │ │ ├── div.d │ │ │ │ │ │ ├── div.s │ │ │ │ │ │ ├── jal-empic.d │ │ │ │ │ │ ├── jal-svr4pic.d │ │ │ │ │ │ ├── jal-svr4pic.s │ │ │ │ │ │ ├── jal.d │ │ │ │ │ │ ├── jal.s │ │ │ │ │ │ ├── la-empic.d │ │ │ │ │ │ ├── la-empic.s │ │ │ │ │ │ ├── la-svr4pic.d │ │ │ │ │ │ ├── la.d │ │ │ │ │ │ ├── la.s │ │ │ │ │ │ ├── lb-empic.d │ │ │ │ │ │ ├── lb-pic.s │ │ │ │ │ │ ├── lb-svr4pic.d │ │ │ │ │ │ ├── lb.d │ │ │ │ │ │ ├── lb.s │ │ │ │ │ │ ├── ld-empic.d │ │ │ │ │ │ ├── ld-pic.s │ │ │ │ │ │ ├── ld-svr4pic.d │ │ │ │ │ │ ├── ld.d │ │ │ │ │ │ ├── ld.s │ │ │ │ │ │ ├── li.d │ │ │ │ │ │ ├── li.s │ │ │ │ │ │ ├── lif-empic.d │ │ │ │ │ │ ├── lif-svr4pic.d │ │ │ │ │ │ ├── lifloat.d │ │ │ │ │ │ ├── lifloat.s │ │ │ │ │ │ ├── mips.exp │ │ │ │ │ │ ├── mips4.d │ │ │ │ │ │ ├── mips4.s │ │ │ │ │ │ ├── mul.d │ │ │ │ │ │ ├── mul.s │ │ │ │ │ │ ├── rol.d │ │ │ │ │ │ ├── rol.s │ │ │ │ │ │ ├── sb.d │ │ │ │ │ │ ├── sb.s │ │ │ │ │ │ ├── trunc.d │ │ │ │ │ │ ├── trunc.s │ │ │ │ │ │ ├── uld.d │ │ │ │ │ │ ├── uld.s │ │ │ │ │ │ ├── ulh-empic.d │ │ │ │ │ │ ├── ulh-pic.s │ │ │ │ │ │ ├── ulh-svr4pic.d │ │ │ │ │ │ ├── ulh.d │ │ │ │ │ │ ├── ulh.s │ │ │ │ │ │ ├── ulw.d │ │ │ │ │ │ ├── ulw.s │ │ │ │ │ │ ├── usd.d │ │ │ │ │ │ ├── usd.s │ │ │ │ │ │ ├── ush.d │ │ │ │ │ │ ├── ush.s │ │ │ │ │ │ ├── usw.d │ │ │ │ │ │ └── usw.s │ │ │ │ │ ├── mri │ │ │ │ │ │ ├── char.d │ │ │ │ │ │ ├── char.s │ │ │ │ │ │ ├── comment.d │ │ │ │ │ │ ├── comment.s │ │ │ │ │ │ ├── common.d │ │ │ │ │ │ ├── common.s │ │ │ │ │ │ ├── constants.d │ │ │ │ │ │ ├── constants.s │ │ │ │ │ │ ├── empty.s │ │ │ │ │ │ ├── equ.d │ │ │ │ │ │ ├── equ.s │ │ │ │ │ │ ├── expr.d │ │ │ │ │ │ ├── expr.s │ │ │ │ │ │ ├── float.d │ │ │ │ │ │ ├── float.s │ │ │ │ │ │ ├── for.d │ │ │ │ │ │ ├── for.s │ │ │ │ │ │ ├── if.d │ │ │ │ │ │ ├── if.s │ │ │ │ │ │ ├── label.d │ │ │ │ │ │ ├── label.s │ │ │ │ │ │ ├── mri.exp │ │ │ │ │ │ ├── repeat.d │ │ │ │ │ │ ├── repeat.s │ │ │ │ │ │ ├── while.d │ │ │ │ │ │ └── while.s │ │ │ │ │ ├── sparc-solaris │ │ │ │ │ │ ├── addend.exp │ │ │ │ │ │ ├── addend.s │ │ │ │ │ │ ├── gas.exp │ │ │ │ │ │ ├── sol-cc.s │ │ │ │ │ │ └── sol-gcc.s │ │ │ │ │ ├── sparc │ │ │ │ │ │ ├── asi.d │ │ │ │ │ │ ├── asi.s │ │ │ │ │ │ ├── membar.d │ │ │ │ │ │ ├── membar.s │ │ │ │ │ │ ├── prefetch.d │ │ │ │ │ │ ├── prefetch.s │ │ │ │ │ │ ├── rdpr.d │ │ │ │ │ │ ├── rdpr.s │ │ │ │ │ │ ├── sparc.exp │ │ │ │ │ │ ├── synth64.d │ │ │ │ │ │ ├── synth64.s │ │ │ │ │ │ ├── wrpr.d │ │ │ │ │ │ └── wrpr.s │ │ │ │ │ ├── sun4 │ │ │ │ │ │ ├── addend.d │ │ │ │ │ │ ├── addend.exp │ │ │ │ │ │ └── addend.s │ │ │ │ │ ├── template │ │ │ │ │ └── vax │ │ │ │ │ │ ├── quad.exp │ │ │ │ │ │ └── quad.s │ │ │ │ ├── gasp │ │ │ │ │ ├── INC1.H │ │ │ │ │ ├── INC2.H │ │ │ │ │ ├── assign.asm │ │ │ │ │ ├── assign.err │ │ │ │ │ ├── assign.out │ │ │ │ │ ├── condass.asm │ │ │ │ │ ├── condass.err │ │ │ │ │ ├── condass.out │ │ │ │ │ ├── crash.asm │ │ │ │ │ ├── crash.err │ │ │ │ │ ├── crash.out │ │ │ │ │ ├── crash1.asm │ │ │ │ │ ├── crash1.err │ │ │ │ │ ├── crash1.out │ │ │ │ │ ├── crash2.asm │ │ │ │ │ ├── crash2.err │ │ │ │ │ ├── crash2.out │ │ │ │ │ ├── data.asm │ │ │ │ │ ├── data.err │ │ │ │ │ ├── data.out │ │ │ │ │ ├── exp.asm │ │ │ │ │ ├── exp.err │ │ │ │ │ ├── exp.out │ │ │ │ │ ├── include.asm │ │ │ │ │ ├── include.err │ │ │ │ │ ├── include.out │ │ │ │ │ ├── listing.asm │ │ │ │ │ ├── listing.err │ │ │ │ │ ├── listing.out │ │ │ │ │ ├── macro.asm │ │ │ │ │ ├── macro.err │ │ │ │ │ ├── macro.out │ │ │ │ │ ├── mdouble.asm │ │ │ │ │ ├── mdouble.err │ │ │ │ │ ├── mdouble.out │ │ │ │ │ ├── pl1.asm │ │ │ │ │ ├── pl1.err │ │ │ │ │ ├── pl2.asm │ │ │ │ │ ├── pl2.err │ │ │ │ │ ├── pl2.out │ │ │ │ │ ├── pl3.asm │ │ │ │ │ ├── pl3.err │ │ │ │ │ ├── pl3.out │ │ │ │ │ ├── pl4.asm │ │ │ │ │ ├── pl4.err │ │ │ │ │ ├── pl4.out │ │ │ │ │ ├── pl5.asm │ │ │ │ │ ├── pl5.err │ │ │ │ │ ├── pl5.out │ │ │ │ │ ├── pl6.asm │ │ │ │ │ ├── pl6.err │ │ │ │ │ ├── pl6.out │ │ │ │ │ ├── pl7.asm │ │ │ │ │ ├── pl7.err │ │ │ │ │ ├── pl8.asm │ │ │ │ │ ├── pl8.err │ │ │ │ │ ├── pl8.out │ │ │ │ │ ├── pr7583.asm │ │ │ │ │ ├── pr7583.err │ │ │ │ │ ├── pr7583.out │ │ │ │ │ ├── reg.asm │ │ │ │ │ ├── reg.err │ │ │ │ │ ├── reg.out │ │ │ │ │ ├── rep.asm │ │ │ │ │ ├── rep.err │ │ │ │ │ ├── rep.out │ │ │ │ │ ├── repeat.asm │ │ │ │ │ ├── repeat.err │ │ │ │ │ ├── repeat.out │ │ │ │ │ ├── reperr.asm │ │ │ │ │ ├── reperr.err │ │ │ │ │ ├── reperr1.asm │ │ │ │ │ ├── reperr1.err │ │ │ │ │ ├── reperr2.asm │ │ │ │ │ ├── reperr2.err │ │ │ │ │ ├── reperr2.out │ │ │ │ │ ├── reperr3.asm │ │ │ │ │ ├── reperr3.err │ │ │ │ │ ├── reperr3.out │ │ │ │ │ ├── sdata.asm │ │ │ │ │ ├── sdata.err │ │ │ │ │ ├── sfunc.asm │ │ │ │ │ ├── sfunc.err │ │ │ │ │ ├── sfunc.out │ │ │ │ │ ├── t1.asm │ │ │ │ │ ├── t1.err │ │ │ │ │ ├── t1.out │ │ │ │ │ ├── t2.asm │ │ │ │ │ ├── t2.err │ │ │ │ │ ├── t2.out │ │ │ │ │ ├── t3.asm │ │ │ │ │ ├── t3.err │ │ │ │ │ ├── while.asm │ │ │ │ │ ├── while.err │ │ │ │ │ └── while.out │ │ │ │ └── lib │ │ │ │ │ ├── doboth │ │ │ │ │ ├── doobjcmp │ │ │ │ │ ├── dostriptest │ │ │ │ │ ├── dotest │ │ │ │ │ ├── dounsreloc │ │ │ │ │ ├── dounssym │ │ │ │ │ ├── gas-defs.exp │ │ │ │ │ ├── gas-dg.exp │ │ │ │ │ └── run │ │ │ ├── vmsconf.sh │ │ │ ├── write.c │ │ │ ├── write.h │ │ │ └── xmalloc.c │ │ ├── include │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── ansidecl.h │ │ │ ├── aout │ │ │ │ ├── ChangeLog │ │ │ │ ├── adobe.h │ │ │ │ ├── aout64.h │ │ │ │ ├── ar.h │ │ │ │ ├── dynix3.h │ │ │ │ ├── encap.h │ │ │ │ ├── host.h │ │ │ │ ├── hp.h │ │ │ │ ├── hp300hpux.h │ │ │ │ ├── hppa.h │ │ │ │ ├── ranlib.h │ │ │ │ ├── reloc.h │ │ │ │ ├── stab.def │ │ │ │ ├── stab_gnu.h │ │ │ │ └── sun4.h │ │ │ ├── bfdlink.h │ │ │ ├── bout.h │ │ │ ├── coff │ │ │ │ ├── ChangeLog │ │ │ │ ├── a29k.h │ │ │ │ ├── alpha.h │ │ │ │ ├── apollo.h │ │ │ │ ├── arm.h │ │ │ │ ├── ecoff.h │ │ │ │ ├── h8300.h │ │ │ │ ├── h8500.h │ │ │ │ ├── i386.h │ │ │ │ ├── i860.h │ │ │ │ ├── i960.h │ │ │ │ ├── internal.h │ │ │ │ ├── m68k.h │ │ │ │ ├── m88k.h │ │ │ │ ├── mips.h │ │ │ │ ├── pe.h │ │ │ │ ├── powerpc.h │ │ │ │ ├── rs6000.h │ │ │ │ ├── sh.h │ │ │ │ ├── sparc.h │ │ │ │ ├── sym.h │ │ │ │ ├── symconst.h │ │ │ │ ├── w65.h │ │ │ │ ├── we32k.h │ │ │ │ └── z8k.h │ │ │ ├── demangle.h │ │ │ ├── dis-asm.h │ │ │ ├── elf │ │ │ │ ├── ChangeLog │ │ │ │ ├── common.h │ │ │ │ ├── dwarf.h │ │ │ │ ├── external.h │ │ │ │ ├── hppa.h │ │ │ │ ├── internal.h │ │ │ │ ├── mips.h │ │ │ │ └── ppc.h │ │ │ ├── floatformat.h │ │ │ ├── fopen-bin.h │ │ │ ├── fopen-same.h │ │ │ ├── gdbm.h │ │ │ ├── getopt.h │ │ │ ├── hp-symtab.h │ │ │ ├── ieee.h │ │ │ ├── libiberty.h │ │ │ ├── mpw │ │ │ │ ├── ChangeLog │ │ │ │ ├── README │ │ │ │ ├── dir.h │ │ │ │ ├── dirent.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── grp.h │ │ │ │ ├── mpw.h │ │ │ │ ├── pwd.h │ │ │ │ ├── spin.h │ │ │ │ ├── stat.h │ │ │ │ ├── sys │ │ │ │ │ ├── file.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── time.h │ │ │ │ │ └── types.h │ │ │ │ ├── utime.h │ │ │ │ └── varargs.h │ │ │ ├── nlm │ │ │ │ ├── ChangeLog │ │ │ │ ├── alpha-ext.h │ │ │ │ ├── common.h │ │ │ │ ├── external.h │ │ │ │ ├── i386-ext.h │ │ │ │ ├── internal.h │ │ │ │ ├── ppc-ext.h │ │ │ │ └── sparc32-ext.h │ │ │ ├── oasys.h │ │ │ ├── obstack.h │ │ │ ├── opcode │ │ │ │ ├── ChangeLog │ │ │ │ ├── a29k.h │ │ │ │ ├── arm.h │ │ │ │ ├── convex.h │ │ │ │ ├── h8300.h │ │ │ │ ├── hppa.h │ │ │ │ ├── i386.h │ │ │ │ ├── i860.h │ │ │ │ ├── i960.h │ │ │ │ ├── m68k.h │ │ │ │ ├── m88k.h │ │ │ │ ├── mips.h │ │ │ │ ├── np1.h │ │ │ │ ├── ns32k.h │ │ │ │ ├── pn.h │ │ │ │ ├── ppc.h │ │ │ │ ├── pyr.h │ │ │ │ ├── rs6k.h │ │ │ │ ├── sparc.h │ │ │ │ ├── tahoe.h │ │ │ │ └── vax.h │ │ │ ├── os9k.h │ │ │ ├── progress.h │ │ │ └── wait.h │ │ ├── install.sh │ │ ├── libiberty │ │ │ ├── COPYING.LIB │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── alloca-botch.h │ │ │ ├── alloca-conf.h │ │ │ ├── alloca-norm.h │ │ │ ├── alloca.c │ │ │ ├── argv.c │ │ │ ├── basename.c │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── clock.c │ │ │ ├── concat.c │ │ │ ├── config.status │ │ │ ├── config.table │ │ │ ├── config │ │ │ │ ├── mh-a68bsd │ │ │ │ ├── mh-aix │ │ │ │ ├── mh-apollo68 │ │ │ │ ├── mh-cxux7 │ │ │ │ ├── mh-go32 │ │ │ │ ├── mh-hpbsd │ │ │ │ ├── mh-hpux │ │ │ │ ├── mh-i386win32 │ │ │ │ ├── mh-irix4 │ │ │ │ ├── mh-lynxos │ │ │ │ ├── mh-ncr3000 │ │ │ │ ├── mh-riscix │ │ │ │ ├── mh-sysv │ │ │ │ ├── mh-sysv4 │ │ │ │ ├── mt-sunos4 │ │ │ │ └── mt-vxworks5 │ │ │ ├── configure.bat │ │ │ ├── configure.in │ │ │ ├── copysign.c │ │ │ ├── cplus-dem.c │ │ │ ├── dummy.c │ │ │ ├── fdmatch.c │ │ │ ├── floatformat.c │ │ │ ├── functions.def │ │ │ ├── getcwd.c │ │ │ ├── getopt.c │ │ │ ├── getopt1.c │ │ │ ├── getpagesize.c │ │ │ ├── getruntime.c │ │ │ ├── hex.c │ │ │ ├── index.c │ │ │ ├── insque.c │ │ │ ├── makefile.dos │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── mpw-config.in │ │ │ ├── mpw-make.sed │ │ │ ├── mpw.c │ │ │ ├── msdos.c │ │ │ ├── obstack.c │ │ │ ├── random.c │ │ │ ├── rename.c │ │ │ ├── rindex.c │ │ │ ├── sigsetmask.c │ │ │ ├── spaces.c │ │ │ ├── strcasecmp.c │ │ │ ├── strchr.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strncasecmp.c │ │ │ ├── strrchr.c │ │ │ ├── strsignal.c │ │ │ ├── strstr.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ ├── tmpnam.c │ │ │ ├── vasprintf.c │ │ │ ├── vfork.c │ │ │ ├── vfprintf.c │ │ │ ├── vmsbuild.com │ │ │ ├── vprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── waitpid.c │ │ │ ├── win32.c │ │ │ ├── xatexit.c │ │ │ ├── xexit.c │ │ │ ├── xhost-mkfrag │ │ │ ├── xmalloc.c │ │ │ └── xstrerror.c │ │ ├── makeall.bat │ │ ├── move-if-change │ │ ├── mpw-README │ │ ├── mpw-build.in │ │ ├── mpw-config.in │ │ ├── mpw-configure │ │ └── opcodes │ │ │ ├── .del-confdefs.h-Dec-10-96 │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── a29k-dis.c │ │ │ ├── aclocal.m4 │ │ │ ├── alpha-dis.c │ │ │ ├── alpha-opc.h │ │ │ ├── arm-dis.c │ │ │ ├── arm-opc.h │ │ │ ├── config.cache │ │ │ ├── config.h │ │ │ ├── config.in │ │ │ ├── config.status │ │ │ ├── configure │ │ │ ├── configure.bat │ │ │ ├── configure.in │ │ │ ├── dis-buf.c │ │ │ ├── dis-buf.o │ │ │ ├── disassemble.c │ │ │ ├── disassemble.o │ │ │ ├── h8300-dis.c │ │ │ ├── h8500-dis.c │ │ │ ├── h8500-opc.h │ │ │ ├── hppa-dis.c │ │ │ ├── i386-dis.c │ │ │ ├── i960-dis.c │ │ │ ├── m68k-dis.c │ │ │ ├── m68k-opc.c │ │ │ ├── m88k-dis.c │ │ │ ├── mips-dis.c │ │ │ ├── mips-opc.c │ │ │ ├── mpw-config.in │ │ │ ├── mpw-make.sed │ │ │ ├── ns32k-dis.c │ │ │ ├── ppc-dis.c │ │ │ ├── ppc-opc.c │ │ │ ├── sh-dis.c │ │ │ ├── sh-opc.h │ │ │ ├── sparc-dis.c │ │ │ ├── sparc-opc.c │ │ │ ├── stamp-h │ │ │ ├── sysdep.h │ │ │ ├── w65-dis.c │ │ │ ├── w65-opc.h │ │ │ ├── z8k-dis.c │ │ │ ├── z8k-opc.h │ │ │ └── z8kgen.c │ ├── romtools │ │ ├── Makefile │ │ ├── buildtree │ │ ├── cook.c │ │ ├── fsbuild │ │ ├── getromelfinfo.c │ │ └── treesize │ ├── rsasign │ │ ├── Makefile │ │ ├── atypes.h │ │ ├── bsafe2.h │ │ ├── choos_c.c │ │ ├── demochos.h │ │ ├── demoutil.h │ │ ├── global.h │ │ ├── keydata.h │ │ ├── keydesc.h │ │ ├── keys.c │ │ ├── libbsafe2.a │ │ ├── libbsafe2.a.r64 │ │ ├── rsasign.c │ │ └── t_stdlib.c │ ├── tcl │ │ ├── Makefile │ │ ├── panic.c │ │ ├── regexp.c │ │ ├── regexp.h │ │ ├── strerror.c │ │ ├── strtoul.c │ │ ├── tcl.h │ │ ├── tclAssem.c │ │ ├── tclBasic.c │ │ ├── tclCkalloc.c │ │ ├── tclCmdAH.c │ │ ├── tclCmdIL.c │ │ ├── tclCmdMZ.c │ │ ├── tclEnv.c │ │ ├── tclExpr.c │ │ ├── tclGet.c │ │ ├── tclGlob.c │ │ ├── tclHash.c │ │ ├── tclHash.h │ │ ├── tclHistory.c │ │ ├── tclInt.h │ │ ├── tclParse.c │ │ ├── tclProc.c │ │ ├── tclTest.c │ │ ├── tclUnix.h │ │ ├── tclUnixAZ.c │ │ ├── tclUnixStr.c │ │ ├── tclUnixUtil.c │ │ ├── tclUtil.c │ │ └── tclVar.c │ └── unixscripts │ │ ├── Makefile │ │ ├── allnotinsccs.sh │ │ └── notinsccs.sh └── vectors │ ├── Makefile │ ├── audio │ ├── Makefile │ └── vectors.s │ ├── audiopatch │ ├── Makefile │ └── vectors.s │ ├── audiopatchfile │ ├── Makefile │ └── vectors.s │ ├── batt │ ├── Makefile │ └── vectors.s │ ├── beep │ ├── Makefile │ └── vectors.s │ ├── blitter │ ├── Makefile │ └── vectors.s │ ├── compression │ ├── Makefile │ └── vectors.s │ ├── date │ ├── Makefile │ └── vectors.s │ ├── file.init │ ├── Makefile │ └── vectors.s │ ├── file │ ├── Makefile │ └── vectors.s │ ├── font │ ├── Makefile │ └── vectors.s │ ├── frame2d │ ├── Makefile │ └── vectors.s │ ├── fsutils │ ├── Makefile │ └── vectors.s │ ├── graphics │ ├── Makefile │ └── vectors.s │ ├── gstate │ ├── Makefile │ └── vectors.s │ ├── icon │ ├── Makefile │ └── vectors.s │ ├── iff │ ├── Makefile │ └── vectors.s │ ├── international │ ├── Makefile │ └── vectors.s │ ├── jstring │ ├── Makefile │ └── vectors.s │ ├── kernel.init │ ├── Makefile │ └── vectors.s │ ├── kernel │ ├── Makefile │ └── vectors.s │ ├── mpegaudio │ ├── Makefile │ └── vectors.s │ ├── operator.init │ ├── Makefile │ └── vectors.s │ ├── operator │ ├── Makefile │ └── vectors.s │ ├── requester │ ├── Makefile │ └── vectors.s │ ├── savegame │ ├── Makefile │ └── vectors.s │ └── script │ ├── Makefile │ └── vectors.s ├── variables ├── Makefile ├── commands ├── datafiles ├── defines ├── exampledata ├── fileinfo ├── generic ├── hostexec ├── hostexecs ├── hostlib ├── linkexec ├── linklib ├── linkvector ├── makeexamples ├── memorymap ├── multilink ├── options └── version └── vectors └── default ├── audio ├── audiopatch ├── audiopatchfile ├── batt ├── beep ├── blitter ├── compression ├── date ├── filesystem ├── filesystem.init ├── font ├── frame2d ├── fsutils ├── graphics ├── gstate ├── icon ├── iff ├── international ├── jstring ├── kernel ├── kernel.init ├── mpegaudiodecoder ├── operator ├── operator.init ├── requester ├── savegame └── script /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/README.md -------------------------------------------------------------------------------- /ws_root/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/Makefile -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/adx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/adx -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/allnotinsccs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/allnotinsccs -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/buildtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/buildtree -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/comp3do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/comp3do -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/cook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/cook -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/ddf2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/ddf2c -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/ddfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/ddfc -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/ddfc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/ddfc1 -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/decomp3do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/decomp3do -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/discdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/discdata.h -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/dmnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/dmnum -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/dumpelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/dumpelf -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/elfsize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/elfsize -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/filemap.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/filemap.out -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/filesystem.h -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/fix_copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/fix_copyright -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/fix_eol_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/fix_eol_mac -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/fix_eol_pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/fix_eol_pc -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/fix_eol_unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/fix_eol_unix -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/fsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/fsbuild -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/getromelfinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/getromelfinfo -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/jas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/jas -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/jas.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/jas.debug -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/layout -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/layout.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/layout.tcl -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/makeboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/makeboot -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/makeimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/makeimage -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/notinsccs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/notinsccs -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/overwrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/overwrite -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/pforth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/pforth -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/pforth.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/pforth.dic -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/r64dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/r64dec -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/r64enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/r64enc -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/rsasign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/rsasign -------------------------------------------------------------------------------- /ws_root/hostbin/SunOS/treesize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostbin/SunOS/treesize -------------------------------------------------------------------------------- /ws_root/hostlib/SunOS/libtcl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/hostlib/SunOS/libtcl.a -------------------------------------------------------------------------------- /ws_root/libs/default/libaudiodemo.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libaudiodemo.a -------------------------------------------------------------------------------- /ws_root/libs/default/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libc.a -------------------------------------------------------------------------------- /ws_root/libs/default/libclt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libclt.a -------------------------------------------------------------------------------- /ws_root/libs/default/libds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libds.a -------------------------------------------------------------------------------- /ws_root/libs/default/libdspptouch.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libdspptouch.a -------------------------------------------------------------------------------- /ws_root/libs/default/libdsutils.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libdsutils.a -------------------------------------------------------------------------------- /ws_root/libs/default/libloader.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libloader.a -------------------------------------------------------------------------------- /ws_root/libs/default/libmusic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libmusic.a -------------------------------------------------------------------------------- /ws_root/libs/default/libpforthmon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libpforthmon.a -------------------------------------------------------------------------------- /ws_root/libs/default/libromapp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libromapp.a -------------------------------------------------------------------------------- /ws_root/libs/default/libspmath.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libspmath.a -------------------------------------------------------------------------------- /ws_root/libs/default/libsubscriber.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libsubscriber.a -------------------------------------------------------------------------------- /ws_root/libs/default/libvcdds.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libvcdds.a -------------------------------------------------------------------------------- /ws_root/libs/default/libvcddsutils.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/libs/default/libvcddsutils.a -------------------------------------------------------------------------------- /ws_root/release/3do_os/default/debugger.flash.scr: -------------------------------------------------------------------------------- 1 | download dbinfo.flash @0x407FFF00 releasenupup -------------------------------------------------------------------------------- /ws_root/release/3do_os/default/flash.scr: -------------------------------------------------------------------------------- 1 | releasenupup -------------------------------------------------------------------------------- /ws_root/rules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/Makefile -------------------------------------------------------------------------------- /ws_root/rules/datafiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/datafiles -------------------------------------------------------------------------------- /ws_root/rules/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/depend -------------------------------------------------------------------------------- /ws_root/rules/exampledata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/exampledata -------------------------------------------------------------------------------- /ws_root/rules/extrasrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/extrasrc -------------------------------------------------------------------------------- /ws_root/rules/generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/generic -------------------------------------------------------------------------------- /ws_root/rules/hostexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/hostexec -------------------------------------------------------------------------------- /ws_root/rules/hostexecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/hostexecs -------------------------------------------------------------------------------- /ws_root/rules/hostlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/hostlib -------------------------------------------------------------------------------- /ws_root/rules/linkexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/linkexec -------------------------------------------------------------------------------- /ws_root/rules/linklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/linklib -------------------------------------------------------------------------------- /ws_root/rules/linkvector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/linkvector -------------------------------------------------------------------------------- /ws_root/rules/makeexamples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/makeexamples -------------------------------------------------------------------------------- /ws_root/rules/multilink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/multilink -------------------------------------------------------------------------------- /ws_root/rules/shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/shortcut -------------------------------------------------------------------------------- /ws_root/rules/subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/rules/subtree -------------------------------------------------------------------------------- /ws_root/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/bdavideo/firq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/bdavideo/firq.c -------------------------------------------------------------------------------- /ws_root/src/devices/cdrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/cdrom/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/cdrom/cdrom.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/cdrom/cdrom.D -------------------------------------------------------------------------------- /ws_root/src/devices/cdrom/m2cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/cdrom/m2cd.c -------------------------------------------------------------------------------- /ws_root/src/devices/host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/host/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/host/host.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/host/host.D -------------------------------------------------------------------------------- /ws_root/src/devices/host/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/host/host.c -------------------------------------------------------------------------------- /ws_root/src/devices/host/host.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/host/host.spec -------------------------------------------------------------------------------- /ws_root/src/devices/mp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mp/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/mp/mp.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mp/mp.D -------------------------------------------------------------------------------- /ws_root/src/devices/mp/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mp/mp.c -------------------------------------------------------------------------------- /ws_root/src/devices/mpsim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mpsim/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/mpsim/mpsim.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mpsim/mpsim.D -------------------------------------------------------------------------------- /ws_root/src/devices/mpsim/mpsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/mpsim/mpsim.c -------------------------------------------------------------------------------- /ws_root/src/devices/ns16550/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/ns16550/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/null/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/null/null.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/null/null.D -------------------------------------------------------------------------------- /ws_root/src/devices/null/nulldrvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/null/nulldrvr.c -------------------------------------------------------------------------------- /ws_root/src/devices/operator.init/linkexec.x: -------------------------------------------------------------------------------- 1 | ! @(#) linkexec.x 96/02/07 1.1 2 | 3 | MODULE 19 4 | 5 | EXPORTS 0=OperatorInit 6 | -------------------------------------------------------------------------------- /ws_root/src/devices/operator/chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/operator/chan.c -------------------------------------------------------------------------------- /ws_root/src/devices/operator/mchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/operator/mchan.c -------------------------------------------------------------------------------- /ws_root/src/devices/operator/pchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/operator/pchan.c -------------------------------------------------------------------------------- /ws_root/src/devices/operator/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/operator/timer.c -------------------------------------------------------------------------------- /ws_root/src/devices/pchost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/pchost/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/pchost/pchost.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/pchost/pchost.D -------------------------------------------------------------------------------- /ws_root/src/devices/pchost/pchost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/pchost/pchost.c -------------------------------------------------------------------------------- /ws_root/src/devices/proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/proxy/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/proxy/proxy.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/proxy/proxy.D -------------------------------------------------------------------------------- /ws_root/src/devices/proxy/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/proxy/proxy.c -------------------------------------------------------------------------------- /ws_root/src/devices/ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/ram/Makefile -------------------------------------------------------------------------------- /ws_root/src/devices/ram/ram.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/ram/ram.D -------------------------------------------------------------------------------- /ws_root/src/devices/ram/ramdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/ram/ramdevice.c -------------------------------------------------------------------------------- /ws_root/src/devices/ramdisk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/devices/ramdisk/Makefile -------------------------------------------------------------------------------- /ws_root/src/docs/3DOLogo.gif.R64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/3DOLogo.gif.R64 -------------------------------------------------------------------------------- /ws_root/src/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/Makefile -------------------------------------------------------------------------------- /ws_root/src/docs/Next.gif.R64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/Next.gif.R64 -------------------------------------------------------------------------------- /ws_root/src/docs/Previous.gif.R64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/Previous.gif.R64 -------------------------------------------------------------------------------- /ws_root/src/docs/chapters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/chapters.c -------------------------------------------------------------------------------- /ws_root/src/docs/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/copyright.txt -------------------------------------------------------------------------------- /ws_root/src/docs/manuals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/manuals.c -------------------------------------------------------------------------------- /ws_root/src/docs/module_registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/docs/module_registry -------------------------------------------------------------------------------- /ws_root/src/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/drivers/Makefile -------------------------------------------------------------------------------- /ws_root/src/drivers/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/drivers/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/errors/DSe.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/DSe.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FAP.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FAP.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FAu.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FAu.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FBl.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FBl.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FBp.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FBp.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FCo.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FCo.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FF2.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FF2.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FFo.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FFo.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FGr.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FGr.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FIF.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FIF.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FIc.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FIc.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FIn.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FIn.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FJS.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FJS.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FMa.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FMa.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FPF.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FPF.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FRQ.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FRQ.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/FSG.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/FSG.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/LCL.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/LCL.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/LDS.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/LDS.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/LEB.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/LEB.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/LLd.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/LLd.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/LMu.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/LMu.errs.c -------------------------------------------------------------------------------- /ws_root/src/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/Makefile -------------------------------------------------------------------------------- /ws_root/src/errors/TEB.errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/errors/TEB.errs.c -------------------------------------------------------------------------------- /ws_root/src/examples/BuildExamples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/BuildExamples -------------------------------------------------------------------------------- /ws_root/src/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/Makefile -------------------------------------------------------------------------------- /ws_root/src/examples/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/audio/Makefile -------------------------------------------------------------------------------- /ws_root/src/examples/driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/driver/Makefile -------------------------------------------------------------------------------- /ws_root/src/examples/eventbroker/EventBrokerTests/AppsData/junk: -------------------------------------------------------------------------------- 1 | empty 2 | -------------------------------------------------------------------------------- /ws_root/src/examples/filesystem/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/filesystem/ls.c -------------------------------------------------------------------------------- /ws_root/src/examples/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/kernel/Makefile -------------------------------------------------------------------------------- /ws_root/src/examples/mercury/IB/core: -------------------------------------------------------------------------------- 1 | core 2 | -------------------------------------------------------------------------------- /ws_root/src/examples/mercury/IB/mainloop.c: -------------------------------------------------------------------------------- 1 | #include "fight.h" 2 | 3 | -------------------------------------------------------------------------------- /ws_root/src/examples/mercury/IB_JOHN/mainloop.c: -------------------------------------------------------------------------------- 1 | #include "fight.h" 2 | 3 | -------------------------------------------------------------------------------- /ws_root/src/examples/mercury/IB_JOHN/setproject.bat: -------------------------------------------------------------------------------- 1 | @call c:\3do\setm2project c 3do m2_3.1 ib 2 | -------------------------------------------------------------------------------- /ws_root/src/examples/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/misc/Makefile -------------------------------------------------------------------------------- /ws_root/src/examples/mpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/examples/mpeg/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/audio/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/audio/dir.flp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/dir.flp -------------------------------------------------------------------------------- /ws_root/src/folios/audio/dsp/add.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/dsp/add.ins -------------------------------------------------------------------------------- /ws_root/src/folios/audio/dspp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/dspp.h -------------------------------------------------------------------------------- /ws_root/src/folios/audio/dspp_duck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/dspp_duck.c -------------------------------------------------------------------------------- /ws_root/src/folios/audio/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/audio/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/batt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/batt/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/batt/batt_folio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/batt_folio.c -------------------------------------------------------------------------------- /ws_root/src/folios/batt/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/clock.c -------------------------------------------------------------------------------- /ws_root/src/folios/batt/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/hw.c -------------------------------------------------------------------------------- /ws_root/src/folios/batt/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/hw.h -------------------------------------------------------------------------------- /ws_root/src/folios/batt/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/batt/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/batt/memory.c -------------------------------------------------------------------------------- /ws_root/src/folios/beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/beep/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/beep/beep_folio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/beep/beep_folio.c -------------------------------------------------------------------------------- /ws_root/src/folios/beep/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/beep/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/blitter/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/blitter/blit.c -------------------------------------------------------------------------------- /ws_root/src/folios/blitter/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/blitter/clip.c -------------------------------------------------------------------------------- /ws_root/src/folios/blitter/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/blitter/mask.c -------------------------------------------------------------------------------- /ws_root/src/folios/blitter/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/blitter/slice.c -------------------------------------------------------------------------------- /ws_root/src/folios/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/date/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/date/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/date/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/date/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/date/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/file/acroutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/acroutil.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/cache.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/daemon.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/driver.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/folio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/folio.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/format.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/fs_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/fs_host.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/fs_opera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/fs_opera.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/file/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/main.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/mount.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/open.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/rawfile.c -------------------------------------------------------------------------------- /ws_root/src/folios/file/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/file/utils.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/font/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/clip.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/extent.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/fontfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/fontfile.h -------------------------------------------------------------------------------- /ws_root/src/folios/font/fontitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/fontitem.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/fontitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/fontitem.h -------------------------------------------------------------------------------- /ws_root/src/folios/font/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/font/movetext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/movetext.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/stencil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/stencil.c -------------------------------------------------------------------------------- /ws_root/src/folios/font/telists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/font/telists.c -------------------------------------------------------------------------------- /ws_root/src/folios/frame2d/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/frame2d/draw.c -------------------------------------------------------------------------------- /ws_root/src/folios/frame2d/f2clt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/frame2d/f2clt.c -------------------------------------------------------------------------------- /ws_root/src/folios/frame2d/f2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/frame2d/f2d.c -------------------------------------------------------------------------------- /ws_root/src/folios/frame2d/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/frame2d/main.c -------------------------------------------------------------------------------- /ws_root/src/folios/fsutils/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/fsutils/copy.c -------------------------------------------------------------------------------- /ws_root/src/folios/fsutils/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/fsutils/path.c -------------------------------------------------------------------------------- /ws_root/src/folios/graphics/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/graphics/init.c -------------------------------------------------------------------------------- /ws_root/src/folios/graphics/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/graphics/util.c -------------------------------------------------------------------------------- /ws_root/src/folios/graphics/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/graphics/view.c -------------------------------------------------------------------------------- /ws_root/src/folios/gstate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/gstate/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/gstate/gstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/gstate/gstate.c -------------------------------------------------------------------------------- /ws_root/src/folios/gstate/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/gstate/main.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/icon/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/iconcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/iconcode.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/iconddf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/iconddf.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/iconfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/iconfs.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/iconhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/iconhw.c -------------------------------------------------------------------------------- /ws_root/src/folios/icon/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/icon/varargs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/icon/varargs.s -------------------------------------------------------------------------------- /ws_root/src/folios/iff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/iff/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/folios/iff/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/iff.c -------------------------------------------------------------------------------- /ws_root/src/folios/iff/iff_folio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/iff_folio.c -------------------------------------------------------------------------------- /ws_root/src/folios/iff/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/io.c -------------------------------------------------------------------------------- /ws_root/src/folios/iff/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/io.h -------------------------------------------------------------------------------- /ws_root/src/folios/iff/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/iff/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/cache.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/cache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/cache.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/const.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/cpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/cpu.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/ddf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/ddf.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/debug.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/dipir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/dipir.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/dma.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/errors.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/fence.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/firq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/firq.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/folio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/folio.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/io.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/item.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/list.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/main.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/mem.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/mmu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/mmu.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/ports.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/random.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/rsa.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/signal.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/tags.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/task.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/task.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/task.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/te.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/te.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/timer.c -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/timer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/timer.s -------------------------------------------------------------------------------- /ws_root/src/folios/kernel/va_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/kernel/va_arg.c -------------------------------------------------------------------------------- /ws_root/src/folios/requester/art.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/art.c -------------------------------------------------------------------------------- /ws_root/src/folios/requester/art.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/art.h -------------------------------------------------------------------------------- /ws_root/src/folios/requester/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/bg.c -------------------------------------------------------------------------------- /ws_root/src/folios/requester/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/bg.h -------------------------------------------------------------------------------- /ws_root/src/folios/requester/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/req.c -------------------------------------------------------------------------------- /ws_root/src/folios/requester/req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/requester/req.h -------------------------------------------------------------------------------- /ws_root/src/folios/script/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/script/Makefile -------------------------------------------------------------------------------- /ws_root/src/folios/script/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/folios/script/script.c -------------------------------------------------------------------------------- /ws_root/src/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/fonts/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/assert.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/atag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/atag.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/audio.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/cobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/cobj.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/music.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/patch.h -------------------------------------------------------------------------------- /ws_root/src/includes/audio/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/audio/score.h -------------------------------------------------------------------------------- /ws_root/src/includes/beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/beep/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/beep/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/beep/beep.h -------------------------------------------------------------------------------- /ws_root/src/includes/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/ctype.h -------------------------------------------------------------------------------- /ws_root/src/includes/device/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/device/dma.h -------------------------------------------------------------------------------- /ws_root/src/includes/device/m2cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/device/m2cd.h -------------------------------------------------------------------------------- /ws_root/src/includes/device/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/device/mp.h -------------------------------------------------------------------------------- /ws_root/src/includes/device/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/device/slot.h -------------------------------------------------------------------------------- /ws_root/src/includes/device/te.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/device/te.h -------------------------------------------------------------------------------- /ws_root/src/includes/dipir/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/dipir/rom.h -------------------------------------------------------------------------------- /ws_root/src/includes/dipir/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/dipir/rsa.h -------------------------------------------------------------------------------- /ws_root/src/includes/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/errno.h -------------------------------------------------------------------------------- /ws_root/src/includes/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/file/acro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/file/acro.h -------------------------------------------------------------------------------- /ws_root/src/includes/file/acrofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/file/acrofs.h -------------------------------------------------------------------------------- /ws_root/src/includes/file/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/file/fileio.h -------------------------------------------------------------------------------- /ws_root/src/includes/file/tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/file/tcl.h -------------------------------------------------------------------------------- /ws_root/src/includes/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/float.h -------------------------------------------------------------------------------- /ws_root/src/includes/hardware/te.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/hardware/te.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/ddf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/ddf.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/io.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/item.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/list.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/mem.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/tags.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/task.h -------------------------------------------------------------------------------- /ws_root/src/includes/kernel/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/kernel/time.h -------------------------------------------------------------------------------- /ws_root/src/includes/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/limits.h -------------------------------------------------------------------------------- /ws_root/src/includes/loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/loader/elf.h -------------------------------------------------------------------------------- /ws_root/src/includes/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/math.h -------------------------------------------------------------------------------- /ws_root/src/includes/mercury/mpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/mercury/mpm.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/misc/batt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/batt.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/date.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/event.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/frac16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/frac16.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/iff.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/mpeg.h -------------------------------------------------------------------------------- /ws_root/src/includes/misc/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/misc/script.h -------------------------------------------------------------------------------- /ws_root/src/includes/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/setjmp.h -------------------------------------------------------------------------------- /ws_root/src/includes/sgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/sgi/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/stdarg.h -------------------------------------------------------------------------------- /ws_root/src/includes/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/stddef.h -------------------------------------------------------------------------------- /ws_root/src/includes/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/stdio.h -------------------------------------------------------------------------------- /ws_root/src/includes/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/stdlib.h -------------------------------------------------------------------------------- /ws_root/src/includes/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/string.h -------------------------------------------------------------------------------- /ws_root/src/includes/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/strings.h -------------------------------------------------------------------------------- /ws_root/src/includes/ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/ui/Makefile -------------------------------------------------------------------------------- /ws_root/src/includes/ui/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/ui/icon.h -------------------------------------------------------------------------------- /ws_root/src/includes/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/varargs.h -------------------------------------------------------------------------------- /ws_root/src/includes/whatstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/includes/whatstring.c -------------------------------------------------------------------------------- /ws_root/src/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/audiodemo/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/audiodemo/scope.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/audio/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/batt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/batt/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/beep/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/date/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/font/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/icon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/icon/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/iff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/iff/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/iff/openfolio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/iff/openfolio.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/int64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/int64/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/int64/div64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/int64/div64.S -------------------------------------------------------------------------------- /ws_root/src/libs/c/int64/mul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/int64/mul64.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/int64/rem64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/int64/rem64.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/kernel/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/lists/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/lists/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/memdebug/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/memdebug/free.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/mp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/mp/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/mp/creatempio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/mp/creatempio.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/mp/deletempio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/mp/deletempio.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/script/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/script/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/assert.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/cprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/cprintf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/errno.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fclose.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/feof.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/ferror.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fflush.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fgetc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fgetpos.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fgets.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fopen.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fprintf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fputc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fputs.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fread.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fscanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fseek.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fsetpos.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/ftell.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/fwrite.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/getc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/getchar.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/perror.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/putc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/putchar.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/puts.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/remove.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/rename.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/rewind.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/scanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/setbuf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/setvbuf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/sscanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/tmpfile.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/tmpnam.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/ungetc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/vfscanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdio/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdio/vprintf.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/abs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/abs.S -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/atoi.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/atol.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/calloc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/cfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/cfree.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/free.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/malloc.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/qsort.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/rand.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/strtof.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/strtol.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/stdlib/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/stdlib/system.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/memchr.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/memcmp.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/strchr.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/strspn.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/strstr.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/string/strtok.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/te/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/te/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/c/te/teioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/te/teioreq.c -------------------------------------------------------------------------------- /ws_root/src/libs/c/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/c/timer/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/clt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/clt/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/cltclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/cltclear.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/cltcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/cltcopy.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/cltglobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/cltglobals.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/clttxattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/clttxattr.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/clttxload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/clttxload.c -------------------------------------------------------------------------------- /ws_root/src/libs/clt/cltutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/clt/cltutils.c -------------------------------------------------------------------------------- /ws_root/src/libs/dir.flp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/dir.flp -------------------------------------------------------------------------------- /ws_root/src/libs/dspptouch/dir.flp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/dspptouch/dir.flp -------------------------------------------------------------------------------- /ws_root/src/libs/loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/loader/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/api.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/autodocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/autodocs.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/daemon.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/daemon.h -------------------------------------------------------------------------------- /ws_root/src/libs/loader/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/fileio.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/fileio.h -------------------------------------------------------------------------------- /ws_root/src/libs/loader/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/load.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/load.h -------------------------------------------------------------------------------- /ws_root/src/libs/loader/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/modules.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/modules.h -------------------------------------------------------------------------------- /ws_root/src/libs/loader/reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/reloc.c -------------------------------------------------------------------------------- /ws_root/src/libs/loader/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/reloc.h -------------------------------------------------------------------------------- /ws_root/src/libs/loader/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/loader/startup.c -------------------------------------------------------------------------------- /ws_root/src/libs/mercury/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/mercury/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/music/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/pforthmon/pf_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/pforthmon/pf_io.c -------------------------------------------------------------------------------- /ws_root/src/libs/pforthmon/pf_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/pforthmon/pf_io.h -------------------------------------------------------------------------------- /ws_root/src/libs/romapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/romapp/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/romapp/cdtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/romapp/cdtype.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/Makefile -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/acosf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/asinf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/atan2f.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/atanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/ceilf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/ceilf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/coshf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/expf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/fabsf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/fabsf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/floor.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/floor.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/fmodf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/frexpf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/frexpf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/ldexpf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/ldexpf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/log10f.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/logf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/math1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/math1f.h -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/mathf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/mathf.h -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/modff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/modff.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/powf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/rsqrtf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/rsqrtf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/rsqrtff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/rsqrtff.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/rsqrtfff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/rsqrtfff.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/sincos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/sincos.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/sinhf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/sqrtf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/sqrtf.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/sqrtff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/sqrtff.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/sqrtfff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/sqrtfff.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/tanf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/tanhf.c -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/values.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/values.S -------------------------------------------------------------------------------- /ws_root/src/libs/spmath/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/spmath/values.h -------------------------------------------------------------------------------- /ws_root/src/libs/streaming/dir.flp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/libs/streaming/dir.flp -------------------------------------------------------------------------------- /ws_root/src/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/Makefile -------------------------------------------------------------------------------- /ws_root/src/mac/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/libs/Makefile -------------------------------------------------------------------------------- /ws_root/src/mac/libs/iff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/libs/iff/Makefile -------------------------------------------------------------------------------- /ws_root/src/mac/libs/iff/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/libs/iff/iff.c -------------------------------------------------------------------------------- /ws_root/src/mac/libs/iff/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/libs/iff/iff.h -------------------------------------------------------------------------------- /ws_root/src/mac/libs/iff/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/libs/iff/io.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/Makefile -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/Makefile -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/Xfmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/Xfmath.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/Xmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/Xmath.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/errMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/errMac.h -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/panic.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/regexp.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/regexp.h -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/stat.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/stat.h -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/tcl.h -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/tclEnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/tclEnv.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/tclGet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/tclGet.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/tclInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/tclInt.h -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/tclVar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/tclVar.c -------------------------------------------------------------------------------- /ws_root/src/mac/tools/tcl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/mac/tools/tcl/test.c -------------------------------------------------------------------------------- /ws_root/src/others/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/Makefile -------------------------------------------------------------------------------- /ws_root/src/others/dbinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dbinfo/Makefile -------------------------------------------------------------------------------- /ws_root/src/others/dipir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/Makefile -------------------------------------------------------------------------------- /ws_root/src/others/dipir/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/alloc.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/atypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/atypes.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/boot.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/bsafe2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/bsafe2.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/channel.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/dbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/dbuffer.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/ddd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/ddd.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/ddd.cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/ddd.cd.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/ddd.cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/ddd.cd.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/ddd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/ddd.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/dipir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/dipir.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/dipir.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/dipir.i -------------------------------------------------------------------------------- /ws_root/src/others/dipir/dipir.k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/dipir.k.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/diplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/diplib.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/display.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/global.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/host.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/hostcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/hostcd.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/hostfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/hostfs.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/hwdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/hwdev.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/icons.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/lccddev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/lccddev.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/loader.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/m2dipir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/m2dipir.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/m2dipir.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/m2dipir.s -------------------------------------------------------------------------------- /ws_root/src/others/dipir/m2ecc32.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/m2ecc32.i -------------------------------------------------------------------------------- /ws_root/src/others/dipir/m2ecc32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/m2ecc32.s -------------------------------------------------------------------------------- /ws_root/src/others/dipir/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/md5.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/md5c.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/memcpy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/memcpy.s -------------------------------------------------------------------------------- /ws_root/src/others/dipir/memset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/memset.s -------------------------------------------------------------------------------- /ws_root/src/others/dipir/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/print.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/rand.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/rommisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/rommisc.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/romtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/romtag.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/rsa.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/tiny.c -------------------------------------------------------------------------------- /ws_root/src/others/dipir/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/tiny.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/tuples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/tuples.h -------------------------------------------------------------------------------- /ws_root/src/others/dipir/va_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/dipir/va_arg.c -------------------------------------------------------------------------------- /ws_root/src/others/roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/roms/Makefile -------------------------------------------------------------------------------- /ws_root/src/others/roms/romapp.rat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/others/roms/romapp.rat -------------------------------------------------------------------------------- /ws_root/src/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/Makefile -------------------------------------------------------------------------------- /ws_root/src/programs/batt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/batt/Makefile -------------------------------------------------------------------------------- /ws_root/src/programs/batt/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/batt/clock.c -------------------------------------------------------------------------------- /ws_root/src/programs/dipir/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/dipir/hw.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/programs/file/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/copy.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/delete.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/format.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/fsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/fsinfo.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/ls.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/mkdir.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/mkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/mkfile.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/rename.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/type.c -------------------------------------------------------------------------------- /ws_root/src/programs/file/walker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/file/walker.c -------------------------------------------------------------------------------- /ws_root/src/programs/intl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/intl/Makefile -------------------------------------------------------------------------------- /ws_root/src/programs/intl/intl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/intl/intl.c -------------------------------------------------------------------------------- /ws_root/src/programs/items/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/programs/items/items.c -------------------------------------------------------------------------------- /ws_root/src/romapps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/romapps/Makefile -------------------------------------------------------------------------------- /ws_root/src/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/Makefile -------------------------------------------------------------------------------- /ws_root/src/scripts/RomApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/RomApps.txt -------------------------------------------------------------------------------- /ws_root/src/scripts/SystemStartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/SystemStartup -------------------------------------------------------------------------------- /ws_root/src/scripts/longlook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/longlook -------------------------------------------------------------------------------- /ws_root/src/scripts/quicklook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/quicklook -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/color.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/color.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/fb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/fb.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/fsbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/fsbox.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/glwin.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/glwin.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/quad.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/quad.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/tclIndex -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/tcolor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/tcolor.tcl -------------------------------------------------------------------------------- /ws_root/src/scripts/tcl/view.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/scripts/tcl/view.tcl -------------------------------------------------------------------------------- /ws_root/src/tasks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/Makefile -------------------------------------------------------------------------------- /ws_root/src/tasks/shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/shell/Makefile -------------------------------------------------------------------------------- /ws_root/src/tasks/shell/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/shell/errors.c -------------------------------------------------------------------------------- /ws_root/src/tasks/shell/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/shell/errors.h -------------------------------------------------------------------------------- /ws_root/src/tasks/shell/linkexec.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/shell/linkexec.x -------------------------------------------------------------------------------- /ws_root/src/tasks/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tasks/shell/shell.c -------------------------------------------------------------------------------- /ws_root/src/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/audio/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/levels.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/loadatag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/loadatag.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/loadins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/loadins.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_api.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_auto.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_bugs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_bugs.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_immed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_immed.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_input.c -------------------------------------------------------------------------------- /ws_root/src/tests/audio/ta_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/audio/ta_mixer.c -------------------------------------------------------------------------------- /ws_root/src/tests/batt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/batt/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/batt/batt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/batt/batt.c -------------------------------------------------------------------------------- /ws_root/src/tests/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/bench/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/cdrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/cdrom/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/cdrom/certify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/cdrom/certify.c -------------------------------------------------------------------------------- /ws_root/src/tests/cdrom/ecc/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/cdrom/ecc/ecc.c -------------------------------------------------------------------------------- /ws_root/src/tests/cdrom/seek/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/cdrom/seek/su.c -------------------------------------------------------------------------------- /ws_root/src/tests/cdrom/seek/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/cdrom/seek/su.h -------------------------------------------------------------------------------- /ws_root/src/tests/compile/body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/compile/body -------------------------------------------------------------------------------- /ws_root/src/tests/compile/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/compile/header -------------------------------------------------------------------------------- /ws_root/src/tests/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/kernel/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/kernel/fptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/kernel/fptest.c -------------------------------------------------------------------------------- /ws_root/src/tests/kernel/getrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/kernel/getrand.c -------------------------------------------------------------------------------- /ws_root/src/tests/kernel/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/kernel/setjmp.c -------------------------------------------------------------------------------- /ws_root/src/tests/kernel/sfptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/kernel/sfptest.c -------------------------------------------------------------------------------- /ws_root/src/tests/math/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/math/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/mp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/mp/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/mp/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/mp/mp.c -------------------------------------------------------------------------------- /ws_root/src/tests/mpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/mpeg/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/script/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/script/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/script/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/script/script.c -------------------------------------------------------------------------------- /ws_root/src/tests/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/serial/Makefile -------------------------------------------------------------------------------- /ws_root/src/tests/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tests/serial/serial.c -------------------------------------------------------------------------------- /ws_root/src/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/adx/411.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/411.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/adx/adx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/adx.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/adx.h -------------------------------------------------------------------------------- /ws_root/src/tools/adx/adx.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/adx.make -------------------------------------------------------------------------------- /ws_root/src/tools/adx/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/ascii.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/html.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/list.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/options.h -------------------------------------------------------------------------------- /ws_root/src/tools/adx/troff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/troff.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/utils.c -------------------------------------------------------------------------------- /ws_root/src/tools/adx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/adx/utils.h -------------------------------------------------------------------------------- /ws_root/src/tools/comp3do/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/comp3do/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/ddfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ddfc/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/ddfc/ddf2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ddfc/ddf2c.sh -------------------------------------------------------------------------------- /ws_root/src/tools/ddfc/ddfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ddfc/ddfc.h -------------------------------------------------------------------------------- /ws_root/src/tools/ddfc/ddfc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ddfc/ddfc.sh -------------------------------------------------------------------------------- /ws_root/src/tools/ddfc/ddfc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ddfc/ddfc.y -------------------------------------------------------------------------------- /ws_root/src/tools/dmnum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/dmnum/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/dmnum/dmnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/dmnum/dmnum.c -------------------------------------------------------------------------------- /ws_root/src/tools/elfsize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/elfsize/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/filters/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/filters/r64dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/filters/r64dec.c -------------------------------------------------------------------------------- /ws_root/src/tools/filters/r64enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/filters/r64enc.c -------------------------------------------------------------------------------- /ws_root/src/tools/jas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/jas/asp1.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/asp1.l -------------------------------------------------------------------------------- /ws_root/src/tools/jas/asp2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/asp2.l -------------------------------------------------------------------------------- /ws_root/src/tools/jas/asp2.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/asp2.y -------------------------------------------------------------------------------- /ws_root/src/tools/jas/jas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/jas -------------------------------------------------------------------------------- /ws_root/src/tools/jas/jas.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/jas/jas.debug -------------------------------------------------------------------------------- /ws_root/src/tools/layout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/layout/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/layout/cart.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/layout/cart.tcl -------------------------------------------------------------------------------- /ws_root/src/tools/layout/cdrom.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/layout/cdrom.tcl -------------------------------------------------------------------------------- /ws_root/src/tools/layout/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/layout/layout.c -------------------------------------------------------------------------------- /ws_root/src/tools/link/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/link/dump3do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/dump3do -------------------------------------------------------------------------------- /ws_root/src/tools/link/link3do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/link3do -------------------------------------------------------------------------------- /ws_root/src/tools/link/sun4/ar_d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/sun4/ar_d.o -------------------------------------------------------------------------------- /ws_root/src/tools/link/sun4/dump.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/sun4/dump.o -------------------------------------------------------------------------------- /ws_root/src/tools/link/sun4/link.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/sun4/link.o -------------------------------------------------------------------------------- /ws_root/src/tools/link/sun4/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/link/sun4/misc.o -------------------------------------------------------------------------------- /ws_root/src/tools/mercury/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/mercury/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/mercury/out.utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/mercury/out.utf -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/COPYING -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/README -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/TODO -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/VERSION: -------------------------------------------------------------------------------- 1 | 2.6 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/bfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/bfd.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/bout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/bout.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/elf.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/hash.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/ieee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/ieee.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/init.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/nlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/nlm.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/som.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/som.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/som.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/som.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/srec.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/bfd/syms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/bfd/syms.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/config.sub -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/configure -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/NEWS -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/NOTES -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/README -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/app.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/as.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/as.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/cond.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/conf -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config-stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/arm-big.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_BIG_ENDIAN 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/arm-lit.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/i386coff.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DI386COFF 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/m68kcoff.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DM68KCOFF 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/m88kcoff.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DM88KCOFF 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/mips-big.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_BIG_ENDIAN 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/mips-lit.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/obj-multi.c: -------------------------------------------------------------------------------- 1 | /* foo */ 2 | 3 | #include "as.h" 4 | 5 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/ppc-big.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_BIG_ENDIAN=1 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/ppc-lit.mt: -------------------------------------------------------------------------------- 1 | TDEFINES=-DTARGET_BYTES_LITTLE_ENDIAN=1 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/tc-generic.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/te-linux.h: -------------------------------------------------------------------------------- 1 | #define TE_LINUX 2 | #include "obj-format.h" 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/config/te-mach.h: -------------------------------------------------------------------------------- 1 | #define TE_Mach 2 | #include "obj-format.h" 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/emul.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/expr.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/expr.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/gasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/gasp.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/hash.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/hash.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/main.s -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/obj.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/read.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/read.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/sb.c -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/sb.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/gas/tc.h -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gas/hppa/parse/appbug.s: -------------------------------------------------------------------------------- 1 | # 1 "crt0.s" 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gas/i386/pushw.s: -------------------------------------------------------------------------------- 1 | 2: pushw $200 2 | 1: .long 1b-2b 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gas/m68k-coff/p2430a.s: -------------------------------------------------------------------------------- 1 | .sect foo 2 | 3 | tag: 4 | bra tag 5 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gas/macros/rept.s: -------------------------------------------------------------------------------- 1 | .rept 3 2 | .long r1 3 | .endr 4 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gas/vax/quad.s: -------------------------------------------------------------------------------- 1 | .text 2 | movq $0xaabbccdd12345678,r0 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/assign.err: -------------------------------------------------------------------------------- 1 | assign.asm:8 Can't find preprocessor variable bar. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/condass.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/crash.err: -------------------------------------------------------------------------------- 1 | crash.asm:18 Unreasonable expansion (-u turns off check). 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/crash1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/crash2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/data.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/include.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/listing.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/macro.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/mdouble.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl1.err: -------------------------------------------------------------------------------- 1 | END missing from end of file. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl3.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl4.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl5.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl6.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl7.err: -------------------------------------------------------------------------------- 1 | END missing from end of file. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pl8.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/pr7583.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reg.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/rep.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/repeat.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reperr.asm: -------------------------------------------------------------------------------- 1 | 2 | .REPEAT 10 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reperr.err: -------------------------------------------------------------------------------- 1 | END missing from end of file. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reperr1.asm: -------------------------------------------------------------------------------- 1 | 2 | .AREPEAT 10 3 | .END 4 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reperr1.err: -------------------------------------------------------------------------------- 1 | End of file whilst inside AREPEAT, started on line 3. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/reperr2.err: -------------------------------------------------------------------------------- 1 | reperr2.asm:4 AENDR without a AREPEAT. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/sfunc.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/t1.asm: -------------------------------------------------------------------------------- 1 | 2 | test for eof in middle of line 3 | .END 4 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/t1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/t2.asm: -------------------------------------------------------------------------------- 1 | 2 | 3 | test 4 | + continued 5 | + lines 6 | 7 | 8 | .END 9 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/t2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/t3.err: -------------------------------------------------------------------------------- 1 | END missing from end of file. 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/gasp/while.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/gas/testsuite/lib/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | eval exec $@ 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/include/mpw/sys/file.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/include/mpw/sys/param.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/install.sh -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/config/mh-hpbsd: -------------------------------------------------------------------------------- 1 | # HPPA hosts using BSD 2 | RANLIB=true 3 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/config/mh-hpux: -------------------------------------------------------------------------------- 1 | EXTRA_OFILES = alloca.o 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/config/mh-lynxos: -------------------------------------------------------------------------------- 1 | HDEFINES = -DLOSING_SYS_SIGLIST 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/config/mh-sysv: -------------------------------------------------------------------------------- 1 | RANLIB=true 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/config/mh-sysv4: -------------------------------------------------------------------------------- 1 | HDEFINES = -DHAVE_SYSCONF 2 | RANLIB=true 3 | INSTALL = cp 4 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/libiberty/xhost-mkfrag: -------------------------------------------------------------------------------- 1 | # Warning: this fragment is automatically generated 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/mpw-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/ppcas/mpw-README -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/opcodes/.del-confdefs.h-Dec-10-96: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/opcodes/aclocal.m4: -------------------------------------------------------------------------------- 1 | sinclude(../bfd/aclocal.m4) 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/ppcas/opcodes/stamp-h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ws_root/src/tools/romtools/cook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/romtools/cook.c -------------------------------------------------------------------------------- /ws_root/src/tools/romtools/fsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/romtools/fsbuild -------------------------------------------------------------------------------- /ws_root/src/tools/rsasign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/rsasign/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/rsasign/atypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/rsasign/atypes.h -------------------------------------------------------------------------------- /ws_root/src/tools/rsasign/bsafe2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/rsasign/bsafe2.h -------------------------------------------------------------------------------- /ws_root/src/tools/rsasign/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/rsasign/global.h -------------------------------------------------------------------------------- /ws_root/src/tools/rsasign/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/rsasign/keys.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/Makefile -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/panic.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/regexp.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/regexp.h -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/strerror.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/strtoul.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tcl.h -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclAssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclAssem.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclBasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclBasic.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclCkalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclCkalloc.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclCmdAH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclCmdAH.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclCmdIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclCmdIL.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclCmdMZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclCmdMZ.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclEnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclEnv.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclExpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclExpr.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclGet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclGet.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclGlob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclGlob.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclHash.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclHash.h -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclHistory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclHistory.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclInt.h -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclParse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclParse.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclProc.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclTest.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclUnix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclUnix.h -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclUnixAZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclUnixAZ.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclUnixStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclUnixStr.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclUtil.c -------------------------------------------------------------------------------- /ws_root/src/tools/tcl/tclVar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/tools/tcl/tclVar.c -------------------------------------------------------------------------------- /ws_root/src/vectors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/audio/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/batt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/batt/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/batt/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/batt/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/beep/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/beep/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/beep/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/date/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/date/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/date/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/file/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/file/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/file/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/font/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/font/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/font/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/icon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/icon/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/icon/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/icon/vectors.s -------------------------------------------------------------------------------- /ws_root/src/vectors/iff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/iff/Makefile -------------------------------------------------------------------------------- /ws_root/src/vectors/iff/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/src/vectors/iff/vectors.s -------------------------------------------------------------------------------- /ws_root/variables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/Makefile -------------------------------------------------------------------------------- /ws_root/variables/commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/commands -------------------------------------------------------------------------------- /ws_root/variables/datafiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/datafiles -------------------------------------------------------------------------------- /ws_root/variables/defines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/defines -------------------------------------------------------------------------------- /ws_root/variables/exampledata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/exampledata -------------------------------------------------------------------------------- /ws_root/variables/fileinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/fileinfo -------------------------------------------------------------------------------- /ws_root/variables/generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/generic -------------------------------------------------------------------------------- /ws_root/variables/hostexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/hostexec -------------------------------------------------------------------------------- /ws_root/variables/hostexecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/hostexecs -------------------------------------------------------------------------------- /ws_root/variables/hostlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/hostlib -------------------------------------------------------------------------------- /ws_root/variables/linkexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/linkexec -------------------------------------------------------------------------------- /ws_root/variables/linklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/linklib -------------------------------------------------------------------------------- /ws_root/variables/linkvector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/linkvector -------------------------------------------------------------------------------- /ws_root/variables/makeexamples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/makeexamples -------------------------------------------------------------------------------- /ws_root/variables/memorymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/memorymap -------------------------------------------------------------------------------- /ws_root/variables/multilink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/multilink -------------------------------------------------------------------------------- /ws_root/variables/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/options -------------------------------------------------------------------------------- /ws_root/variables/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/variables/version -------------------------------------------------------------------------------- /ws_root/vectors/default/audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/audio -------------------------------------------------------------------------------- /ws_root/vectors/default/audiopatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/audiopatch -------------------------------------------------------------------------------- /ws_root/vectors/default/batt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/batt -------------------------------------------------------------------------------- /ws_root/vectors/default/beep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/beep -------------------------------------------------------------------------------- /ws_root/vectors/default/blitter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/blitter -------------------------------------------------------------------------------- /ws_root/vectors/default/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/date -------------------------------------------------------------------------------- /ws_root/vectors/default/filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/filesystem -------------------------------------------------------------------------------- /ws_root/vectors/default/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/font -------------------------------------------------------------------------------- /ws_root/vectors/default/frame2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/frame2d -------------------------------------------------------------------------------- /ws_root/vectors/default/fsutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/fsutils -------------------------------------------------------------------------------- /ws_root/vectors/default/graphics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/graphics -------------------------------------------------------------------------------- /ws_root/vectors/default/gstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/gstate -------------------------------------------------------------------------------- /ws_root/vectors/default/icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/icon -------------------------------------------------------------------------------- /ws_root/vectors/default/iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/iff -------------------------------------------------------------------------------- /ws_root/vectors/default/jstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/jstring -------------------------------------------------------------------------------- /ws_root/vectors/default/kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/kernel -------------------------------------------------------------------------------- /ws_root/vectors/default/operator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/operator -------------------------------------------------------------------------------- /ws_root/vectors/default/requester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/requester -------------------------------------------------------------------------------- /ws_root/vectors/default/savegame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/savegame -------------------------------------------------------------------------------- /ws_root/vectors/default/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trapexit/portfolio_os_m2/HEAD/ws_root/vectors/default/script --------------------------------------------------------------------------------