├── LICENSE ├── README.md ├── simirix.png └── src ├── notes ├── ASSETS.txt ├── BUGS ├── Beyond-Intelligent-Machines ├── Changes ├── DONE ├── DocTCL ├── Dynamic.tcl ├── FirstRelease ├── InterCHI-Interactive-Experience-Proposal ├── MULTI ├── Micropolis-Indigo.gif ├── Micropolis-NCD.gif ├── Micropolis-Sun.gif ├── MultiPlayerIdeas.txt ├── NCDAudio ├── OLPC-notes.txt ├── PLAN.txt ├── Performance ├── Publicity ├── Questions ├── ROADMAP.txt ├── Release ├── SharedData ├── Strategy ├── TODO ├── TkVersion ├── bugs.txt ├── outline ├── sim.gif └── to.ouster ├── sim ├── g_ani.c ├── g_bigmap.c ├── g_cam.c ├── g_map.c ├── g_setup.c ├── g_smmaps.c ├── headers │ ├── animtab.h │ ├── cam.h │ ├── mac.h │ ├── macros.h │ ├── sim.h │ └── view.h ├── makefile ├── rand.c ├── random.c ├── s_alloc.c ├── s_disast.c ├── s_eval.c ├── s_fileio.c ├── s_gen.c ├── s_init.c ├── s_msg.c ├── s_power.c ├── s_scan.c ├── s_sim.c ├── s_traf.c ├── s_zone.c ├── sim.c ├── terrain │ ├── mapgener.c │ ├── messages │ ├── terra.c │ └── terragen.c ├── w_budget.c ├── w_cam.c ├── w_con.c ├── w_date.c ├── w_editor.c ├── w_eval.c ├── w_graph.c ├── w_inter.c ├── w_keys.c ├── w_map.c ├── w_net.c ├── w_piem.c ├── w_print.c ├── w_resrc.c ├── w_sim.c ├── w_sound.c ├── w_sprite.c ├── w_stubs.c ├── w_tk.c ├── w_tool.c ├── w_update.c ├── w_util.c └── w_x.c ├── tcl ├── compat │ ├── README │ ├── dirent.h │ ├── dirent2.h │ ├── limits.h │ ├── opendir.c │ ├── stdlib.h │ ├── strerror.c │ ├── string.h │ ├── strstr.c │ ├── strtod.c │ ├── strtol.c │ ├── strtoul.c │ ├── testpid.c │ ├── teststrtoul.c │ ├── testuid.c │ └── testwait.c ├── config ├── library │ ├── init.tcl │ ├── mkindex.tcl │ ├── parray.tcl │ └── tclindex ├── makefile ├── panic.c ├── porting.txt ├── readme.txt ├── regexp.c ├── regexp.h ├── tcl.h ├── tclassem.c ├── tclbasic.c ├── tclckall.c ├── tclcmdah.c ├── tclcmdil.c ├── tclcmdmz.c ├── tclenv.c ├── tclexpr.c ├── tclget.c ├── tclglob.c ├── tclhash.c ├── tclhash.h ├── tclhist.c ├── tclint.h ├── tclparse.c ├── tclproc.c ├── tcltest.c ├── tclunix.h ├── tclunxaz.c ├── tclunxst.c ├── tclunxut.c ├── tclutil.c └── tclvar.c ├── tclx ├── config.mk ├── config │ ├── aux │ ├── bsd │ ├── bsd-4.3 │ ├── dos │ ├── hpux │ ├── linux │ ├── osf1 │ ├── rs6000 │ ├── scoodt1.1 │ ├── scoodt2.0 │ ├── sgi │ ├── solaris2 │ ├── sunos4.0 │ ├── sunos4.1 │ ├── sysv.3.2.0 │ ├── ultrix │ ├── ultrix4.2 │ └── xenix ├── makefile ├── ossupp │ ├── fcntl.c │ ├── ids.c │ ├── makefile │ ├── makefile.dvx │ ├── sigs.c │ ├── strftime.c │ └── times.c ├── readme ├── src │ ├── main.c │ ├── mainplus.cc │ ├── makefile │ ├── patchlvl.h │ ├── tclplus.cc │ ├── tclplus.h │ ├── tclxbsrc.c │ ├── tclxcclk.c │ ├── tclxchmd.c │ ├── tclxclck.c │ ├── tclxclp.c │ ├── tclxcret.c │ ├── tclxdebg.c │ ├── tclxdup.c │ ├── tclxfcmd.c │ ├── tclxfctl.c │ ├── tclxfmat.c │ ├── tclxfsca.c │ ├── tclxgdat.y │ ├── tclxgenl.c │ ├── tclxhndl.c │ ├── tclxid.c │ ├── tclxint.h │ ├── tclxklst.c │ ├── tclxlib.c │ ├── tclxlist.c │ ├── tclxmath.c │ ├── tclxmerr.c │ ├── tclxmsgc.c │ ├── tclxproc.c │ ├── tclxprof.c │ ├── tclxrexp.c │ ├── tclxsel.c │ ├── tclxsig.c │ ├── tclxstr.c │ ├── tclxstup.c │ ├── tclxtend.h │ ├── tclxunix.c │ └── tclxutil.c ├── tcllib │ ├── 8queens.tcl │ ├── buildhelp.tcl │ ├── buildidx.tcl │ └── tclinit.tcl ├── tclsrc │ ├── array.tcl │ ├── assign.tcl │ ├── compat.tcl │ ├── convlib.tcl │ ├── edprocs.tcl │ ├── forfile.tcl │ ├── forrec.tcl │ ├── globrec.tcl │ ├── help.tcl │ ├── install.tcl │ ├── makefile │ ├── packages.tcl │ ├── profrep.tcl │ ├── pushd.tcl │ ├── setfuncs.tcl │ ├── showproc.tcl │ └── strfile.tcl ├── tksrc │ └── makefile ├── tkucbsrc │ ├── main.dif │ ├── main.sed │ ├── makefile │ ├── tkevent.dif │ ├── tkevent.sed │ └── wishx.sed └── ucbsrc │ ├── makefile │ ├── tclbasic.dif │ ├── tclbasic.sed │ ├── tclexpr.dif │ └── tclexpr.sed ├── tk ├── bitmaps │ ├── gray25 │ └── gray50 ├── default.h ├── ks_names.h ├── library │ ├── button.tcl │ ├── demos │ │ ├── README │ │ ├── bitmaps │ │ │ ├── face │ │ │ ├── flagdown │ │ │ ├── flagup │ │ │ ├── grey.25 │ │ │ ├── grey.5 │ │ │ ├── letters │ │ │ ├── noletters │ │ │ └── pattern │ │ ├── browse │ │ ├── color │ │ ├── dialog │ │ ├── hello │ │ ├── ixset │ │ ├── mkArrow.tcl │ │ ├── mkBasic.tcl │ │ ├── mkButton.tcl │ │ ├── mkCanvText.tcl │ │ ├── mkCheck.tcl │ │ ├── mkDialog.tcl │ │ ├── mkEntry.tcl │ │ ├── mkEntry2.tcl │ │ ├── mkHScale.tcl │ │ ├── mkIcon.tcl │ │ ├── mkItems.tcl │ │ ├── mkLabel.tcl │ │ ├── mkListbox.tcl │ │ ├── mkListbox2.tcl │ │ ├── mkListbox3.tcl │ │ ├── mkPlot.tcl │ │ ├── mkPuzzle.tcl │ │ ├── mkRadio.tcl │ │ ├── mkRuler.tcl │ │ ├── mkScroll.tcl │ │ ├── mkStyles.tcl │ │ ├── mkTear.tcl │ │ ├── mkTextBind.tcl │ │ ├── mkVScale.tcl │ │ ├── rolodex │ │ ├── showVars.tcl │ │ ├── size │ │ ├── tclIndex │ │ ├── timer │ │ ├── tkSquare.c │ │ └── widget │ ├── entry.tcl │ ├── listbox.tcl │ ├── menu.tcl │ ├── tclindex │ ├── text.tcl │ ├── tk.tcl │ ├── tkerror.tcl │ └── wish.tcl ├── main.c ├── makefile ├── makefile.dvx ├── makefile.hpux ├── makefile.linux ├── makefile.osf ├── makefile.sgi ├── makefile.sol ├── makefile.sun ├── readme ├── tk.h ├── tk3d.c ├── tkargv.c ├── tkatom.c ├── tkbind.c ├── tkbitmap.c ├── tkbutton.c ├── tkcanvas.c ├── tkcanvas.h ├── tkcmds.c ├── tkcolor.c ├── tkconfig.c ├── tkconfig.h ├── tkcursor.c ├── tkcvarc.c ├── tkcvbmap.c ├── tkcvline.c ├── tkcvpoly.c ├── tkcvtext.c ├── tkcvwind.c ├── tkentry.c ├── tkerror.c ├── tkevent.c ├── tkfont.c ├── tkframe.c ├── tkgc.c ├── tkgeo.c ├── tkget.c ├── tkgrab.c ├── tkint.h ├── tklist.c ├── tkmenu.c ├── tkmnbut.c ├── tkmsg.c ├── tkoption.c ├── tkpack.c ├── tkpixmap.c ├── tkplace.c ├── tkpresrv.c ├── tkrawtcp.c ├── tkrectov.c ├── tkscale.c ├── tkscrbar.c ├── tkselect.c ├── tksend.c ├── tkshare.c ├── tktcp.c ├── tktcp.h ├── tktext.c ├── tktext.h ├── tktrig.c ├── tktxbtre.c ├── tktxdisp.c ├── tktxidx.c ├── tktxtag.c ├── tkwindow.c ├── tkwm.c └── tkwm.h └── xpm ├── Attrib.c ├── CrBufFrI.c ├── CrBufFrP.c ├── CrDatFrI.c ├── CrDatFrP.c ├── CrIFrBuf.c ├── CrIFrDat.c ├── CrIFrP.c ├── CrPFrBuf.c ├── CrPFrDat.c ├── CrPFrI.c ├── Image.c ├── Imakefile ├── Info.c ├── Makefile.noX ├── RdFToBuf.c ├── RdFToDat.c ├── RdFToI.c ├── RdFToP.c ├── WrFFrBuf.c ├── WrFFrDat.c ├── WrFFrI.c ├── WrFFrP.c ├── XpmI.h ├── create.c ├── data.c ├── hashtab.c ├── misc.c ├── parse.c ├── rgb.c ├── rgbtab.h ├── scan.c ├── simx.c ├── simx.h └── xpm.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/README.md -------------------------------------------------------------------------------- /simirix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/simirix.png -------------------------------------------------------------------------------- /src/notes/ASSETS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/ASSETS.txt -------------------------------------------------------------------------------- /src/notes/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/BUGS -------------------------------------------------------------------------------- /src/notes/Beyond-Intelligent-Machines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Beyond-Intelligent-Machines -------------------------------------------------------------------------------- /src/notes/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Changes -------------------------------------------------------------------------------- /src/notes/DONE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/DONE -------------------------------------------------------------------------------- /src/notes/DocTCL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/DocTCL -------------------------------------------------------------------------------- /src/notes/Dynamic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Dynamic.tcl -------------------------------------------------------------------------------- /src/notes/FirstRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/FirstRelease -------------------------------------------------------------------------------- /src/notes/InterCHI-Interactive-Experience-Proposal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/InterCHI-Interactive-Experience-Proposal -------------------------------------------------------------------------------- /src/notes/MULTI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/MULTI -------------------------------------------------------------------------------- /src/notes/Micropolis-Indigo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Micropolis-Indigo.gif -------------------------------------------------------------------------------- /src/notes/Micropolis-NCD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Micropolis-NCD.gif -------------------------------------------------------------------------------- /src/notes/Micropolis-Sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Micropolis-Sun.gif -------------------------------------------------------------------------------- /src/notes/MultiPlayerIdeas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/MultiPlayerIdeas.txt -------------------------------------------------------------------------------- /src/notes/NCDAudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/NCDAudio -------------------------------------------------------------------------------- /src/notes/OLPC-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/OLPC-notes.txt -------------------------------------------------------------------------------- /src/notes/PLAN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/PLAN.txt -------------------------------------------------------------------------------- /src/notes/Performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Performance -------------------------------------------------------------------------------- /src/notes/Publicity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Publicity -------------------------------------------------------------------------------- /src/notes/Questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Questions -------------------------------------------------------------------------------- /src/notes/ROADMAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/ROADMAP.txt -------------------------------------------------------------------------------- /src/notes/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Release -------------------------------------------------------------------------------- /src/notes/SharedData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/SharedData -------------------------------------------------------------------------------- /src/notes/Strategy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/Strategy -------------------------------------------------------------------------------- /src/notes/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/TODO -------------------------------------------------------------------------------- /src/notes/TkVersion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/TkVersion -------------------------------------------------------------------------------- /src/notes/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/bugs.txt -------------------------------------------------------------------------------- /src/notes/outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/outline -------------------------------------------------------------------------------- /src/notes/sim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/sim.gif -------------------------------------------------------------------------------- /src/notes/to.ouster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/notes/to.ouster -------------------------------------------------------------------------------- /src/sim/g_ani.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_ani.c -------------------------------------------------------------------------------- /src/sim/g_bigmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_bigmap.c -------------------------------------------------------------------------------- /src/sim/g_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_cam.c -------------------------------------------------------------------------------- /src/sim/g_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_map.c -------------------------------------------------------------------------------- /src/sim/g_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_setup.c -------------------------------------------------------------------------------- /src/sim/g_smmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/g_smmaps.c -------------------------------------------------------------------------------- /src/sim/headers/animtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/animtab.h -------------------------------------------------------------------------------- /src/sim/headers/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/cam.h -------------------------------------------------------------------------------- /src/sim/headers/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/mac.h -------------------------------------------------------------------------------- /src/sim/headers/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/macros.h -------------------------------------------------------------------------------- /src/sim/headers/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/sim.h -------------------------------------------------------------------------------- /src/sim/headers/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/headers/view.h -------------------------------------------------------------------------------- /src/sim/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/makefile -------------------------------------------------------------------------------- /src/sim/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/rand.c -------------------------------------------------------------------------------- /src/sim/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/random.c -------------------------------------------------------------------------------- /src/sim/s_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_alloc.c -------------------------------------------------------------------------------- /src/sim/s_disast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_disast.c -------------------------------------------------------------------------------- /src/sim/s_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_eval.c -------------------------------------------------------------------------------- /src/sim/s_fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_fileio.c -------------------------------------------------------------------------------- /src/sim/s_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_gen.c -------------------------------------------------------------------------------- /src/sim/s_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_init.c -------------------------------------------------------------------------------- /src/sim/s_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_msg.c -------------------------------------------------------------------------------- /src/sim/s_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_power.c -------------------------------------------------------------------------------- /src/sim/s_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_scan.c -------------------------------------------------------------------------------- /src/sim/s_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_sim.c -------------------------------------------------------------------------------- /src/sim/s_traf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_traf.c -------------------------------------------------------------------------------- /src/sim/s_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/s_zone.c -------------------------------------------------------------------------------- /src/sim/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/sim.c -------------------------------------------------------------------------------- /src/sim/terrain/mapgener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/terrain/mapgener.c -------------------------------------------------------------------------------- /src/sim/terrain/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/terrain/messages -------------------------------------------------------------------------------- /src/sim/terrain/terra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/terrain/terra.c -------------------------------------------------------------------------------- /src/sim/terrain/terragen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/terrain/terragen.c -------------------------------------------------------------------------------- /src/sim/w_budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_budget.c -------------------------------------------------------------------------------- /src/sim/w_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_cam.c -------------------------------------------------------------------------------- /src/sim/w_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_con.c -------------------------------------------------------------------------------- /src/sim/w_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_date.c -------------------------------------------------------------------------------- /src/sim/w_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_editor.c -------------------------------------------------------------------------------- /src/sim/w_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_eval.c -------------------------------------------------------------------------------- /src/sim/w_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_graph.c -------------------------------------------------------------------------------- /src/sim/w_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_inter.c -------------------------------------------------------------------------------- /src/sim/w_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_keys.c -------------------------------------------------------------------------------- /src/sim/w_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_map.c -------------------------------------------------------------------------------- /src/sim/w_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_net.c -------------------------------------------------------------------------------- /src/sim/w_piem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_piem.c -------------------------------------------------------------------------------- /src/sim/w_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_print.c -------------------------------------------------------------------------------- /src/sim/w_resrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_resrc.c -------------------------------------------------------------------------------- /src/sim/w_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_sim.c -------------------------------------------------------------------------------- /src/sim/w_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_sound.c -------------------------------------------------------------------------------- /src/sim/w_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_sprite.c -------------------------------------------------------------------------------- /src/sim/w_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_stubs.c -------------------------------------------------------------------------------- /src/sim/w_tk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_tk.c -------------------------------------------------------------------------------- /src/sim/w_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_tool.c -------------------------------------------------------------------------------- /src/sim/w_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_update.c -------------------------------------------------------------------------------- /src/sim/w_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_util.c -------------------------------------------------------------------------------- /src/sim/w_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/sim/w_x.c -------------------------------------------------------------------------------- /src/tcl/compat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/README -------------------------------------------------------------------------------- /src/tcl/compat/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/dirent.h -------------------------------------------------------------------------------- /src/tcl/compat/dirent2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/dirent2.h -------------------------------------------------------------------------------- /src/tcl/compat/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/limits.h -------------------------------------------------------------------------------- /src/tcl/compat/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/opendir.c -------------------------------------------------------------------------------- /src/tcl/compat/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/stdlib.h -------------------------------------------------------------------------------- /src/tcl/compat/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/strerror.c -------------------------------------------------------------------------------- /src/tcl/compat/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/string.h -------------------------------------------------------------------------------- /src/tcl/compat/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/strstr.c -------------------------------------------------------------------------------- /src/tcl/compat/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/strtod.c -------------------------------------------------------------------------------- /src/tcl/compat/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/strtol.c -------------------------------------------------------------------------------- /src/tcl/compat/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/strtoul.c -------------------------------------------------------------------------------- /src/tcl/compat/testpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/testpid.c -------------------------------------------------------------------------------- /src/tcl/compat/teststrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/teststrtoul.c -------------------------------------------------------------------------------- /src/tcl/compat/testuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/testuid.c -------------------------------------------------------------------------------- /src/tcl/compat/testwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/compat/testwait.c -------------------------------------------------------------------------------- /src/tcl/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/config -------------------------------------------------------------------------------- /src/tcl/library/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/library/init.tcl -------------------------------------------------------------------------------- /src/tcl/library/mkindex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/library/mkindex.tcl -------------------------------------------------------------------------------- /src/tcl/library/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/library/parray.tcl -------------------------------------------------------------------------------- /src/tcl/library/tclindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/library/tclindex -------------------------------------------------------------------------------- /src/tcl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/makefile -------------------------------------------------------------------------------- /src/tcl/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/panic.c -------------------------------------------------------------------------------- /src/tcl/porting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/porting.txt -------------------------------------------------------------------------------- /src/tcl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/readme.txt -------------------------------------------------------------------------------- /src/tcl/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/regexp.c -------------------------------------------------------------------------------- /src/tcl/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/regexp.h -------------------------------------------------------------------------------- /src/tcl/tcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tcl.h -------------------------------------------------------------------------------- /src/tcl/tclassem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclassem.c -------------------------------------------------------------------------------- /src/tcl/tclbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclbasic.c -------------------------------------------------------------------------------- /src/tcl/tclckall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclckall.c -------------------------------------------------------------------------------- /src/tcl/tclcmdah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclcmdah.c -------------------------------------------------------------------------------- /src/tcl/tclcmdil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclcmdil.c -------------------------------------------------------------------------------- /src/tcl/tclcmdmz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclcmdmz.c -------------------------------------------------------------------------------- /src/tcl/tclenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclenv.c -------------------------------------------------------------------------------- /src/tcl/tclexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclexpr.c -------------------------------------------------------------------------------- /src/tcl/tclget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclget.c -------------------------------------------------------------------------------- /src/tcl/tclglob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclglob.c -------------------------------------------------------------------------------- /src/tcl/tclhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclhash.c -------------------------------------------------------------------------------- /src/tcl/tclhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclhash.h -------------------------------------------------------------------------------- /src/tcl/tclhist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclhist.c -------------------------------------------------------------------------------- /src/tcl/tclint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclint.h -------------------------------------------------------------------------------- /src/tcl/tclparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclparse.c -------------------------------------------------------------------------------- /src/tcl/tclproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclproc.c -------------------------------------------------------------------------------- /src/tcl/tcltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tcltest.c -------------------------------------------------------------------------------- /src/tcl/tclunix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclunix.h -------------------------------------------------------------------------------- /src/tcl/tclunxaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclunxaz.c -------------------------------------------------------------------------------- /src/tcl/tclunxst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclunxst.c -------------------------------------------------------------------------------- /src/tcl/tclunxut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclunxut.c -------------------------------------------------------------------------------- /src/tcl/tclutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclutil.c -------------------------------------------------------------------------------- /src/tcl/tclvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tcl/tclvar.c -------------------------------------------------------------------------------- /src/tclx/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config.mk -------------------------------------------------------------------------------- /src/tclx/config/aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/aux -------------------------------------------------------------------------------- /src/tclx/config/bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/bsd -------------------------------------------------------------------------------- /src/tclx/config/bsd-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/bsd-4.3 -------------------------------------------------------------------------------- /src/tclx/config/dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/dos -------------------------------------------------------------------------------- /src/tclx/config/hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/hpux -------------------------------------------------------------------------------- /src/tclx/config/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/linux -------------------------------------------------------------------------------- /src/tclx/config/osf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/osf1 -------------------------------------------------------------------------------- /src/tclx/config/rs6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/rs6000 -------------------------------------------------------------------------------- /src/tclx/config/scoodt1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/scoodt1.1 -------------------------------------------------------------------------------- /src/tclx/config/scoodt2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/scoodt2.0 -------------------------------------------------------------------------------- /src/tclx/config/sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/sgi -------------------------------------------------------------------------------- /src/tclx/config/solaris2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/solaris2 -------------------------------------------------------------------------------- /src/tclx/config/sunos4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/sunos4.0 -------------------------------------------------------------------------------- /src/tclx/config/sunos4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/sunos4.1 -------------------------------------------------------------------------------- /src/tclx/config/sysv.3.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/sysv.3.2.0 -------------------------------------------------------------------------------- /src/tclx/config/ultrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/ultrix -------------------------------------------------------------------------------- /src/tclx/config/ultrix4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/ultrix4.2 -------------------------------------------------------------------------------- /src/tclx/config/xenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/config/xenix -------------------------------------------------------------------------------- /src/tclx/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/makefile -------------------------------------------------------------------------------- /src/tclx/ossupp/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/fcntl.c -------------------------------------------------------------------------------- /src/tclx/ossupp/ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/ids.c -------------------------------------------------------------------------------- /src/tclx/ossupp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/makefile -------------------------------------------------------------------------------- /src/tclx/ossupp/makefile.dvx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/makefile.dvx -------------------------------------------------------------------------------- /src/tclx/ossupp/sigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/sigs.c -------------------------------------------------------------------------------- /src/tclx/ossupp/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/strftime.c -------------------------------------------------------------------------------- /src/tclx/ossupp/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ossupp/times.c -------------------------------------------------------------------------------- /src/tclx/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/readme -------------------------------------------------------------------------------- /src/tclx/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/main.c -------------------------------------------------------------------------------- /src/tclx/src/mainplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/mainplus.cc -------------------------------------------------------------------------------- /src/tclx/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/makefile -------------------------------------------------------------------------------- /src/tclx/src/patchlvl.h: -------------------------------------------------------------------------------- 1 | 2 | #define PATCHLEVEL 1 3 | -------------------------------------------------------------------------------- /src/tclx/src/tclplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclplus.cc -------------------------------------------------------------------------------- /src/tclx/src/tclplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclplus.h -------------------------------------------------------------------------------- /src/tclx/src/tclxbsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxbsrc.c -------------------------------------------------------------------------------- /src/tclx/src/tclxcclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxcclk.c -------------------------------------------------------------------------------- /src/tclx/src/tclxchmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxchmd.c -------------------------------------------------------------------------------- /src/tclx/src/tclxclck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxclck.c -------------------------------------------------------------------------------- /src/tclx/src/tclxclp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxclp.c -------------------------------------------------------------------------------- /src/tclx/src/tclxcret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxcret.c -------------------------------------------------------------------------------- /src/tclx/src/tclxdebg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxdebg.c -------------------------------------------------------------------------------- /src/tclx/src/tclxdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxdup.c -------------------------------------------------------------------------------- /src/tclx/src/tclxfcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxfcmd.c -------------------------------------------------------------------------------- /src/tclx/src/tclxfctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxfctl.c -------------------------------------------------------------------------------- /src/tclx/src/tclxfmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxfmat.c -------------------------------------------------------------------------------- /src/tclx/src/tclxfsca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxfsca.c -------------------------------------------------------------------------------- /src/tclx/src/tclxgdat.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxgdat.y -------------------------------------------------------------------------------- /src/tclx/src/tclxgenl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxgenl.c -------------------------------------------------------------------------------- /src/tclx/src/tclxhndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxhndl.c -------------------------------------------------------------------------------- /src/tclx/src/tclxid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxid.c -------------------------------------------------------------------------------- /src/tclx/src/tclxint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxint.h -------------------------------------------------------------------------------- /src/tclx/src/tclxklst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxklst.c -------------------------------------------------------------------------------- /src/tclx/src/tclxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxlib.c -------------------------------------------------------------------------------- /src/tclx/src/tclxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxlist.c -------------------------------------------------------------------------------- /src/tclx/src/tclxmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxmath.c -------------------------------------------------------------------------------- /src/tclx/src/tclxmerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxmerr.c -------------------------------------------------------------------------------- /src/tclx/src/tclxmsgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxmsgc.c -------------------------------------------------------------------------------- /src/tclx/src/tclxproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxproc.c -------------------------------------------------------------------------------- /src/tclx/src/tclxprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxprof.c -------------------------------------------------------------------------------- /src/tclx/src/tclxrexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxrexp.c -------------------------------------------------------------------------------- /src/tclx/src/tclxsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxsel.c -------------------------------------------------------------------------------- /src/tclx/src/tclxsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxsig.c -------------------------------------------------------------------------------- /src/tclx/src/tclxstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxstr.c -------------------------------------------------------------------------------- /src/tclx/src/tclxstup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxstup.c -------------------------------------------------------------------------------- /src/tclx/src/tclxtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxtend.h -------------------------------------------------------------------------------- /src/tclx/src/tclxunix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxunix.c -------------------------------------------------------------------------------- /src/tclx/src/tclxutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/src/tclxutil.c -------------------------------------------------------------------------------- /src/tclx/tcllib/8queens.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tcllib/8queens.tcl -------------------------------------------------------------------------------- /src/tclx/tcllib/buildhelp.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tcllib/buildhelp.tcl -------------------------------------------------------------------------------- /src/tclx/tcllib/buildidx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tcllib/buildidx.tcl -------------------------------------------------------------------------------- /src/tclx/tcllib/tclinit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tcllib/tclinit.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/array.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/array.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/assign.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/assign.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/compat.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/convlib.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/convlib.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/edprocs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/edprocs.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/forfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/forfile.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/forrec.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/forrec.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/globrec.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/globrec.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/help.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/help.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/install.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/install.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/makefile -------------------------------------------------------------------------------- /src/tclx/tclsrc/packages.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/packages.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/profrep.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/profrep.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/pushd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/pushd.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/setfuncs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/setfuncs.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/showproc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/showproc.tcl -------------------------------------------------------------------------------- /src/tclx/tclsrc/strfile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tclsrc/strfile.tcl -------------------------------------------------------------------------------- /src/tclx/tksrc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tksrc/makefile -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/main.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/main.dif -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/main.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/main.sed -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/makefile -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/tkevent.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/tkevent.dif -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/tkevent.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/tkevent.sed -------------------------------------------------------------------------------- /src/tclx/tkucbsrc/wishx.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/tkucbsrc/wishx.sed -------------------------------------------------------------------------------- /src/tclx/ucbsrc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ucbsrc/makefile -------------------------------------------------------------------------------- /src/tclx/ucbsrc/tclbasic.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ucbsrc/tclbasic.dif -------------------------------------------------------------------------------- /src/tclx/ucbsrc/tclbasic.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ucbsrc/tclbasic.sed -------------------------------------------------------------------------------- /src/tclx/ucbsrc/tclexpr.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ucbsrc/tclexpr.dif -------------------------------------------------------------------------------- /src/tclx/ucbsrc/tclexpr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tclx/ucbsrc/tclexpr.sed -------------------------------------------------------------------------------- /src/tk/bitmaps/gray25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/bitmaps/gray25 -------------------------------------------------------------------------------- /src/tk/bitmaps/gray50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/bitmaps/gray50 -------------------------------------------------------------------------------- /src/tk/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/default.h -------------------------------------------------------------------------------- /src/tk/ks_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/ks_names.h -------------------------------------------------------------------------------- /src/tk/library/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/button.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/README -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/face -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/flagdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/flagdown -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/flagup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/flagup -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/grey.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/grey.25 -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/grey.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/grey.5 -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/letters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/letters -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/noletters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/noletters -------------------------------------------------------------------------------- /src/tk/library/demos/bitmaps/pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/bitmaps/pattern -------------------------------------------------------------------------------- /src/tk/library/demos/browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/browse -------------------------------------------------------------------------------- /src/tk/library/demos/color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/color -------------------------------------------------------------------------------- /src/tk/library/demos/dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/dialog -------------------------------------------------------------------------------- /src/tk/library/demos/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/hello -------------------------------------------------------------------------------- /src/tk/library/demos/ixset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/ixset -------------------------------------------------------------------------------- /src/tk/library/demos/mkArrow.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkArrow.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkBasic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkBasic.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkButton.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkButton.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkCanvText.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkCanvText.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkCheck.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkCheck.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkDialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkDialog.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkEntry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkEntry.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkEntry2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkEntry2.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkHScale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkHScale.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkIcon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkIcon.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkItems.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkItems.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkLabel.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkLabel.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkListbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkListbox.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkListbox2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkListbox2.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkListbox3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkListbox3.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkPlot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkPlot.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkPuzzle.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkPuzzle.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkRadio.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkRadio.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkRuler.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkRuler.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkScroll.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkScroll.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkStyles.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkStyles.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkTear.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkTear.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkTextBind.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkTextBind.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/mkVScale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/mkVScale.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/rolodex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/rolodex -------------------------------------------------------------------------------- /src/tk/library/demos/showVars.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/showVars.tcl -------------------------------------------------------------------------------- /src/tk/library/demos/size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/size -------------------------------------------------------------------------------- /src/tk/library/demos/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/tclIndex -------------------------------------------------------------------------------- /src/tk/library/demos/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/timer -------------------------------------------------------------------------------- /src/tk/library/demos/tkSquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/tkSquare.c -------------------------------------------------------------------------------- /src/tk/library/demos/widget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/demos/widget -------------------------------------------------------------------------------- /src/tk/library/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/entry.tcl -------------------------------------------------------------------------------- /src/tk/library/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/listbox.tcl -------------------------------------------------------------------------------- /src/tk/library/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/menu.tcl -------------------------------------------------------------------------------- /src/tk/library/tclindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/tclindex -------------------------------------------------------------------------------- /src/tk/library/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/text.tcl -------------------------------------------------------------------------------- /src/tk/library/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/tk.tcl -------------------------------------------------------------------------------- /src/tk/library/tkerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/tkerror.tcl -------------------------------------------------------------------------------- /src/tk/library/wish.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/library/wish.tcl -------------------------------------------------------------------------------- /src/tk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/main.c -------------------------------------------------------------------------------- /src/tk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile -------------------------------------------------------------------------------- /src/tk/makefile.dvx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.dvx -------------------------------------------------------------------------------- /src/tk/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.hpux -------------------------------------------------------------------------------- /src/tk/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.linux -------------------------------------------------------------------------------- /src/tk/makefile.osf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.osf -------------------------------------------------------------------------------- /src/tk/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.sgi -------------------------------------------------------------------------------- /src/tk/makefile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.sol -------------------------------------------------------------------------------- /src/tk/makefile.sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/makefile.sun -------------------------------------------------------------------------------- /src/tk/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/readme -------------------------------------------------------------------------------- /src/tk/tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tk.h -------------------------------------------------------------------------------- /src/tk/tk3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tk3d.c -------------------------------------------------------------------------------- /src/tk/tkargv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkargv.c -------------------------------------------------------------------------------- /src/tk/tkatom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkatom.c -------------------------------------------------------------------------------- /src/tk/tkbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkbind.c -------------------------------------------------------------------------------- /src/tk/tkbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkbitmap.c -------------------------------------------------------------------------------- /src/tk/tkbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkbutton.c -------------------------------------------------------------------------------- /src/tk/tkcanvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcanvas.c -------------------------------------------------------------------------------- /src/tk/tkcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcanvas.h -------------------------------------------------------------------------------- /src/tk/tkcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcmds.c -------------------------------------------------------------------------------- /src/tk/tkcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcolor.c -------------------------------------------------------------------------------- /src/tk/tkconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkconfig.c -------------------------------------------------------------------------------- /src/tk/tkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkconfig.h -------------------------------------------------------------------------------- /src/tk/tkcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcursor.c -------------------------------------------------------------------------------- /src/tk/tkcvarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvarc.c -------------------------------------------------------------------------------- /src/tk/tkcvbmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvbmap.c -------------------------------------------------------------------------------- /src/tk/tkcvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvline.c -------------------------------------------------------------------------------- /src/tk/tkcvpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvpoly.c -------------------------------------------------------------------------------- /src/tk/tkcvtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvtext.c -------------------------------------------------------------------------------- /src/tk/tkcvwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkcvwind.c -------------------------------------------------------------------------------- /src/tk/tkentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkentry.c -------------------------------------------------------------------------------- /src/tk/tkerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkerror.c -------------------------------------------------------------------------------- /src/tk/tkevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkevent.c -------------------------------------------------------------------------------- /src/tk/tkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkfont.c -------------------------------------------------------------------------------- /src/tk/tkframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkframe.c -------------------------------------------------------------------------------- /src/tk/tkgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkgc.c -------------------------------------------------------------------------------- /src/tk/tkgeo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkgeo.c -------------------------------------------------------------------------------- /src/tk/tkget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkget.c -------------------------------------------------------------------------------- /src/tk/tkgrab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkgrab.c -------------------------------------------------------------------------------- /src/tk/tkint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkint.h -------------------------------------------------------------------------------- /src/tk/tklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tklist.c -------------------------------------------------------------------------------- /src/tk/tkmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkmenu.c -------------------------------------------------------------------------------- /src/tk/tkmnbut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkmnbut.c -------------------------------------------------------------------------------- /src/tk/tkmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkmsg.c -------------------------------------------------------------------------------- /src/tk/tkoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkoption.c -------------------------------------------------------------------------------- /src/tk/tkpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkpack.c -------------------------------------------------------------------------------- /src/tk/tkpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkpixmap.c -------------------------------------------------------------------------------- /src/tk/tkplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkplace.c -------------------------------------------------------------------------------- /src/tk/tkpresrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkpresrv.c -------------------------------------------------------------------------------- /src/tk/tkrawtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkrawtcp.c -------------------------------------------------------------------------------- /src/tk/tkrectov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkrectov.c -------------------------------------------------------------------------------- /src/tk/tkscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkscale.c -------------------------------------------------------------------------------- /src/tk/tkscrbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkscrbar.c -------------------------------------------------------------------------------- /src/tk/tkselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkselect.c -------------------------------------------------------------------------------- /src/tk/tksend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tksend.c -------------------------------------------------------------------------------- /src/tk/tkshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkshare.c -------------------------------------------------------------------------------- /src/tk/tktcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktcp.c -------------------------------------------------------------------------------- /src/tk/tktcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktcp.h -------------------------------------------------------------------------------- /src/tk/tktext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktext.c -------------------------------------------------------------------------------- /src/tk/tktext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktext.h -------------------------------------------------------------------------------- /src/tk/tktrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktrig.c -------------------------------------------------------------------------------- /src/tk/tktxbtre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktxbtre.c -------------------------------------------------------------------------------- /src/tk/tktxdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktxdisp.c -------------------------------------------------------------------------------- /src/tk/tktxidx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktxidx.c -------------------------------------------------------------------------------- /src/tk/tktxtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tktxtag.c -------------------------------------------------------------------------------- /src/tk/tkwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkwindow.c -------------------------------------------------------------------------------- /src/tk/tkwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkwm.c -------------------------------------------------------------------------------- /src/tk/tkwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/tk/tkwm.h -------------------------------------------------------------------------------- /src/xpm/Attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/Attrib.c -------------------------------------------------------------------------------- /src/xpm/CrBufFrI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrBufFrI.c -------------------------------------------------------------------------------- /src/xpm/CrBufFrP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrBufFrP.c -------------------------------------------------------------------------------- /src/xpm/CrDatFrI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrDatFrI.c -------------------------------------------------------------------------------- /src/xpm/CrDatFrP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrDatFrP.c -------------------------------------------------------------------------------- /src/xpm/CrIFrBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrIFrBuf.c -------------------------------------------------------------------------------- /src/xpm/CrIFrDat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrIFrDat.c -------------------------------------------------------------------------------- /src/xpm/CrIFrP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrIFrP.c -------------------------------------------------------------------------------- /src/xpm/CrPFrBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrPFrBuf.c -------------------------------------------------------------------------------- /src/xpm/CrPFrDat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrPFrDat.c -------------------------------------------------------------------------------- /src/xpm/CrPFrI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/CrPFrI.c -------------------------------------------------------------------------------- /src/xpm/Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/Image.c -------------------------------------------------------------------------------- /src/xpm/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/Imakefile -------------------------------------------------------------------------------- /src/xpm/Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/Info.c -------------------------------------------------------------------------------- /src/xpm/Makefile.noX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/Makefile.noX -------------------------------------------------------------------------------- /src/xpm/RdFToBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/RdFToBuf.c -------------------------------------------------------------------------------- /src/xpm/RdFToDat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/RdFToDat.c -------------------------------------------------------------------------------- /src/xpm/RdFToI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/RdFToI.c -------------------------------------------------------------------------------- /src/xpm/RdFToP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/RdFToP.c -------------------------------------------------------------------------------- /src/xpm/WrFFrBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/WrFFrBuf.c -------------------------------------------------------------------------------- /src/xpm/WrFFrDat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/WrFFrDat.c -------------------------------------------------------------------------------- /src/xpm/WrFFrI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/WrFFrI.c -------------------------------------------------------------------------------- /src/xpm/WrFFrP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/WrFFrP.c -------------------------------------------------------------------------------- /src/xpm/XpmI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/XpmI.h -------------------------------------------------------------------------------- /src/xpm/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/create.c -------------------------------------------------------------------------------- /src/xpm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/data.c -------------------------------------------------------------------------------- /src/xpm/hashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/hashtab.c -------------------------------------------------------------------------------- /src/xpm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/misc.c -------------------------------------------------------------------------------- /src/xpm/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/parse.c -------------------------------------------------------------------------------- /src/xpm/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/rgb.c -------------------------------------------------------------------------------- /src/xpm/rgbtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/rgbtab.h -------------------------------------------------------------------------------- /src/xpm/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/scan.c -------------------------------------------------------------------------------- /src/xpm/simx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/simx.c -------------------------------------------------------------------------------- /src/xpm/simx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/simx.h -------------------------------------------------------------------------------- /src/xpm/xpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenox7/micropolis/HEAD/src/xpm/xpm.h --------------------------------------------------------------------------------