├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .scripts ├── .gitattributes ├── autobld.sh ├── build.sh ├── deploy.sh ├── install_prerequisities.sh ├── install_ssh_id.sh ├── mkapp.sh ├── mkbindist.sh ├── mklinuxdist.sh ├── purge-snapshots.pl └── setup_env.sh ├── .travis.yml ├── .travis ├── .gitattributes ├── autobld.sh ├── build.sh ├── deploy.sh ├── install_prerequisities.sh ├── install_ssh_id.sh ├── mkapp.sh ├── mkbindist.sh ├── purge-snapshots.pl └── setup_env.sh ├── BUILDING.md ├── LICENSE ├── Makefile.common ├── README.md ├── apps ├── all.prj ├── applicat │ ├── Makefile │ ├── README.TXT │ ├── anw_dial.c │ ├── anw_dial.h │ ├── appl.h │ ├── appldata.h │ ├── applicat.c │ ├── applicat.inz │ ├── applicat.prj │ ├── de │ │ ├── applicat.h │ │ ├── applicat.inf │ │ ├── applicat.rsc │ │ └── applicat.rso │ ├── en │ │ ├── applicat.dat │ │ ├── applicat.h │ │ ├── applicat.inf │ │ ├── applicat.rsc │ │ └── applicat.rso │ ├── fr │ │ ├── applicat.h │ │ ├── applicat.inf │ │ ├── applicat.rsc │ │ └── applicat.rso │ ├── ica_dial.c │ ├── ica_dial.h │ ├── ico.txt │ ├── iconsel.c │ ├── iconsel.h │ ├── icp_dial.c │ ├── icp_dial.h │ ├── inf.c │ ├── minimal.inf │ ├── pth_dial.c │ ├── pth_dial.h │ ├── spc_dial.c │ ├── spc_dial.h │ ├── typ_dial.c │ ├── typ_dial.h │ ├── windows.c │ └── windows.h ├── appline │ ├── Makefile │ ├── appline.c │ ├── appline.img │ ├── appline.inf │ ├── appline.prj │ ├── appline.stg │ ├── de │ │ ├── appline.h │ │ ├── appline.rsc │ │ └── appline.rso │ ├── en │ │ ├── appline.h │ │ ├── appline.rsc │ │ └── appline.rso │ ├── fr │ │ ├── appline.h │ │ ├── appline.rsc │ │ └── appline.rso │ ├── popup.img │ └── startup.s ├── chgres │ ├── Makefile │ ├── README.TXT │ ├── chgres.c │ ├── chgres.prj │ ├── chgres.txt │ ├── de │ │ ├── chgres.h │ │ ├── chgres.rsc │ │ └── chgres.rso │ ├── en │ │ ├── chgres.h │ │ ├── chgres.rsc │ │ └── chgres.rso │ ├── extern.h │ ├── fr │ │ ├── chgres.h │ │ ├── chgres.rsc │ │ └── chgres.rso │ ├── inf.c │ ├── popup.c │ └── vgainf.h ├── cmd │ ├── Makefile │ ├── README.TXT │ ├── all.prj │ ├── autoexec.bat │ ├── cmd.doc │ ├── cmd.s │ ├── cmd.txt │ ├── kcmd.prj │ ├── kcmd.s │ ├── mcmd.prj │ └── mcmd.s ├── cpx │ ├── .gitignore │ ├── aesctrl.s │ ├── all.prj │ ├── cpxdata.h │ ├── cpxhead.h │ ├── cpxstart.s │ ├── magxconf.c │ ├── magxconf.h │ ├── magxconf.hdr │ ├── magxconf.prj │ ├── magxconf.rsc │ ├── magxconf.rsh │ ├── magxconf.rso │ ├── mt_aes.c │ ├── orig │ │ ├── cpxdata.h │ │ ├── cpxhead.h │ │ ├── magxconf │ │ │ ├── aesctrl.s │ │ │ ├── cpxstart.s │ │ │ ├── gemdos.s │ │ │ ├── magxconf.c │ │ │ ├── magxconf.cpx │ │ │ ├── magxconf.h │ │ │ ├── magxconf.hdr │ │ │ ├── magxconf.prj │ │ │ ├── magxconf.rsc │ │ │ ├── magxconf.rsh │ │ │ ├── magxconf.rso │ │ │ ├── magxconf.s │ │ │ ├── magxhead.s │ │ │ └── mt_aes.c │ │ └── tslice │ │ │ ├── aesctrl.s │ │ │ ├── cpxstart.s │ │ │ ├── mt_aes.c │ │ │ ├── tslice.c │ │ │ ├── tslice.cpx │ │ │ ├── tslice.h │ │ │ ├── tslice.hdr │ │ │ ├── tslice.prj │ │ │ ├── tslice.rsc │ │ │ ├── tslice.rsh │ │ │ └── tslice.rso │ ├── prefix │ │ ├── headers │ │ │ ├── about.hdr │ │ │ ├── alerts.hdr │ │ │ ├── font.hdr │ │ │ ├── french │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ │ ├── german │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ │ ├── italy │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ │ ├── spain │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ │ ├── sweden │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ │ ├── test.hdr │ │ │ └── usa │ │ │ │ ├── general.hdr │ │ │ │ ├── general1.hdr │ │ │ │ ├── modem.hdr │ │ │ │ ├── modem1.hdr │ │ │ │ ├── printer.hdr │ │ │ │ └── sound.hdr │ │ ├── icn │ │ │ ├── about.icn │ │ │ ├── font.icn │ │ │ ├── fsm.icn │ │ │ ├── general.icn │ │ │ ├── printer.icn │ │ │ ├── rs232.icn │ │ │ ├── sound.icn │ │ │ └── towns │ │ │ │ ├── about.icn │ │ │ │ ├── clear.icn │ │ │ │ ├── config.icn │ │ │ │ ├── general.icn │ │ │ │ ├── printer.icn │ │ │ │ ├── rs232.icn │ │ │ │ └── sound.icn │ │ ├── prefix.prg │ │ ├── prefix.rsc │ │ └── prefix.txt │ ├── tslice.c │ ├── tslice.h │ ├── tslice.hdr │ ├── tslice.prj │ ├── tslice.rsc │ ├── tslice.rsh │ └── tslice.rso ├── flp_par │ ├── README.TXT │ ├── flp_par0.c │ └── flp_par1.c ├── instmagc │ ├── README.TXT │ ├── autoexec.bat │ ├── en │ │ ├── instmagc.rsc │ │ └── instmagc.rso │ ├── fr │ │ ├── instmagc.rsc │ │ ├── instmagc.rso │ │ ├── lisezmoi.txt │ │ └── magx.inf │ ├── instmagc.c │ ├── instmagc.h │ ├── instmagc.prj │ ├── instmagc.rsc │ ├── instmagc.rso │ ├── instmagx.inf │ ├── magx.inf │ ├── magx_lin.inf │ ├── rawinst.c │ ├── rawinst.ttp │ ├── xcopy.c │ └── xcopy.h ├── limitmem │ ├── README.TXT │ ├── limitmem.c │ └── limitmem.prj ├── magiccfg │ ├── bgh.c │ ├── bgh.h │ ├── bubble.h │ ├── defs.h │ ├── dhst.h │ ├── diallib.h │ ├── doc │ │ ├── Makefile │ │ ├── include │ │ │ ├── autor.ui │ │ │ ├── bedienun.ui │ │ │ ├── bekannte.ui │ │ │ ├── danksagu.ui │ │ │ ├── history.ui │ │ │ ├── hyphen.ui │ │ │ ├── inhaltsv.ui │ │ │ ├── interna.ui │ │ │ ├── intro.ui │ │ │ ├── pnodes.ui │ │ │ ├── rechtlic.ui │ │ │ ├── systemvo.ui │ │ │ └── titelsei.ui │ │ └── magiccfg.u │ ├── dragdrop.c │ ├── history.txt │ ├── magiccfg.bgh │ ├── magiccfg.c │ ├── magiccfg.h │ ├── magiccfg.prj │ ├── magiccfg.rsc │ ├── rsc │ │ ├── de │ │ │ ├── magiccfg.bgh │ │ │ ├── magiccfg.h │ │ │ ├── magiccfg.rsc │ │ │ └── magiccfg.rso │ │ ├── en │ │ │ ├── magiccfg.bgh │ │ │ ├── magiccfg.h │ │ │ ├── magiccfg.rsc │ │ │ └── magiccfg.rso │ │ └── fr │ │ │ ├── magiccfg.bgh │ │ │ ├── magiccfg.h │ │ │ ├── magiccfg.rsc │ │ │ └── magiccfg.rso │ ├── source │ │ ├── addi.c │ │ ├── dial_abo.c │ │ ├── dial_bac.c │ │ ├── dial_bot.c │ │ ├── dial_fnt.c │ │ ├── dial_lib.c │ │ ├── dial_mai.c │ │ ├── dial_oth.c │ │ ├── dial_pth.c │ │ ├── dial_res.c │ │ ├── dial_var.c │ │ ├── dial_vfa.c │ │ ├── dial_win.c │ │ ├── dl_av.c │ │ ├── dl_bubbl.c │ │ ├── dl_dhst.c │ │ ├── dl_dial.c │ │ ├── dl_drag.c │ │ ├── dl_event.c │ │ ├── dl_filsl.c │ │ ├── dl_fonsl.c │ │ ├── dl_help.c │ │ ├── dl_init.c │ │ ├── dl_items.c │ │ ├── dl_ledit.c │ │ ├── dl_menu.c │ │ ├── dl_miss.h │ │ ├── dl_routs.c │ │ ├── dl_user.c │ │ ├── dl_user.h │ │ ├── file.c │ │ ├── filefont.c │ │ └── fileproc.c │ ├── test.inf │ └── to_do.txt ├── magxconf │ ├── README.TXT │ └── src │ │ ├── all.prj │ │ ├── magxcode.prj │ │ ├── magxcode.s │ │ ├── magxcoen.prj │ │ ├── magxcoen.s │ │ ├── magxcofr.prj │ │ ├── magxcofr.s │ │ └── magxconf.s ├── magxdesk.4 │ ├── README.TXT │ ├── allg.c │ ├── defaults.c │ ├── dialogs.c │ ├── dklick.c │ ├── dmenu.c │ ├── dwindows.c │ ├── files.c │ ├── fr │ │ ├── magxdesk.h │ │ ├── magxdesk.rsc │ │ ├── magxdesk.rso │ │ ├── magxdesl.dfn │ │ ├── magxdesl.hrd │ │ └── magxdesl.rsc │ ├── imgload.c │ ├── k.h │ ├── kachel.c │ ├── kachel.h │ ├── klick.c │ ├── kobold.h │ ├── magxdesk.c │ ├── magxdesk.h │ ├── magxdesk.prj │ ├── magxdesk.rsc │ ├── magxdesk.rso │ ├── magxdesl.dfn │ ├── magxdesl.h │ ├── magxdesl.rsc │ ├── main.c │ ├── minstart.s │ ├── pattern.c │ ├── pattern.h │ ├── spec.c │ └── us │ │ ├── magxdesk.h │ │ ├── magxdesk.rsc │ │ ├── magxdesk.rso │ │ ├── magxdesl.dfn │ │ └── magxdesl.rsc ├── magxdesk.5 │ ├── README.TXT │ ├── allg.c │ ├── de │ │ ├── magxdesk.h │ │ ├── magxdesk.rsc │ │ └── magxdesk.rso │ ├── defaults.c │ ├── dialogs.c │ ├── dialogs.h │ ├── dklick.c │ ├── dlg_info.c │ ├── dlg_info.h │ ├── dmenu.c │ ├── dwindows.c │ ├── en │ │ ├── magxdesk.h │ │ ├── magxdesk.rsc │ │ └── magxdesk.rso │ ├── files.c │ ├── fr │ │ ├── magxdesk.h │ │ ├── magxdesk.rsc │ │ └── magxdesk.rso │ ├── imgload.c │ ├── k.h │ ├── kachel.c │ ├── kachel.h │ ├── klick.c │ ├── kobold.h │ ├── magxdesk.c │ ├── magxdesk.prj │ ├── main.c │ ├── minstart.s │ ├── pat │ │ ├── 16 │ │ │ ├── pat1.img │ │ │ ├── pat10.img │ │ │ ├── pat11.img │ │ │ ├── pat13.img │ │ │ ├── pat15.img │ │ │ ├── pat16.img │ │ │ ├── pat23.img │ │ │ ├── pat26.img │ │ │ ├── pat27.img │ │ │ ├── pat28.img │ │ │ ├── pat3.img │ │ │ ├── pat4.img │ │ │ ├── pat5.img │ │ │ └── pat6.img │ │ └── 256 │ │ │ ├── magic.img │ │ │ ├── pat1.img │ │ │ ├── pat10.img │ │ │ ├── pat11.img │ │ │ ├── pat13.img │ │ │ ├── pat14.img │ │ │ ├── pat15.img │ │ │ ├── pat16.img │ │ │ ├── pat19.img │ │ │ ├── pat20.img │ │ │ ├── pat23.img │ │ │ ├── pat24.img │ │ │ ├── pat25.img │ │ │ ├── pat26.img │ │ │ ├── pat27.img │ │ │ ├── pat28.img │ │ │ ├── pat3.img │ │ │ ├── pat4.img │ │ │ ├── pat5.img │ │ │ ├── pat6.img │ │ │ └── pat7.img │ ├── pattern.c │ ├── pattern.h │ ├── rsc │ │ ├── and_icns.hrd │ │ ├── and_icns.rsc │ │ ├── ash.hrd │ │ ├── ash.rsc │ │ ├── befolder.rsc │ │ ├── befolder.rso │ │ ├── cpxmod.rsc │ │ ├── cpxmod.rso │ │ ├── devices.rsc │ │ ├── devices.rso │ │ ├── drives.rsc │ │ ├── drives.rso │ │ ├── files.rsc │ │ ├── files.rso │ │ ├── magicicn.hrd │ │ ├── magicicn.rsc │ │ ├── programs.rsc │ │ └── programs.rso │ └── spec.c ├── matrix │ ├── README.TXT │ ├── arith.c │ ├── datei.c │ ├── edit.c │ ├── glsystem.c │ ├── klick.c │ ├── m.c │ ├── m.h │ ├── matrix.doc │ ├── matrix.h │ ├── matrix.prj │ ├── matrix.rsc │ ├── matrix.rso │ ├── matrix.txt │ ├── menus.c │ ├── msg.c │ └── shell.c ├── mgclock │ ├── README.TXT │ ├── mgclock.c │ └── mgclock.prj ├── mgcopy │ ├── README.TXT │ ├── beg_dial.c │ ├── beg_dial.h │ ├── cpfiles.c │ ├── cpfiles.h │ ├── dat_dial.c │ ├── dat_dial.h │ ├── de │ │ ├── mgcopy.h │ │ ├── mgcopy.rsc │ │ └── mgcopy.rso │ ├── en │ │ ├── mgcopy.h │ │ ├── mgcopy.rsc │ │ └── mgcopy.rso │ ├── fr │ │ ├── mgcopy.h │ │ ├── mgcopy.rsc │ │ └── mgcopy.rso │ ├── globals.h │ ├── mgcopy.c │ ├── mgcopy.prj │ └── tst │ │ ├── mgcopy.tos │ │ ├── tst.bat │ │ └── tst2.bat ├── mgedit │ ├── README.TXT │ ├── de │ │ ├── mgedit.h │ │ ├── mgedit.rsc │ │ └── mgedit.rso │ ├── en │ │ ├── mgedit.h │ │ ├── mgedit.rsc │ │ └── mgedit.rso │ ├── fr │ │ ├── mgedit.h │ │ ├── mgedit.rsc │ │ └── mgedit.rso │ ├── globals.h │ ├── mac_api.c │ ├── mgedit.c │ ├── mgedit.prj │ ├── mgedit7.prj │ ├── mgedwind.c │ ├── mm7.c │ ├── mm7.h │ └── opt_dial.c ├── mgformat │ ├── README.TXT │ ├── cpy_dial.c │ ├── de │ │ ├── mgformat.h │ │ ├── mgformat.rsc │ │ └── mgformat.rso │ ├── en │ │ ├── mgformat.h │ │ ├── mgformat.rsc │ │ └── mgformat.rso │ ├── fmt_dial.c │ ├── format.c │ ├── fr │ │ ├── mgformat.h │ │ ├── mgformat.rsc │ │ └── mgformat.rso │ ├── globals.h │ ├── mgformat.c │ ├── mgformat.inf │ └── mgformat.prj ├── mgnotice.2 │ ├── README.TXT │ ├── de │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── en │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── fr │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── globals.h │ ├── mgnotic2.txt │ ├── mgnotice.c │ ├── mgnotice.prj │ ├── mgnwind.c │ ├── opt_dial.c │ ├── wglobals.h │ ├── windows.c │ └── windows.h ├── mgnotice │ ├── README.TXT │ ├── de │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── en │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── fr │ │ ├── mgnotice.h │ │ ├── mgnotice.rsc │ │ ├── mgnotice.rso │ │ └── mgnotice.txt │ ├── globals.h │ ├── mgnotica.rsc │ ├── mgnotice.c │ ├── mgnotice.prj │ ├── mgnwind.c │ ├── new_dial.c │ ├── opt_dial.c │ ├── wglobals.h │ ├── windows.c │ └── windows.h ├── mgsearch │ ├── README.TXT │ ├── de │ │ ├── mgsearch.h │ │ ├── mgsearch.hrd │ │ └── mgsearch.rsc │ ├── en │ │ └── mgsearch.rsc │ ├── fr │ │ ├── mgsearch.hrd │ │ └── mgsearch.rsc │ ├── mgsearch.c │ ├── mgsearch.prj │ ├── search.c │ ├── search.h │ ├── srch_win.c │ └── srch_win.h ├── mgview │ ├── README.TXT │ ├── globals.h │ ├── memchar2.c │ ├── memchar2.s │ ├── mgview.c │ ├── mgview.h │ ├── mgview.prj │ ├── mgwind.c │ ├── mgwind.h │ ├── windows.c │ └── windows.h ├── mgxclock │ ├── README.TXT │ ├── mgxclock.c │ └── mgxclock.prj ├── mmxdaemn │ ├── README.TXT │ ├── mmx_xcmd.h │ ├── mmxdaemn.c │ └── mmxdaemn.prj ├── mod_app │ ├── README.TXT │ ├── de │ │ └── mod_app.txt │ ├── en │ │ └── mod_app.txt │ ├── fr │ │ └── mod_app.txt │ ├── mod_app.c │ ├── mod_app.prj │ └── tst │ │ ├── applicat.dat │ │ ├── applicat.in │ │ ├── applicat.inf │ │ ├── ia.bat │ │ ├── iad.bat │ │ ├── id.bat │ │ ├── idd.bat │ │ └── is.bat ├── mpc_acc │ ├── cstart0.s │ ├── mpc_acc.c │ ├── mpc_acc.prj │ └── mpc_cont.s ├── print │ ├── README.TXT │ ├── print.c │ └── print.prj ├── showfile │ ├── README.TXT │ ├── showfile.c │ └── showfile.prj ├── shutdown │ ├── README.TXT │ ├── all.prj │ ├── de │ │ └── README.TXT │ ├── en │ │ └── README.TXT │ ├── fr │ │ └── README.TXT │ ├── shut_de.c │ ├── shut_de.prj │ ├── shut_en.c │ ├── shut_en.prj │ ├── shut_fr.c │ ├── shut_fr.prj │ ├── shutdown.c │ └── shutdown.inf ├── vfatconf │ ├── README.TXT │ ├── de │ │ ├── vfatconf.h │ │ ├── vfatconf.rsc │ │ └── vfatconf.rso │ ├── en │ │ ├── vfatconf.h │ │ ├── vfatconf.rsc │ │ └── vfatconf.rso │ ├── fr │ │ ├── vfatconf.h │ │ ├── vfatconf.rsc │ │ └── vfatconf.rso │ ├── vfatconf.c │ └── vfatconf.prj ├── vt52 │ ├── README.TXT │ ├── de │ │ ├── vt52.h │ │ ├── vt52.rsc │ │ └── vt52.rso │ ├── dragdrop.c │ ├── en │ │ ├── vt52.h │ │ ├── vt52.rsc │ │ └── vt52.rso │ ├── fr │ │ ├── vt52.h │ │ ├── vt52.rsc │ │ └── vt52.rso │ ├── list.h │ ├── list_new.c │ ├── pcstart.s │ ├── test.bat │ ├── todo_beh.txt │ ├── vt52.prj │ ├── vt52_bsp.inf │ ├── vt_aes.s │ ├── vt_bell.s │ ├── vt_bios.s │ ├── vt_emu.c │ ├── vt_emu.h │ ├── vt_eterm.s │ ├── vt_menu.c │ ├── vt_move.s │ ├── vt_sem.s │ ├── vt_vdi.s │ ├── vt_xbios.s │ ├── vtstruct.h │ ├── vtsys.h │ ├── wlib.c │ ├── wlib.h │ └── wstruct.h └── wbdaemon │ ├── README.TXT │ ├── wbdaemon.c │ └── wbdaemon.prj ├── auto ├── accs │ ├── atariorg.pal │ ├── cops.inf │ ├── cpx │ │ ├── clock.cpx │ │ ├── de │ │ │ ├── colorvdi.cpx │ │ │ ├── config.cpx │ │ │ ├── general.cpx │ │ │ ├── modem.cpx │ │ │ ├── printer.cpx │ │ │ └── ttsound.cpx │ │ ├── en │ │ │ ├── colorvdi.cpx │ │ │ ├── config.cpx │ │ │ ├── general.cpx │ │ │ ├── modem.cpx │ │ │ ├── printer.cpx │ │ │ └── ttsound.cpx │ │ ├── fr │ │ │ ├── colorvdi.cpx │ │ │ ├── config.cpx │ │ │ ├── general.cpx │ │ │ ├── modem.cpx │ │ │ ├── printer.cpx │ │ │ └── ttsound.cpx │ │ ├── ncache.cpx │ │ ├── nprnconf.cpx │ │ └── si.cpx │ ├── cpz │ │ ├── hddrconf.cpz │ │ ├── maus.cpz │ │ ├── ps.cpz │ │ └── set_flg.cpz │ ├── de │ │ └── cops.app │ ├── dunkel.pal │ ├── en │ │ └── cops.app │ ├── fr │ │ └── cops.app │ ├── mac.pal │ ├── normal.pal │ └── nvdi_neu.pal └── autoexec.bat ├── bin └── linux │ ├── m68k-atari-tos-pc-cpp │ ├── m68k-atari-tos-pc-dispobj │ ├── m68k-atari-tos-pc-pasm │ ├── m68k-atari-tos-pc-pcc │ └── m68k-atari-tos-pc-plink ├── doc ├── demo │ ├── dev_lpt1 │ │ ├── dev_lpt1.c │ │ ├── dev_lpt1.prj │ │ ├── dev_lpt1.tos │ │ └── dev_lpts.s │ ├── dragdrop │ │ ├── dd.c │ │ └── dragdrop.c │ ├── edscroll │ │ ├── edscroll.c │ │ ├── edscroll.dfn │ │ ├── edscroll.h │ │ ├── edscroll.prg │ │ ├── edscroll.prj │ │ └── edscroll.rsc │ ├── fslx │ │ ├── fslxdemo.c │ │ ├── fslxdemo.prg │ │ └── fslxdemo.prj │ ├── magxlib │ │ ├── magxlib.c │ │ └── magxlib.h │ ├── mxdev_dk │ │ ├── mgx_dfsc.h │ │ ├── mgx_xfsc.h │ │ ├── sample.c │ │ ├── sample.prj │ │ ├── sample.tos │ │ └── samples.s │ └── pcmxstrt.s ├── develop │ ├── README.TXT │ ├── aes.txt │ ├── colmapic.c │ ├── editob.txt │ ├── fatalerr.txt │ ├── fslx.txt │ ├── inter.txt │ ├── intrupts.txt │ ├── longfnam.txt │ ├── mgx_dos.txt │ ├── obtypes.txt │ ├── pipes.txt │ ├── sharelib.txt │ ├── shutdown.txt │ ├── signale.txt │ ├── single.txt │ ├── threads.txt │ ├── vfatconf.txt │ ├── wdialog.txt │ └── windfun.txt ├── filesys │ ├── mgx_dfs.txt │ ├── mgx_hdd.txt │ ├── mgx_udfs.txt │ └── mgx_xfs.txt ├── history │ ├── history.all │ └── mdesk5.txt ├── magix.1 │ ├── desktop.img │ ├── dirinfo.img │ ├── diskinfo.img │ ├── fileinfo.img │ ├── fsel_inp.img │ ├── install.img │ ├── magix.txt │ ├── magix0.txt │ ├── magix00.txt │ ├── magixcnf.img │ ├── magixh.doc │ ├── manager.img │ ├── multitsk.img │ └── smrtrdrw.txt ├── magix.2 │ ├── README.TXT │ ├── c01intro.txt │ ├── c02instl.txt │ ├── c03_add2.txt │ ├── c03tutor.txt │ ├── c04conf.txt │ ├── c05dialg.txt │ ├── c06fsel.txt │ ├── c07dmenu.txt │ ├── c08vtmen.txt │ ├── c09tools.txt │ ├── c12pguid.txt │ ├── magix200.txt │ ├── magxguid.txt │ ├── manpopup.img │ └── problems.txt ├── magix.3 │ ├── aes.txt │ ├── other.txt │ ├── update.300 │ └── xobtypes.txt ├── magix.4 │ └── features.txt ├── magix.5 │ ├── history.5 │ └── probleme.txt ├── magix.6 │ ├── history.6 │ └── update.6 └── usage │ ├── magx_de.inf │ ├── magx_en.inf │ ├── magx_fr.inf │ └── settings.txt ├── extensio ├── all.prj ├── cd-mxfs │ ├── README.TXT │ ├── cd-mxfs.h │ ├── cd-mxfs.prj │ ├── cd-mxfs.s │ ├── cd-mxfs.txt │ ├── cd-mxfsc.c │ ├── cd-mxfsk.s │ ├── cdfs.h │ ├── cdtool.sys │ ├── cfgread.c │ ├── config.sys │ ├── doscache.c │ ├── doskern.c │ ├── dosmain.c │ ├── hfs.c │ ├── hfs.h │ ├── hfs_fs.h │ ├── iso9660.c │ ├── iso_fs.h │ ├── libcdfs.h │ ├── libcdfs.prj │ ├── macfs.h │ ├── metados.c │ ├── metados.h │ ├── procfile.s │ ├── rock.h │ ├── tocfs.c │ └── version.h ├── edit_slb │ ├── README.TXT │ ├── edit.c │ ├── edit.h │ ├── edit.prj │ ├── edit.rsc │ ├── edit.rso │ ├── edit_slb.c │ ├── edit_slb.prj │ ├── edithead.s │ ├── editob.c │ ├── editob.h │ ├── globals.h │ └── memchar2.s ├── load_img │ ├── README.TXT │ ├── imgload.c │ ├── libhead.s │ ├── load_img.c │ ├── load_img.h │ └── load_img.prj ├── pdlg_slb │ ├── aesctrl.s │ ├── de │ │ └── README.TXT │ ├── en │ │ └── README.TXT │ ├── fr │ │ └── README.TXT │ ├── mt_aes_i.c │ ├── pdlg.c │ ├── pdlg.prj │ ├── pdlg_slb.c │ ├── pdlg_slb.h │ ├── pdlg_slb.prj │ ├── pdlgdsp.c │ ├── pdlgdsp.s │ ├── pdlghead.s │ ├── pdlgsmp1.c │ ├── pdlgsmp1.prj │ ├── pdlgsmp2.c │ ├── pdlgsmp2.prj │ ├── pdlgsmp3.c │ ├── pdlgsmp3.prj │ ├── pdlgsmp4.c │ ├── pdlgsmp4.prj │ ├── pdsmprsc.h │ ├── pdsmprsc.rsc │ └── pdsmprsc.rso ├── ramdisk │ ├── doc │ │ ├── ramdisk.hyp │ │ ├── ramdisk.inf │ │ ├── ramdisk.ref │ │ ├── ramdisk.stg │ │ └── sogehts.txt │ ├── pc_kern.s │ ├── pc_xfs.h │ ├── pc_xfs.s │ ├── proto.h │ ├── ramdebug.prj │ ├── ramdisk.c │ ├── ramdisk.h │ ├── ramdisk.prj │ ├── ramutil.c │ ├── tools │ │ ├── chckfree.app │ │ ├── chckfree.inf │ │ └── garbcoll.prg │ └── version.h ├── romdrvr │ ├── README.TXT │ ├── romdrvr.prj │ └── romdrvr.s ├── xfs_pc │ ├── xfs1.s │ └── xfs_pc.prj └── xp_rastr.slb │ ├── README.TXT │ ├── farbicon.h │ ├── farbicon.s │ ├── libhead.s │ ├── xp_rastr.c │ ├── xp_rastr.h │ └── xp_rastr.prj ├── inc_as ├── aesbind.inc ├── country.inc ├── magix.inc ├── mgx_devd.inc ├── mgx_dfs.inc └── osbind.inc ├── inc_c ├── av.h ├── cookie.h ├── country.h ├── doserrnr.h ├── dragdrop.h ├── imgload.h ├── mac_api.h ├── magix.h ├── men_xcmd.h ├── mgmc_api.h ├── mgx_devd.h ├── mgx_dfs.h ├── mgx_dos.h ├── mgx_xfs.h ├── nav_xcmd.h ├── ph.h ├── scancode.h ├── structs.h └── toserror.h ├── kaos ├── boot │ └── kaosboot.s └── doc │ ├── anleit.txt │ └── kaos14.txt ├── kernel ├── README.TXT ├── aes │ ├── README.TXT │ ├── aesevt.s │ ├── aesfrm.s │ ├── aesfsl.s │ ├── aesgraf.s │ ├── aesinc.s │ ├── aesmain.s │ ├── aesmen.s │ ├── aesobj.s │ ├── aesrsc.s │ ├── aeswin.s │ ├── farbic.c │ ├── farbicon.s │ ├── fsel │ │ ├── de │ │ │ ├── fselx.h │ │ │ ├── fselx.inc │ │ │ ├── fselx.rsc │ │ │ └── fselx.rso │ │ ├── en │ │ │ ├── fselx.h │ │ │ ├── fselx.inc │ │ │ ├── fselx.rsc │ │ │ └── fselx.rso │ │ ├── fr │ │ │ ├── fselx.h │ │ │ ├── fselx.inc │ │ │ ├── fselx.rsc │ │ │ └── fselx.rso │ │ ├── fsel.c │ │ ├── fsel.h │ │ └── listbx_g.h │ ├── icon.txt │ ├── wdialog │ │ ├── adaptrsc.c │ │ ├── aesctrl.s │ │ ├── cookies.c │ │ ├── de │ │ │ ├── fontslct.h │ │ │ ├── fontslct.inc │ │ │ ├── fontslct.rsc │ │ │ ├── fontslct.rso │ │ │ ├── pdlg.h │ │ │ ├── pdlg.inc │ │ │ ├── pdlg.rsc │ │ │ └── pdlg.rso │ │ ├── en │ │ │ ├── fontslct.h │ │ │ ├── fontslct.inc │ │ │ ├── fontslct.rsc │ │ │ ├── fontslct.rso │ │ │ ├── pdlg.h │ │ │ ├── pdlg.inc │ │ │ ├── pdlg.rsc │ │ │ └── pdlg.rso │ │ ├── filestat.c │ │ ├── filestat.h │ │ ├── fnt_menu.c │ │ ├── fnts.h │ │ ├── fnts.i │ │ ├── fr │ │ │ ├── fontslct.h │ │ │ ├── fontslct.inc │ │ │ ├── fontslct.rsc │ │ │ ├── fontslct.rso │ │ │ ├── pdlg.h │ │ │ ├── pdlg.inc │ │ │ ├── pdlg.rsc │ │ │ └── pdlg.rso │ │ ├── gem.i │ │ ├── list.c │ │ ├── list.h │ │ ├── listbox.c │ │ ├── listbox.h │ │ ├── listbox.i │ │ ├── mac_api.s │ │ ├── math.s │ │ ├── mt_aes.c │ │ ├── mt_aes_i.h │ │ ├── obj_tool.c │ │ ├── obj_tool.h │ │ ├── objmacro.h │ │ ├── pdlg.c │ │ ├── pdlg.h │ │ ├── pdlg.rsc │ │ ├── pdlgdrv.c │ │ ├── pdlgmgmc.c │ │ ├── pdlgqd.c │ │ ├── pdlgqd.h │ │ ├── pdlgrsc.c │ │ ├── pdlgrsc.prj │ │ ├── pdlgsub.c │ │ ├── popup.c │ │ ├── readfile.c │ │ ├── rsrcfix.c │ │ ├── shelsort.c │ │ ├── shelsort.h │ │ ├── std.s │ │ ├── vdi.s │ │ ├── vdi_bind.c │ │ ├── vdi_bind.h │ │ ├── wdialog.c │ │ ├── wdialog.h │ │ ├── wdialog.i │ │ ├── wdialog.prj │ │ ├── wdintrfc.s │ │ ├── wdlginit.c │ │ ├── wdlgmain.h │ │ ├── wdstart.s │ │ ├── wdtos.s │ │ └── xfrmpop.c │ └── xmen_mgr │ │ └── mtsmn.c ├── allg │ ├── read_inf.s │ └── std.s ├── bios │ ├── README.TXT │ ├── atari │ │ ├── boot │ │ │ ├── all.prj │ │ │ ├── ct60.txt │ │ │ ├── ct60new.prj │ │ │ ├── ct60new.s │ │ │ ├── magclogo.inc │ │ │ ├── magcrom5.prj │ │ │ ├── magcrom5.s │ │ │ ├── magcrom5.txt │ │ │ ├── magcrom6.prj │ │ │ ├── magcrom6.s │ │ │ ├── magcrom6.txt │ │ │ ├── magic_p.prj │ │ │ ├── magic_p.s │ │ │ ├── magxbo32.prj │ │ │ ├── magxbo32.s │ │ │ ├── magxboot.prj │ │ │ ├── magxboot.s │ │ │ ├── magxct60.prj │ │ │ ├── magxct60.s │ │ │ ├── magxmila.prj │ │ │ ├── magxmila.s │ │ │ ├── mmutable.inc │ │ │ ├── romcrc.inc │ │ │ └── smllfont.inc │ │ ├── ide.s │ │ ├── magibios.s │ │ ├── modules │ │ │ ├── clock.s │ │ │ ├── cook.s │ │ │ ├── drive.s │ │ │ ├── dsp.s │ │ │ ├── fdc.s │ │ │ ├── fpsp.sa │ │ │ ├── fpudetec.inc │ │ │ ├── had_cook.s │ │ │ ├── had_exc.s │ │ │ ├── had_fdc.s │ │ │ ├── had_ivid.s │ │ │ ├── had_scsi.s │ │ │ ├── ide.c │ │ │ ├── ide.h │ │ │ ├── isp.sa │ │ │ ├── ivid.s │ │ │ ├── keyb.s │ │ │ ├── rav_cook.s │ │ │ ├── rav_ivid.s │ │ │ ├── rav_keyb.s │ │ │ ├── scsi.s │ │ │ ├── serial.s │ │ │ ├── unim_int.s │ │ │ └── video.s │ │ └── xfs95 │ │ │ ├── xfs95ini.s │ │ │ └── xfs95ini.txt │ ├── doc │ │ └── bios_auf.txt │ ├── keytable │ │ ├── README.TXT │ │ ├── cz_iso.inc │ │ ├── cz_iso.sys │ │ ├── cz_kam.inc │ │ ├── cz_kam.sys │ │ ├── de-pc.inc │ │ ├── de-pc.sys │ │ ├── de.inc │ │ ├── de.sys │ │ ├── dk.inc │ │ ├── dk.sys │ │ ├── es.inc │ │ ├── es.sys │ │ ├── fi.inc │ │ ├── fi.sys │ │ ├── fr-mgpc.inc │ │ ├── fr-pc.inc │ │ ├── fr-pc.sys │ │ ├── fr.inc │ │ ├── fr.sys │ │ ├── it.inc │ │ ├── it.sys │ │ ├── mktbl.c │ │ ├── mktbl.h │ │ ├── mktbl.prj │ │ ├── no.inc │ │ ├── no.sys │ │ ├── se.inc │ │ ├── se.sys │ │ ├── sf.inc │ │ ├── sf.sys │ │ ├── sg.inc │ │ ├── sg.sys │ │ ├── sv.sys │ │ ├── tr.inc │ │ ├── tr.sys │ │ ├── uk.inc │ │ ├── uk.sys │ │ ├── unitable.c │ │ ├── unitable.h │ │ ├── us-mgpc.inc │ │ ├── us.inc │ │ └── us.sys │ ├── magcmacx │ │ ├── drive.s │ │ ├── macxbios.s │ │ ├── macxfs.s │ │ ├── macxker.inc │ │ └── priv_exc.s │ ├── magiclin │ │ ├── drive.s │ │ ├── hostxfs.s │ │ ├── macxbios.s │ │ ├── macxker.inc │ │ └── priv_exc.s │ ├── magicmac │ │ ├── doc │ │ │ ├── mac.txt │ │ │ ├── mac_vdi.s │ │ │ ├── macxfs.c │ │ │ └── macxfs.h │ │ ├── mac_bios.s │ │ ├── mac_ker.inc │ │ ├── macxfs.s │ │ └── priv_exc.s │ └── milan │ │ ├── boot │ │ ├── magxboot.prg │ │ └── magxboot.s │ │ ├── doc │ │ ├── interrpt.txt │ │ ├── magic.txt │ │ ├── memmap.cwg │ │ ├── milan_hw.txt │ │ ├── milaninc.txt │ │ └── mmilan.txt │ │ ├── milan.s │ │ └── milnbios.s ├── build │ ├── Makefile │ ├── README.TXT │ ├── atari.prj │ ├── de │ │ └── README.TXT │ ├── diff.txt │ ├── en │ │ └── README.TXT │ ├── findrsc.c │ ├── fr │ │ └── README.TXT │ ├── hades.prj │ ├── magcmacx.prj │ ├── magiclin.prj │ ├── magicmac.prj │ ├── magicpc.prj │ ├── magicvdi.prj │ ├── magx_en.prj │ ├── magx_fr.prj │ ├── memory.txt │ ├── milan.prj │ ├── mkrom.sh │ ├── pdlgde.slb │ ├── pdlgfr.slb │ ├── pdlgus.slb │ ├── raven.prj │ ├── rom_de.prj │ ├── rom_en.prj │ ├── rom_fr.prj │ └── wdialog.txt ├── doc │ └── c_bind.h ├── dos │ ├── README.TXT │ ├── dev_bios.s │ ├── dev_mem.s │ ├── dev_pipe.s │ ├── dfs_fat.s │ ├── dfs_u.s │ ├── magicdos.inc │ ├── magidos.s │ ├── malloc.s │ ├── vfat.c │ ├── vfat_s.s │ └── xfs_vdos.s ├── ende.s ├── inc │ ├── auto.s │ ├── basepage.inc │ ├── bios.inc │ ├── biosmsg.inc │ ├── country.inc │ ├── debug.inc │ ├── dos.inc │ ├── errno.inc │ ├── filediv.h │ ├── hades.inc │ ├── handlkey.s │ ├── hardware.inc │ ├── ker_bind.h │ ├── kernel.inc │ ├── keytab.inc │ ├── lowmem.inc │ ├── mgx_xfs.inc │ ├── milan.inc │ ├── pd.h │ ├── pixmap.h │ ├── protobt.s │ ├── puntaes.s │ ├── raven.inc │ ├── read_ktb.s │ ├── std.h │ ├── structs.inc │ ├── version.inc │ ├── vfat_imp.h │ └── vtsys.inc ├── ser_my.s ├── umlaut.txt ├── vdi │ ├── README.TXT │ ├── attribut.s │ ├── box.s │ ├── bugs.txt │ ├── colormap.inc │ ├── control.s │ ├── disp.s │ ├── drivers.c │ ├── drivers.h │ ├── drivers │ │ ├── all.prj │ │ ├── mfa16.prj │ │ ├── mfa16.s │ │ ├── mfa2.prj │ │ ├── mfa2.s │ │ ├── mfa256.prj │ │ ├── mfa256.s │ │ ├── mfa32k.prj │ │ ├── mfa32k.s │ │ ├── mfa4.prj │ │ ├── mfa4.s │ │ ├── mfm16.prj │ │ ├── mfm16.s │ │ ├── mfm16ip.prj │ │ ├── mfm16ip.s │ │ ├── mfm16m.prj │ │ ├── mfm16m.s │ │ ├── mfm2.prj │ │ ├── mfm2.s │ │ ├── mfm256.prj │ │ ├── mfm256.s │ │ ├── mfm32k.prj │ │ ├── mfm32k.s │ │ ├── mfm4ip.prj │ │ ├── mfm4ip.s │ │ ├── off002.prj │ │ ├── off002.s │ │ ├── off004ip.prj │ │ ├── off004ip.s │ │ ├── off016ip.prj │ │ ├── off016ip.s │ │ ├── off016pk.prj │ │ ├── off016pk.s │ │ ├── off16mov.prj │ │ ├── off16mov.s │ │ ├── off256ip.prj │ │ ├── off256ip.s │ │ ├── off256pk.prj │ │ ├── off256pk.s │ │ ├── off32kfl.prj │ │ ├── off32kfl.s │ │ ├── off32kpk.prj │ │ ├── off32kpk.s │ │ ├── off65kpk.prj │ │ ├── off65kpk.s │ │ └── osd.txt │ ├── ellipse.s │ ├── escape.s │ ├── et4000 │ │ ├── all.prj │ │ ├── dumpvga.c │ │ ├── nova.inc │ │ ├── redirect.prj │ │ ├── redirect.s │ │ ├── vgainf.inc │ │ ├── xvga16.prj │ │ ├── xvga16.s │ │ ├── xvga16m.prj │ │ ├── xvga16m.s │ │ ├── xvga2.prj │ │ ├── xvga2.s │ │ ├── xvga256.prj │ │ ├── xvga256.s │ │ ├── xvga32k.prj │ │ ├── xvga32k.s │ │ ├── xvga65k.prj │ │ └── xvga65k.s │ ├── filediv.c │ ├── fonts.s │ ├── include │ │ ├── aesvars.inc │ │ ├── driver.inc │ │ ├── hardware.inc │ │ ├── linea.inc │ │ ├── mac_ker.inc │ │ ├── makechar.inc │ │ ├── memory.inc │ │ ├── meta.h │ │ ├── mxvdi.inc │ │ ├── nvdi_div.inc │ │ ├── nvdi_wk.inc │ │ ├── pixmap.inc │ │ ├── scaler.inc │ │ ├── seedfill.inc │ │ ├── tos.inc │ │ └── vdi.inc │ ├── init_res.c │ ├── init_res.h │ ├── input.s │ ├── inquire.s │ ├── line.s │ ├── linea.s │ ├── magicpc │ │ ├── all.prj │ │ ├── magicscr.prj │ │ ├── magicscr.s │ │ ├── nfpc16m.prj │ │ ├── nfpc16m.s │ │ ├── nfpc256.prj │ │ ├── nfpc256.s │ │ ├── nfpc32k.prj │ │ ├── nfpc32k.s │ │ ├── nfpc65k.prj │ │ ├── nfpc65k.s │ │ └── nvdipc.inc │ ├── marker.inc │ ├── math.s │ ├── mcx │ │ ├── all.prj │ │ ├── cxs.inc │ │ ├── ncxx16.prj │ │ ├── ncxx16.s │ │ ├── ncxx2.prj │ │ ├── ncxx2.s │ │ ├── ncxx256.prj │ │ └── ncxx256.s │ ├── memory.h │ ├── mtc │ │ ├── all.prj │ │ ├── ntc2.prj │ │ └── ntc2.s │ ├── mxvdi.h │ ├── mxvdiknl.s │ ├── nvdi_wk.h │ ├── output.s │ ├── pattern.inc │ ├── raster.s │ ├── setup.c │ ├── simulatn.s │ ├── sincos.inc │ ├── string.s │ ├── text_bmp.s │ ├── tos.s │ ├── vt52.s │ └── workout.inc ├── winframe.dem │ ├── globals.h │ ├── win_head.s │ ├── win_objs.c │ ├── win_objs.h │ ├── win_slb.c │ ├── winframe.h │ ├── winframe.hrd │ ├── winframe.prj │ ├── winframe.rsc │ └── winframe.slb └── winframe │ ├── aesctrl.s │ ├── globals.h │ ├── hide2 │ ├── WINFRAME.INF │ ├── WINFRAME.RSC │ └── WINFRAME.SLB │ ├── themes │ └── aqua │ │ ├── aqua.dat │ │ ├── backd_an.f16 │ │ ├── backd_as.f16 │ │ ├── backd_nn.f16 │ │ ├── backd_ns.f16 │ │ ├── close_an.f16 │ │ ├── close_as.f16 │ │ ├── close_nn.f16 │ │ ├── close_ns.f16 │ │ ├── fulls_an.f16 │ │ ├── fulls_as.f16 │ │ ├── fulls_nn.f16 │ │ ├── fulls_ns.f16 │ │ ├── icony_an.f16 │ │ ├── icony_as.f16 │ │ ├── icony_nn.f16 │ │ ├── icony_ns.f16 │ │ ├── info_an.f16 │ │ ├── info_nn.f16 │ │ ├── k_ho_an.f16 │ │ ├── k_ho_as.f16 │ │ ├── k_li_an.f16 │ │ ├── k_li_as.f16 │ │ ├── k_re_an.f16 │ │ ├── k_re_as.f16 │ │ ├── k_ru_an.f16 │ │ ├── k_ru_as.f16 │ │ ├── l_li_an.f16 │ │ ├── l_re_an.f16 │ │ ├── l_un_an.f16 │ │ ├── sl_h_an.f16 │ │ ├── sl_h_nn.f16 │ │ ├── sl_v_an.f16 │ │ ├── sl_v_nn.f16 │ │ ├── slh_h_an.f16 │ │ ├── slh_v_an.f16 │ │ ├── slize_an.f16 │ │ ├── titel_an.f16 │ │ └── titel_nn.f16 │ ├── win_head.s │ ├── win_objs.c │ ├── win_objs.h │ ├── win_slb.c │ ├── winframe.h │ ├── winframe.hrd │ ├── winframe.inf │ ├── winframe.prj │ └── winframe.rsc ├── lib ├── mac_api │ └── mac_api.c └── mylibs │ ├── README.TXT │ ├── gemut_mt.c │ ├── gemut_mt.h │ ├── gemutils.c │ ├── gemutils.h │ ├── ll.c │ ├── ll.h │ ├── wdialog.c │ ├── wdialog.h │ ├── windows.c │ └── windows.h ├── non-tos ├── README.TXT ├── atari-utf8-conversion │ ├── README.TXT │ ├── atari-to-utf8.sh │ ├── atari-utf8.c │ └── utf8-to-atari.sh └── fsort │ ├── fsort.c │ ├── fsort.doc │ ├── fsort.h │ ├── fsort1.c │ ├── fsort2.c │ ├── uniq.c │ ├── uniq.doc │ └── versch.c ├── pc ├── hdd │ ├── .gitattributes │ ├── auto │ │ └── foldr100.prg │ ├── autoexec.bat │ ├── bin │ │ ├── nfapi.ttp │ │ └── pcmake.ttp │ ├── config-hdd │ ├── emudesk.inf │ ├── emutos-aranym.img │ ├── gemini │ │ ├── bin │ │ │ ├── absname.ttp │ │ │ ├── banner.ttp │ │ │ ├── blitmode.ttp │ │ │ ├── case.ttp │ │ │ ├── cat.ttp │ │ │ ├── chmod.ttp │ │ │ ├── cksum.ttp │ │ │ ├── cmp.ttp │ │ │ ├── cookies.ttp │ │ │ ├── crc.ttp │ │ │ ├── date.ttp │ │ │ ├── delslash.ttp │ │ │ ├── df.ttp │ │ │ ├── drivname.ttp │ │ │ ├── du.ttp │ │ │ ├── env.ttp │ │ │ ├── errlevel.ttp │ │ │ ├── exist.ttp │ │ │ ├── file.ttp │ │ │ ├── filename.ttp │ │ │ ├── find.ttp │ │ │ ├── for.ttp │ │ │ ├── goto.ttp │ │ │ ├── grep.ttp │ │ │ ├── initgoto.ttp │ │ │ ├── less.ttp │ │ │ ├── line.ttp │ │ │ ├── make.ttp │ │ │ ├── more.ttp │ │ │ ├── nr.ttp │ │ │ ├── od.ttp │ │ │ ├── one-of.ttp │ │ │ ├── pathname.ttp │ │ │ ├── printenv.ttp │ │ │ ├── read.ttp │ │ │ ├── runopts.ttp │ │ │ ├── sh.mup │ │ │ ├── sleep.ttp │ │ │ ├── strings.ttp │ │ │ ├── strip.ttp │ │ │ ├── sum.ttp │ │ │ ├── tee.ttp │ │ │ ├── time.ttp │ │ │ ├── touch.ttp │ │ │ ├── uname.ttp │ │ │ └── what.ttp │ │ ├── etc │ │ │ ├── cookies │ │ │ └── magic │ │ ├── gemini.app │ │ ├── gemini.bdf │ │ ├── gemini.inf │ │ ├── gemini.msg │ │ ├── gemini.rsc │ │ ├── gemini.t2w │ │ ├── geminic.rs │ │ ├── geminiic.rsc │ │ ├── gin │ │ │ └── gemini.gin │ │ ├── mupfel.app │ │ ├── mupfel.hst │ │ ├── mupfel.msg │ │ ├── mupfel.tos │ │ ├── mupfel.ttp │ │ ├── profile │ │ └── vt52.inf │ ├── mcmd.tos │ ├── mkhdd.sh │ └── newdesk.inf ├── include │ ├── aes.h │ ├── ahcc │ │ ├── math.h │ │ └── mathinl.h │ ├── ahcccfrt.h │ ├── ahccrt.h │ ├── ahcm.h │ ├── alloca.h │ ├── ar.h │ ├── argp.h │ ├── argz.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── asm │ │ └── unistd.h │ ├── assert.h │ ├── atarierr.h │ ├── basepage.h │ ├── bits │ │ ├── byteswap.h │ │ ├── cmathcalls.h │ │ ├── confname.h │ │ ├── cpu-set.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── endian.h │ │ ├── environm.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── fenvinline.h │ │ ├── fpu_control.h │ │ ├── huge_val.h │ │ ├── in.h │ │ ├── inf.h │ │ ├── ipc.h │ │ ├── ipctypes.h │ │ ├── libc-lock.h │ │ ├── locale.h │ │ ├── locallim.h │ │ ├── m68k │ │ │ ├── fenv.h │ │ │ └── fpu_control.h │ │ ├── math-68881.h │ │ ├── math-cffpu.h │ │ ├── mathcall.h │ │ ├── mathdef.h │ │ ├── mint_stdio.h │ │ ├── msq.h │ │ ├── nan.h │ │ ├── poll.h │ │ ├── posix1lm.h │ │ ├── posix2lm.h │ │ ├── posixopt.h │ │ ├── printf-ldbl.h │ │ ├── pthreadt.h │ │ ├── sched.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── setjmp2.h │ │ ├── shm.h │ │ ├── sigaction.h │ │ ├── sigcontext.h │ │ ├── siginfo.h │ │ ├── signum.h │ │ ├── sigset.h │ │ ├── sigstack.h │ │ ├── sigthread.h │ │ ├── sockaddr.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── stdio.h │ │ ├── stdiolim.h │ │ ├── string.h │ │ ├── string2.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── types.h │ │ ├── types │ │ │ ├── sigatomt.h │ │ │ ├── sigset_t.h │ │ │ ├── stack_t.h │ │ │ └── struct_sigstack.h │ │ ├── uintn-id.h │ │ ├── unistd.h │ │ ├── utsname.h │ │ ├── wchar.h │ │ ├── wordsize.h │ │ ├── x86 │ │ │ ├── fenv.h │ │ │ └── fpu_control.h │ │ └── xopenlim.h │ ├── byteswap.h │ ├── compiler.h │ ├── complex.h │ ├── crypt.h │ ├── ctype.h │ ├── device.h │ ├── dirent.h │ ├── dlfcn.h │ ├── endian.h │ ├── err.h │ ├── errno.h │ ├── error.h │ ├── ext.h │ ├── falcon.h │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── float.h │ ├── fnmatch.h │ ├── fpu_control.h │ ├── ftw.h │ ├── gconv.h │ ├── gem.h │ ├── gemx.h │ ├── geneva.h │ ├── getopt.h │ ├── glob.h │ ├── gnu-out.h │ ├── grect.h │ ├── grp.h │ ├── iconv.h │ ├── ieee754.h │ ├── inttypes.h │ ├── iovec.h │ ├── langinfo.h │ ├── lastlog.h │ ├── libgen.h │ ├── limits.h │ ├── linea.h │ ├── locale.h │ ├── macros.h │ ├── malloc.h │ ├── math.h │ ├── mcheck.h │ ├── memory.h │ ├── metados.h │ ├── minimal.h │ ├── mint │ │ ├── arch │ │ │ ├── nf_ops.h │ │ │ ├── ptrace.h │ │ │ └── register.h │ │ ├── basepage.h │ │ ├── cdromio.h │ │ ├── cookie.h │ │ ├── dcntl.h │ │ ├── errno.h │ │ ├── falcon.h │ │ ├── iflink.h │ │ ├── linea.h │ │ ├── metados.h │ │ ├── mintbind.h │ │ ├── mouse.h │ │ ├── net.h │ │ ├── nfs.h │ │ ├── osbind.h │ │ ├── ostruct.h │ │ ├── ptrace.h │ │ ├── random.h │ │ ├── screen.h │ │ ├── signal.h │ │ ├── slb.h │ │ ├── ssystem.h │ │ ├── sysbind.h │ │ ├── sysctl.h │ │ ├── sysvars.h │ │ ├── trap1.h │ │ ├── trap13.h │ │ ├── trap14.h │ │ ├── version.h │ │ └── xbra.h │ ├── mintbind.h │ ├── mntent.h │ ├── mt_aes.h │ ├── mt_gem.h │ ├── mt_gemx.h │ ├── net │ │ ├── bpf.h │ │ ├── ethernet.h │ │ ├── ethertypes.h │ │ ├── if.h │ │ ├── if_arp.h │ │ ├── if_ether.h │ │ ├── if_ppp.h │ │ ├── if_sl.h │ │ ├── route.h │ │ └── slcompress.h │ ├── netdb.h │ ├── netinet │ │ ├── if_ether.h │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ ├── ip_icmp.h │ │ ├── ip_var.h │ │ ├── tcp.h │ │ ├── tcpip.h │ │ ├── udp.h │ │ └── udp_var.h │ ├── nfs │ │ └── nfs.h │ ├── nkcc.h │ ├── nl_types.h │ ├── obstack.h │ ├── osbind.h │ ├── ostruct.h │ ├── pamsnet.h │ ├── paths.h │ ├── poll.h │ ├── portab.h │ ├── portaes.h │ ├── portvdi.h │ ├── printf.h │ ├── process.h │ ├── protocols │ │ ├── routed.h │ │ ├── rwhod.h │ │ ├── talkd.h │ │ └── timed.h │ ├── pthread.h │ ├── pty.h │ ├── purec │ │ ├── assert.h │ │ ├── errno.h │ │ ├── float.h │ │ ├── mathinl.h │ │ ├── signal.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ └── varargs.h │ ├── pwd.h │ ├── re_comp.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── resource.h │ ├── rpc │ │ ├── auth.h │ │ ├── auth_des.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── des_crypt.h │ │ ├── key_prot.h │ │ ├── netdb.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── rpc.h │ │ ├── rpc_des.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── rpcsvc │ │ └── bootparam.h │ ├── rtent.h │ ├── sched.h │ ├── scsidrv │ │ ├── scsi.h │ │ ├── scsi3.h │ │ ├── scsicd.h │ │ ├── scsidefs.h │ │ ├── scsidisk.h │ │ └── scsiio.h │ ├── search.h │ ├── semaphore.h │ ├── setjmp.h │ ├── sgtty.h │ ├── shadow.h │ ├── signal.h │ ├── sockios.h │ ├── spawn.h │ ├── st-out.h │ ├── stackinfo.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── support.h │ ├── sys │ │ ├── cdefs.h │ │ ├── dir.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── fstyp.h │ │ ├── gmon.h │ │ ├── gmon_out.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── ptrace.h │ │ ├── queue.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── siginfo.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── syscall.h │ │ ├── sysctl.h │ │ ├── syslog.h │ │ ├── sysmacro.h │ │ ├── systeminfo.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── times.h │ │ ├── ttychars.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── ucontext.h │ │ ├── uio.h │ │ ├── ulimit.h │ │ ├── un.h │ │ ├── utsname.h │ │ ├── varargs.h │ │ ├── vfs.h │ │ └── wait.h │ ├── sysexits.h │ ├── syslog.h │ ├── tar.h │ ├── termio.h │ ├── termios.h │ ├── time.h │ ├── tos.h │ ├── ucontext.h │ ├── ulimit.h │ ├── unistd.h │ ├── utime.h │ ├── utmp.h │ ├── utmpbits.h │ ├── utmpx.h │ ├── values.h │ ├── varargs.h │ ├── vdi.h │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ ├── wdlgedit.h │ ├── wdlgevnt.h │ ├── wdlgfslx.h │ ├── wdlglbox.h │ ├── wdlgpdlg.h │ ├── wdlgwdlg.h │ ├── wordexp.h │ ├── xlocale.h │ └── xrsrc.h ├── lib │ ├── cauto.o │ ├── cauto.s │ ├── cstart0.o │ ├── cstart0.s │ ├── cstartn.o │ ├── cstartn.s │ ├── cstartp.o │ ├── cstartp.s │ ├── cstartv.o │ ├── cstartv.s │ ├── cstartx.o │ ├── cstartx.s │ ├── pcfltlib.lib │ └── pcstdlib.lib ├── pcgemlib │ ├── aesctrl.s │ ├── appl.s │ ├── autil.c │ ├── bezier.c │ ├── edit.s │ ├── evmult.c │ ├── evnt.s │ ├── evntmult.s │ ├── fnts.s │ ├── form.s │ ├── fsel.s │ ├── fslx.s │ ├── gem.i │ ├── gem3.c │ ├── gem_aesp.h │ ├── gem_vdip.h │ ├── gemparb.s │ ├── graf.s │ ├── lbox.s │ ├── linea.c │ ├── menu.s │ ├── mtaes.c │ ├── mtappl.c │ ├── mtedit.c │ ├── mtgraf.c │ ├── mtrsrc.c │ ├── mtsys.c │ ├── objc.s │ ├── pcgemlib.prj │ ├── pclnalib.prj │ ├── pdlg.s │ ├── rsrc.s │ ├── scrp.s │ ├── shel.s │ ├── speedo.c │ ├── vattrbut.s │ ├── vclip.s │ ├── vcontrol.s │ ├── vdictrl.s │ ├── vdifsm.s │ ├── vdiparb.s │ ├── vescape.s │ ├── vextname.c │ ├── vinput.s │ ├── vinquire.s │ ├── vopnprn.c │ ├── voutput.s │ ├── vraster.s │ ├── vutil.c │ ├── wdlg.s │ ├── wind.s │ ├── winframe.h │ └── xgrf.s └── pctoslib │ ├── assert.c │ ├── bios.s │ ├── cookie.c │ ├── cookie.h │ ├── gemdos.s │ ├── mint.s │ ├── nf_debug.c │ ├── nf_exec.c │ ├── nf_exit.c │ ├── nf_name.c │ ├── nf_ops.c │ ├── nf_shutd.c │ ├── nf_stder.c │ ├── nf_vers.c │ ├── pctoslib.prj │ ├── ssystem.c │ └── xbios.s ├── test ├── README.TXT ├── aestest │ ├── apgetinf.c │ ├── apgetinf.prj │ ├── applfind.c │ ├── applfind.prj │ ├── applsrch.c │ ├── applsrch.prj │ ├── colricon.c │ ├── colricon.h │ ├── colricon.prj │ ├── colricon.rsc │ ├── colricon.rso │ ├── evnt_msg.c │ ├── evnt_msg.prj │ ├── evnt_mul.c │ ├── evnt_mul.prj │ ├── graf_hnd.c │ ├── graf_hnd.prj │ ├── inf_aes.c │ ├── inf_aes.prj │ ├── msg_ovl.c │ ├── msg_ovl.prj │ ├── rsc_load.c │ ├── rsc_load.prj │ ├── rtest.hrd │ ├── rtest.rsc │ ├── rtest2.hrd │ ├── rtest2.rsc │ ├── scrp_rea.c │ ├── scrp_rea.prj │ ├── shel_fnd.c │ ├── shel_fnd.prj │ ├── shel_sht.c │ ├── shel_sht.prj │ ├── shel_wrm.c │ ├── shel_wrm.prj │ ├── shel_wrx.c │ ├── shel_wrx.prj │ ├── testpop │ │ ├── test.h │ │ ├── test.hrd │ │ ├── test.rsc │ │ ├── testpop.c │ │ └── testpop.prj │ ├── tfail.c │ ├── tfail.prj │ ├── wind_get.c │ ├── wind_get.prj │ ├── windcre2.c │ ├── windcre2.prj │ ├── windcre3.c │ ├── windcre3.prj │ ├── windcre4.c │ ├── windcre4.prj │ ├── windcrea.c │ ├── windcrea.prj │ ├── wu_term.c │ └── wu_term.prj ├── all.prj ├── biostest │ ├── bconout.c │ ├── bconout.prj │ ├── flptiout.c │ ├── flptiout.prj │ ├── getbpb.c │ └── getbpb.prj ├── dostest │ ├── arg.c │ ├── arg.prj │ ├── arg2srcp.c │ ├── arg2srcp.prj │ ├── arg_fe.c │ ├── arg_fe.prj │ ├── bipipe.c │ ├── bipipe.prj │ ├── cconin.c │ ├── cconin.prj │ ├── cconrs.c │ ├── cconrs.prj │ ├── cnecin.c │ ├── cnecin.prj │ ├── cprnos.c │ ├── cprnos.prj │ ├── create.c │ ├── create.prj │ ├── crfiles.c │ ├── crfiles.prj │ ├── dfree.c │ ├── dfree.prj │ ├── dgetpath.c │ ├── dgetpath.prj │ ├── dlock.c │ ├── dlock.prj │ ├── dopendir.c │ ├── dopendir.prj │ ├── dpathcnf.c │ ├── dpathcnf.prj │ ├── dreaddir.c │ ├── dreaddir.prj │ ├── dupbug.c │ ├── dupbug.prj │ ├── dxrddir.c │ ├── dxrddir.prj │ ├── f_dupfd.c │ ├── f_dupfd.prj │ ├── fattrib.c │ ├── fattrib.prj │ ├── fcreate.c │ ├── fcreate.prj │ ├── fforce.c │ ├── fforce.prj │ ├── fforce2.c │ ├── fforce2.prj │ ├── fforce3.c │ ├── fforce3.prj │ ├── filldir.c │ ├── filldir.prj │ ├── finstat.c │ ├── finstat.prj │ ├── fopen.c │ ├── fopen.prj │ ├── fopen2.c │ ├── fopen2.prj │ ├── foutstat.c │ ├── foutstat.prj │ ├── fpipe.c │ ├── fpipe.prj │ ├── fread.c │ ├── fread.prj │ ├── freadlnk.c │ ├── freadlnk.prj │ ├── frename.c │ ├── frename.prj │ ├── fselect.c │ ├── fselect.prj │ ├── fsfirst.c │ ├── fsfirst.prj │ ├── fsymlink.c │ ├── fsymlink.prj │ ├── fwrite.c │ ├── fwrite.prj │ ├── fwrite_d.c │ ├── fwrite_d.prj │ ├── fxattr.c │ ├── fxattr.prj │ ├── maddalt.c │ ├── maddalt.prj │ ├── makefull.c │ ├── makefull.prj │ ├── ms_stat.c │ ├── ms_stat.prj │ ├── out.bat │ ├── out.c │ ├── out.prj │ ├── pause.c │ ├── pause.prj │ ├── pexec.c │ ├── pexec.prj │ ├── pexec104.c │ ├── pexec104.prj │ ├── pexec200.c │ ├── pexec200.prj │ ├── pfork.c │ ├── pfork.prj │ ├── pipe_srv.c │ ├── pipe_srv.prj │ ├── pipetest.c │ ├── pipetest.prj │ ├── pipetst2.c │ ├── pipetst2.prj │ ├── pkill.c │ ├── pkill.prj │ ├── ploadinf.c │ ├── ploadinf.prj │ ├── psemapho.c │ ├── psemapho.prj │ ├── psetlimi.c │ ├── psetlimi.prj │ ├── psignal.c │ ├── psignal.prj │ ├── psignal2.c │ ├── psignal2.prj │ ├── psigret2.c │ ├── psigret2.prj │ ├── psigretu.c │ ├── psigretu.prj │ ├── pumask.c │ ├── pumask.prj │ ├── pusrval.c │ ├── pusrval.prj │ ├── pvfork.c │ ├── pvfork.prj │ ├── pwaitpid.c │ ├── pwaitpid.prj │ ├── rmslink.c │ ├── rmslink.prj │ ├── ser_out.c │ ├── ser_out.prj │ ├── shmset.c │ ├── shmset.prj │ ├── srealloc.c │ ├── srealloc.prj │ ├── talarm.c │ ├── talarm.prj │ ├── tst_crit.c │ ├── tst_crit.prj │ ├── tst_ddel.c │ ├── tst_ddel.prj │ ├── tst_dev.c │ ├── tst_dev.prj │ ├── xfs_name.c │ └── xfs_name.prj ├── regexpr.c ├── regexpr.prj ├── test_68k │ ├── ass68k.h │ ├── ass68k.s │ ├── data.bin │ ├── test_68k.c │ └── test_68k.prj ├── tgoetsch.c ├── tgoetsch.prj ├── timeslce.c ├── timeslce.prj ├── vditest │ ├── lines │ │ ├── lines.c │ │ └── lines.prj │ ├── lines2 │ │ ├── lines2.c │ │ └── lines2.prj │ ├── nvdibug │ │ ├── recfl.c │ │ └── recfl.prj │ ├── pixel │ │ ├── pixel.c │ │ └── pixel.prj │ ├── polygon │ │ ├── README.TXT │ │ ├── polygon.c │ │ └── polygon.prj │ ├── raster │ │ ├── raster.c │ │ └── raster.prj │ └── recfl │ │ ├── pvditst.c │ │ ├── pvditst.in │ │ └── pvditst.prj └── vt52.inf └── tools ├── addmem ├── README.TXT ├── addmem.prj └── addmem.s ├── aes_lupe ├── aes_lupe.app ├── aes_lupe.img └── aes_lupe.txt ├── all.prj ├── clock ├── .gitattributes ├── clock.app ├── clock.gen ├── clock.inf ├── clock.man ├── clock.mup ├── clockcol.cpx ├── maus.ruf └── readme.cat ├── cmdline ├── README.TXT ├── cmdline.c └── cmdline.prj ├── crashdmp ├── README.TXT ├── crashdmp.c └── crashdmp.prj ├── dev_ser ├── README.TXT ├── dev_ser.c ├── dev_ser.prj └── dev_sers.s ├── dis ├── README.TXT ├── dec.c ├── dis.c ├── dis1.c ├── dis1.prj ├── dis2.c ├── dis2.prj ├── disass.c ├── disass.doc ├── disass.txt ├── shelsort.c └── tst │ ├── t.asm │ ├── t.bug │ ├── t.prg │ ├── t.s │ ├── u.asm │ ├── u.prg │ ├── u.s │ ├── u.sym │ ├── x.dup │ ├── x.prg │ └── x.s ├── dos_mon ├── README.TXT ├── dos_mon.prj └── dos_mon.s ├── dump ├── README.TXT ├── dump.c └── dump.prj ├── exe2bin ├── README.TXT ├── exe2bin.c └── exe2bin.prj ├── fast_sfx ├── README.TXT ├── fast_sfx.c └── fast_sfx.prj ├── fc ├── README.TXT ├── fc.c └── fc.prj ├── flock_ok ├── flock_ok.eng ├── flock_ok.prg └── flock_ok.txt ├── fputest ├── t.prg └── t.s ├── hardcopy ├── hardcopy.prj └── hardcopy.s ├── krypt ├── README.TXT ├── krypt.c └── krypt.prj ├── mac2st ├── README.TXT ├── mac2st.c └── mac2st.prj ├── mac_menu ├── README.TXT ├── mac_menu.h ├── mac_menu.rsc ├── mac_menu.rso ├── men_demo.c └── men_demo.prj ├── magxkern ├── README.TXT ├── magxkern.c └── magxkern.prj ├── memexamn ├── README.TXT ├── memexamn.c └── memexamn.prj ├── misc_tst ├── README.TXT ├── adr.prj ├── adr.s ├── all.prj ├── bomb.prj ├── bomb.s ├── ca_off.prj ├── ca_off.s ├── ca_offpd.prj ├── ca_offpd.s ├── ca_on.prj ├── ca_on.s ├── ca_show.prj ├── ca_show.s ├── il0008.prj ├── il0008.s ├── il4afc.prj ├── il4afc.s ├── ilf000.prj ├── ilf000.s ├── memde.prj ├── memde.s ├── nofast.prj ├── nofast.s ├── priv_rte.prj ├── priv_rte.s ├── priv_sr.prj ├── priv_sr.s ├── trap7.prj ├── trap7.s ├── tst.prj ├── tst.s ├── vt52test.c ├── vt52test.prj ├── x.prj └── x.s ├── mmxtest ├── README.TXT ├── mmx_xcmd.h ├── xcmd.c └── xcmd.prj ├── navigate ├── README.TXT ├── nav_demo.c └── nav_demo.prj ├── showfree ├── README.TXT ├── showfree.c └── showfree.prj ├── slb_demo ├── README.TXT ├── libhead.s ├── ph_bit3.c ├── ph_bit3.prj ├── slb_demo.c ├── slb_demo.prj ├── slc_demo.c └── slc_demo.prj ├── split ├── README.TXT ├── split.c └── split.prj └── unknown ├── README.TXT ├── qs.c ├── subst.c └── z.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/.gitattributes -------------------------------------------------------------------------------- /.scripts/autobld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/autobld.sh -------------------------------------------------------------------------------- /.scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/build.sh -------------------------------------------------------------------------------- /.scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/deploy.sh -------------------------------------------------------------------------------- /.scripts/mkapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/mkapp.sh -------------------------------------------------------------------------------- /.scripts/mkbindist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/mkbindist.sh -------------------------------------------------------------------------------- /.scripts/mklinuxdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/mklinuxdist.sh -------------------------------------------------------------------------------- /.scripts/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.scripts/setup_env.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/.gitattributes -------------------------------------------------------------------------------- /.travis/autobld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/autobld.sh -------------------------------------------------------------------------------- /.travis/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/build.sh -------------------------------------------------------------------------------- /.travis/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/deploy.sh -------------------------------------------------------------------------------- /.travis/mkapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/mkapp.sh -------------------------------------------------------------------------------- /.travis/mkbindist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/mkbindist.sh -------------------------------------------------------------------------------- /.travis/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/.travis/setup_env.sh -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/BUILDING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/Makefile.common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/README.md -------------------------------------------------------------------------------- /apps/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/all.prj -------------------------------------------------------------------------------- /apps/applicat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/Makefile -------------------------------------------------------------------------------- /apps/applicat/appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/appl.h -------------------------------------------------------------------------------- /apps/applicat/ico.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/ico.txt -------------------------------------------------------------------------------- /apps/applicat/iconsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/iconsel.c -------------------------------------------------------------------------------- /apps/applicat/iconsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/iconsel.h -------------------------------------------------------------------------------- /apps/applicat/inf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/inf.c -------------------------------------------------------------------------------- /apps/applicat/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/windows.c -------------------------------------------------------------------------------- /apps/applicat/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/applicat/windows.h -------------------------------------------------------------------------------- /apps/appline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/appline/Makefile -------------------------------------------------------------------------------- /apps/appline/appline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/appline/appline.c -------------------------------------------------------------------------------- /apps/appline/popup.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/appline/popup.img -------------------------------------------------------------------------------- /apps/appline/startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/appline/startup.s -------------------------------------------------------------------------------- /apps/chgres/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/Makefile -------------------------------------------------------------------------------- /apps/chgres/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/README.TXT -------------------------------------------------------------------------------- /apps/chgres/chgres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/chgres.c -------------------------------------------------------------------------------- /apps/chgres/chgres.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/chgres.prj -------------------------------------------------------------------------------- /apps/chgres/chgres.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/chgres.txt -------------------------------------------------------------------------------- /apps/chgres/de/chgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/de/chgres.h -------------------------------------------------------------------------------- /apps/chgres/en/chgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/en/chgres.h -------------------------------------------------------------------------------- /apps/chgres/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/extern.h -------------------------------------------------------------------------------- /apps/chgres/fr/chgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/fr/chgres.h -------------------------------------------------------------------------------- /apps/chgres/inf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/inf.c -------------------------------------------------------------------------------- /apps/chgres/popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/popup.c -------------------------------------------------------------------------------- /apps/chgres/vgainf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/chgres/vgainf.h -------------------------------------------------------------------------------- /apps/cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/Makefile -------------------------------------------------------------------------------- /apps/cmd/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/README.TXT -------------------------------------------------------------------------------- /apps/cmd/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/all.prj -------------------------------------------------------------------------------- /apps/cmd/autoexec.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/autoexec.bat -------------------------------------------------------------------------------- /apps/cmd/cmd.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/cmd.doc -------------------------------------------------------------------------------- /apps/cmd/cmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/cmd.s -------------------------------------------------------------------------------- /apps/cmd/cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/cmd.txt -------------------------------------------------------------------------------- /apps/cmd/kcmd.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/kcmd.prj -------------------------------------------------------------------------------- /apps/cmd/kcmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/kcmd.s -------------------------------------------------------------------------------- /apps/cmd/mcmd.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/mcmd.prj -------------------------------------------------------------------------------- /apps/cmd/mcmd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cmd/mcmd.s -------------------------------------------------------------------------------- /apps/cpx/.gitignore: -------------------------------------------------------------------------------- 1 | *.cp 2 | *.cpx 3 | -------------------------------------------------------------------------------- /apps/cpx/aesctrl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/aesctrl.s -------------------------------------------------------------------------------- /apps/cpx/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/all.prj -------------------------------------------------------------------------------- /apps/cpx/cpxdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/cpxdata.h -------------------------------------------------------------------------------- /apps/cpx/cpxhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/cpxhead.h -------------------------------------------------------------------------------- /apps/cpx/cpxstart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/cpxstart.s -------------------------------------------------------------------------------- /apps/cpx/magxconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.c -------------------------------------------------------------------------------- /apps/cpx/magxconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.h -------------------------------------------------------------------------------- /apps/cpx/magxconf.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.hdr -------------------------------------------------------------------------------- /apps/cpx/magxconf.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.prj -------------------------------------------------------------------------------- /apps/cpx/magxconf.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.rsc -------------------------------------------------------------------------------- /apps/cpx/magxconf.rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.rsh -------------------------------------------------------------------------------- /apps/cpx/magxconf.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/magxconf.rso -------------------------------------------------------------------------------- /apps/cpx/mt_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/mt_aes.c -------------------------------------------------------------------------------- /apps/cpx/orig/cpxdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/orig/cpxdata.h -------------------------------------------------------------------------------- /apps/cpx/orig/cpxhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/orig/cpxhead.h -------------------------------------------------------------------------------- /apps/cpx/tslice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.c -------------------------------------------------------------------------------- /apps/cpx/tslice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.h -------------------------------------------------------------------------------- /apps/cpx/tslice.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.hdr -------------------------------------------------------------------------------- /apps/cpx/tslice.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.prj -------------------------------------------------------------------------------- /apps/cpx/tslice.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.rsc -------------------------------------------------------------------------------- /apps/cpx/tslice.rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.rsh -------------------------------------------------------------------------------- /apps/cpx/tslice.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/cpx/tslice.rso -------------------------------------------------------------------------------- /apps/flp_par/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/flp_par/README.TXT -------------------------------------------------------------------------------- /apps/flp_par/flp_par0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/flp_par/flp_par0.c -------------------------------------------------------------------------------- /apps/flp_par/flp_par1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/flp_par/flp_par1.c -------------------------------------------------------------------------------- /apps/instmagc/instmagx.inf: -------------------------------------------------------------------------------- 1 | 188160918 2 | Andreas Kromke 3 | Aubryweg 11 4 | C 5 | -------------------------------------------------------------------------------- /apps/instmagc/magx.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/instmagc/magx.inf -------------------------------------------------------------------------------- /apps/instmagc/rawinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/instmagc/rawinst.c -------------------------------------------------------------------------------- /apps/instmagc/xcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/instmagc/xcopy.c -------------------------------------------------------------------------------- /apps/instmagc/xcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/instmagc/xcopy.h -------------------------------------------------------------------------------- /apps/magiccfg/bgh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/bgh.c -------------------------------------------------------------------------------- /apps/magiccfg/bgh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/bgh.h -------------------------------------------------------------------------------- /apps/magiccfg/bubble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/bubble.h -------------------------------------------------------------------------------- /apps/magiccfg/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/defs.h -------------------------------------------------------------------------------- /apps/magiccfg/dhst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/dhst.h -------------------------------------------------------------------------------- /apps/magiccfg/diallib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/diallib.h -------------------------------------------------------------------------------- /apps/magiccfg/test.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/test.inf -------------------------------------------------------------------------------- /apps/magiccfg/to_do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magiccfg/to_do.txt -------------------------------------------------------------------------------- /apps/magxdesk.4/allg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/allg.c -------------------------------------------------------------------------------- /apps/magxdesk.4/dmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/dmenu.c -------------------------------------------------------------------------------- /apps/magxdesk.4/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/files.c -------------------------------------------------------------------------------- /apps/magxdesk.4/fr/magxdesl.dfn: -------------------------------------------------------------------------------- 1 | TREE1 -------------------------------------------------------------------------------- /apps/magxdesk.4/k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/k.h -------------------------------------------------------------------------------- /apps/magxdesk.4/klick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/klick.c -------------------------------------------------------------------------------- /apps/magxdesk.4/magxdesl.dfn: -------------------------------------------------------------------------------- 1 | TREE1 -------------------------------------------------------------------------------- /apps/magxdesk.4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/main.c -------------------------------------------------------------------------------- /apps/magxdesk.4/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.4/spec.c -------------------------------------------------------------------------------- /apps/magxdesk.4/us/magxdesl.dfn: -------------------------------------------------------------------------------- 1 | TREE1 -------------------------------------------------------------------------------- /apps/magxdesk.5/allg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/allg.c -------------------------------------------------------------------------------- /apps/magxdesk.5/dmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/dmenu.c -------------------------------------------------------------------------------- /apps/magxdesk.5/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/files.c -------------------------------------------------------------------------------- /apps/magxdesk.5/k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/k.h -------------------------------------------------------------------------------- /apps/magxdesk.5/klick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/klick.c -------------------------------------------------------------------------------- /apps/magxdesk.5/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/main.c -------------------------------------------------------------------------------- /apps/magxdesk.5/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/magxdesk.5/spec.c -------------------------------------------------------------------------------- /apps/matrix/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/README.TXT -------------------------------------------------------------------------------- /apps/matrix/arith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/arith.c -------------------------------------------------------------------------------- /apps/matrix/datei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/datei.c -------------------------------------------------------------------------------- /apps/matrix/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/edit.c -------------------------------------------------------------------------------- /apps/matrix/glsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/glsystem.c -------------------------------------------------------------------------------- /apps/matrix/klick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/klick.c -------------------------------------------------------------------------------- /apps/matrix/m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/m.c -------------------------------------------------------------------------------- /apps/matrix/m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/m.h -------------------------------------------------------------------------------- /apps/matrix/matrix.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.doc -------------------------------------------------------------------------------- /apps/matrix/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.h -------------------------------------------------------------------------------- /apps/matrix/matrix.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.prj -------------------------------------------------------------------------------- /apps/matrix/matrix.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.rsc -------------------------------------------------------------------------------- /apps/matrix/matrix.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.rso -------------------------------------------------------------------------------- /apps/matrix/matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/matrix.txt -------------------------------------------------------------------------------- /apps/matrix/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/menus.c -------------------------------------------------------------------------------- /apps/matrix/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/msg.c -------------------------------------------------------------------------------- /apps/matrix/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/matrix/shell.c -------------------------------------------------------------------------------- /apps/mgclock/mgclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgclock/mgclock.c -------------------------------------------------------------------------------- /apps/mgcopy/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/README.TXT -------------------------------------------------------------------------------- /apps/mgcopy/beg_dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/beg_dial.c -------------------------------------------------------------------------------- /apps/mgcopy/beg_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/beg_dial.h -------------------------------------------------------------------------------- /apps/mgcopy/cpfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/cpfiles.c -------------------------------------------------------------------------------- /apps/mgcopy/cpfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/cpfiles.h -------------------------------------------------------------------------------- /apps/mgcopy/dat_dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/dat_dial.c -------------------------------------------------------------------------------- /apps/mgcopy/dat_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/dat_dial.h -------------------------------------------------------------------------------- /apps/mgcopy/de/mgcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/de/mgcopy.h -------------------------------------------------------------------------------- /apps/mgcopy/en/mgcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/en/mgcopy.h -------------------------------------------------------------------------------- /apps/mgcopy/fr/mgcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/fr/mgcopy.h -------------------------------------------------------------------------------- /apps/mgcopy/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/globals.h -------------------------------------------------------------------------------- /apps/mgcopy/mgcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/mgcopy.c -------------------------------------------------------------------------------- /apps/mgcopy/mgcopy.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgcopy/mgcopy.prj -------------------------------------------------------------------------------- /apps/mgcopy/tst/tst.bat: -------------------------------------------------------------------------------- 1 | mgcopy -Ccfq F:\KNDINSKY\ -1 A:\ 2 | exit -------------------------------------------------------------------------------- /apps/mgcopy/tst/tst2.bat: -------------------------------------------------------------------------------- 1 | mgcopy -Ccfq F:\CDBIND01.ZOO -4 A:\ 2 | exit -------------------------------------------------------------------------------- /apps/mgedit/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/README.TXT -------------------------------------------------------------------------------- /apps/mgedit/de/mgedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/de/mgedit.h -------------------------------------------------------------------------------- /apps/mgedit/en/mgedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/en/mgedit.h -------------------------------------------------------------------------------- /apps/mgedit/fr/mgedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/fr/mgedit.h -------------------------------------------------------------------------------- /apps/mgedit/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/globals.h -------------------------------------------------------------------------------- /apps/mgedit/mac_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mac_api.c -------------------------------------------------------------------------------- /apps/mgedit/mgedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mgedit.c -------------------------------------------------------------------------------- /apps/mgedit/mgedit.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mgedit.prj -------------------------------------------------------------------------------- /apps/mgedit/mgedit7.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mgedit7.prj -------------------------------------------------------------------------------- /apps/mgedit/mgedwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mgedwind.c -------------------------------------------------------------------------------- /apps/mgedit/mm7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mm7.c -------------------------------------------------------------------------------- /apps/mgedit/mm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/mm7.h -------------------------------------------------------------------------------- /apps/mgedit/opt_dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgedit/opt_dial.c -------------------------------------------------------------------------------- /apps/mgformat/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgformat/format.c -------------------------------------------------------------------------------- /apps/mgformat/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgformat/globals.h -------------------------------------------------------------------------------- /apps/mgformat/mgformat.inf: -------------------------------------------------------------------------------- 1 | P  -------------------------------------------------------------------------------- /apps/mgnotice.2/wglobals.h: -------------------------------------------------------------------------------- 1 | #define NWINDOWS 64 2 | -------------------------------------------------------------------------------- /apps/mgnotice/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgnotice/globals.h -------------------------------------------------------------------------------- /apps/mgnotice/mgnwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgnotice/mgnwind.c -------------------------------------------------------------------------------- /apps/mgnotice/wglobals.h: -------------------------------------------------------------------------------- 1 | #define NWINDOWS 64 2 | -------------------------------------------------------------------------------- /apps/mgnotice/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgnotice/windows.c -------------------------------------------------------------------------------- /apps/mgnotice/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgnotice/windows.h -------------------------------------------------------------------------------- /apps/mgsearch/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgsearch/search.c -------------------------------------------------------------------------------- /apps/mgsearch/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgsearch/search.h -------------------------------------------------------------------------------- /apps/mgview/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/README.TXT -------------------------------------------------------------------------------- /apps/mgview/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/globals.h -------------------------------------------------------------------------------- /apps/mgview/memchar2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/memchar2.c -------------------------------------------------------------------------------- /apps/mgview/memchar2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/memchar2.s -------------------------------------------------------------------------------- /apps/mgview/mgview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/mgview.c -------------------------------------------------------------------------------- /apps/mgview/mgview.h: -------------------------------------------------------------------------------- 1 | /* 2 | */ -------------------------------------------------------------------------------- /apps/mgview/mgview.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/mgview.prj -------------------------------------------------------------------------------- /apps/mgview/mgwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/mgwind.c -------------------------------------------------------------------------------- /apps/mgview/mgwind.h: -------------------------------------------------------------------------------- 1 | extern void open_textwind( char *path ); 2 | -------------------------------------------------------------------------------- /apps/mgview/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/windows.c -------------------------------------------------------------------------------- /apps/mgview/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mgview/windows.h -------------------------------------------------------------------------------- /apps/mod_app/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mod_app/README.TXT -------------------------------------------------------------------------------- /apps/mod_app/mod_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mod_app/mod_app.c -------------------------------------------------------------------------------- /apps/mod_app/tst/ia.bat: -------------------------------------------------------------------------------- 1 | mod_app -Cia jinnee.prg MAGICICN.RSC 86 - 1 -------------------------------------------------------------------------------- /apps/mod_app/tst/iad.bat: -------------------------------------------------------------------------------- 1 | mod_app -Cia papillon.prg - -1 - 1 -------------------------------------------------------------------------------- /apps/mod_app/tst/id.bat: -------------------------------------------------------------------------------- 1 | mod_app -Cid papillon *.xyz meine.rsc 123 -------------------------------------------------------------------------------- /apps/mod_app/tst/idd.bat: -------------------------------------------------------------------------------- 1 | mod_app -Cid papillon *.x - -1 -------------------------------------------------------------------------------- /apps/mod_app/tst/is.bat: -------------------------------------------------------------------------------- 1 | mod_app -is ABCD eintrag magicicn.rsc 12 -------------------------------------------------------------------------------- /apps/mpc_acc/cstart0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mpc_acc/cstart0.s -------------------------------------------------------------------------------- /apps/mpc_acc/mpc_acc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mpc_acc/mpc_acc.c -------------------------------------------------------------------------------- /apps/mpc_acc/mpc_cont.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/mpc_acc/mpc_cont.s -------------------------------------------------------------------------------- /apps/print/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/print/print.c -------------------------------------------------------------------------------- /apps/print/print.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/print/print.prj -------------------------------------------------------------------------------- /apps/shutdown/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/shutdown/all.prj -------------------------------------------------------------------------------- /apps/shutdown/de/README.TXT: -------------------------------------------------------------------------------- 1 | # german localizations go here 2 | -------------------------------------------------------------------------------- /apps/shutdown/en/README.TXT: -------------------------------------------------------------------------------- 1 | # english localizations go here 2 | -------------------------------------------------------------------------------- /apps/shutdown/fr/README.TXT: -------------------------------------------------------------------------------- 1 | # french localizations go here 2 | -------------------------------------------------------------------------------- /apps/shutdown/shut_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/shutdown/shut_de.c -------------------------------------------------------------------------------- /apps/shutdown/shut_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/shutdown/shut_en.c -------------------------------------------------------------------------------- /apps/shutdown/shut_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/shutdown/shut_fr.c -------------------------------------------------------------------------------- /apps/shutdown/shutdown.inf: -------------------------------------------------------------------------------- 1 | ignore MGCLOCK 2 | terminate XCONTROL 3 | -------------------------------------------------------------------------------- /apps/vt52/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/README.TXT -------------------------------------------------------------------------------- /apps/vt52/de/vt52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/de/vt52.h -------------------------------------------------------------------------------- /apps/vt52/de/vt52.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/de/vt52.rsc -------------------------------------------------------------------------------- /apps/vt52/de/vt52.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/de/vt52.rso -------------------------------------------------------------------------------- /apps/vt52/dragdrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/dragdrop.c -------------------------------------------------------------------------------- /apps/vt52/en/vt52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/en/vt52.h -------------------------------------------------------------------------------- /apps/vt52/en/vt52.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/en/vt52.rsc -------------------------------------------------------------------------------- /apps/vt52/en/vt52.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/en/vt52.rso -------------------------------------------------------------------------------- /apps/vt52/fr/vt52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/fr/vt52.h -------------------------------------------------------------------------------- /apps/vt52/fr/vt52.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/fr/vt52.rsc -------------------------------------------------------------------------------- /apps/vt52/fr/vt52.rso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/fr/vt52.rso -------------------------------------------------------------------------------- /apps/vt52/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/list.h -------------------------------------------------------------------------------- /apps/vt52/list_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/list_new.c -------------------------------------------------------------------------------- /apps/vt52/pcstart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/pcstart.s -------------------------------------------------------------------------------- /apps/vt52/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/test.bat -------------------------------------------------------------------------------- /apps/vt52/todo_beh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/todo_beh.txt -------------------------------------------------------------------------------- /apps/vt52/vt52.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt52.prj -------------------------------------------------------------------------------- /apps/vt52/vt52_bsp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt52_bsp.inf -------------------------------------------------------------------------------- /apps/vt52/vt_aes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_aes.s -------------------------------------------------------------------------------- /apps/vt52/vt_bell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_bell.s -------------------------------------------------------------------------------- /apps/vt52/vt_bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_bios.s -------------------------------------------------------------------------------- /apps/vt52/vt_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_emu.c -------------------------------------------------------------------------------- /apps/vt52/vt_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_emu.h -------------------------------------------------------------------------------- /apps/vt52/vt_eterm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_eterm.s -------------------------------------------------------------------------------- /apps/vt52/vt_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_menu.c -------------------------------------------------------------------------------- /apps/vt52/vt_move.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_move.s -------------------------------------------------------------------------------- /apps/vt52/vt_sem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_sem.s -------------------------------------------------------------------------------- /apps/vt52/vt_vdi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_vdi.s -------------------------------------------------------------------------------- /apps/vt52/vt_xbios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vt_xbios.s -------------------------------------------------------------------------------- /apps/vt52/vtstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vtstruct.h -------------------------------------------------------------------------------- /apps/vt52/vtsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/vtsys.h -------------------------------------------------------------------------------- /apps/vt52/wlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/wlib.c -------------------------------------------------------------------------------- /apps/vt52/wlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/wlib.h -------------------------------------------------------------------------------- /apps/vt52/wstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/apps/vt52/wstruct.h -------------------------------------------------------------------------------- /auto/accs/atariorg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/atariorg.pal -------------------------------------------------------------------------------- /auto/accs/cops.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/cops.inf -------------------------------------------------------------------------------- /auto/accs/cpx/clock.cpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/cpx/clock.cpx -------------------------------------------------------------------------------- /auto/accs/cpx/si.cpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/cpx/si.cpx -------------------------------------------------------------------------------- /auto/accs/cpz/maus.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/cpz/maus.cpz -------------------------------------------------------------------------------- /auto/accs/cpz/ps.cpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/cpz/ps.cpz -------------------------------------------------------------------------------- /auto/accs/de/cops.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/de/cops.app -------------------------------------------------------------------------------- /auto/accs/dunkel.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/dunkel.pal -------------------------------------------------------------------------------- /auto/accs/en/cops.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/en/cops.app -------------------------------------------------------------------------------- /auto/accs/fr/cops.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/fr/cops.app -------------------------------------------------------------------------------- /auto/accs/mac.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/mac.pal -------------------------------------------------------------------------------- /auto/accs/normal.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/normal.pal -------------------------------------------------------------------------------- /auto/accs/nvdi_neu.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/auto/accs/nvdi_neu.pal -------------------------------------------------------------------------------- /auto/autoexec.bat: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/demo/dragdrop/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/demo/dragdrop/dd.c -------------------------------------------------------------------------------- /doc/demo/pcmxstrt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/demo/pcmxstrt.s -------------------------------------------------------------------------------- /doc/develop/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/README.TXT -------------------------------------------------------------------------------- /doc/develop/aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/aes.txt -------------------------------------------------------------------------------- /doc/develop/colmapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/colmapic.c -------------------------------------------------------------------------------- /doc/develop/editob.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/editob.txt -------------------------------------------------------------------------------- /doc/develop/fslx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/fslx.txt -------------------------------------------------------------------------------- /doc/develop/inter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/inter.txt -------------------------------------------------------------------------------- /doc/develop/mgx_dos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/mgx_dos.txt -------------------------------------------------------------------------------- /doc/develop/obtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/obtypes.txt -------------------------------------------------------------------------------- /doc/develop/pipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/pipes.txt -------------------------------------------------------------------------------- /doc/develop/signale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/signale.txt -------------------------------------------------------------------------------- /doc/develop/single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/single.txt -------------------------------------------------------------------------------- /doc/develop/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/threads.txt -------------------------------------------------------------------------------- /doc/develop/wdialog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/wdialog.txt -------------------------------------------------------------------------------- /doc/develop/windfun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/develop/windfun.txt -------------------------------------------------------------------------------- /doc/filesys/mgx_dfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/filesys/mgx_dfs.txt -------------------------------------------------------------------------------- /doc/filesys/mgx_hdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/filesys/mgx_hdd.txt -------------------------------------------------------------------------------- /doc/filesys/mgx_xfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/filesys/mgx_xfs.txt -------------------------------------------------------------------------------- /doc/history/history.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/history/history.all -------------------------------------------------------------------------------- /doc/history/mdesk5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/history/mdesk5.txt -------------------------------------------------------------------------------- /doc/magix.1/desktop.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/desktop.img -------------------------------------------------------------------------------- /doc/magix.1/dirinfo.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/dirinfo.img -------------------------------------------------------------------------------- /doc/magix.1/install.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/install.img -------------------------------------------------------------------------------- /doc/magix.1/magix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/magix.txt -------------------------------------------------------------------------------- /doc/magix.1/magix0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/magix0.txt -------------------------------------------------------------------------------- /doc/magix.1/magix00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/magix00.txt -------------------------------------------------------------------------------- /doc/magix.1/magixh.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/magixh.doc -------------------------------------------------------------------------------- /doc/magix.1/manager.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.1/manager.img -------------------------------------------------------------------------------- /doc/magix.2/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.2/README.TXT -------------------------------------------------------------------------------- /doc/magix.2/c04conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.2/c04conf.txt -------------------------------------------------------------------------------- /doc/magix.2/c06fsel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.2/c06fsel.txt -------------------------------------------------------------------------------- /doc/magix.3/aes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.3/aes.txt -------------------------------------------------------------------------------- /doc/magix.3/other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.3/other.txt -------------------------------------------------------------------------------- /doc/magix.3/update.300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.3/update.300 -------------------------------------------------------------------------------- /doc/magix.5/history.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.5/history.5 -------------------------------------------------------------------------------- /doc/magix.6/history.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.6/history.6 -------------------------------------------------------------------------------- /doc/magix.6/update.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/magix.6/update.6 -------------------------------------------------------------------------------- /doc/usage/magx_de.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/usage/magx_de.inf -------------------------------------------------------------------------------- /doc/usage/magx_en.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/usage/magx_en.inf -------------------------------------------------------------------------------- /doc/usage/magx_fr.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/usage/magx_fr.inf -------------------------------------------------------------------------------- /doc/usage/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/doc/usage/settings.txt -------------------------------------------------------------------------------- /extensio/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/all.prj -------------------------------------------------------------------------------- /extensio/cd-mxfs/cdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/cd-mxfs/cdfs.h -------------------------------------------------------------------------------- /extensio/cd-mxfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/cd-mxfs/hfs.c -------------------------------------------------------------------------------- /extensio/cd-mxfs/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/cd-mxfs/hfs.h -------------------------------------------------------------------------------- /extensio/cd-mxfs/rock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/cd-mxfs/rock.h -------------------------------------------------------------------------------- /extensio/cd-mxfs/version.h: -------------------------------------------------------------------------------- 1 | #define VERSIONSTRING "0.34" 2 | -------------------------------------------------------------------------------- /extensio/pdlg_slb/de/README.TXT: -------------------------------------------------------------------------------- 1 | # german localizations go here 2 | -------------------------------------------------------------------------------- /extensio/pdlg_slb/en/README.TXT: -------------------------------------------------------------------------------- 1 | # english localizations go here 2 | -------------------------------------------------------------------------------- /extensio/pdlg_slb/fr/README.TXT: -------------------------------------------------------------------------------- 1 | # french localizations go here 2 | -------------------------------------------------------------------------------- /extensio/xfs_pc/xfs1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/extensio/xfs_pc/xfs1.s -------------------------------------------------------------------------------- /inc_as/aesbind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/aesbind.inc -------------------------------------------------------------------------------- /inc_as/country.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/country.inc -------------------------------------------------------------------------------- /inc_as/magix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/magix.inc -------------------------------------------------------------------------------- /inc_as/mgx_devd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/mgx_devd.inc -------------------------------------------------------------------------------- /inc_as/mgx_dfs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/mgx_dfs.inc -------------------------------------------------------------------------------- /inc_as/osbind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_as/osbind.inc -------------------------------------------------------------------------------- /inc_c/av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/av.h -------------------------------------------------------------------------------- /inc_c/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/cookie.h -------------------------------------------------------------------------------- /inc_c/country.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/country.h -------------------------------------------------------------------------------- /inc_c/doserrnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/doserrnr.h -------------------------------------------------------------------------------- /inc_c/dragdrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/dragdrop.h -------------------------------------------------------------------------------- /inc_c/imgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/imgload.h -------------------------------------------------------------------------------- /inc_c/mac_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mac_api.h -------------------------------------------------------------------------------- /inc_c/magix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/magix.h -------------------------------------------------------------------------------- /inc_c/men_xcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/men_xcmd.h -------------------------------------------------------------------------------- /inc_c/mgmc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mgmc_api.h -------------------------------------------------------------------------------- /inc_c/mgx_devd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mgx_devd.h -------------------------------------------------------------------------------- /inc_c/mgx_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mgx_dfs.h -------------------------------------------------------------------------------- /inc_c/mgx_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mgx_dos.h -------------------------------------------------------------------------------- /inc_c/mgx_xfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/mgx_xfs.h -------------------------------------------------------------------------------- /inc_c/nav_xcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/nav_xcmd.h -------------------------------------------------------------------------------- /inc_c/ph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/ph.h -------------------------------------------------------------------------------- /inc_c/scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/scancode.h -------------------------------------------------------------------------------- /inc_c/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/structs.h -------------------------------------------------------------------------------- /inc_c/toserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/inc_c/toserror.h -------------------------------------------------------------------------------- /kaos/boot/kaosboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kaos/boot/kaosboot.s -------------------------------------------------------------------------------- /kaos/doc/anleit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kaos/doc/anleit.txt -------------------------------------------------------------------------------- /kaos/doc/kaos14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kaos/doc/kaos14.txt -------------------------------------------------------------------------------- /kernel/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/README.TXT -------------------------------------------------------------------------------- /kernel/aes/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/README.TXT -------------------------------------------------------------------------------- /kernel/aes/aesevt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesevt.s -------------------------------------------------------------------------------- /kernel/aes/aesfrm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesfrm.s -------------------------------------------------------------------------------- /kernel/aes/aesfsl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesfsl.s -------------------------------------------------------------------------------- /kernel/aes/aesgraf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesgraf.s -------------------------------------------------------------------------------- /kernel/aes/aesinc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesinc.s -------------------------------------------------------------------------------- /kernel/aes/aesmain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesmain.s -------------------------------------------------------------------------------- /kernel/aes/aesmen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesmen.s -------------------------------------------------------------------------------- /kernel/aes/aesobj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesobj.s -------------------------------------------------------------------------------- /kernel/aes/aesrsc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aesrsc.s -------------------------------------------------------------------------------- /kernel/aes/aeswin.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/aeswin.s -------------------------------------------------------------------------------- /kernel/aes/farbic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/farbic.c -------------------------------------------------------------------------------- /kernel/aes/farbicon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/farbicon.s -------------------------------------------------------------------------------- /kernel/aes/fsel/fsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/fsel/fsel.c -------------------------------------------------------------------------------- /kernel/aes/fsel/fsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/fsel/fsel.h -------------------------------------------------------------------------------- /kernel/aes/icon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/aes/icon.txt -------------------------------------------------------------------------------- /kernel/allg/read_inf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/allg/read_inf.s -------------------------------------------------------------------------------- /kernel/allg/std.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/allg/std.s -------------------------------------------------------------------------------- /kernel/bios/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/bios/README.TXT -------------------------------------------------------------------------------- /kernel/bios/atari/boot/magxbo32.s: -------------------------------------------------------------------------------- 1 | OUTSIDE equ 1 2 | include "magxboot.s" -------------------------------------------------------------------------------- /kernel/bios/atari/ide.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/bios/atari/ide.s -------------------------------------------------------------------------------- /kernel/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/Makefile -------------------------------------------------------------------------------- /kernel/build/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/README.TXT -------------------------------------------------------------------------------- /kernel/build/atari.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/atari.prj -------------------------------------------------------------------------------- /kernel/build/de/README.TXT: -------------------------------------------------------------------------------- 1 | # german localizations go here 2 | -------------------------------------------------------------------------------- /kernel/build/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/diff.txt -------------------------------------------------------------------------------- /kernel/build/en/README.TXT: -------------------------------------------------------------------------------- 1 | # english localizations go here 2 | -------------------------------------------------------------------------------- /kernel/build/findrsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/findrsc.c -------------------------------------------------------------------------------- /kernel/build/fr/README.TXT: -------------------------------------------------------------------------------- 1 | # french localizations go here 2 | -------------------------------------------------------------------------------- /kernel/build/hades.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/hades.prj -------------------------------------------------------------------------------- /kernel/build/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/memory.txt -------------------------------------------------------------------------------- /kernel/build/milan.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/milan.prj -------------------------------------------------------------------------------- /kernel/build/mkrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/mkrom.sh -------------------------------------------------------------------------------- /kernel/build/pdlgde.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/pdlgde.slb -------------------------------------------------------------------------------- /kernel/build/pdlgfr.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/pdlgfr.slb -------------------------------------------------------------------------------- /kernel/build/pdlgus.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/pdlgus.slb -------------------------------------------------------------------------------- /kernel/build/raven.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/raven.prj -------------------------------------------------------------------------------- /kernel/build/rom_de.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/rom_de.prj -------------------------------------------------------------------------------- /kernel/build/rom_en.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/rom_en.prj -------------------------------------------------------------------------------- /kernel/build/rom_fr.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/build/rom_fr.prj -------------------------------------------------------------------------------- /kernel/doc/c_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/doc/c_bind.h -------------------------------------------------------------------------------- /kernel/dos/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/README.TXT -------------------------------------------------------------------------------- /kernel/dos/dev_bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/dev_bios.s -------------------------------------------------------------------------------- /kernel/dos/dev_mem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/dev_mem.s -------------------------------------------------------------------------------- /kernel/dos/dev_pipe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/dev_pipe.s -------------------------------------------------------------------------------- /kernel/dos/dfs_fat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/dfs_fat.s -------------------------------------------------------------------------------- /kernel/dos/dfs_u.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/dfs_u.s -------------------------------------------------------------------------------- /kernel/dos/magicdos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/magicdos.inc -------------------------------------------------------------------------------- /kernel/dos/magidos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/magidos.s -------------------------------------------------------------------------------- /kernel/dos/malloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/malloc.s -------------------------------------------------------------------------------- /kernel/dos/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/vfat.c -------------------------------------------------------------------------------- /kernel/dos/vfat_s.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/vfat_s.s -------------------------------------------------------------------------------- /kernel/dos/xfs_vdos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/dos/xfs_vdos.s -------------------------------------------------------------------------------- /kernel/ende.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/ende.s -------------------------------------------------------------------------------- /kernel/inc/auto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/auto.s -------------------------------------------------------------------------------- /kernel/inc/basepage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/basepage.inc -------------------------------------------------------------------------------- /kernel/inc/bios.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/bios.inc -------------------------------------------------------------------------------- /kernel/inc/biosmsg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/biosmsg.inc -------------------------------------------------------------------------------- /kernel/inc/country.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/country.inc -------------------------------------------------------------------------------- /kernel/inc/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/debug.inc -------------------------------------------------------------------------------- /kernel/inc/dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/dos.inc -------------------------------------------------------------------------------- /kernel/inc/errno.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/errno.inc -------------------------------------------------------------------------------- /kernel/inc/filediv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/filediv.h -------------------------------------------------------------------------------- /kernel/inc/hades.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/hades.inc -------------------------------------------------------------------------------- /kernel/inc/handlkey.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/handlkey.s -------------------------------------------------------------------------------- /kernel/inc/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/hardware.inc -------------------------------------------------------------------------------- /kernel/inc/ker_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/ker_bind.h -------------------------------------------------------------------------------- /kernel/inc/kernel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/kernel.inc -------------------------------------------------------------------------------- /kernel/inc/keytab.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/keytab.inc -------------------------------------------------------------------------------- /kernel/inc/lowmem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/lowmem.inc -------------------------------------------------------------------------------- /kernel/inc/mgx_xfs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/mgx_xfs.inc -------------------------------------------------------------------------------- /kernel/inc/milan.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/milan.inc -------------------------------------------------------------------------------- /kernel/inc/pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/pd.h -------------------------------------------------------------------------------- /kernel/inc/pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/pixmap.h -------------------------------------------------------------------------------- /kernel/inc/protobt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/protobt.s -------------------------------------------------------------------------------- /kernel/inc/puntaes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/puntaes.s -------------------------------------------------------------------------------- /kernel/inc/raven.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/raven.inc -------------------------------------------------------------------------------- /kernel/inc/read_ktb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/read_ktb.s -------------------------------------------------------------------------------- /kernel/inc/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/std.h -------------------------------------------------------------------------------- /kernel/inc/structs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/structs.inc -------------------------------------------------------------------------------- /kernel/inc/version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/version.inc -------------------------------------------------------------------------------- /kernel/inc/vfat_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/vfat_imp.h -------------------------------------------------------------------------------- /kernel/inc/vtsys.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/inc/vtsys.inc -------------------------------------------------------------------------------- /kernel/ser_my.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/ser_my.s -------------------------------------------------------------------------------- /kernel/umlaut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/umlaut.txt -------------------------------------------------------------------------------- /kernel/vdi/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/README.TXT -------------------------------------------------------------------------------- /kernel/vdi/attribut.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/attribut.s -------------------------------------------------------------------------------- /kernel/vdi/box.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/box.s -------------------------------------------------------------------------------- /kernel/vdi/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/bugs.txt -------------------------------------------------------------------------------- /kernel/vdi/colormap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/colormap.inc -------------------------------------------------------------------------------- /kernel/vdi/control.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/control.s -------------------------------------------------------------------------------- /kernel/vdi/disp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/disp.s -------------------------------------------------------------------------------- /kernel/vdi/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/drivers.c -------------------------------------------------------------------------------- /kernel/vdi/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/drivers.h -------------------------------------------------------------------------------- /kernel/vdi/ellipse.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/ellipse.s -------------------------------------------------------------------------------- /kernel/vdi/escape.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/escape.s -------------------------------------------------------------------------------- /kernel/vdi/filediv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/filediv.c -------------------------------------------------------------------------------- /kernel/vdi/fonts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/fonts.s -------------------------------------------------------------------------------- /kernel/vdi/include/makechar.inc: -------------------------------------------------------------------------------- 1 | SCALER_STACK_SIZE EQU 4096 2 | -------------------------------------------------------------------------------- /kernel/vdi/init_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/init_res.c -------------------------------------------------------------------------------- /kernel/vdi/init_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/init_res.h -------------------------------------------------------------------------------- /kernel/vdi/input.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/input.s -------------------------------------------------------------------------------- /kernel/vdi/inquire.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/inquire.s -------------------------------------------------------------------------------- /kernel/vdi/line.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/line.s -------------------------------------------------------------------------------- /kernel/vdi/linea.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/linea.s -------------------------------------------------------------------------------- /kernel/vdi/marker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/marker.inc -------------------------------------------------------------------------------- /kernel/vdi/math.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/math.s -------------------------------------------------------------------------------- /kernel/vdi/mcx/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mcx/all.prj -------------------------------------------------------------------------------- /kernel/vdi/mcx/cxs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mcx/cxs.inc -------------------------------------------------------------------------------- /kernel/vdi/mcx/ncxx16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mcx/ncxx16.s -------------------------------------------------------------------------------- /kernel/vdi/mcx/ncxx2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mcx/ncxx2.s -------------------------------------------------------------------------------- /kernel/vdi/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/memory.h -------------------------------------------------------------------------------- /kernel/vdi/mtc/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mtc/all.prj -------------------------------------------------------------------------------- /kernel/vdi/mtc/ntc2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mtc/ntc2.prj -------------------------------------------------------------------------------- /kernel/vdi/mtc/ntc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mtc/ntc2.s -------------------------------------------------------------------------------- /kernel/vdi/mxvdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mxvdi.h -------------------------------------------------------------------------------- /kernel/vdi/mxvdiknl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/mxvdiknl.s -------------------------------------------------------------------------------- /kernel/vdi/nvdi_wk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/nvdi_wk.h -------------------------------------------------------------------------------- /kernel/vdi/output.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/output.s -------------------------------------------------------------------------------- /kernel/vdi/pattern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/pattern.inc -------------------------------------------------------------------------------- /kernel/vdi/raster.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/raster.s -------------------------------------------------------------------------------- /kernel/vdi/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/setup.c -------------------------------------------------------------------------------- /kernel/vdi/simulatn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/simulatn.s -------------------------------------------------------------------------------- /kernel/vdi/sincos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/sincos.inc -------------------------------------------------------------------------------- /kernel/vdi/string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/string.s -------------------------------------------------------------------------------- /kernel/vdi/text_bmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/text_bmp.s -------------------------------------------------------------------------------- /kernel/vdi/tos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/tos.s -------------------------------------------------------------------------------- /kernel/vdi/vt52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/vt52.s -------------------------------------------------------------------------------- /kernel/vdi/workout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/kernel/vdi/workout.inc -------------------------------------------------------------------------------- /lib/mac_api/mac_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mac_api/mac_api.c -------------------------------------------------------------------------------- /lib/mylibs/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/README.TXT -------------------------------------------------------------------------------- /lib/mylibs/gemut_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/gemut_mt.c -------------------------------------------------------------------------------- /lib/mylibs/gemut_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/gemut_mt.h -------------------------------------------------------------------------------- /lib/mylibs/gemutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/gemutils.c -------------------------------------------------------------------------------- /lib/mylibs/gemutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/gemutils.h -------------------------------------------------------------------------------- /lib/mylibs/ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/ll.c -------------------------------------------------------------------------------- /lib/mylibs/ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/ll.h -------------------------------------------------------------------------------- /lib/mylibs/wdialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/wdialog.c -------------------------------------------------------------------------------- /lib/mylibs/wdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/wdialog.h -------------------------------------------------------------------------------- /lib/mylibs/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/windows.c -------------------------------------------------------------------------------- /lib/mylibs/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/lib/mylibs/windows.h -------------------------------------------------------------------------------- /non-tos/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/README.TXT -------------------------------------------------------------------------------- /non-tos/fsort/fsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/fsort.c -------------------------------------------------------------------------------- /non-tos/fsort/fsort.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/fsort.doc -------------------------------------------------------------------------------- /non-tos/fsort/fsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/fsort.h -------------------------------------------------------------------------------- /non-tos/fsort/fsort1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/fsort1.c -------------------------------------------------------------------------------- /non-tos/fsort/fsort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/fsort2.c -------------------------------------------------------------------------------- /non-tos/fsort/uniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/uniq.c -------------------------------------------------------------------------------- /non-tos/fsort/uniq.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/uniq.doc -------------------------------------------------------------------------------- /non-tos/fsort/versch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/non-tos/fsort/versch.c -------------------------------------------------------------------------------- /pc/hdd/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/.gitattributes -------------------------------------------------------------------------------- /pc/hdd/autoexec.bat: -------------------------------------------------------------------------------- 1 | PROMPT $p$g 2 | PATH c:\bin; 3 | -------------------------------------------------------------------------------- /pc/hdd/bin/nfapi.ttp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/bin/nfapi.ttp -------------------------------------------------------------------------------- /pc/hdd/bin/pcmake.ttp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/bin/pcmake.ttp -------------------------------------------------------------------------------- /pc/hdd/config-hdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/config-hdd -------------------------------------------------------------------------------- /pc/hdd/emudesk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/emudesk.inf -------------------------------------------------------------------------------- /pc/hdd/gemini/bin/sh.mup: -------------------------------------------------------------------------------- 1 | c:\gemini\mupfel.ttp $* 2 | -------------------------------------------------------------------------------- /pc/hdd/gemini/etc/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/gemini/etc/magic -------------------------------------------------------------------------------- /pc/hdd/gemini/mupfel.hst: -------------------------------------------------------------------------------- 1 | echo $LINES $COLUMNS 2 | -------------------------------------------------------------------------------- /pc/hdd/gemini/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/gemini/profile -------------------------------------------------------------------------------- /pc/hdd/gemini/vt52.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/gemini/vt52.inf -------------------------------------------------------------------------------- /pc/hdd/mcmd.tos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/mcmd.tos -------------------------------------------------------------------------------- /pc/hdd/mkhdd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/mkhdd.sh -------------------------------------------------------------------------------- /pc/hdd/newdesk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/hdd/newdesk.inf -------------------------------------------------------------------------------- /pc/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/aes.h -------------------------------------------------------------------------------- /pc/include/ahcc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ahcc/math.h -------------------------------------------------------------------------------- /pc/include/ahcccfrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ahcccfrt.h -------------------------------------------------------------------------------- /pc/include/ahccrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ahccrt.h -------------------------------------------------------------------------------- /pc/include/ahcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ahcm.h -------------------------------------------------------------------------------- /pc/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/alloca.h -------------------------------------------------------------------------------- /pc/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ar.h -------------------------------------------------------------------------------- /pc/include/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/argp.h -------------------------------------------------------------------------------- /pc/include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/argz.h -------------------------------------------------------------------------------- /pc/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/arpa/ftp.h -------------------------------------------------------------------------------- /pc/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/arpa/inet.h -------------------------------------------------------------------------------- /pc/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/arpa/tftp.h -------------------------------------------------------------------------------- /pc/include/asm/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/asm/unistd.h -------------------------------------------------------------------------------- /pc/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/assert.h -------------------------------------------------------------------------------- /pc/include/atarierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/atarierr.h -------------------------------------------------------------------------------- /pc/include/basepage.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/bits/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/dlfcn.h -------------------------------------------------------------------------------- /pc/include/bits/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/fcntl.h -------------------------------------------------------------------------------- /pc/include/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/fenv.h -------------------------------------------------------------------------------- /pc/include/bits/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/in.h -------------------------------------------------------------------------------- /pc/include/bits/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/inf.h -------------------------------------------------------------------------------- /pc/include/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/ipc.h -------------------------------------------------------------------------------- /pc/include/bits/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/msq.h -------------------------------------------------------------------------------- /pc/include/bits/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/nan.h -------------------------------------------------------------------------------- /pc/include/bits/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/poll.h -------------------------------------------------------------------------------- /pc/include/bits/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/sched.h -------------------------------------------------------------------------------- /pc/include/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/sem.h -------------------------------------------------------------------------------- /pc/include/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/shm.h -------------------------------------------------------------------------------- /pc/include/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/stat.h -------------------------------------------------------------------------------- /pc/include/bits/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/stdio.h -------------------------------------------------------------------------------- /pc/include/bits/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/time.h -------------------------------------------------------------------------------- /pc/include/bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/types.h -------------------------------------------------------------------------------- /pc/include/bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/bits/wchar.h -------------------------------------------------------------------------------- /pc/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/byteswap.h -------------------------------------------------------------------------------- /pc/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/compiler.h -------------------------------------------------------------------------------- /pc/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/complex.h -------------------------------------------------------------------------------- /pc/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/crypt.h -------------------------------------------------------------------------------- /pc/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ctype.h -------------------------------------------------------------------------------- /pc/include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/device.h -------------------------------------------------------------------------------- /pc/include/dirent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/dlfcn.h -------------------------------------------------------------------------------- /pc/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/endian.h -------------------------------------------------------------------------------- /pc/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/err.h -------------------------------------------------------------------------------- /pc/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/errno.h -------------------------------------------------------------------------------- /pc/include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/error.h -------------------------------------------------------------------------------- /pc/include/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ext.h -------------------------------------------------------------------------------- /pc/include/falcon.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/fcntl.h -------------------------------------------------------------------------------- /pc/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/features.h -------------------------------------------------------------------------------- /pc/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/fenv.h -------------------------------------------------------------------------------- /pc/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/float.h -------------------------------------------------------------------------------- /pc/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/fnmatch.h -------------------------------------------------------------------------------- /pc/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ftw.h -------------------------------------------------------------------------------- /pc/include/gconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/gconv.h -------------------------------------------------------------------------------- /pc/include/gem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/gem.h -------------------------------------------------------------------------------- /pc/include/gemx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/gemx.h -------------------------------------------------------------------------------- /pc/include/geneva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/geneva.h -------------------------------------------------------------------------------- /pc/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/getopt.h -------------------------------------------------------------------------------- /pc/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/glob.h -------------------------------------------------------------------------------- /pc/include/gnu-out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/gnu-out.h -------------------------------------------------------------------------------- /pc/include/grect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/grect.h -------------------------------------------------------------------------------- /pc/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/grp.h -------------------------------------------------------------------------------- /pc/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/iconv.h -------------------------------------------------------------------------------- /pc/include/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ieee754.h -------------------------------------------------------------------------------- /pc/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/inttypes.h -------------------------------------------------------------------------------- /pc/include/iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/iovec.h -------------------------------------------------------------------------------- /pc/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/langinfo.h -------------------------------------------------------------------------------- /pc/include/lastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/lastlog.h -------------------------------------------------------------------------------- /pc/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/libgen.h -------------------------------------------------------------------------------- /pc/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/limits.h -------------------------------------------------------------------------------- /pc/include/linea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/linea.h -------------------------------------------------------------------------------- /pc/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/locale.h -------------------------------------------------------------------------------- /pc/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/macros.h -------------------------------------------------------------------------------- /pc/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/malloc.h -------------------------------------------------------------------------------- /pc/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/math.h -------------------------------------------------------------------------------- /pc/include/mcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mcheck.h -------------------------------------------------------------------------------- /pc/include/memory.h: -------------------------------------------------------------------------------- 1 | #ifndef _MALLOC_H 2 | # include 3 | #endif 4 | -------------------------------------------------------------------------------- /pc/include/metados.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /pc/include/minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/minimal.h -------------------------------------------------------------------------------- /pc/include/mint/dcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/dcntl.h -------------------------------------------------------------------------------- /pc/include/mint/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/errno.h -------------------------------------------------------------------------------- /pc/include/mint/linea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/linea.h -------------------------------------------------------------------------------- /pc/include/mint/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/mouse.h -------------------------------------------------------------------------------- /pc/include/mint/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/net.h -------------------------------------------------------------------------------- /pc/include/mint/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/nfs.h -------------------------------------------------------------------------------- /pc/include/mint/slb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/slb.h -------------------------------------------------------------------------------- /pc/include/mint/trap1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/trap1.h -------------------------------------------------------------------------------- /pc/include/mint/xbra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mint/xbra.h -------------------------------------------------------------------------------- /pc/include/mintbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mintbind.h -------------------------------------------------------------------------------- /pc/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mntent.h -------------------------------------------------------------------------------- /pc/include/mt_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mt_aes.h -------------------------------------------------------------------------------- /pc/include/mt_gem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mt_gem.h -------------------------------------------------------------------------------- /pc/include/mt_gemx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/mt_gemx.h -------------------------------------------------------------------------------- /pc/include/net/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/bpf.h -------------------------------------------------------------------------------- /pc/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/if.h -------------------------------------------------------------------------------- /pc/include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/if_arp.h -------------------------------------------------------------------------------- /pc/include/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/if_ppp.h -------------------------------------------------------------------------------- /pc/include/net/if_sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/if_sl.h -------------------------------------------------------------------------------- /pc/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/net/route.h -------------------------------------------------------------------------------- /pc/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/netdb.h -------------------------------------------------------------------------------- /pc/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/netinet/in.h -------------------------------------------------------------------------------- /pc/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/netinet/ip.h -------------------------------------------------------------------------------- /pc/include/nfs/nfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/nkcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/nkcc.h -------------------------------------------------------------------------------- /pc/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/nl_types.h -------------------------------------------------------------------------------- /pc/include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/obstack.h -------------------------------------------------------------------------------- /pc/include/osbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/osbind.h -------------------------------------------------------------------------------- /pc/include/ostruct.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/pamsnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/pamsnet.h -------------------------------------------------------------------------------- /pc/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/paths.h -------------------------------------------------------------------------------- /pc/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/portab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/portab.h -------------------------------------------------------------------------------- /pc/include/portaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/portaes.h -------------------------------------------------------------------------------- /pc/include/portvdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/portvdi.h -------------------------------------------------------------------------------- /pc/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/printf.h -------------------------------------------------------------------------------- /pc/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/process.h -------------------------------------------------------------------------------- /pc/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/pthread.h -------------------------------------------------------------------------------- /pc/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/pty.h -------------------------------------------------------------------------------- /pc/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/pwd.h -------------------------------------------------------------------------------- /pc/include/re_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/re_comp.h -------------------------------------------------------------------------------- /pc/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/regex.h -------------------------------------------------------------------------------- /pc/include/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/regexp.h -------------------------------------------------------------------------------- /pc/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/resolv.h -------------------------------------------------------------------------------- /pc/include/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/rpc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/auth.h -------------------------------------------------------------------------------- /pc/include/rpc/clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/clnt.h -------------------------------------------------------------------------------- /pc/include/rpc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/netdb.h -------------------------------------------------------------------------------- /pc/include/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/rpc.h -------------------------------------------------------------------------------- /pc/include/rpc/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/svc.h -------------------------------------------------------------------------------- /pc/include/rpc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/types.h -------------------------------------------------------------------------------- /pc/include/rpc/xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rpc/xdr.h -------------------------------------------------------------------------------- /pc/include/rtent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/rtent.h -------------------------------------------------------------------------------- /pc/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sched.h -------------------------------------------------------------------------------- /pc/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/search.h -------------------------------------------------------------------------------- /pc/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/semaphore.h -------------------------------------------------------------------------------- /pc/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/setjmp.h -------------------------------------------------------------------------------- /pc/include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sgtty.h -------------------------------------------------------------------------------- /pc/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/shadow.h -------------------------------------------------------------------------------- /pc/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/signal.h -------------------------------------------------------------------------------- /pc/include/sockios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sockios.h -------------------------------------------------------------------------------- /pc/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/spawn.h -------------------------------------------------------------------------------- /pc/include/st-out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/st-out.h -------------------------------------------------------------------------------- /pc/include/stackinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stackinfo.h -------------------------------------------------------------------------------- /pc/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stdarg.h -------------------------------------------------------------------------------- /pc/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stdbool.h -------------------------------------------------------------------------------- /pc/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stddef.h -------------------------------------------------------------------------------- /pc/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stdint.h -------------------------------------------------------------------------------- /pc/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stdio.h -------------------------------------------------------------------------------- /pc/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/stdlib.h -------------------------------------------------------------------------------- /pc/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/string.h -------------------------------------------------------------------------------- /pc/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/strings.h -------------------------------------------------------------------------------- /pc/include/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/support.h -------------------------------------------------------------------------------- /pc/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/cdefs.h -------------------------------------------------------------------------------- /pc/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/dir.h -------------------------------------------------------------------------------- /pc/include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/dirent.h -------------------------------------------------------------------------------- /pc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/file.h -------------------------------------------------------------------------------- /pc/include/sys/fstyp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/gmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/gmon.h -------------------------------------------------------------------------------- /pc/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/ioctl.h -------------------------------------------------------------------------------- /pc/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/ipc.h -------------------------------------------------------------------------------- /pc/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/mount.h -------------------------------------------------------------------------------- /pc/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/msg.h -------------------------------------------------------------------------------- /pc/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/param.h -------------------------------------------------------------------------------- /pc/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/poll.h -------------------------------------------------------------------------------- /pc/include/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/ptrace.h -------------------------------------------------------------------------------- /pc/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/queue.h -------------------------------------------------------------------------------- /pc/include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/reboot.h -------------------------------------------------------------------------------- /pc/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/select.h -------------------------------------------------------------------------------- /pc/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/sem.h -------------------------------------------------------------------------------- /pc/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/shm.h -------------------------------------------------------------------------------- /pc/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/socket.h -------------------------------------------------------------------------------- /pc/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/stat.h -------------------------------------------------------------------------------- /pc/include/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/statfs.h -------------------------------------------------------------------------------- /pc/include/sys/sysctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/syslog.h -------------------------------------------------------------------------------- /pc/include/sys/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/time.h -------------------------------------------------------------------------------- /pc/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/timeb.h -------------------------------------------------------------------------------- /pc/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/times.h -------------------------------------------------------------------------------- /pc/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/types.h -------------------------------------------------------------------------------- /pc/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/uio.h -------------------------------------------------------------------------------- /pc/include/sys/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/ulimit.h -------------------------------------------------------------------------------- /pc/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/un.h -------------------------------------------------------------------------------- /pc/include/sys/varargs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sys/wait.h -------------------------------------------------------------------------------- /pc/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/sysexits.h -------------------------------------------------------------------------------- /pc/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/tar.h -------------------------------------------------------------------------------- /pc/include/termio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pc/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/termios.h -------------------------------------------------------------------------------- /pc/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/time.h -------------------------------------------------------------------------------- /pc/include/tos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/tos.h -------------------------------------------------------------------------------- /pc/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ucontext.h -------------------------------------------------------------------------------- /pc/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/ulimit.h -------------------------------------------------------------------------------- /pc/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/unistd.h -------------------------------------------------------------------------------- /pc/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/utime.h -------------------------------------------------------------------------------- /pc/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/utmp.h -------------------------------------------------------------------------------- /pc/include/utmpbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/utmpbits.h -------------------------------------------------------------------------------- /pc/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/utmpx.h -------------------------------------------------------------------------------- /pc/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/values.h -------------------------------------------------------------------------------- /pc/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/varargs.h -------------------------------------------------------------------------------- /pc/include/vdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/vdi.h -------------------------------------------------------------------------------- /pc/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wait.h -------------------------------------------------------------------------------- /pc/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wchar.h -------------------------------------------------------------------------------- /pc/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wctype.h -------------------------------------------------------------------------------- /pc/include/wdlgedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlgedit.h -------------------------------------------------------------------------------- /pc/include/wdlgevnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlgevnt.h -------------------------------------------------------------------------------- /pc/include/wdlgfslx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlgfslx.h -------------------------------------------------------------------------------- /pc/include/wdlglbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlglbox.h -------------------------------------------------------------------------------- /pc/include/wdlgpdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlgpdlg.h -------------------------------------------------------------------------------- /pc/include/wdlgwdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wdlgwdlg.h -------------------------------------------------------------------------------- /pc/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/wordexp.h -------------------------------------------------------------------------------- /pc/include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/xlocale.h -------------------------------------------------------------------------------- /pc/include/xrsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/include/xrsrc.h -------------------------------------------------------------------------------- /pc/lib/cauto.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cauto.o -------------------------------------------------------------------------------- /pc/lib/cauto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cauto.s -------------------------------------------------------------------------------- /pc/lib/cstart0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstart0.o -------------------------------------------------------------------------------- /pc/lib/cstart0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstart0.s -------------------------------------------------------------------------------- /pc/lib/cstartn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartn.o -------------------------------------------------------------------------------- /pc/lib/cstartn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartn.s -------------------------------------------------------------------------------- /pc/lib/cstartp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartp.o -------------------------------------------------------------------------------- /pc/lib/cstartp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartp.s -------------------------------------------------------------------------------- /pc/lib/cstartv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartv.o -------------------------------------------------------------------------------- /pc/lib/cstartv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartv.s -------------------------------------------------------------------------------- /pc/lib/cstartx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartx.o -------------------------------------------------------------------------------- /pc/lib/cstartx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/cstartx.s -------------------------------------------------------------------------------- /pc/lib/pcfltlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/pcfltlib.lib -------------------------------------------------------------------------------- /pc/lib/pcstdlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/lib/pcstdlib.lib -------------------------------------------------------------------------------- /pc/pcgemlib/aesctrl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/aesctrl.s -------------------------------------------------------------------------------- /pc/pcgemlib/appl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/appl.s -------------------------------------------------------------------------------- /pc/pcgemlib/autil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/autil.c -------------------------------------------------------------------------------- /pc/pcgemlib/bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/bezier.c -------------------------------------------------------------------------------- /pc/pcgemlib/edit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/edit.s -------------------------------------------------------------------------------- /pc/pcgemlib/evmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/evmult.c -------------------------------------------------------------------------------- /pc/pcgemlib/evnt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/evnt.s -------------------------------------------------------------------------------- /pc/pcgemlib/evntmult.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/evntmult.s -------------------------------------------------------------------------------- /pc/pcgemlib/fnts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/fnts.s -------------------------------------------------------------------------------- /pc/pcgemlib/form.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/form.s -------------------------------------------------------------------------------- /pc/pcgemlib/fsel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/fsel.s -------------------------------------------------------------------------------- /pc/pcgemlib/fslx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/fslx.s -------------------------------------------------------------------------------- /pc/pcgemlib/gem.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/gem.i -------------------------------------------------------------------------------- /pc/pcgemlib/gem3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/gem3.c -------------------------------------------------------------------------------- /pc/pcgemlib/gem_aesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/gem_aesp.h -------------------------------------------------------------------------------- /pc/pcgemlib/gem_vdip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/gem_vdip.h -------------------------------------------------------------------------------- /pc/pcgemlib/gemparb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/gemparb.s -------------------------------------------------------------------------------- /pc/pcgemlib/graf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/graf.s -------------------------------------------------------------------------------- /pc/pcgemlib/lbox.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/lbox.s -------------------------------------------------------------------------------- /pc/pcgemlib/linea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/linea.c -------------------------------------------------------------------------------- /pc/pcgemlib/menu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/menu.s -------------------------------------------------------------------------------- /pc/pcgemlib/mtaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtaes.c -------------------------------------------------------------------------------- /pc/pcgemlib/mtappl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtappl.c -------------------------------------------------------------------------------- /pc/pcgemlib/mtedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtedit.c -------------------------------------------------------------------------------- /pc/pcgemlib/mtgraf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtgraf.c -------------------------------------------------------------------------------- /pc/pcgemlib/mtrsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtrsrc.c -------------------------------------------------------------------------------- /pc/pcgemlib/mtsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/mtsys.c -------------------------------------------------------------------------------- /pc/pcgemlib/objc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/objc.s -------------------------------------------------------------------------------- /pc/pcgemlib/pdlg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/pdlg.s -------------------------------------------------------------------------------- /pc/pcgemlib/rsrc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/rsrc.s -------------------------------------------------------------------------------- /pc/pcgemlib/scrp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/scrp.s -------------------------------------------------------------------------------- /pc/pcgemlib/shel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/shel.s -------------------------------------------------------------------------------- /pc/pcgemlib/speedo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/speedo.c -------------------------------------------------------------------------------- /pc/pcgemlib/vattrbut.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vattrbut.s -------------------------------------------------------------------------------- /pc/pcgemlib/vclip.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vclip.s -------------------------------------------------------------------------------- /pc/pcgemlib/vcontrol.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vcontrol.s -------------------------------------------------------------------------------- /pc/pcgemlib/vdictrl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vdictrl.s -------------------------------------------------------------------------------- /pc/pcgemlib/vdifsm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vdifsm.s -------------------------------------------------------------------------------- /pc/pcgemlib/vdiparb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vdiparb.s -------------------------------------------------------------------------------- /pc/pcgemlib/vescape.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vescape.s -------------------------------------------------------------------------------- /pc/pcgemlib/vextname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vextname.c -------------------------------------------------------------------------------- /pc/pcgemlib/vinput.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vinput.s -------------------------------------------------------------------------------- /pc/pcgemlib/vinquire.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vinquire.s -------------------------------------------------------------------------------- /pc/pcgemlib/vopnprn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vopnprn.c -------------------------------------------------------------------------------- /pc/pcgemlib/voutput.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/voutput.s -------------------------------------------------------------------------------- /pc/pcgemlib/vraster.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vraster.s -------------------------------------------------------------------------------- /pc/pcgemlib/vutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/vutil.c -------------------------------------------------------------------------------- /pc/pcgemlib/wdlg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/wdlg.s -------------------------------------------------------------------------------- /pc/pcgemlib/wind.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/wind.s -------------------------------------------------------------------------------- /pc/pcgemlib/winframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/winframe.h -------------------------------------------------------------------------------- /pc/pcgemlib/xgrf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pcgemlib/xgrf.s -------------------------------------------------------------------------------- /pc/pctoslib/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/assert.c -------------------------------------------------------------------------------- /pc/pctoslib/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/bios.s -------------------------------------------------------------------------------- /pc/pctoslib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/cookie.c -------------------------------------------------------------------------------- /pc/pctoslib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/cookie.h -------------------------------------------------------------------------------- /pc/pctoslib/gemdos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/gemdos.s -------------------------------------------------------------------------------- /pc/pctoslib/mint.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/mint.s -------------------------------------------------------------------------------- /pc/pctoslib/nf_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_debug.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_exec.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_exit.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_name.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_ops.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_shutd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_shutd.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_stder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_stder.c -------------------------------------------------------------------------------- /pc/pctoslib/nf_vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/nf_vers.c -------------------------------------------------------------------------------- /pc/pctoslib/ssystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/ssystem.c -------------------------------------------------------------------------------- /pc/pctoslib/xbios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/pc/pctoslib/xbios.s -------------------------------------------------------------------------------- /test/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/README.TXT -------------------------------------------------------------------------------- /test/aestest/apgetinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/apgetinf.c -------------------------------------------------------------------------------- /test/aestest/applfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/applfind.c -------------------------------------------------------------------------------- /test/aestest/applsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/applsrch.c -------------------------------------------------------------------------------- /test/aestest/colricon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/colricon.c -------------------------------------------------------------------------------- /test/aestest/colricon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/colricon.h -------------------------------------------------------------------------------- /test/aestest/evnt_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/evnt_msg.c -------------------------------------------------------------------------------- /test/aestest/evnt_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/evnt_mul.c -------------------------------------------------------------------------------- /test/aestest/graf_hnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/graf_hnd.c -------------------------------------------------------------------------------- /test/aestest/inf_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/inf_aes.c -------------------------------------------------------------------------------- /test/aestest/msg_ovl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/msg_ovl.c -------------------------------------------------------------------------------- /test/aestest/rsc_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/rsc_load.c -------------------------------------------------------------------------------- /test/aestest/rtest.hrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/rtest.hrd -------------------------------------------------------------------------------- /test/aestest/rtest.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/rtest.rsc -------------------------------------------------------------------------------- /test/aestest/rtest2.hrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/rtest2.hrd -------------------------------------------------------------------------------- /test/aestest/rtest2.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/rtest2.rsc -------------------------------------------------------------------------------- /test/aestest/scrp_rea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/scrp_rea.c -------------------------------------------------------------------------------- /test/aestest/shel_fnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/shel_fnd.c -------------------------------------------------------------------------------- /test/aestest/shel_sht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/shel_sht.c -------------------------------------------------------------------------------- /test/aestest/shel_wrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/shel_wrm.c -------------------------------------------------------------------------------- /test/aestest/shel_wrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/shel_wrx.c -------------------------------------------------------------------------------- /test/aestest/tfail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/tfail.c -------------------------------------------------------------------------------- /test/aestest/tfail.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/tfail.prj -------------------------------------------------------------------------------- /test/aestest/wind_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/wind_get.c -------------------------------------------------------------------------------- /test/aestest/windcre2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/windcre2.c -------------------------------------------------------------------------------- /test/aestest/windcre3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/windcre3.c -------------------------------------------------------------------------------- /test/aestest/windcre4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/windcre4.c -------------------------------------------------------------------------------- /test/aestest/windcrea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/windcrea.c -------------------------------------------------------------------------------- /test/aestest/wu_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/aestest/wu_term.c -------------------------------------------------------------------------------- /test/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/all.prj -------------------------------------------------------------------------------- /test/biostest/bconout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/biostest/bconout.c -------------------------------------------------------------------------------- /test/biostest/getbpb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/biostest/getbpb.c -------------------------------------------------------------------------------- /test/dostest/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/arg.c -------------------------------------------------------------------------------- /test/dostest/arg.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/arg.prj -------------------------------------------------------------------------------- /test/dostest/arg2srcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/arg2srcp.c -------------------------------------------------------------------------------- /test/dostest/arg_fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/arg_fe.c -------------------------------------------------------------------------------- /test/dostest/arg_fe.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/arg_fe.prj -------------------------------------------------------------------------------- /test/dostest/bipipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/bipipe.c -------------------------------------------------------------------------------- /test/dostest/bipipe.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/bipipe.prj -------------------------------------------------------------------------------- /test/dostest/cconin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cconin.c -------------------------------------------------------------------------------- /test/dostest/cconin.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cconin.prj -------------------------------------------------------------------------------- /test/dostest/cconrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cconrs.c -------------------------------------------------------------------------------- /test/dostest/cconrs.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cconrs.prj -------------------------------------------------------------------------------- /test/dostest/cnecin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cnecin.c -------------------------------------------------------------------------------- /test/dostest/cnecin.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cnecin.prj -------------------------------------------------------------------------------- /test/dostest/cprnos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cprnos.c -------------------------------------------------------------------------------- /test/dostest/cprnos.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/cprnos.prj -------------------------------------------------------------------------------- /test/dostest/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/create.c -------------------------------------------------------------------------------- /test/dostest/create.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/create.prj -------------------------------------------------------------------------------- /test/dostest/crfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/crfiles.c -------------------------------------------------------------------------------- /test/dostest/dfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dfree.c -------------------------------------------------------------------------------- /test/dostest/dfree.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dfree.prj -------------------------------------------------------------------------------- /test/dostest/dgetpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dgetpath.c -------------------------------------------------------------------------------- /test/dostest/dlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dlock.c -------------------------------------------------------------------------------- /test/dostest/dlock.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dlock.prj -------------------------------------------------------------------------------- /test/dostest/dopendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dopendir.c -------------------------------------------------------------------------------- /test/dostest/dpathcnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dpathcnf.c -------------------------------------------------------------------------------- /test/dostest/dreaddir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dreaddir.c -------------------------------------------------------------------------------- /test/dostest/dupbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dupbug.c -------------------------------------------------------------------------------- /test/dostest/dupbug.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dupbug.prj -------------------------------------------------------------------------------- /test/dostest/dxrddir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/dxrddir.c -------------------------------------------------------------------------------- /test/dostest/f_dupfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/f_dupfd.c -------------------------------------------------------------------------------- /test/dostest/fattrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fattrib.c -------------------------------------------------------------------------------- /test/dostest/fcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fcreate.c -------------------------------------------------------------------------------- /test/dostest/fforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fforce.c -------------------------------------------------------------------------------- /test/dostest/fforce.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fforce.prj -------------------------------------------------------------------------------- /test/dostest/fforce2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fforce2.c -------------------------------------------------------------------------------- /test/dostest/fforce3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fforce3.c -------------------------------------------------------------------------------- /test/dostest/filldir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/filldir.c -------------------------------------------------------------------------------- /test/dostest/finstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/finstat.c -------------------------------------------------------------------------------- /test/dostest/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fopen.c -------------------------------------------------------------------------------- /test/dostest/fopen.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fopen.prj -------------------------------------------------------------------------------- /test/dostest/fopen2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fopen2.c -------------------------------------------------------------------------------- /test/dostest/fopen2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fopen2.prj -------------------------------------------------------------------------------- /test/dostest/foutstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/foutstat.c -------------------------------------------------------------------------------- /test/dostest/fpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fpipe.c -------------------------------------------------------------------------------- /test/dostest/fpipe.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fpipe.prj -------------------------------------------------------------------------------- /test/dostest/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fread.c -------------------------------------------------------------------------------- /test/dostest/fread.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fread.prj -------------------------------------------------------------------------------- /test/dostest/freadlnk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/freadlnk.c -------------------------------------------------------------------------------- /test/dostest/frename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/frename.c -------------------------------------------------------------------------------- /test/dostest/fselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fselect.c -------------------------------------------------------------------------------- /test/dostest/fsfirst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fsfirst.c -------------------------------------------------------------------------------- /test/dostest/fsymlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fsymlink.c -------------------------------------------------------------------------------- /test/dostest/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fwrite.c -------------------------------------------------------------------------------- /test/dostest/fwrite.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fwrite.prj -------------------------------------------------------------------------------- /test/dostest/fwrite_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fwrite_d.c -------------------------------------------------------------------------------- /test/dostest/fxattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fxattr.c -------------------------------------------------------------------------------- /test/dostest/fxattr.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/fxattr.prj -------------------------------------------------------------------------------- /test/dostest/maddalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/maddalt.c -------------------------------------------------------------------------------- /test/dostest/makefull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/makefull.c -------------------------------------------------------------------------------- /test/dostest/ms_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/ms_stat.c -------------------------------------------------------------------------------- /test/dostest/out.bat: -------------------------------------------------------------------------------- 1 | :go 2 | out.tos 3 | goto go -------------------------------------------------------------------------------- /test/dostest/out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/out.c -------------------------------------------------------------------------------- /test/dostest/out.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/out.prj -------------------------------------------------------------------------------- /test/dostest/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pause.c -------------------------------------------------------------------------------- /test/dostest/pause.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pause.prj -------------------------------------------------------------------------------- /test/dostest/pexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pexec.c -------------------------------------------------------------------------------- /test/dostest/pexec.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pexec.prj -------------------------------------------------------------------------------- /test/dostest/pexec104.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pexec104.c -------------------------------------------------------------------------------- /test/dostest/pexec200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pexec200.c -------------------------------------------------------------------------------- /test/dostest/pfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pfork.c -------------------------------------------------------------------------------- /test/dostest/pfork.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pfork.prj -------------------------------------------------------------------------------- /test/dostest/pipe_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pipe_srv.c -------------------------------------------------------------------------------- /test/dostest/pipetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pipetest.c -------------------------------------------------------------------------------- /test/dostest/pkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/dostest/pkill.c -------------------------------------------------------------------------------- /test/regexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/regexpr.c -------------------------------------------------------------------------------- /test/regexpr.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/regexpr.prj -------------------------------------------------------------------------------- /test/tgoetsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/tgoetsch.c -------------------------------------------------------------------------------- /test/tgoetsch.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/tgoetsch.prj -------------------------------------------------------------------------------- /test/timeslce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/timeslce.c -------------------------------------------------------------------------------- /test/timeslce.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/timeslce.prj -------------------------------------------------------------------------------- /test/vt52.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/test/vt52.inf -------------------------------------------------------------------------------- /tools/all.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/all.prj -------------------------------------------------------------------------------- /tools/clock/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /tools/clock/maus.ruf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/clock/maus.ruf -------------------------------------------------------------------------------- /tools/dis/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/README.TXT -------------------------------------------------------------------------------- /tools/dis/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dec.c -------------------------------------------------------------------------------- /tools/dis/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dis.c -------------------------------------------------------------------------------- /tools/dis/dis1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dis1.c -------------------------------------------------------------------------------- /tools/dis/dis1.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dis1.prj -------------------------------------------------------------------------------- /tools/dis/dis2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dis2.c -------------------------------------------------------------------------------- /tools/dis/dis2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/dis2.prj -------------------------------------------------------------------------------- /tools/dis/disass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/disass.c -------------------------------------------------------------------------------- /tools/dis/disass.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/disass.doc -------------------------------------------------------------------------------- /tools/dis/disass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/disass.txt -------------------------------------------------------------------------------- /tools/dis/shelsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/shelsort.c -------------------------------------------------------------------------------- /tools/dis/tst/t.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/t.asm -------------------------------------------------------------------------------- /tools/dis/tst/t.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/t.bug -------------------------------------------------------------------------------- /tools/dis/tst/t.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/t.prg -------------------------------------------------------------------------------- /tools/dis/tst/t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/t.s -------------------------------------------------------------------------------- /tools/dis/tst/u.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/u.asm -------------------------------------------------------------------------------- /tools/dis/tst/u.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/u.prg -------------------------------------------------------------------------------- /tools/dis/tst/u.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/u.s -------------------------------------------------------------------------------- /tools/dis/tst/u.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/u.sym -------------------------------------------------------------------------------- /tools/dis/tst/x.dup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/x.dup -------------------------------------------------------------------------------- /tools/dis/tst/x.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/x.prg -------------------------------------------------------------------------------- /tools/dis/tst/x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dis/tst/x.s -------------------------------------------------------------------------------- /tools/dump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dump/dump.c -------------------------------------------------------------------------------- /tools/dump/dump.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/dump/dump.prj -------------------------------------------------------------------------------- /tools/fc/README.TXT: -------------------------------------------------------------------------------- 1 | Andreas Kromke 2 | 2018-03-09 3 | 4 | 5 | File compare utility 6 | -------------------------------------------------------------------------------- /tools/fc/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/fc/fc.c -------------------------------------------------------------------------------- /tools/fc/fc.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/fc/fc.prj -------------------------------------------------------------------------------- /tools/fputest/t.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/fputest/t.prg -------------------------------------------------------------------------------- /tools/fputest/t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/fputest/t.s -------------------------------------------------------------------------------- /tools/krypt/krypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/krypt/krypt.c -------------------------------------------------------------------------------- /tools/misc_tst/adr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/misc_tst/adr.s -------------------------------------------------------------------------------- /tools/misc_tst/tst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/misc_tst/tst.s -------------------------------------------------------------------------------- /tools/misc_tst/x.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/misc_tst/x.prj -------------------------------------------------------------------------------- /tools/misc_tst/x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/misc_tst/x.s -------------------------------------------------------------------------------- /tools/mmxtest/xcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/mmxtest/xcmd.c -------------------------------------------------------------------------------- /tools/split/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/split/split.c -------------------------------------------------------------------------------- /tools/unknown/qs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/unknown/qs.c -------------------------------------------------------------------------------- /tools/unknown/z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th-otto/MagicMac/HEAD/tools/unknown/z.c --------------------------------------------------------------------------------